/* ============ SEO LANDING PAGES ============ */
.seo-hero {
  padding: 120px 0 60px;
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line-2);
}
.seo-hero .breadcrumbs {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.seo-hero .breadcrumbs a { color: var(--ink-3); border-bottom: 1px dotted var(--ink-4); }
.seo-hero .breadcrumbs a:hover { color: var(--accent-ink); }
.seo-hero h1 {
  font-size: clamp(28px, 4.4vw, 48px);
  margin-bottom: 18px;
  max-width: 900px;
}
.seo-hero .seo-lead {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-2);
  max-width: 760px;
  margin-bottom: 28px;
}
.seo-hero .seo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 28px;
  font-size: 14px;
  color: var(--ink-3);
}
.seo-hero .seo-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.seo-hero .seo-meta strong { color: var(--ink); }
.seo-hero .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.seo-section {
  padding: 72px 0;
  border-bottom: 1px solid var(--line-2);
}
.seo-section.alt { background: var(--bg-alt); }
.seo-section h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 24px;
  max-width: 800px;
}
.seo-section h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin: 32px 0 14px;
}
.seo-section p {
  color: var(--ink-2);
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 16px;
}
.seo-section ul.bullets {
  max-width: 760px;
  margin-bottom: 16px;
}
.seo-section ul.bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: var(--ink-2);
}
.seo-section ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 2px;
  transform: rotate(45deg);
}

.seo-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}
.seo-stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.seo-stage .num {
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.seo-stage h4 {
  font-family: var(--ff-display);
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--ink);
}
.seo-stage p {
  font-size: 14px;
  color: var(--ink-3);
  margin: 0;
}

.seo-pricing {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 30px 0;
  max-width: 900px;
}
.seo-pricing h3 { margin-top: 0; }
.seo-pricing .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.seo-pricing .price-row:last-child { border-bottom: none; }
.seo-pricing .price-row .label { color: var(--ink-2); flex: 1; }
.seo-pricing .price-row .value {
  font-family: var(--ff-display);
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.seo-pricing .note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--ink-3);
}

.seo-cta-band {
  background: var(--navy);
  color: #f4eed8;
  padding: 56px 0;
  text-align: center;
}
.seo-cta-band h2 {
  color: #fff;
  margin-bottom: 14px;
}
.seo-cta-band p {
  color: #c5cdd9;
  max-width: 640px;
  margin: 0 auto 24px;
}
.seo-cta-band .btn-group { display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.seo-cta-band .btn-primary { background: var(--accent); color: var(--navy); }
.seo-cta-band .btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.3); }

.seo-news-callout {
  background: linear-gradient(90deg, #fff8e6 0%, #faf2db 100%);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
  max-width: 800px;
}
.seo-news-callout .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-ink);
  margin-bottom: 6px;
}
.seo-news-callout p { margin: 0; color: var(--ink); }

@media (max-width: 700px) {
  .seo-hero { padding: 100px 0 40px; }
  .seo-section { padding: 48px 0; }
  .seo-pricing { padding: 24px; }
}
