

/* Start:/local/templates/my-new/components/bitrix/menu/top-menu/style.css?177878112310346*/
/* Navigation Menu */
        .nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav__list {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }

        .nav__item {
            position: relative;
        }

        .nav__link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .nav__link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00A0E9, #9B59B6);
            transition: width 0.3s ease;
        }

        .nav__link:hover {
            color: #fff;
        }

        .nav__link:hover::after {
            width: 100%;
        }

        /* Dropdown Arrow */
        .nav__link--dropdown::after {
            display: none;
        }

        .nav__dropdown-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
            fill: currentColor;
            flex-shrink: 0;
        }

        .nav__item:hover .nav__dropdown-arrow {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .nav__dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            min-width: 220px;
            background: rgba(13, 24, 66, 0.98);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 8px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            z-index: 100;
        }

        .nav__dropdown::before {
            content: '';
            position: absolute;
            top: -6px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 12px;
            height: 12px;
            background: rgba(13, 24, 66, 0.98);
            border-left: 1px solid rgba(255, 255, 255, 0.08);
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .nav__item:hover .nav__dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav__dropdown-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 10px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav__dropdown-link:hover {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            padding-left: 20px;
        }

        .nav__dropdown-link:hover::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 20px;
            background: linear-gradient(180deg, #00A0E9, #9B59B6);
            border-radius: 2px;
        }

        .nav__dropdown-icon {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.06);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .nav__dropdown-link:hover .nav__dropdown-icon {
            background: linear-gradient(135deg, rgba(0, 160, 233, 0.2), rgba(155, 89, 182, 0.2));
        }

        .nav__dropdown-icon svg {
            width: 18px;
            height: 18px;
            fill: #00A0E9;
        }

        .nav__dropdown-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.06);
            margin: 4px 12px;
        }
 /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }


        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: #fff;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
            .nav__list {
                gap: 20px;
            }
        }
       @media (max-width: 1024px) {
            .hero-slide__graphic {
                display: none;
            }

            .hero-slide {
                padding: 0 5%;
            }

            .slider-counter {
                right: 5%;
            }

            

            .nav__list {
                gap: 15px;
            }

            .nav__link {
                font-size: 14px;
            }

            
        }

        @media (max-width: 992px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav {
                position: fixed;
                top: 0;
                left: -100%;
                width: 300px;
                height: 100vh;
                background: rgba(10, 14, 39, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 30px 30px;
                transition: left 0.3s ease;
                z-index: 999;
                overflow-y: auto;
            }

            .nav.active {
                left: 0;
            }

            .nav__list {
                flex-direction: column;
                gap: 0;
                align-items: stretch;
            }

            .nav__item {
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .nav__link {
                font-size: 18px;
                padding: 16px 0;
                justify-content: space-between;
            }

            .nav__link::after {
                display: none;
            }

            /* Mobile Dropdown */
            .nav__dropdown {
                position: static;
                transform: none;
                min-width: auto;
                background: rgba(255, 255, 255, 0.03);
                border: none;
                border-radius: 12px;
                padding: 4px 0 4px 12px;
                opacity: 1;
                visibility: visible;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease, opacity 0.3s ease;
                box-shadow: none;
                margin-bottom: 8px;
            }

            .nav__dropdown::before {
                display: none;
            }

            .nav__item.active .nav__dropdown {
                max-height: 300px;
                opacity: 1;
            }

            .nav__dropdown-link {
                padding: 10px 12px;
                font-size: 15px;
            }

            .nav__dropdown-link:hover {
                padding-left: 16px;
            }

            .nav__dropdown-link:hover::before {
                display: none;
            }

            .nav__dropdown-arrow {
                transition: transform 0.3s ease;
            }

            .nav__item.active .nav__dropdown-arrow {
                transform: rotate(180deg);
            }

           
}
 @media (max-width: 768px) {


            .hero-slide__content {
                max-width: 100%;
                text-align: center;
            }

            .hero-slide__subtitle {
                max-width: 100%;
            }

            .hero-slide__actions {
                justify-content: center;
            }

            .slider-nav {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }

            .slider-nav--prev { left: 12px; }
            .slider-nav--next { right: 12px; }



            .slider-counter {
                display: none;
            }

            .slider-dots {
                bottom: 24px;
            }

            .deco-line { display: none; }

            .hero-slider {
                padding-top: 140px;
            }

            .modal__content {
                padding: 30px 20px;
            }

            .modal__title {
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {


            .hero-slider {
                padding-top: 120px;
            }

            .nav {
                width: 280px;
            }
        }

        /* Hide mobile CTA on desktop */
        .nav__cta-mobile {
            display: none;
        }
/* End */


/* Start:/local/templates/my-new/template_styles.css?177903643036783*/
/*<!-- ===== GLOBAL STYLE BEGIN ===== -->*/ 
*, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gradient-primary: linear-gradient(135deg, #00A0E9, #9B59B6);
            --gradient-primary-reverse: linear-gradient(135deg, #9B59B6, #00A0E9);
            --color-bg: #0a0e27;
            --color-bg-alt: #080b1a;
            --color-text: #ffffff;
            --color-text-muted: rgba(255, 255, 255, 0.6);
            --color-text-dim: rgba(255, 255, 255, 0.4);
            --border-color: rgba(255, 255, 255, 0.08);
            --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
        }
        body {
            font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            color: #ffffff;
            overflow-x: hidden;
			background: #0a0e27;
        }
	/* ===== RESPONSIVE GLOBAL STYLE BEGIN ===== */
 @media (max-width: 768px) {
 	.btn {
    	padding: 14px 28px;
        font-size: 14px;
	}
}
/* ===== RESPONSIVE GLOBAL STYLE END ===== */
/*<!-- ===== GLOBAL STYLE END ===== -->*/ 



/*<!-- ===== HEADER BEGIN ===== -->*/
.header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 15px 8%;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s ease;
        }

        .header__container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 100%;
            gap: 30px;
        }

        /* Logo */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .logo:hover {
            transform: scale(1.02);
        }

        .logo__icon {
            flex-shrink: 0;
        }

        .logo__icon img {
            width: 100px;
            height: auto;
            display: block;
            filter: drop-shadow(0 4px 12px rgba(0, 160, 233, 0.3));
            transition: filter 0.3s ease;
        }

        .logo:hover .logo__icon img {
            filter: drop-shadow(0 6px 20px rgba(155, 89, 182, 0.4));
        }

        .logo__text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .logo__title {
            font-size: 20px;
            font-weight: 800;
            background: linear-gradient(135deg, #00A0E9, #9B59B6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }

        .logo__subtitle {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
            letter-spacing: 0.3px;
        }
            .btn-cta {
                display: block;
            }
 /* CTA Button */
        .btn-cta {
            padding: 12px 28px;
            background: linear-gradient(135deg, #00A0E9, #9B59B6);
            color: #fff;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            font-family: inherit;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 160, 233, 0.3);
            white-space: nowrap;
        }

        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 160, 233, 0.5);
        }
/* Mobile CTA in nav */
            .nav__cta-mobile {
                display: none;
                margin-top: 20px;
                padding: 16px;
                background: linear-gradient(135deg, #00A0E9, #9B59B6);
                border: none;
                border-radius: 12px;
                color: #fff;
                font-size: 16px;
                font-weight: 600;
                font-family: inherit;
                cursor: pointer;
                text-align: center;
                width: 100%;
            }
 /* Contacts */
        .header__contacts {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 6px;
            flex-shrink: 0;
        }

        .contact-link {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            background: linear-gradient(90deg, #00A0E9, #9B59B6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .contact-link:hover {
            opacity: 0.85;
        }

        .contact-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            -webkit-text-fill-color: currentColor;
        }

        .messengers {
            display: flex;
            gap: 8px;
        }

        .messenger-link {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .messenger-link:hover {
            background: linear-gradient(135deg, #00A0E9, #9B59B6);
            border-color: transparent;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 160, 233, 0.3);
        }

        .messenger-link svg {
            width: 16px;
            height: 16px;
            fill: #fff;
        }
/* ===== RESPONSIVE HEADER BEGIN ===== */
@media (max-width: 1024px) {
	.header {
    	padding: 15px 5%;
    }
	.header__contacts {
        display: none;
   	}
}
@media (max-width: 992px) {
	.btn-cta {
		display: none;
    }
}
 @media (max-width: 768px) {
	.header {
    	padding: 12px 5%;
	}
	.logo__icon img {
    	width: 80px;
	}
	.logo__title {
    	font-size: 16px;
	}
	.logo__subtitle {
		font-size: 11px;
	}
}
 @media (max-width: 480px) {
	.logo__text {
    	display: none;
	}
	.logo__icon img {
    	width: 70px;
	}
}
/* ===== RESPONSIVE HEADER END ===== */

/*<!-- ===== HEADER END ===== -->*/


/* ===== FOOTER BEGIN ===== */
.site-footer {
    position: relative;
    background: #080b1a;
    padding: 70px 8% 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #00A0E9, #9B59B6, transparent);
    opacity: 0.5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 30px;
}

/* Logo Column */
.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo__icon {
    width: 44px;
    height: 44px;
   /* border-radius: 10px;*/
   /* background: linear-gradient(135deg, #00A0E9, #9B59B6);*/
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-logo__icon img {
    width: 100%;
    height: auto;
    /*border-radius: 10px;*/
}

.footer-logo__text {
    display: flex;
    flex-direction: column;
}

.footer-logo__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-logo__subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-logo__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-top: 8px;
}

/* Navigation Column */
.footer-nav__title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav__link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-nav__link:hover {
    color: #fff;
    transform: translateX(4px);
}

.footer-nav__link::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-nav__link:hover::before {
    opacity: 1;
}

/* Contacts Column */
.footer-contacts__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contacts__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contacts__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(0, 160, 233, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contacts__icon svg {
    width: 18px;
    height: 18px;
    fill: #00A0E9;
}

.footer-contacts__link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-contacts__link:hover {
    color: #00A0E9;
}

.footer-contacts__label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

/* Social/Messengers */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;

    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social__link:hover {
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    border-color: transparent;
    transform: translateY(-2px);
}

.footer-social__link svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copyright a {
    color: #00A0E9;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal__link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal__link:hover {
    color: #9B59B6;
}

/* Gradient CTA Button in Footer */
.footer-cta {
    margin-top: 12px;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 160, 233, 0.25);
}

.btn-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 160, 233, 0.4);
}

.btn-footer svg {
    width: 16px;
    height: 16px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.btn-footer:hover svg {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 5% 20px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-logo__brand {
        justify-content: center;
    }
    
    .footer-nav__list {
        align-items: center;
    }
    
    .footer-contacts__item {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-logo__icon {
        width: 40px;
        height: 40px;
    }
    
    .footer-logo__title {
        font-size: 16px;
    }
    
    .btn-footer {
        width: 100%;
        justify-content: center;
    }
}	

/* ===== FOOTER END ===== */



/*-- ===== LEAD MAGNET HOME SECTION BEGIN ===== */
.lead-magnet-section {
    position: relative;
    padding: 100px 8%;
    background: #0a0e27;
    overflow: hidden;
}

.lead-magnet-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 160, 233, 0.12) 0%, rgba(10, 14, 39, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lead-magnet-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Content */
.lead-magnet-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: #ffffff;
    margin: 16px 0;
    line-height: 1.2;
}

.lead-magnet-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0, 160, 233, 0.1);
    border: 1px solid rgba(0, 160, 233, 0.3);
    border-radius: 20px;
    color: #00A0E9;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-magnet-label svg {
    width: 14px;
    height: 14px;
    fill: #00A0E9;
}

.lead-magnet-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.lead-magnet-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lead-magnet-benefits li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.lead-magnet-benefits li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.lead-magnet-benefits li::after {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

/* Form Card */
.lead-magnet-form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    transition: transform 0.3s ease;
}

.lead-magnet-form-card:hover {
    transform: translateY(-4px);
}

.lead-magnet-form-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(0, 160, 233, 0.5), rgba(155, 89, 182, 0.5));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.lead-magnet-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.lead-magnet-form .form-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-bottom: 24px;
}

.lead-magnet-form input {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', system-ui, sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.lead-magnet-form input:focus {
    border-color: #00A0E9;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.15);
}

.lead-magnet-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.lead-magnet-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 160, 233, 0.3);
    font-family: 'Inter', system-ui, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.lead-magnet-btn svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    transition: transform 0.3s ease;
}

