.seo2e-page {
  --seo2e-text: #24313a;
  --seo2e-muted: #53636e;
  --seo2e-surface: #ffffff;
  --seo2e-soft: #f4f6f7;
  --seo2e-border: rgba(36, 49, 58, 0.16);
  color: var(--seo2e-text);
  background: var(--seo2e-surface);
}
.seo2e-container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.seo2e-hero {
  padding: clamp(64px, 9vw, 112px) 0;
  background: linear-gradient(180deg, var(--seo2e-soft), var(--seo2e-surface));
}
.seo2e-eyebrow {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.seo2e-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.08;
}
.seo2e-lead {
  max-width: 800px;
  margin: 24px 0 0;
  color: var(--seo2e-muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.7;
}
.seo2e-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.seo2e-primary-link,
.seo2e-secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  text-decoration: none;
}
.seo2e-primary-link {
  background: var(--seo2e-text);
  color: #ffffff;
}
.seo2e-secondary-link {
  border: 1px solid var(--seo2e-border);
  color: var(--seo2e-text);
  background: var(--seo2e-surface);
}
.seo2e-section {
  padding: clamp(54px, 7vw, 88px) 0;
}
.seo2e-section--soft {
  background: var(--seo2e-soft);
}
.seo2e-section h2 {
  max-width: 840px;
  margin: 0 0 20px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.2;
}
.seo2e-section p,
.seo2e-section li {
  max-width: 840px;
  color: var(--seo2e-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.seo2e-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}
.seo2e-card {
  padding: 24px;
  border: 1px solid var(--seo2e-border);
  border-radius: 16px;
  background: var(--seo2e-surface);
}
.seo2e-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}
.seo2e-list {
  display: grid;
  gap: 12px;
  padding-left: 22px;
}
.seo2e-faq {
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.seo2e-faq details {
  border: 1px solid var(--seo2e-border);
  border-radius: 14px;
  padding: 18px 20px;
  background: var(--seo2e-surface);
}
.seo2e-faq summary {
  cursor: pointer;
  font-weight: 800;
}
.seo2e-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.seo2e-related a {
  display: block;
  height: 100%;
  border: 1px solid var(--seo2e-border);
  border-radius: 14px;
  padding: 20px;
  color: var(--seo2e-text);
  text-decoration: none;
  background: var(--seo2e-surface);
}
.seo2e-note {
  border-left: 4px solid var(--seo2e-text);
  padding: 16px 18px;
  background: var(--seo2e-soft);
}
@media (max-width: 760px) {
  .seo2e-grid,
  .seo2e-related {
    grid-template-columns: 1fr;
  }
  .seo2e-actions {
    align-items: stretch;
    flex-direction: column;
  }
}
