/* ===================================================================
   FAQ PAGE — Hero + Layout
   =================================================================== */










.faq-page-search {
  max-width: 500px;
  margin: 32px auto 0;
  position: relative;
}

.faq-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  width: 17px;
  height: 17px;
}

.faq-page-search input {
  width: 100%;
  padding: 14px 18px 14px 46px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.faq-page-search input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(39, 212, 0, 0.1);
}

.faq-page-search input::placeholder {
  color: var(--muted);
}

/* Hidden by JS filter */
.faq-item.faq-hidden {
  display: none;
}

.faq-category.faq-empty {
  display: none;
}

/* CTA block */
.faq-cta {
  background: rgba(39, 212, 0, 0.05);
  border: 1px solid rgba(39, 212, 0, 0.15);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.faq-cta-icon {
  width: 52px;
  height: 52px;
  color: var(--green);
  margin-bottom: 18px;
}

.faq-cta h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
}

.faq-cta p {
  color: var(--muted);
  margin: 0 0 24px;
  line-height: 1.6;
  font-size: 15px;
}

.faq-cta .cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .faq-cta {
    padding: 32px 20px;
  }
}
