.faq-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.faq-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}

.faq-breadcrumb a:hover {
  color: #fff;
}

.faq-hero .hero-sub {
  max-width: 700px;
}

.faq-overview {
  padding: 72px 0;
  background: #f8fafc;
  border-bottom: 1px solid var(--border);
}

.faq-overview .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 36px;
  align-items: center;
}

.faq-overview-copy h2 {
  margin: 14px 0 14px;
  color: var(--text-dark);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 850;
}

.faq-overview-copy p {
  margin: 0;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.85;
}

.faq-topic-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.faq-topic-nav a {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text-dark);
  font-size: 15px;
  font-weight: 700;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.faq-topic-nav a:hover {
  border-color: var(--emerald-soft);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.faq-topic-nav span {
  color: var(--emerald);
  font-family: Inter, "Noto Sans SC", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.faq-topic-section:nth-of-type(even) {
  background: #f8fafc;
}

.faq-topic-section .faq-list {
  max-width: 980px;
}

.faq-topic-section .faq-item-a {
  font-size: 15px;
}

.faq-cta-secondary {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 980px) {
  .faq-overview-grid {
    grid-template-columns: 1fr;
  }

  .faq-topic-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .faq-overview {
    padding: 52px 0;
  }

  .faq-overview-copy h2 {
    font-size: 28px;
  }

  .faq-topic-nav {
    grid-template-columns: 1fr;
  }

  .faq-topic-nav a {
    min-height: 72px;
  }

  .faq-topic-section .faq-item-a {
    padding-left: 0;
  }
}
