/* ── SEO landing pages — inherits the site grade from style.css ── */
.seo-page { background: var(--bone-50); }
.seo-page .nav { position: sticky; }

.seo-hero {
  padding: 132px 0 56px;
  background:
    radial-gradient(900px 480px at 84% 0%, rgba(223,82,44,.20), transparent 62%),
    radial-gradient(700px 460px at 4% 96%, rgba(35,120,127,.18), transparent 62%),
    linear-gradient(168deg, var(--navy-950), var(--navy-700));
  color: #fff;
}
.crumbs { font-size: 12.5px; color: rgba(255,255,255,.55); margin-bottom: 20px; letter-spacing: .02em; }
.crumbs a { color: rgba(255,255,255,.72); }
.crumbs a:hover { color: var(--ember-300); }

.seo-kicker {
  display: inline-block; font-family: var(--font-display);
  font-size: 11.5px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase;
  color: var(--ember-300); margin-bottom: 14px;
}
.seo-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.08;
  letter-spacing: -.02em; max-width: 20ch;
}
.seo-intro { margin-top: 18px; max-width: 62ch; font-size: 16.5px; color: rgba(255,255,255,.72); }
.seo-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.seo-body { padding: 64px 0 88px; }
.seo-prose { max-width: 74ch; margin: 0 auto 52px; }
.seo-prose h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px); color: var(--navy-900);
  letter-spacing: -.01em; margin-bottom: 18px;
}
.seo-prose p { color: var(--muted); margin-bottom: 15px; font-size: 16px; }
.seo-prose p strong, .seo-prose li strong { color: var(--navy-800); }

.seo-list { list-style: none; display: grid; gap: 11px; }
.seo-list li {
  position: relative; padding: 13px 18px 13px 42px;
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  font-size: 15px; color: var(--ink); box-shadow: var(--sh-sm);
}
.seo-list li::before {
  content: ""; position: absolute; left: 17px; top: 20px;
  width: 8px; height: 8px; border-radius: 2px; transform: rotate(45deg);
  background: linear-gradient(135deg, var(--navy-400), var(--ember-500));
}
ol.seo-list { counter-reset: s; }
ol.seo-list li { counter-increment: s; }
ol.seo-list li::before {
  content: counter(s); background: none; transform: none;
  color: var(--ember-600); font-weight: 800; font-family: var(--font-display);
  font-size: 13px; top: 13px; width: auto; height: auto;
}

.price-band {
  background: linear-gradient(135deg, var(--ember-50), var(--bone-100));
  border: 1px solid rgba(223,82,44,.28); border-left: 4px solid var(--ember-500);
  border-radius: 13px; padding: 17px 20px; margin: 22px 0;
}
.price-band strong { font-family: var(--font-display); font-size: 19px; color: var(--ember-700); }
.price-band span { font-size: 13.5px; color: var(--muted); }

.spec-wrap { overflow-x: auto; border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
table.spec { width: 100%; border-collapse: collapse; background: #fff; font-size: 15px; }
table.spec th, table.spec td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.spec th { width: 38%; color: var(--navy-800); font-weight: 650; background: var(--bone-100); }
table.spec td { color: var(--muted); }
table.spec tr:last-child th, table.spec tr:last-child td { border-bottom: none; }

.faq {
  background: #fff; border: 1px solid var(--line); border-radius: 13px;
  padding: 15px 20px; margin-bottom: 11px; box-shadow: var(--sh-sm);
}
.faq summary {
  cursor: pointer; font-weight: 650; color: var(--navy-800);
  font-size: 15.5px; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--ember-500); font-size: 20px; line-height: 1; }
.faq[open] summary::after { content: "–"; }
.faq p { margin: 13px 0 2px; color: var(--muted); font-size: 15px; }

.rel-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 13px; }
.rel-card {
  display: block; padding: 18px 20px; background: #fff;
  border: 1px solid var(--line); border-radius: 14px;
  font-weight: 650; color: var(--navy-800); box-shadow: var(--sh-sm);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.rel-card:hover { border-color: var(--ember-400); transform: translateY(-3px); box-shadow: var(--sh-md); }

.seo-footer { background: var(--navy-950); color: rgba(255,255,255,.62); padding: 56px 0 44px; text-align: center; }
.seo-footer img { height: 52px; width: auto; margin: 0 auto 20px; }
.seo-footer p { font-size: 14px; max-width: 62ch; margin: 0 auto 12px; }
.seo-footer a { color: var(--ember-300); }
.foot-reg { font-size: 12px; color: rgba(255,255,255,.42); }
.foot-links { font-size: 13.5px; margin-top: 16px; }

@media (max-width: 720px) {
  .seo-hero { padding: 112px 0 44px; }
  .seo-body { padding: 44px 0 64px; }
  table.spec th { width: 46%; }
}