.lead-magnet-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 160, 233, 0.5);
}

.lead-magnet-btn:hover svg {
    transform: translateX(4px);
}

.form-privacy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    margin-top: 16px;
    line-height: 1.4;
}

.form-privacy a {
    color: #00A0E9;
    text-decoration: none;
}

/* Success State */
.lead-magnet-form.success .form-fields {
    display: none;
}

.lead-magnet-form .success-message {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.lead-magnet-form.success .success-message {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.success-message h4 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 8px;
}

.success-message p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

/* Responsive */
@media (max-width: 900px) {
    .lead-magnet-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .lead-magnet-benefits {
        align-items: center;
    }
    .lead-magnet-form-card {
        padding: 30px 20px;
    }
}	
/*-- ===== LEAD MAGNET HOME SECTION END ===== */


/* ===== FINAL CTA HOME SECTION BEGIN===== */
.final-cta {
    position: relative;
    padding: 100px 8%;
    background: #0a0e27;
    overflow: hidden;
    text-align: center;
}

/* Background Glow Effect */
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 160, 233, 0.15) 0%, rgba(155, 89, 182, 0.05) 50%, rgba(10, 14, 39, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.final-cta__container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

/* Typography */
.final-cta__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #00A0E9;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: rgba(0, 160, 233, 0.1);
    border-radius: 20px;
}

