.seo-page {
  padding-top: 7rem;
}

.seo-page .site-header {
  z-index: 70;
}

.seo-page-hero {
  min-height: 38rem;
  padding: clamp(2rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  border: 1px solid var(--line);
  border-radius: clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(circle at 85% 25%, rgba(255, 90, 22, 0.14), transparent 22rem),
    rgba(255, 255, 255, 0.018);
  overflow: hidden;
}

.seo-page-hero-copy {
  position: relative;
  z-index: 2;
}

.seo-page-hero h1 {
  max-width: 900px;
  margin: 1rem 0 1.5rem;
  font-size: clamp(3.2rem, 6.7vw, 7rem);
}

.seo-page-hero h1 span,
.seo-content h2 span {
  color: var(--orange);
}

.seo-page-hero p {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: #c9c4bf;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.seo-page-hero img {
  width: 100%;
  max-height: 34rem;
  object-fit: contain;
  filter: drop-shadow(0 2rem 3rem rgba(0, 0, 0, 0.55));
}

.breadcrumb {
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  color: #8f8b87;
  font-size: 0.68rem;
  font-weight: 750;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.seo-content {
  padding-top: clamp(5rem, 9vw, 9rem);
}

.seo-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.seo-article {
  min-width: 0;
}

.seo-article section + section {
  margin-top: 4.5rem;
}

.seo-content h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
}

.seo-content h3 {
  margin: 1.8rem 0 0.6rem;
  color: #fff;
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  letter-spacing: -0.04em;
}

.seo-content p,
.seo-content li {
  color: #b9b5b0;
  line-height: 1.8;
}

.seo-content ul {
  margin: 1.2rem 0 0;
  padding-left: 1.15rem;
}

.seo-content li + li {
  margin-top: 0.55rem;
}

.seo-problem-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.seo-problem-grid article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.025);
}

.seo-problem-grid h3 {
  margin-top: 0;
}

.seo-problem-grid p {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.seo-sidebar {
  align-self: start;
  position: sticky;
  top: 7rem;
}

.seo-sidebar-card {
  padding: 1.25rem;
  border: 1px solid rgba(255, 90, 22, 0.25);
  border-radius: 1.5rem;
  background:
    linear-gradient(145deg, rgba(255, 90, 22, 0.15), rgba(255, 90, 22, 0.03)),
    #111;
}

.seo-sidebar-card strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.045em;
}

.seo-sidebar-card p {
  font-size: 0.82rem;
}

.seo-sidebar-card .button {
  width: 100%;
}

.seo-related {
  margin-top: 1rem;
  padding: 1rem;
  display: grid;
  gap: 0.2rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: #0e0e0e;
}

.seo-related a {
  padding: 0.7rem;
  border-radius: 0.8rem;
  color: #bdb8b3;
  font-size: 0.74rem;
  font-weight: 750;
}

.seo-related a:hover {
  background: rgba(255, 90, 22, 0.1);
  color: var(--orange);
}

.seo-faq details {
  border-bottom: 1px solid var(--line);
}

.seo-faq summary {
  padding: 1.2rem 0;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.seo-faq details p {
  padding-bottom: 1rem;
}

@media (max-width: 900px) {
  .seo-page {
    padding-top: 5.5rem;
  }

  .seo-page-hero,
  .seo-content-layout {
    grid-template-columns: 1fr;
  }

  .seo-page-hero {
    min-height: auto;
  }

  .seo-page-hero img {
    max-height: 25rem;
  }

  .seo-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .seo-page-hero {
    padding: 1.25rem;
    border-radius: 2rem;
  }

  .seo-page-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .seo-problem-grid {
    grid-template-columns: 1fr;
  }
}
