/* ===== FAQ PAGE ===== */

.faq-hero {
  padding: 160px 0 80px;
  background: var(--navy) url('/images/hex-hero-bg.jpg') center / cover no-repeat;
  position: relative;
}




.faq-hero > .container {
  position: relative;
  z-index: 1;
}

.faq-hero-inner {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

.faq-hero-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.faq-hero-inner .hero-sub {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ categories */
.faq-category {
  max-width: 800px;
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-category h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(30, 144, 255, 0.12);
}

/* Reuse FAQ accordion pattern from pricing */
.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: rgba(30, 144, 255, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: rgba(30, 144, 255, 0.2);
  box-shadow: 0 4px 20px rgba(30, 144, 255, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  font-family: inherit;
  gap: 16px;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-toggle {
  transition: transform 0.3s ease;
  color: #8a95a5;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--blue);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 4px;
}

.faq-answer p {
  padding: 0 24px 18px;
  font-size: 14px;
  color: #5a6577;
  line-height: 1.7;
}

.faq-answer a {
  color: var(--blue);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Still have questions */
.faq-more {
  text-align: center;
  padding: 48px 0 16px;
  max-width: 400px;
  margin: 0 auto;
}

.faq-more h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-more p {
  font-size: 14px;
  color: #5a6577;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-hero {
    padding: 120px 0 60px;
  }
  .faq-question {
    font-size: 14px;
  }
}