.final-cta__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.final-cta__title span {
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Buttons Container */
.final-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Main Gradient Button */
.btn-final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(135deg, #00A0E9, #9B59B6);
    color: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 160, 233, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-final:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.4);
}

/* Shine effect on hover */
.btn-final::after {
    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;
}

.btn-final:hover::after {
    left: 100%;
}

/* Messengers Row */
.final-cta__messengers {
    display: flex;
    gap: 16px;
    align-items: center;
}

.final-cta__msg-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.final-cta__msg-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: #00A0E9;
}

.final-cta__msg-link svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.final-cta__msg-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 12px;
}

/* Reassurance Text */
.final-cta__note {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .final-cta { padding: 80px 5%; }
    .btn-final { width: 100%; }
    .final-cta__msg-text { display: none; }
}
/* ===== FINAL CTA HOME SECTION END===== */





 /* ===== CONTACTS PAGE BEGIN ===== */
        .contacts-hero {
            padding: 140px 8% 80px;
            background: 
                radial-gradient(ellipse at top, rgba(0, 160, 233, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at bottom right, rgba(155, 89, 182, 0.1) 0%, transparent 50%);
            text-align: center;
        }

        .contacts-hero__label {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(0, 160, 233, 0.1);
            border: 1px solid rgba(0, 160, 233, 0.3);
            border-radius: 20px;
            color: #00A0E9;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .contacts-hero__title {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            margin-bottom: 16px;
            line-height: 1.1;
        }

        .contacts-hero__title span {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .contacts-hero__subtitle {
            font-size: 18px;
            color: var(--color-text-muted);
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .contacts-hero__response {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--color-text-muted);
            background: rgba(255, 255, 255, 0.03);
            padding: 10px 20px;
            border-radius: 30px;
            border: 1px solid var(--border-color);
        }

        .contacts-hero__response svg {
            width: 18px;
            height: 18px;
            fill: #00A0E9;
        }

        /* Main Grid */
        .contacts-main {
            padding: 0 8% 80px;
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 40px;
        }

        /* Contact Form Card */
        .contact-form-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 40px;
            backdrop-filter: blur(12px);
        }

        .contact-form-card__header {
            margin-bottom: 32px;
        }

        .contact-form-card__title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .contact-form-card__desc {
            color: var(--color-text-muted);
            font-size: 15px;
        }

        .form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form__group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form__label {
            font-size: 14px;
            font-weight: 500;
            color: var(--color-text);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .form__label .required {
            color: #ff6b6b;
        }

        .form__input,
        .form__textarea,
        .form__select {
            width: 100%;
            padding: 16px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: #fff;
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
            outline: none;
			
        }

        .form__input:focus,
        .form__textarea:focus,
        .form__select:focus {
            border-color: #00A0E9;
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(0, 160, 233, 0.15);
        }

        .form__input::placeholder,
        .form__textarea::placeholder {
            color: var(--color-text-dim);
        }

        .form__textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form__select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2300A0E9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 16px center;
            padding-right: 40px;
        }
.form__select option{
	background: #0a0e27!important;
}
        .form__checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
        }

        .form__checkbox input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: #00A0E9;
            cursor: pointer;
        }

        .form__checkbox-text {
            font-size: 13px;
            color: var(--color-text-muted);
            line-height: 1.5;
        }

        .form__checkbox-text a {
            color: #00A0E9;
            text-decoration: none;
        }

        .form__checkbox-text a:hover {
            text-decoration: underline;
        }

        .form__submit {
            margin-top: 8px;
            padding: 18px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 160, 233, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .form__submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 160, 233, 0.5);
        }

        .form__submit svg {
            width: 18px;
            height: 18px;
            fill: #fff;
            transition: transform 0.3s ease;
        }

        .form__submit:hover svg {
            transform: translateX(4px);
        }

        /* Contact Info Card */
        .contact-info-card {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .info-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 28px;
        }

        .info-card__title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .info-card__title svg {
            width: 22px;
            height: 22px;
            fill: #00A0E9;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 16px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .contact-item__icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(0, 160, 233, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item__icon svg {
            width: 20px;
            height: 20px;
            fill: #00A0E9;
        }

        .contact-item__content {
            flex: 1;
        }

        .contact-item__label {
            font-size: 12px;
            color: var(--color-text-dim);
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-item__value {
            font-size: 15px;
            font-weight: 500;
            color: #fff;
        }

        .contact-item__value a:hover {
            color: #00A0E9;
        }

        .contact-item__meta {
            font-size: 13px;
            color: var(--color-text-muted);
            margin-top: 4px;
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 12px;
            margin-top: 8px;
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--gradient-primary);
            border-color: transparent;
            transform: translateY(-3px);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
            fill: #fff;
        }

        /* Working Hours */
        .working-hours__list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .working-hours__item {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-color);
            font-size: 14px;
        }

        .working-hours__item:last-child {
            border-bottom: none;
        }

        .working-hours__day {
            color: var(--color-text-muted);
        }

        .working-hours__time {
            font-weight: 600;
            color: #fff;
        }

        .working-hours__item.active .working-hours__time {
            color: #00A0E9;
        }

        .working-hours__item.active::after {
            content: '●';
            color: #00A0E9;
            font-size: 10px;
            margin-left: 8px;
        }

        /* Map Section */
        .contacts-map {
            padding: 0 8% 80px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .map-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            overflow: hidden;
        }

        .map-card__header {
            padding: 24px 28px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .map-card__title {
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .map-card__title svg {
            width: 20px;
            height: 20px;
            fill: #00A0E9;
        }

        .map-card__address {
            font-size: 14px;
            color: var(--color-text-muted);
        }

        .map-container {
            height: 400px;
            background: linear-gradient(135deg, #0d1842, #0a0e27);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .map-placeholder {
            text-align: center;
            padding: 40px;
        }

        .map-placeholder__icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        .map-placeholder__icon svg {
            width: 40px;
            height: 40px;
            fill: #fff;
        }

        .map-placeholder__text {
            font-size: 16px;
            color: var(--color-text-muted);
            margin-bottom: 20px;
        }

        .map-placeholder__btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: #fff;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .map-placeholder__btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #00A0E9;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.9; }
        }

        /* Success Message */
        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .form.success .form-fields { display: none; }
        .form.success .form-success { display: block; }

        .success-icon {
            width: 72px;
            height: 72px;
            margin: 0 auto 24px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: bounce 0.6s ease;
        }

        .success-icon svg {
            width: 36px;
            height: 36px;
            fill: #fff;
        }

        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .form-success__title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .form-success__text {
            color: var(--color-text-muted);
            font-size: 15px;
            margin-bottom: 24px;
        }

 /* ===== CONTACTS PAGE END ===== */






/* End */
/* /local/templates/my-new/components/bitrix/menu/top-menu/style.css?177878112310346 */
/* /local/templates/my-new/template_styles.css?177903643036783 */
