 .hero-bg {
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 100%), url('/imgs/generated_sd_8.webp') center/cover no-repeat;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .benefit-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        .process-step::after {
            content: '';
            position: absolute;
            right: -20px;
            margin: 20px;
            width: 3px;
            height: 100%;
        }
        .process-step:last-child::after {
            display: none;
        }
        .stat-card:hover .stat-icon {
            transform: scale(1.1);
        }
        .contact-form input, .contact-form textarea {
            transition: all 0.3s ease;
        }
        .contact-form input:focus, .contact-form textarea:focus {
            border-color: #0ea5e9;
            box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.2);
        }
        .map-container {
            filter: grayscale(30%);
            border-radius: 12px;
            overflow: hidden;
        }
        @media (max-width: 768px) {
            .process-step::after {
                display: none;
            }
            .hero-bg {
                background-position: 65% center;
            }
        }
        .word-connector {
            display: inline-block;
            margin-left: -0.25em;
            /* margin-right: -0.25em; */
        }
        
        .modal {
            transition: all 0.3s ease;
            opacity: 0;
            pointer-events: none;
        }
        
        .modal.active {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }
        
        .modal-content {
            transform: translateY(-20px);
            transition: all 0.3s ease;
            max-height: 70vh;
            overflow-y: auto;
        }
        
        .modal.active .modal-content {
            transform: translateY(0);
        }
        /* Стили для скроллбара в модальном окне */
        ::-webkit-scrollbar {
            width: 0px;
        }
        body.modal-open {
            overflow: hidden;
            position: relative;
            height: 100%;
        }

        body.modal-open::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            z-index: -1;
        }

         .swiper-container {
            padding: 30px 0;
        }
        .swiper-slide {
            height: auto;
        }
        .swiper-button-next, .swiper-button-prev {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            cursor: pointer;
            background: white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .swiper-button-next {
            right: -50px;
        }
        .swiper-button-prev {
            left: -50px;
        }
        .swiper-button-next::after, .swiper-button-prev::after {
            display: none; /* Hide default arrows */
        }
        @media (max-width: 768px) {
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
        }

        #videoModal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            justify-content: center;
            align-items: center;
        }
        
        .video-modal-content {
            width: 90%;
            max-width: 900px;
            position: relative;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
        }
        
        .close-video-modal {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
            background: #0f172a;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-line {
            width: 100%;
            height: 2px;
            background-color: #374151; /* Цвет линии */
            margin-top: -5px;
        }

         .gallery-overlay {
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .gallery-overlay.active {
            opacity: 1;
            pointer-events: all;
        }
        .gallery-container {
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .gallery-image {
            height: 70vh;
        }
        @media (max-width: 768px) {
            .gallery-image {
                height: 60vh;
            }
        }
        .gallery-indicator {
            transition: all 0.3s ease;
        }
        .gallery-indicator.active {
            transform: scale(1.2);
            background-color: #FBBF24;
        }