/* ===== BASE STYLES ===== */
        :root {
            --bg-dark: #121212;
            --bg-gray: #1E1E1E;
            --primary-green: #4CAF50;
            --secondary-green: #388E3C;
            --text-light: #E0E0E0;
            --text-gray: #9E9E9E;
            --text-dark: #616161;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', sans-serif;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            position: relative;
        }

        h1, h2, h3, h4 {
            color: white;
            margin-bottom: 20px;
            font-weight: 700;
        }

        h1 { font-size: 2.8rem; } /* Уменьшили размер шрифта */
        h2 { font-size: 2.5rem; text-align: center; }
        h2 span { color: var(--primary-green); }
        h3 { font-size: 1.8rem; }
        h4 { font-size: 1.4rem; }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-green);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn:hover {
            background-color: var(--secondary-green);
            transform: translateY(-2px);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            color: white;
            overflow: hidden;
        }

        .hero__video-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .hero__video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(18, 18, 18, 0.7) 0%, rgba(26, 62, 30, 0.8) 100%);
            z-index: 2;
        }

        .hero__container {
            position: relative;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 50px;
            height: 100%;
        }

        .hero__content {
            /* background: #1f201e94; */
            flex: 0 0 60%;
            max-width: 60%;
            padding: 20px;
            border-radius: 12px;
        }

        .hero__title {
            font-size: 2.8rem; /* Уменьшили размер шрифта */
            line-height: 1.2;
            margin-bottom: 25px;
        }

        .hero__title span {
            color: var(--primary-green);
        }

        .hero__intro {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.6;
            color: var(--text-light);
            opacity: 0.9;
        }

        .hero__cta {
            display: flex;
            gap: 15px;
        }

        .btn--cta {
            background-color: var(--primary-green);
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: 600;
            box-shadow: 0 4px 20px rgba(76, 175, 80, 0.4);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn--cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
        }

        .btn--secondary {
            background-color: transparent;
            border: 2px solid rgba(255,255,255,0.3);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .btn--secondary:hover {
            background-color: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.5);
        }

        .hero__projects {
            flex: 0 0 40%;
            max-width: 40%;
            /* background: rgba(30, 30, 30, 0.85); */
            border-radius: 15px;
            padding: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(76, 175, 80, 0.22);
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
        }

        .projects__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .projects__title {
            font-size: 1.5rem;
            margin: 0;
            color: var(--primary-green);
        }

        .projects__nav {
            display: flex;
            gap: 10px;
        }

        .slider__arrow {
            width: 35px;
            height: 35px;
            border-radius: 50%;
            background: rgba(76, 175, 80, 0.1);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .slider__arrow:hover {
            background: rgba(76, 175, 80, 0.3);
            transform: scale(1.1);
        }

        .projects__slider {
            position: relative;
            min-height: 450px;
        }

        .project__slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .project__slide.active {
            opacity: 1;
            position: relative;
        }

        .project__image {
            height: 250px;
            border-radius: 10px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #333;
        }

        .project__video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }

        .project__image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
        }

        .project__tags {
            position: absolute;
            bottom: 15px;
            left: 15px;
            z-index: 2;
            display: flex;
            gap: 8px;
        }

        .project__tag {
            background: rgba(76, 175, 80, 0.9);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .project__info h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .project__info p {
            color: var(--text-gray);
            line-height: 1.5;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .project__buttons {
            display: flex;
            gap: 10px;
        }

        .btn--details {
            background: rgba(76, 175, 80, 0.1);
            color: var(--primary-green);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn--details:hover {
            background: rgba(76, 175, 80, 0.2);
        }

        .btn--order {
            background: var(--primary-green);
            color: white;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .btn--order:hover {
            background: var(--secondary-green);
        }

        .slider__dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 25px;
        }

        .slider__dots .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider__dots .dot.active {
            background: var(--primary-green);
            transform: scale(1.3);
        }

        .hero__scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            animation: bounce 2s infinite;
            color: rgba(255,255,255,0.7);
            font-size: 1.5rem;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
            40% { transform: translateY(-20px) translateX(-50%); }
            60% { transform: translateY(-10px) translateX(-50%); }
        }

        /* ===== АДАПТИВНОСТЬ ===== */
        @media (max-width: 1200px) {
            .hero__container {
                flex-direction: column;
                padding-top: 120px;
                padding-bottom: 60px;
            }
            
            .hero__content {
                flex: 1;
                max-width: 100%;
                text-align: center;
                margin-bottom: 50px;
            }
            
            .hero__cta {
                justify-content: center;
            }
            
            .hero__advantages {
                justify-content: center;
            }
            
            .hero__projects {
                flex: 1;
                width: 100%;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }
            
            h1 { font-size: 2.3rem; }
            h2 { font-size: 2rem; }
            
            .hero {
                min-height: auto;
                height: auto;
            }
            
            .hero__title {
                font-size: 2.3rem;
            }
            
            .hero__cta {
                flex-direction: column;
            }
            
            .hero__projects {
                width: 100%;
            }
            
        }