.faq{
  padding: 60px 0;
  background: #FDFDFD;
}

.faq__title{
  margin: 0 0 40px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 600;
  font-size: 70px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #1D201F;
}

.faq-item{
  border-bottom: 1px solid #00000033;
}

.faq-item:first-child{
  border-top: 1px solid #00000033;
}

.faq-head{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 32px 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;

  transition: background .2s ease;
}

.faq-head:hover{
  background: rgba(0,0,0,0.03);
}

.faq-head__text{
  font-family: Inter, Arial, sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #1D201F;
  transition: color .2s ease;
}

.faq-item.is-open .faq-head__text{
  color: #01373E;
}

.faq-head__icon{
  position: relative;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}

.faq-head__icon::before,
.faq-head__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #323232;
  border-radius: 10px;
  transform-origin: center;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.faq-head__icon::before{
  width: 24px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-head__icon::after{
  width: 2px;
  height: 24px;
  transform: translate(-50%, -50%);
}

.faq-item.is-open .faq-head__icon::after{
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-item.is-open .faq-head__icon::before{
  background: #323232;
}

.faq-panel{
  display: none;
}

.faq-item.is-open .faq-panel{
  display: block;
}

.faq-panel__inner{
  padding: 10px 10px 32px 10px;
}

.faq-panel__text{
  max-width: 980px;
  font-family: Inter, Arial, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.05em;
  color: #151515;
}

@media (max-width: 980px){
  .faq{
    padding-top: 60px;
  }

  .faq__title{
    font-size: 44px;
  }

  .faq-head{
    padding: 24px 10px;
    align-items: flex-start;
  }

  .faq-head__text{
    font-size: 20px;
    line-height: 1.15;
  }

  .faq-panel__text{
    font-size: 18px;
  }
}

@media (max-width: 640px){
  .faq__title{
    font-size: 30px;
    margin-bottom: 28px;
  }

  .faq-head{
    gap: 14px;
    padding: 22px 6px;
  }

  .faq-head__text{
    font-size: 18px;
  }

  .faq-panel__inner{
    padding: 6px 6px 24px 6px;
  }

  .faq-panel__text{
    font-size: 16px;
  }
}