/* SEO + conversion helpers — Hoofy marketing site */

.breadcrumb-trail {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0.65rem 1.25rem 0;
  font-size: 0.8125rem;
  color: var(--muted, #9a9aa8);
}
.breadcrumb-trail ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}
.breadcrumb-trail li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.breadcrumb-trail li:not(:last-child)::after {
  content: "›";
  opacity: 0.45;
  margin-left: 0.2rem;
}
.breadcrumb-trail a {
  color: var(--accent, #c9a227);
  text-decoration: none;
}
.breadcrumb-trail a:hover,
.breadcrumb-trail a:focus-visible {
  text-decoration: underline;
}

.seo-topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.seo-topic-card {
  display: block;
  padding: 1.25rem 1.35rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.seo-topic-card:hover,
.seo-topic-card:focus-visible {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(201, 162, 39, 0.06);
  transform: translateY(-2px);
  outline: none;
}
.seo-topic-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}
.seo-topic-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted, #9a9aa8);
  line-height: 1.45;
}

article.seo-article {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
}
article.seo-article h2 {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}
article.seo-article p,
article.seo-article li {
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
article.seo-article ul {
  padding-left: 1.25rem;
}
article.seo-article a {
  color: var(--accent, #c9a227);
}

.conversion-strip {
  margin: 2.5rem auto;
  max-width: 48rem;
  padding: 1.5rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(201, 162, 39, 0.35);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.12), rgba(10, 10, 12, 0.9));
  text-align: center;
}
.conversion-strip p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}
.conversion-strip .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.trust-microcopy {
  font-size: 0.8rem;
  color: var(--muted, #9a9aa8);
  margin-top: 0.75rem;
  text-align: center;
}
