.faq-page{
  background:
    radial-gradient(circle at top left, rgba(249,115,22,.10), transparent 32%),
    linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
  padding:54px 0 80px;
}

.faq-page .container{
  max-width:1180px;
}

.faq-page-hero{
  padding:34px;
  border-radius:30px;
  background:linear-gradient(135deg,#082f63,#0f172a);
  color:#fff;
  box-shadow:0 24px 70px rgba(15,23,42,.18);
  margin-bottom:28px;
}

.faq-page-hero .section-tag{
  color:#fb923c;
  font-weight:900;
  letter-spacing:2px;
  font-size:13px;
}

.faq-page-hero h1{
  margin:14px 0 14px;
  max-width:980px;
  font-size:clamp(30px,4vw,52px);
  line-height:1.08;
  font-weight:950;
  letter-spacing:-1.4px;
}

.faq-page-hero p{
  max-width:980px;
  color:rgba(255,255,255,.86);
  font-size:17px;
  line-height:1.8;
}

.faq-seo-content{
  margin:28px 0;
  padding:30px;
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:26px;
  box-shadow:0 18px 50px rgba(15,23,42,.06);
}

.faq-seo-content h2{
  font-size:30px;
  line-height:1.2;
  margin-bottom:16px;
  color:#0f172a;
}

.faq-seo-content p{
  color:#334155;
  font-size:16px;
  line-height:1.85;
  margin-bottom:12px;
}

.faq-list{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:26px;
}

.faq-item{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 36px rgba(15,23,42,.05);
}

.faq-question{
  width:100%;
  min-height:72px;
  padding:20px 62px 20px 24px;
  border:0;
  background:#fff;
  color:#0f172a;
  font-size:18px;
  font-weight:900;
  text-align:left;
  cursor:pointer;
  position:relative;
  font-family:inherit;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:24px;
  top:50%;
  transform:translateY(-50%);
  width:34px;
  height:34px;
  border-radius:50%;
  background:#fff7ed;
  color:#f97316;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:900;
}

.faq-item.active .faq-question::after{
  content:"–";
  background:#f97316;
  color:#fff;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}

.faq-answer p{
  margin:0;
  padding:0 24px 24px;
  color:#475569;
  font-size:16px;
  line-height:1.8;
}

.faq-item.active{
  border-color:rgba(249,115,22,.35);
  box-shadow:0 20px 55px rgba(249,115,22,.10);
}

@media(max-width:768px){
  .faq-page{
    padding:28px 0 56px;
  }

  .faq-page-hero,
  .faq-seo-content{
    padding:22px;
    border-radius:22px;
  }

  .faq-question{
    font-size:16px;
    padding:18px 56px 18px 18px;
  }
}