*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Outfit',sans-serif;
  background:#0b033c;
  color:#fff;
  overflow-x:hidden;
  position:relative;
}

/* =========================
   GLOW
========================= */

.bg-glow{
  position:absolute;
  border-radius:50%;
  filter:blur(140px);
  z-index:-1;
}

.glow-1{
  width:500px;
  height:500px;
  background:#36fafd;
  top:-150px;
  left:-100px;
  opacity:.25;
}

.glow-2{
  width:500px;
  height:500px;
  background:#d400ff;
  bottom:-200px;
  right:-100px;
  opacity:.18;
}
/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  padding:30px 80px;

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

.logo{
  font-size:48px;
  font-weight:700;

  background:
  linear-gradient(to right,#ff00c8,#8b5cff);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.nav-links{
  display:flex;
  gap:40px;

  padding:18px 40px;

  border-radius:999px;

  background:rgba(255,255,255,.04);

  border:1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(20px);
}

.nav-links a{
  text-decoration:none;
  color:#fff;
  font-size:14px;
}

.nav-actions{
  display:flex;
  gap:16px;
}

.login-btn,
.pricing-btn{
  text-decoration:none;
  color:#fff;

  padding:14px 26px;

  border-radius:999px;
}

.login-btn{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}

.pricing-btn{
  background:
  linear-gradient(to right,
  #ff00c8,
  #8b5cff);
}

/* =========================
   HERO
========================= */

.faq-hero{
  max-width:1200px;

  margin:auto;

  text-align:center;

  padding:140px 24px 120px;
}

.hero-tag{
  color:#ff4fe1;
  letter-spacing:5px;
  font-size:14px;
}

.faq-hero h1{
  font-size:92px;
  font-weight:300;
  line-height:1;

  margin:28px 0;
}

.faq-hero p{
  max-width:760px;
  margin:auto;

  color:#bdb7d0;

  line-height:2;
  font-size:18px;
}

/* =========================
   FAQ SECTION
========================= */

.faq-section{
  max-width:1100px;

  margin:auto;

  padding:0 24px 140px;
}

.faq-item{
  margin-bottom:24px;

  border-radius:28px;

  overflow:hidden;

  background:
  rgba(255,255,255,.03);

  border:1px solid rgba(255,255,255,.06);

  transition:.4s;
}

.faq-item.active{
  box-shadow:
  0 0 40px rgba(255,0,255,.08);
}

.faq-question{
  width:100%;

  padding:34px;

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

  background:none;
  border:none;

  color:#fff;

  cursor:pointer;

  text-align:left;
}

.faq-question span{
  font-size:28px;
  font-weight:300;
}

.faq-icon{
  width:48px;
  height:48px;

  border-radius:50%;

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

  background:
  linear-gradient(to right,
  #ff00c8,
  #8b5cff);

  font-size:24px;
}

.faq-answer{
  max-height:0;

  overflow:hidden;

  transition:.4s ease;
}

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

.faq-answer p{
  padding:0 34px 34px;

  color:#bdb7d0;

  line-height:2;
  font-size:17px;
}

/* =========================
   CTA
========================= */

.faq-cta{
  position:relative;

  text-align:center;

  padding:180px 24px;

  overflow:hidden;
}

.cta-glow{
  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:#ff00c8;

  filter:blur(180px);

  opacity:.12;

  left:50%;
  top:50%;

  transform:
  translate(-50%,-50%);
}

.faq-cta span{
  color:#ff4fe1;
  letter-spacing:5px;
  font-size:13px;
}

.faq-cta h2{
  font-size:82px;
  font-weight:300;
  line-height:1.05;

  margin:24px 0;
}

.faq-cta p{
  color:#bdb7d0;
  font-size:18px;

  margin-bottom:40px;
}

.faq-cta a{
  display:inline-flex;

  padding:18px 36px;

  border-radius:999px;

  text-decoration:none;
  color:#fff;

  background:
  linear-gradient(to right,
  #ff00c8,
  #8b5cff);
}

/* =========================
   FOOTER
========================= */

.footer{
  padding:80px;

  border-top:1px solid rgba(255,255,255,.06);
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;

  gap:60px;
}

.footer-logo{
  font-size:42px;
  font-weight:700;

  background:
  linear-gradient(to right,#ff00c8,#8b5cff);

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  margin-bottom:20px;
}

.footer-col p{
  color:#9f99b4;
  line-height:1.9;
}

.footer-col h4{
  margin-bottom:24px;
}

.footer-col a{
  display:block;

  color:#9f99b4;

  text-decoration:none;

  margin-bottom:14px;
}

.footer-bottom{
  margin-top:60px;
  padding-top:30px;

  border-top:1px solid rgba(255,255,255,.06);

  display:flex;
  justify-content:space-between;

  color:#8d889f;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .navbar{
    padding:24px;
  }

  .nav-links{
    display:none;
  }

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

  .faq-question span{
    font-size:20px;
  }

  .faq-question{
    padding:26px;
  }

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

  .footer{
    padding:60px 24px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .footer-bottom{
    flex-direction:column;
    gap:12px;
  }
}