body{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    color: #E1E7EA;
    line-height: 1.5;
    font-weight: 400;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a{
    color: inherit;
}

.conteiner{
    max-width: 1240px;
    padding: 0px 20px;
    margin: 0 auto;
}

.conteiner-right{
    padding-left: max(20px, calc((100vw - 1240px) / 2 + 20px));
}

.logo{
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 2px;
}

.btn{
    background-color: rgba(189, 254, 109, 1);
    padding: 10px 20px;
    color: rgba(13, 13, 15, 1);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.green-text{
    color: rgba(189, 254, 109, 1);
}



.header{
    background-color: #0D0D0F;
}

.header-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;

    position:relative;
    z-index:1002;
}


 
/*NAV*/

.nav-list{
    display: flex;
    column-gap: 34px;
    font-weight: 600;
}

.nav-link:hover {
    color: #a4ff3d;

}

.header-contact{
    display: flex;
    column-gap: 10px;
    align-items: center;
}



/* 1. Главный контейнер */
.header-content {
    display: grid;
    overflow: hidden;
}

/* 2. Блок с текстом (левая часть) */
.header-text {
    grid-area: 1 / 1; /* Помещаем в первую ячейку сетки */
    z-index: 2; /* Текст поверх картинки */
    padding-top: 99px;
    max-width: 775px; /* Ограничиваем ширину текста */
}

/* 3. Блок с картинкой (правая часть) */
.header-image {
    grid-area: 1 / 1; /* Помещаем в ТУ ЖЕ САМУЮ ячейку, что и текст */
    z-index: 1; /* Картинка под текстом */
    justify-self: end; /* Прижимаем блок к правому краю */
    align-self: end; /* Прижимаем блок к нижнему краю */
}
/* 4. Сама картинка */
.header-image img {
    display: block;
    max-width: 100%; /* Картинка не вылезет за пределы экрана */
    height: auto; /* Высота автоматически подстраивается под ширину (пропорции сохраняются) */
    max-height: 90vh; /* (Опционально) чтобы картинка не была гигантской на очень больших экранах */
}

.subtitle{
    font-size: 32px;
    margin-bottom: 20px;

}

.green-outline{
    /* 1. Настройки шрифта (из блока Typography) */
    font-family: 'Bebas Neue Cyrillic', sans-serif; /* Обязательно убедись, что шрифт подключен в HTML/CSS! */
    font-size: 24px; 
    line-height:1;
    letter-spacing: -3px;

    /* 2. Цвет заливки (из блока Colors) */
    color: #1A1A24; /* Цвет фона, чтобы внутри буквы были темными */
    /* Альтернатива: можно написать color: transparent; */

    /* 3. Обводка (из блока Borders) */
    -webkit-text-stroke: 1.5px #BDFE6D;
}

.title{
    font-weight: 800;
    font-size: 50px;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.header-content p{
    max-width: 726px;
    font-size: 19px;
    color: #A0A0A5;
    margin-bottom: 40px;
}

.header-buttons{
    display: flex;
    gap: 19px;
    
}

.header-buttons a{
    font-size: 18px;
    padding: 15px 35px;
}


.about{
    padding: 100px 0px 207px;
    background-color: #0D0D0F;
}

.title-section{
    text-align: center;
    font-weight: 800;
    margin-bottom: 20px;
    font-size: 40px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.about-information{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-content{
    max-width: 554px;

}

.title-h3{
    font-weight: 800;
    font-size: 32px;
    color: #FFFFFF;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-content p{
    color: #E1E7EA;
    font-size: 16px;
}

.about-services{
    display: flex;
    gap: 30px;
}


.services-card{
    background: linear-gradient(
        135deg,
        #161619 0%,
        #272732 100%
    );

    border: 1px solid #2A2A2E;
    border-radius: 8px;

    padding: 40px 30px;
    max-width: 380px;
    
}

.card-title{
    font-weight: 800;
    font-size: 20px;
    color: #BDFE6D;
    margin-bottom: 14px;

}


.services-card p{
    margin-bottom: 38px;
}

.services-link{
    display: block;
    padding: 10px 30px;
    color: #FFFFFF;
    border: 2px solid #E1E7EA;
    border-radius: 42px;
    text-align: center;
}

/*problems*/
.problems{
    background-color: #1C1C21;
    padding: 100px 0px;
}

.problems h2{
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
}

.problems-content{
    display: flex;
    gap: 25px;
}

.problems-card{
    padding: 40px 30px;
    background-color: #161619;
    border: 1px solid #2A2A2E;
    border-radius: 8px;

}

.problems-title{
    font-weight: 800;
    font-size: 20px;
    color: #BDFE6D;
    margin-bottom: 15px;

}

.problems-card p{
    color: #E1E7EA;

}


.benefits{
    padding: 100px 0px 180px;
    background-color: #121215;
}

.benefits h2{
    margin-bottom: 48px;
}

.benefits__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    margin-bottom: 80px;
}

.benefits__left {
    position: relative;
    min-height: 212px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    overflow: hidden;
}

.benefits__number {
    position: absolute;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    font-size: 359px;
    font-style: italic;
    font-weight: 800;
    color: rgba(180, 255, 90, .05);

    pointer-events: none;
    user-select: none;
}

.benefits__label {
    position: relative;
    z-index: 2;

    padding: 12px 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.benefits__title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.benefits__text {
    margin-bottom: 20px;
}

.benefits__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits__list li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 18px;
    color: #d6d6d6;
}

.benefits__list li::before {
    content: "➜";
    position: absolute;
    left: 0;
    top: 2px;

    color: #b6ff5b;
    font-size: 14px;
    font-weight: 700;
}


.benefits__item--reverse {
    direction: rtl;
}

.benefits__item--reverse .benefits__right {
    direction: ltr;
}

.benefits__item--reverse .benefits__left {
    direction: ltr;
}

/*cases*/

.cases{
    background-color: #0D0D0F;
    padding: 100px 0px 130px;
}

.cases h2{
    margin-bottom: 30px;
}


.cases-list {
    margin-top: 50px;
}

.case-card {

    background: #151518;

    border-left: 4px solid #a4ff3d;

    border-radius: 8px;

    padding: 57px 40px 40px;

}


.case-info h3 {

    margin-bottom: 10px;
    font-weight: 800;
    font-size: 18px;

    color: #fff;

}


.date {
    color: #A0A0A5;
}


.case-stats {

    margin-top: 30px;

    display: flex;
    justify-content: space-between;

}

.stat strong {
    color: #a4ff3d;
    font-size: 40px;
    font-weight: 800;

}

.stat p {
    text-align: center;
    margin-top: 8px;
    color: #A0A0A5;
    font-size: 14px;
    text-transform: uppercase;

}

.case-img{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.case-img-item{
    flex: 1;
}


.case-img-item img{
    display: block;
    width: 100%;
    border-radius: 8px;
}

.cases__labels{
    display: flex;
    justify-content: space-between;
}


.cases__labels span{
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.cases-site{
    margin-top: 229px;
}


.cases-site-subtitle{
    max-width: 777px;
    margin: 30px auto;
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    line-height: 1.2;
}


.cases-site-desc{
    font-size: 19px;
    color: #A0A0A5;
    text-align: center;
    margin-bottom: 30px;

}

.cases-site-list{
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 130px;
    

}

.cases-site-card{
    max-width: 366px;
    padding: 38px 40px 34px 30px;
    
}


.cases-btn{
    display: block;
    margin: 0 auto;
    padding: 15px 35px;
}


.works-slider {
    display: none;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 40px;
}

.works-slider.active {
    display: block;
}

.worksSwiper {
    width: 100%;
    overflow: hidden;
}

.worksSwiper .swiper-wrapper {
    align-items: center;
}

.worksSwiper .swiper-slide {
    width: auto;
}

.worksSwiper .swiper-slide img {
    width: 700px;
    display: block;
    border-radius: 20px;
}


.contacts{
    background-color: #0F0F11;
    padding: 100px 0px;
}

.contacts-text{
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    color: #A0A0A5;
    
}

.contacts-text p{
    margin-bottom: 30px;
}

.contacts-text span{
    font-weight: 700;
    color: #E1E7EA;
}

.contacts-text {
    padding: 15px 35px;
}



.footer{
    background-color: #080809;
    padding: 40px 0px;
}


.title-footer{
    font-weight: 800;
    font-size: 24px;
    line-height: 2;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 20px;
}

.footer-contact{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

.footer-contact a{
    color: #E1E7EA;
}


.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:320px;
    height:100vh;

    background:#0D0D0F;

    padding:100px 30px 30px;

    display:flex;
    flex-direction:column;
    gap:40px;

    transition:.3s ease;

    z-index:998;
}


.mobile-menu nav{
    display:flex;
    flex-direction:column;
    gap:25px;
}


.mobile-menu a{
    font-size:20px;
    font-weight:600;
}


.mobile-menu.active{
    right:0;
}

.burger{
    display:none;

    position:fixed;
    right:20px;
    top:20px;

    z-index:1003;

    flex-direction:column;
    justify-content:space-between;

    width:28px;
    height:22px;

    background:none;
    border:none;
    padding:0;

    cursor:pointer;
}

.burger span{
    display:block;
    width:100%;
    height:3px;
    background:#BDFE6D;
    border-radius:5px;
}

.burger.active span:nth-child(1){
    transform:rotate(45deg) translateY(10px);
}

.burger.active span:nth-child(2){
    opacity:0;
}

.burger.active span:nth-child(3){
    transform:rotate(-45deg) translateY(-10px);
}


.burger span{
    transition:.3s;
}


.mobile-menu{
    display:none;
}


/*Media*/





@media (max-width: 1350px){
    .header-text{
        max-width:560px;
    }

    .title{
        font-size:42px;
    }

    .header-content p{
        font-size:17px;
    }

    .header-buttons{
        flex-wrap:wrap;
    }
}


@media (max-width: 1200px){



    .nav,
    .header-contact{
        display:none;
    }

    .mobile-menu{
        display:flex;
        box-sizing:border-box;
    }


    .burger{
        display:flex;

    }
    
    .conteiner,
    .conteiner-right{
        max-width:100%;
        padding:0 20px;
    }

    
    .services-link{
        padding:12px 10px;
        font-size:14px;
        line-height:1.4;
    }



    
}

@media(max-width:1100px){

    .header-content{
        display:flex;
        flex-direction:column-reverse;
    }

    .header-content p{
        text-align:center;
        max-width:700px;
        margin:0 auto 40px;
    }

    .header-image{
        align-self:center;
        margin-bottom:30px;
    }

    .header-image img{
        max-width:520px;
        width:100%;
    }

    .header-text{
        max-width:100%;
        text-align:center;
        padding-top:0;
    }

    .header-content p{
        text-align:center;
        max-width:700px;
        margin:0 auto 40px;
        }

    .header-buttons{
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
    }

    


}





@media (max-width:1000px){

    .about-information{
        flex-direction:column;
        gap:30px;
    }

    .about-content{
        max-width:100%;
    }

    .title-h3{
        font-size:28px;
        text-align:left;
        line-height:1.2;
    }
    
    .about-content p{
        text-align:left;
        line-height:1.7;
    }

    .about-img{
        width:100%;
    }
    
    .about-img img{
        width:100%;
        height:auto;
        display:block;
    }

    .about-services{
        margin-top:40px;
        flex-direction:column;
    }

    .services-card{
        max-width:100%;
        padding:30px 20px;
    }

    .services-card p{
        margin-bottom:20px;
    }

    .services-link{
        padding:12px 18px;
        font-size:14px;
        line-height:1.4;
    }

    .services-card{
        flex:1;
        max-width:none;
    }

    .problems{
        padding:60px 0;
    }

    .problems h2{
        margin-bottom:30px;
        text-align:left;
        font-size:32px;
    }

    .problems-content{
        display:flex;
        flex-direction:column;
        gap:16px;
    }

    .problems-card{
        padding:24px 20px;
    }

    .problems-title{
        font-size:18px;
        margin-bottom:10px;
    }

    .problems-card p{
        font-size:15px;
        line-height:1.6;
    }

}

@media(max-width:768px){

    .header-buttons{
        flex-direction:column;
    }
    
    .header-buttons .btn{
        width:100%;
    }
    
    }

@media (max-width:768px){



    .benefits{
        padding:60px 0;
    }

    .benefits h2{
        text-align:left;
        font-size:32px;
        margin-bottom:40px;
    }

    .benefits__item{
        grid-template-columns:1fr;
        gap:24px;
        margin-bottom:50px;
    }

    .benefits__item--reverse{
        direction:ltr;
    }

    .benefits__left{
        min-height:160px;
    }

    .benefits__number{
        font-size:180px;
    }

    .benefits__label{
        text-align:center;
        padding:0 20px;
        font-size:14px;
    }

    .benefits__title{
        font-size:24px;
        margin-bottom:14px;
    }

    .benefits__text{
        margin-bottom:18px;
        line-height:1.6;
    }

    .benefits__list li{
        padding-left:28px;
        margin-bottom:14px;
        line-height:1.5;
    }

    .cases{
        padding:60px 0;
    }

    .cases h2{
        text-align:left;
        font-size:32px;
        margin-bottom:20px;
    }

    .cases .title-section{
        text-align:left;
    }

    .case-card{
        padding:24px 20px;
    }

    .case-info h3{
        font-size:18px;
        line-height:1.4;
    }

    .date{
        font-size:14px;
    }

    .case-stats{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
        margin-top:24px;
    }

    .stat{
        text-align:center;
    }

    .stat strong{
        font-size:28px;
    }

    .case-img{
        flex-direction:column;
        gap:16px;
    }

    .cases-list{
        margin-top:35px;
    }


    .cases-site{
        margin-top:80px;
    }

    .cases-site .title-section{
        text-align:left;
        font-size:32px;
    }

    .cases-site-subtitle{
        margin:20px 0;
        font-size:24px;
        text-align:left;
    }

    .cases-site-desc{
        text-align:left;
        font-size:16px;
        margin-bottom:30px;
    }

    .cases-site-list{
        flex-direction:column;
        gap:20px;
        margin-bottom:50px;
    }

    .cases-site-list .services-card{
        max-width:100%;
        padding:25px 20px;
    }

    .cases-site .card-title{
        font-size:20px;
    }

    .cases-site .services-card p{
        margin-bottom:0;
        line-height:1.6;
    }

    .works-slider{
        margin-top:40px;
        margin-bottom:30px;
    }

    .worksSwiper .swiper-slide img{
        width:90vw;
        border-radius:12px;
    }

    .cases-btn{
        width:100%;
        padding:15px;
        font-size:15px;
    }

    .cases-site .title-section{
        margin-bottom:15px;
        font-size:28px;
    }

    .contacts{
        padding:60px 0;
    }

    .contacts .title-section{
        text-align:left;
        font-size:32px;
        margin-bottom:24px;
    }

    .contacts-text{
        max-width:100%;
        padding:0;
        text-align:left;
    }

    .contacts-text p{
        margin-bottom:20px;
        line-height:1.6;
    }

    .contacts-text .btn{
        display:block;
        width:100%;
        text-align:center;
        padding:15px;
        margin-top:10px;
    }

    .footer{
        padding:30px 0;
    }

    .title-footer{
        font-size:22px;
        margin-bottom:25px;
        line-height:1;
    }
    


}

@media (max-width: 450px) {
    .header-buttons a{
        font-size: 15px;
        padding: 15px 20px;
    }

    .title{
        font-size: 35px;
    }
    
}