/* HERO */

.faq-hero{
  padding:90px 0 80px;
  text-align:center;
}

.tag{
  display:inline-block;
  padding:12px 22px;
  border-radius:30px;
  background:#eef3ff;
  color:#1638ff;
  font-size:14px;
  font-weight:600;
  margin-bottom:25px;
}

.faq-hero h1{
  font-size:78px;
  line-height:1.05;
  color:#07123f;
  margin-bottom:25px;
  letter-spacing:-2px;
  max-width:950px;
  margin-inline:auto;
}

.faq-hero p{
  max-width:850px;
  margin:auto;
  font-size:19px;
  line-height:1.9;
  color:#5d6481;
}

/* FAQ */

.faq-wrapper{
  max-width:1000px;
  margin:auto;
  margin-bottom:110px;
}

.faq-item{
  border-radius:28px;

  background:white;

  border:1px solid #edf0ff;

  margin-bottom:25px;

  overflow:hidden;

  transition:0.35s;
}

.faq-item:hover{
  transform:translateY(-5px);

  box-shadow:
    0 15px 35px rgba(0,0,0,0.05);
}

.faq-question{
  padding:35px 40px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  cursor:pointer;
}

.faq-question h3{
  font-size:30px;
  color:#08134d;
}

.faq-question span{
  font-size:34px;
  color:#18ba5e;
  font-weight:600;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
}

.faq-answer p{
  padding:0 40px 35px;
  color:#666;
  line-height:1.9;
  font-size:17px;
}

/* ACTIVE */

.faq-item.active{

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.08),
      rgba(22,56,255,0.05)
    );

  border:1px solid rgba(255,255,255,0.4);

  backdrop-filter:blur(16px);
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .faq-question span{
  transform:rotate(45deg);
}

/* SUPPORT */

.support-section{
  margin-bottom:110px;
}

.support-box{
  text-align:center;

  padding:80px 50px;

  border-radius:40px;

  background:
    linear-gradient(
      135deg,
      rgba(24,186,94,0.10),
      rgba(22,56,255,0.06)
    );

  border:1px solid rgba(255,255,255,0.4);

  backdrop-filter:blur(18px);
}

.support-box h2{
  font-size:62px;
  margin-bottom:20px;
  color:#07123f;
}

.support-box p{
  max-width:700px;
  margin:auto;
  line-height:1.9;
  color:#666;
  margin-bottom:35px;
  font-size:18px;
}

/* RESPONSIVE */

@media(max-width:1000px){

  .faq-hero h1{
    font-size:58px;
  }

  .support-box h2{
    font-size:48px;
  }

}

@media(max-width:700px){

  .faq-hero h1{
    font-size:42px;
  }

  .faq-question{
    padding:30px 25px;
  }

  .faq-question h3{
    font-size:22px;
    max-width:85%;
  }

  .faq-answer p{
    padding:0 25px 30px;
  }

  .support-box{
    padding:50px 25px;
  }

  .support-box h2{
    font-size:38px;
  }

}