.header {
  margin: 0 auto;
  height: 100vh;
}
.header__navigation {
  padding: 40px 0 40px;
}
@media screen and (max-width: 780px) {
  .header__navigation {
    display: none;
  }
}
.header__navigation-list {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1080px) {
  .header__navigation-list {
    gap: 30px;
  }
}
.header__navigation-item {
  font-size: 18px;
  color: white;
}
@media screen and (max-width: 1080px) {
  .header__navigation-item {
    font-size: 15px;
  }
}

.main-navigation:hover {
  background-color: white;
  width: 110px;
  height: 110px;
  backdrop-filter: blur(100px);
  border-radius: 50%;
}

.header__title {
  /* margin: 0 auto; */
  padding: 70px 0;
  font-size: 50px;
  background-image: linear-gradient(#D81696, #77359A, #4995BC);
  text-align: center;
}
@media screen and (max-width: 780px) {
  .header__title {
    font-size: 42px;
    padding: 80px 50px;
  }
}
@media screen and (max-width: 480px) {
  .header__title {
    font-size: 30px;
    padding: 60px 40px;
  }
}
.web-img {
  display: block;
  margin: 0 auto;
  width: 400px;
  height: 400px;
}
@media screen and (max-width: 780px) {
.web-img {
    width: 300px; 
    height: 300px; 
  }
}
@media screen and (max-width: 480px) {
.web-img {
    width: 200px; 
    height: 200px;
  }
}
.header__description {
  max-width: 688px;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 30px;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .header__description {
    font-size: 26px;
    padding: 10px 50px;
  }
}
@media screen and (max-width: 480px) {
  .header__description {
    font-size: 18px;
    padding: 20px 10px;
  }
}


  /* Бургер-меню - мобильная версия */
  .burger-btn {
      display: none;
      position: fixed;
      top: 30px;
      right: 30px;
      width: 40px;
      height: 30px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      z-index: 1001;
      background: transparent;
      border: none;
  }
  
  .burger-line {
      width: 100%;
      height: 4px;
      background: white;
      transition: all 0.3s;
  }
  
  .mobile-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.2);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s;
  }
  
  .mobile-nav.active {
      opacity: 1;
      visibility: visible;
  }
  
  .mobile-nav-list {
      list-style: none;
      text-align: center;
  }
  
  .mobile-nav-item {
      margin: 25px 0;
      transform: translateY(20px);
      opacity: 0;
      transition: all 0.3s;
  }
  
  .mobile-nav.active .mobile-nav-item {
      transform: translateY(0);
      opacity: 1;
  }
  
  .mobile-nav-item a {
      color: white;
      text-decoration: none;
      font-size: 24px;
      transition: color 0.3s;
      padding: 10px 20px;
      display: inline-block;
  }
  
  .mobile-nav-item a:hover {
      color: #D81696;
  }
  
  /* Анимация бургера */
  .burger-btn.active .burger-line:nth-child(1) {
      transform: translateY(13px) rotate(45deg);
  }
  
  .burger-btn.active .burger-line:nth-child(2) {
      opacity: 0;
  }
  
  .burger-btn.active .burger-line:nth-child(3) {
      transform: translateY(-13px) rotate(-45deg);
  }
  
  /* Медиазапросы */
  @media (max-width: 780px) {
      /* .header__navigation {
          display: none;
      } */
      
      .burger-btn {
          display: flex;
      }
      
      /* Задержка для анимации пунктов меню */
      .mobile-nav-item:nth-child(1) { transition-delay: 0.1s; }
      .mobile-nav-item:nth-child(2) { transition-delay: 0.2s; }
      .mobile-nav-item:nth-child(3) { transition-delay: 0.3s; }
      .mobile-nav-item:nth-child(4) { transition-delay: 0.4s; }
      .mobile-nav-item:nth-child(5) { transition-delay: 0.5s; }
  }
  
  @media (max-width: 480px) {
    .burger-btn {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 25px;
    }

    .mobile-nav-item a {
        font-size: 20px;
    }
  }


