/* SEO content section - FAQ & keyword-rich copy */
.seo-content {
  background: #f8fafc;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

.seo-content .section-title span {
  color: var(--navy);
}

.seo-intro {
  max-width: 52rem;
  margin: 0 auto 2rem;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.seo-intro strong {
  color: var(--text);
}

.seo-faq-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 52rem;
  margin: 0 auto;
}

.seo-faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.seo-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.15rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
}

.seo-faq-item[open] summary::after {
  content: '−';
}

.seo-faq-item p {
  padding: 0 1.15rem 1.1rem;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.seo-keywords {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.6;
}

.seo-keywords span {
  color: #cbd5e1;
  margin: 0 0.35rem;
}
