@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@200..900&display=swap');
/* СБРОС / БАЗА */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;

}
.mobie_txt{
    display: none;
}
body {
     font-family: "Unbounded", sans-serif;
    color: #ffffff;
    background-color: #000000;
    width: 100%;

}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
justify-content: center;
align-items: center;
   
width: 100%;
    background:
        linear-gradient(180deg,rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 1) 100%),
        url("../assets/images/bg.png") no-repeat center top / cover;

background-repeat: no-repeat;
background-size: cover;


   
}

/* ОБЩЕЕ */

main {
    flex: 0 0 auto;
}

.section-title {
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(28px, 2.3vw, 55px);
    margin: 0 0 24px;
}

/* КНОПКИ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 26px;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
    background: none;
}

.btn--primary {
 background-image: url("../assets/images/bg-2.png");
 background-repeat: no-repeat;
 background-size: 100% 100% ;
 color: white;

}

.arrow-img {
    width: 24px;
    margin-left: 10px;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 32px rgba(255, 0, 0, 0.8);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 0 16px rgba(255, 0, 0, 0.6);
}

/* ПЕРВЫЙ ЭКРАН */

.hero-why {
    min-height: 100vh;          /* чтобы вся секция = экран на ПК */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 24px 16px 32px;
    width: 90%;
}

/* верх: текст слева, лого справа */

.hero-why__top {
    display: flex;
justify-content: space-between;
    gap: 24px;
}

.hero {
    display: flex;
}

.hero__content {

}

.hero__title {
    margin: 8px 0 16px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    /* всегда две строки через <br>, размер от ширины экрана */
    font-size: clamp(28px, 4vw + 8px, 50px);
}

.hero__subtitle {
    margin: 0 0 24px;
    font-size: 25px;
    line-height: 1.5;
}

/* правая часть с логотипом */
.logo_wrapper{
    display: flex;
   
}
.hero-logo {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    align-self: flex-start;
    gap: 8px;
}

.hero-logo__img {
    display: flex;
    max-width: 1960px;
    height: auto;
    display: block;
}

.hero-logo__text {
    font-weight: 800;
    letter-spacing: 0.18em;
    font-size: 14px;
}

/* нижняя часть: ПОЧЕМУ МЫ */

.hero-why__bottom {
    margin-top: 32px;
}

.why__items {
    display: flex;
   margin-top: 50px;
    gap: 16px;
}

.why-item {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    padding-left: 20px



;
}.why-item ::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px; /* толщина бордера */
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(72, 115, 255, 0) 0%,
    #4873FF 50%,
    rgba(72, 115, 255, 0) 100%
  );
  border-radius: 2px;
}

.why-item:last-child {
    border-bottom: none;
}

.why-item__icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item__icon img {
    max-width: 100%;
    height: auto;
    display: block;
}

.why-item__text {
    font-size: 18px;
}

/* КОНТАКТЫ */
.contact-wrapper{
    display: flex;
    width: 90%;
    justify-content: start;
    align-items: center;
}
.contact {

display: flex;
flex-direction: column ;
width: 40%;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 940px;
}

.contact__field input,
.contact__field textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(74, 115, 255, 0.8);
    padding: 14px 16px;
    border-radius: 2px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    font-family: inherit;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact__field textarea {
    min-height: 120px;
    resize: vertical;
}

.btn--wide {
    width: 100%;
}

/* ФУТЕР */

.footer {
    display: flex;
    width: 100%;
justify-content: center;
    background: rgba(0, 0, 0, 0.9);
    margin-top: auto;
 
}
.footer_wrapper{
     display: flex;
    width: 90%;
    padding: 24px 16px 32px;
    background: rgba(0, 0, 0, 0.9);
    margin-top: auto;
    justify-content: space-between;
}
.footer__top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer__brand-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    display: block;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4a73ff;
}

.footer__social-line {
    display: inline-block;
    height: 1px;
    width: 50px;
    background-color: #4a73ff;
}

.footer__social-link img {
    width: 20px;
    height: 20px;
    display: block;
}

.footer__bottom {
    font-size: 12px;
    opacity: 0.72;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* ---------- TABLET ---------- */


/* ---------- DESKTOP ---------- */
@media (min-width: 2000px) {
    .arrow-img {
        margin-left: 15px;
    width: 24px;
}
.section-title {
    font-size: 60px;
}.hero__title{
    font-size: 80px; 
}
.hero__subtitle {
    font-size: 26px;
}.hero-logo__img {width: 600px;}
.btn{
    font-size: 26px;
}.footer__social{
    font-size: 28px;
}.footer__social-link img {
    width: 60px;
    height: 60px;
    display: block;
}.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 840px;
}.contact__field input,
.contact__field textarea {font-size: 26px;}
}

