/* ═══════════════════════════════════════════════
   seo-page.css — Common SEO landing page styles
   Used by: templates/marketing/*.html (26 pages)
   ═══════════════════════════════════════════════ */

/* ── Hero ── */
.seo-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.seo-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: radial-gradient(ellipse at 50% 20%, #f8f9fc, transparent 65%);
  opacity: .45;
  pointer-events: none;
}
.seo-hero > * { position: relative; z-index: 1; }
.seo-hero-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--at-slate);
  margin: 0 0 1.25rem;
}
.seo-hero-title em {
  font-style: normal;
  color: var(--at-navy);
}
.seo-hero-sub {
  font-size: 1.125rem;
  color: var(--at-muted);
  max-width: 580px;
  margin: 0 auto 2rem;
  line-height: 1.6;
  letter-spacing: -0.005em;
}
.seo-hero-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Comparison table ── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--at-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-top: 2rem;
}
.compare-table th,
.compare-table td {
  padding: .875rem 1.25rem;
  font-size: .9375rem;
  letter-spacing: -0.005em;
  text-align: left;
  border-bottom: 1px solid var(--at-border);
}
.compare-table thead th {
  background: var(--at-surface);
  font-weight: 600;
  font-size: .8125rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--at-muted);
}
.compare-table thead th:first-child {
  color: var(--at-slate);
}
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table tbody td:first-child {
  font-weight: 500;
  color: var(--at-slate);
}
.compare-table tbody td:nth-child(2) {
  color: var(--at-navy);
  font-weight: 500;
}
.compare-table tbody td:nth-child(3) {
  color: var(--at-muted);
}
.compare-table .check-yes {
  color: #16a34a;
}
.compare-table .check-no {
  color: var(--at-muted);
  opacity: .5;
}

/* ── Feature list (green checks) ── */
.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
}
.feature-check-list li {
  padding: .4rem 0 .4rem 26px;
  position: relative;
  color: var(--at-slate);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.6;
}
.feature-check-list li svg {
  color: #16a34a;
  position: absolute;
  left: 0;
  top: .6rem;
  width: 18px;
  height: 18px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .seo-hero { padding-top: 6.5rem; }
  .compare-table th,
  .compare-table td { padding: .625rem .75rem; font-size: .8125rem; }
}
