/* SEO hub / store subpages */

.seo-page {
  text-align: left;
}

.seo-page .container {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.seo-hero {
  padding: calc(var(--banner-height) + var(--header-height) + 2.5rem) 0 2rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.12), transparent 70%),
    linear-gradient(180deg, var(--blue-50) 0%, var(--white) 100%);
  text-align: center;
}

.seo-hero__label {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--blue-600);
  text-transform: uppercase;
}

.seo-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.seo-hero__lead {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.seo-article {
  padding: 2rem 0 3.5rem;
}

.seo-article h2 {
  margin: 2rem 0 0.85rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.seo-article h2:first-child {
  margin-top: 0;
}

.seo-article p,
.seo-article li {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.seo-article p {
  margin: 0 0 1rem;
}

.seo-article ul,
.seo-article ol {
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.seo-article li {
  margin-bottom: 0.45rem;
}

.seo-article a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.seo-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-700));
  text-align: center;
}

.seo-cta p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
}

.seo-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: none;
}

.seo-cta .btn:hover {
  background: var(--blue-50);
}

.seo-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  counter-reset: seo-step;
}

.seo-steps li {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 1rem 1rem 1rem 3.5rem;
  border-radius: 0.75rem;
  background: var(--blue-50);
  color: var(--text-primary);
  font-weight: 600;
  list-style: none;
}

.seo-steps li::before {
  counter-increment: seo-step;
  content: counter(seo-step, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue-600);
}

.seo-meta-box {
  margin: 1.25rem 0;
  padding: 1.15rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--blue-100);
  background: var(--white);
}

.seo-meta-box dt {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blue-600);
  margin-top: 0.65rem;
}

.seo-meta-box dt:first-child {
  margin-top: 0;
}

.seo-meta-box dd {
  margin: 0.2rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.site-footer__sitemap {
  margin: 1.5rem auto 1rem;
  max-width: 40rem;
}

.site-footer__sitemap-title {
  margin: 0 0 0.75rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.site-footer__sitemap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__sitemap-list a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-footer__sitemap-list a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-header--seo .site-nav__list {
  flex-wrap: wrap;
}

.breadcrumb {
  margin: 0 auto 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 0.35rem;
  color: #94a3b8;
}

.breadcrumb a {
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 600;
}