@media (min-width: 1800px) 
{.hero__subtitle {
    font-size: 30px;}
.hero__title{
    font-size: 60px; 
}}.footer__brand{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer__brand-logo {

min-width: 300px !important;
} .footer__bottom{
    font-size: 15x;

}.footer__social{
    font-size: 22px;
}.tg_img{
    width: 40px !important;
    height: auto !important;
}
@media (min-width: 2300px) {
 
.section-title {

    font-size: 70px;
}.hero-logo__img {width: 700px;}
.hero__subtitle {
    font-size: 40px;}
.hero__title{
    font-size: 70px; 
}.btn{
    font-size: 33px;
}.why-item__icon {
    width: 92px;
    height: 92px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item__icon img {
    width: 100%;
    height: auto;
    display: block;
}

.why-item__text {
    font-size: 28px;
}.footer__brand{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer__brand-logo {

min-width: 500px !important;
} 
}@media (min-width: 3000px) {
.section-title {
    font-size: 90px;
}.hero__title{
    font-size: 100px; 
}
.hero__subtitle {
    font-size: 60px;
}.hero-logo__img {width: 800px;}
.btn{
    font-size: 36px;
}.footer__social{
    font-size: 38px;
}.footer__social-link img {
    width: 60px;
    height: 60px;
    display: block;
}.contact__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1340px;
}.contact__field input,
.contact__field textarea {font-size: 36px;}.btn{
    font-size: 33px;
}.why-item__icon {
    width: 122px;
    height: 122px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-item__icon img {
    width: 100%;
    height: auto;
    display: block;
}

.why-item__text {
    font-size: 38px;
}.btn{
    font-size: 45px;
    padding: 30px 50px 30px 50px;
}.contact__field textarea {
    min-height: 320px;
    resize: vertical;
}.footer__brand{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.footer__brand-logo {

min-width: 500px !important;
} .footer__bottom{
    font-size: 30px;

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



    .hero-why__top {
 
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
        gap: 80px;
    }

    

    .hero__title {
        font-size: clamp(40px, 3.4vw + 4px, 56px);
    }

    .hero__subtitle {
        font-size: 26px;
    }
.why{
    margin-top: 50px;
}
    /* "ПОЧЕМУ МЫ?" — горизонтальные карточки */
    .why__items {
        flex-direction: column;
        justify-content: space-between;
        gap: 32px;
    }

    .why-item {
 
        align-items: flex-start;
        text-align: left;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.16);
        padding: 0 24px 0 0;
    }

    .why-item:last-child {
        border-right: none;
    }

    .why-item__icon {
        margin-bottom: 12px;
    }

    .why-item__text {
        font-size: 18px;
        
    }

   

    .contact__form {
        min-width: 560px;
    }

    .footer {
        padding: 32px 80px 40px;
    }
}

@media (max-width: 1200px) {
    .why__items{
        flex-direction: column;
    }
}
@media (max-width: 768px) {
    .contact{
        width: 90%;
    }
    .section-title{
        font-size: 33px;
    }
.btn{
    font-size: 13px;

}
    .hero__content {
        display: flex;
        flex-direction: column;
     gap: 10px;
     margin-top: 20px;
    }
        .why {
        margin-top: 0px;
    }
    .hero-why {
   
    }.hero-why__bottom{
        margin-top: 0px;
    }
.contact__form{
    min-width: 350px;
}
    .hero-why__top {
     margin-bottom: 50px;
    align-items: center;
    justify-content: start;
    gap: 2px;
    }
.hero__title{
    font-weight: 600;

    font-size: 34px;
}
    .hero-logo__img {
        max-width: 320px;
    }

    .hero__subtitle {
        font-size: 18px;
        font-weight: 200;
    }
    .btn--wide {
        align-self: flex-start;
    
    }
    .arrow-img{
        width: 15px;
        margin: 0;
    }
    .footer {
        padding: 24px 40px 32px;
        margin-top: 50px;
    }
    .footer__top {
        flex-direction: column;
        justify-content: space-between;
        align-items: center; margin-top: 50px;
    }

    .footer__bottom {
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
       
    }
    .footer_wrapper{
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    } 
     .why-item {padding-bottom: 15px;}
    .why-item ::before {
      width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    top: auto;
    background: linear-gradient(
      90deg,
      rgba(72, 115, 255, 0) 0%,
      #4873FF 50%,
      rgba(72, 115, 255, 0) 100%);

}
.pc_txt{
    display: none;
}.mobie_txt{display: block;
margin-top: 15px;}
.footer__social{
    font-size: 18px;
}.footer__social-line{
    width: 30px;
}.footer_wrapper{
    padding: 0;
  
}
  .tg_img{width: 30px !important; }
  .footer__top{
    justify-content: center;
    align-items: start;

  }
  .footer__bottom{
    gap: 0;
    justify-content: center;
    align-items: start;    
    font-size: 12px;
  }
}