/* SEO landing page styles — extends main stylesheet */
.seo-page { padding-top: 0; }
.seo-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 48px 0 56px;
}
.seo-hero h1 { max-width: 820px; margin-bottom: 16px; }
.seo-hero-lead { font-size: 1.08rem; color: var(--muted); max-width: 720px; line-height: 1.75; }
.seo-breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 20px;
}
.seo-breadcrumb a { color: var(--navy-mid); font-weight: 600; }
.seo-breadcrumb a:hover { text-decoration: underline; }
.seo-body { padding: 56px 0 72px; }
.seo-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.seo-content h2 { font-size: 1.35rem; margin-top: 32px; margin-bottom: 12px; }
.seo-content h2:first-child { margin-top: 0; }
.seo-content p { color: var(--muted); line-height: 1.75; margin-bottom: 14px; }
.seo-content ul { margin: 0 0 18px 1.1rem; color: var(--muted); }
.seo-content li { margin-bottom: 6px; line-height: 1.6; }
.seo-sidebar {
  position: sticky;
  top: 88px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 24px 20px;
  box-shadow: var(--shadow-md);
}
.seo-sidebar h3 { font-size: 1rem; margin-bottom: 12px; }
.seo-sidebar p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }
.seo-sidebar .btn { width: 100%; margin-bottom: 8px; }
.seo-sidebar-phone {
  display: block;
  text-align: center;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
}
.seo-faq { margin-top: 36px; }
.seo-faq details { margin-bottom: 8px; }
.seo-related {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.seo-related h2 { font-size: 1.2rem; margin-bottom: 16px; }
.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.seo-link-grid a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-mid);
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  transition: background .15s, border-color .15s;
}
.seo-link-grid a:hover { background: var(--cream); border-color: var(--navy); color: var(--navy); }
.seo-price-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.seo-hub { padding: 100px 0 80px; }
.seo-hub h1 { margin-bottom: 12px; }
.seo-hub-lead { color: var(--muted); max-width: 640px; margin-bottom: 36px; }
.seo-hub-section { margin-bottom: 40px; }
.seo-hub-section h2 { font-size: 1.15rem; margin-bottom: 14px; color: var(--navy); }
.seo-hub-alpha { columns: 3; column-gap: 24px; }
.seo-hub-alpha a {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy-mid);
  padding: 4px 0;
  break-inside: avoid;
}
.seo-hub-alpha a:hover { color: var(--navy); text-decoration: underline; }
.seo-hub-featured {
  margin: 28px 0 36px;
  padding: 24px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.seo-hub-featured h2 { font-size: 1.05rem; margin-bottom: 14px; color: var(--navy); }
@media (max-width: 900px) {
  .seo-grid { grid-template-columns: 1fr; }
  .seo-sidebar { position: static; }
  .seo-hub-alpha { columns: 2; }
}
@media (max-width: 560px) {
  .seo-hero { padding: 36px 0 44px; }
  .seo-hub-alpha { columns: 1; }
}