.main:before {
    background: url(../img/logo-300.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 60%;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: -1;
}


@media screen and (max-width: 1400px) {
    .main:before {
        background-size: 75%;
    }
}
@media screen and (max-width: 1080px) {
    .main:before {
        background-size: 90%;
    }
}
@media screen and (max-width: 780px) {
    .main:before {
        background-size: 110%;
    }
}
@media screen and (max-width: 480px) {
    .main:before {
        background-size: 110%;
    }
}

.section__web {
  margin: 0 auto;
  backdrop-filter: blur(10px);
  padding: 0 10px;
}
.section__web-title {
  margin: 0 auto 70px;
  padding-top: 20px;
  font-size: 20px;
  color: #D81696;
  text-align: center;
  /* backdrop-filter: blur(10px); */
  font-weight: 600;
}
.section__web-description {
  margin: 0 auto 70px;
  font-size: 20px;
  padding: 20px 70px;
  background-image: linear-gradient(45deg, #c00090, #44abff);
  text-align: center;
  color: #fff;
  border-radius: 500px;
  max-width: 800px;
}
@media screen and (max-width: 780px) {
.section__web-description {
  font-size: 16px;
  padding: 20px 50px;
  }
}
@media screen and (max-width: 480px) {
.section__web-description {
  font-size: 14px;
  padding: 15px 30px;
  }
}
.section__web-description:hover {
  border: 1px solid white
}
.web-background {
  /* backdrop-filter: blur(10px); */
  padding: 20px 10px;
}
.section__web-wrapper {
  margin: 0 auto;
  max-width: 800px;
}
.web__items {
  margin-bottom: 50px;
  max-width: 800px;
}
@media screen and (max-width: 780px) {
.web__items {
  margin-bottom: 40px;
  }
}
@media screen and (max-width: 480px) {
.web__items {
  margin-bottom: 30px;
  }
}
.web__item-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 780px) {
.web__item-flex {
  gap: 25px;
  }
}
@media screen and (max-width: 480px) {
.web__item-flex {
  gap: 20px;
  }
}
.web__item-icon {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 780px) {
.web__item-icon {
  width: 80px;
  height: 80px;
  }
}
@media screen and (max-width: 480px) {
.web__item-icon {
  width: 50px;
  height: 50px;
  }
}
.web__item-wrap {
  height: 100px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}
@media screen and (max-width: 780px) {
.web__item-wrap {
  height: auto;
  }
}

.web__item-wrap__title {
  font-size: 26px;
  color: #c00090;
  font-weight: 500;
}
@media screen and (max-width: 780px) {
.web__item-wrap__title {
  font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
.web__item-wrap__title {
  font-size: 16px;
  }
}
.web__item-wrap__desc {
  font-size: 20px;
  font-weight: 400;
}
@media screen and (max-width: 780px) {
.web__item-wrap__desc {
  font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
.web__item-wrap__desc {
  font-size: 12px;
  }
}

.faq-item {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: 10px;
  /* border: 1px solid #ddd; */
  border-radius: 5px;
  overflow: hidden;
}


.section__advantages {
  margin: 0 auto;
  background-color: #000;
  padding: 40px 10px;
}
.section__advantages-title {
  text-align: center;
  margin: 0 auto 20px;
  font-size: 40px;
}
.section__advantages-undertitle {
  text-align: center;
  margin: 0 auto 50px;
  font-size: 20px;
  color: #c00090;
}
.section__advantages-wrapper {
  margin: 0 auto 50px;
}
.advantages-wrapper__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 780px) {
.advantages-wrapper__list {
  flex-wrap: wrap;
  gap: 40px;
  }
}
@media screen and (max-width: 780px) {
.advantages-wrapper__list {
  gap: 0;
  }
}
.advantages-wrapper-items {
  padding: 20px 40px;
  border-right: 3px solid #c00090;
}
@media screen and (max-width: 780px) {
.advantages-wrapper-items {
  border-right: none;
  }
}
.advantages-wrapper-items:last-child {
  border-right: none;
}
.wrapper-item-img {
  margin: 0 auto;
  display: block;
  text-align: center;
  padding-bottom: 50px;
  width: 80px;
}
@media screen and (max-width: 480px) {
.wrapper-item-img {
  padding-bottom: 20px;
  width: 50px;
  }
  .wrapper-item-img:hover {
  width: 55px;
  }
}
.wrapper-item-description {
  max-width: 145px;
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
.wrapper-item-description {
  font-size: 15px;
  }
}


.section__q_and_a {
  backdrop-filter: blur(10px);
  padding: 40px 10px;
  margin: 0 auto;
}
.section__q_and_a-title {
  text-align: center;
  font-size: 40px;
  padding-bottom: 30px;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  /* background-color: #f5f5f5; */
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(10px);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid white;
}
@media screen and (max-width: 780px) {
.faq-question {
  font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
.faq-question {
  font-size: 14px;
  }
}
.faq-question:hover {
  border: 2px solid transparent;
}
.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: black;
  backdrop-filter: blur(10px);
  color: #c00090;
}
.faq-answer.active {
  padding: 20px;
  max-height: 500px;
}
@media screen and (max-width: 780px) {
.faq-answer.active {
  font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
.faq-answer.active {
  font-size: 14px;
  }
}
.plus-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.plus-icon.active {
  transform: rotate(45deg);
}



.section__price {
  margin: 0 auto;
  padding: 40px 10px;
  background-color: #000;
}
.section_price-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 40px;
}
.section__price-wrapper {
  margin: 0 auto;
}
.price__items {
  margin: 0 auto 20px;
  max-width: 480px;
}
.price__item-flex {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 780px) {
.price__item-flex {
  gap: 20px;
  }
}
@media screen and (max-width: 480px) {
.price__item-flex {
  gap: 10px;
  }
}
.price__item-icon {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 780px) {
.price__item-icon {
  width: 60px;
  height: 60px;
  }
}
@media screen and (max-width: 780px) {
.price__item-icon {
  width: 80px;
  height: 80px;
  }
}
.price__item-wrap__title {
  font-size: 20px;
  padding: 10px 0;
}
@media screen and (max-width: 780px) {
.price__item-wrap__title {
  font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
.price__item-wrap__title {
  font-size: 16px;
  }
}
.price__item-wrap__desc {
  color: #D81696;
  font-weight: 400;
  font-size: 18px;
}
@media screen and (max-width: 780px) {
.price__item-wrap__desc {
  font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
.price__item-wrap__desc {
  font-size: 14px;
  }
}
.post-scriptum {
  display: block;
  margin: 30px auto;
  text-align: center;
  font-size: 12px;
  color: #bdbdbd;
}
@media screen and (max-width: 480px) {
.post-scriptum {
  font-size: 8px;
  }
}

/* УЗНАТЬ СТОИМОСТЬ */
.section__price {
  margin: 0 auto;
  background-color: #000;
  padding-bottom: 60px;
}
.section__price-title {
  margin: 0 auto 50px;
  font-size: 70px;
  background-image: linear-gradient(to right, #ff7af4 0%, #5de7ff 100%);
  /* обрезаем фон по тексту */
  -webkit-background-clip: text;
  /* меняет цвет текста заголовка на прозрачный что бы можно было увидеть градиент*/
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 780px) {
  .section__price-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 480px) {
  .section__price-title {
    font-size: 40px;
  }
}
.price__form {
  margin: 0 auto;
}
.requiredField {
  display: block;
  margin: 0 auto 50px;
  width: 600px;
  border-bottom: 2px solid white;
  text-align: center;
  color: white;
}
@media screen and (max-width: 780px) {
  .requiredField {
    font-size: 20px;
    width: 300px;
  }
}
@media screen and (max-width: 480px) {
  .requiredField {
    font-size: 14px;
    width: 200px;
  }
}

.price__form-btn {
  display: block;
  margin: 20px auto;
  padding: 25px 95px;
  font-size: 18px;
  font-weight: 500;
  background-color: #D81696;
  border-radius: 50px;
  text-align: center;
}
@media screen and (max-width: 780px) {
  .price__form-btn {
    padding: 20px 60px;
  }
}
@media screen and (max-width: 480px) {
  .price__form-btn {
    padding: 10px 10px;
    font-size: 14px;
  }
}

#backToTopBtn {
    display: none; /* Скрываем кнопку по умолчанию */
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #000000;
    cursor: pointer;
    z-index: 99;
    transition: opacity 0.3s, background-color 0.3s;
}
#backToTopBtn:hover {
    background-color: #ffffff;
}

@media screen and (max-width: 1080px) {
    #backToTopBtn {
        width: 100px;
        height: 100px;
    }
}
@media screen and (max-width: 780px) {
    #backToTopBtn {
        width: 80px;
        height: 80px;
    }
}
@media screen and (max-width: 480px) {
    #backToTopBtn {
        width: 50px;
        height: 50px;
    }
}

