.seo-main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 112px;
}

.seo-hero {
  max-width: 760px;
}

.seo-kicker {
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.seo-hero h1 {
  max-width: none;
  margin-top: 14px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.96;
}

.seo-lede {
  max-width: 680px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.35;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.seo-section {
  margin-top: 76px;
}

.seo-section h2 {
  max-width: 720px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.seo-section h3 {
  font-size: 21px;
  line-height: 1.15;
}

.seo-section > p,
.seo-prose p,
.seo-card p,
.seo-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.seo-section > p {
  max-width: 720px;
  margin-top: 16px;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.seo-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(28, 89, 39, 0.07);
}

.seo-card-link {
  display: block;
  color: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.seo-card-link:hover,
.seo-card-link:focus-visible {
  border-color: rgba(30, 76, 38, 0.28);
  box-shadow: 0 24px 54px rgba(28, 89, 39, 0.12);
  outline: none;
  transform: translateY(-2px);
}

.seo-card h3 + p,
.seo-card h3 + ul {
  margin-top: 12px;
}

.seo-card ul,
.seo-prose ul,
.seo-prose ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.seo-prose {
  max-width: 760px;
}

.seo-prose h2,
.seo-prose h3 {
  margin-top: 42px;
}

.seo-prose p,
.seo-prose ul,
.seo-prose ol {
  margin-top: 16px;
}

.seo-prose strong {
  color: var(--ink);
}

.seo-note {
  margin-top: 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: var(--surface-soft);
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.5;
}

.seo-table-wrap {
  margin-top: 28px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(28, 89, 39, 0.07);
}

.seo-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.seo-table th,
.seo-table td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
}

.seo-table td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.seo-table tr:last-child th,
.seo-table tr:last-child td {
  border-bottom: 0;
}

.seo-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  color: rgba(244, 255, 244, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.seo-footer-links a:hover {
  color: #fff;
}

@media (max-width: 680px) {
  .seo-main {
    width: min(100% - 28px, 960px);
    padding-top: 56px;
  }

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

  .seo-actions {
    flex-direction: column;
  }

  .seo-actions .button {
    width: 100%;
  }
}
