/* Shared stylesheet for the static consulting-intent SEO landing pages (D3015).
   Served same-origin from /seo.css, so it satisfies CSP `style-src 'self'`
   (no inline <style> or style="" attributes are used on these pages). */

:root {
  --maroon: #531c29;
  --gold: #dfa21f;
  --ink: #16181d;
  --muted: #565c66;
  --paper: #faf7f2;
  --line: rgba(83, 28, 41, 0.15);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

.wrap { max-width: 760px; margin: 0 auto; padding: 0 1.25rem; }

.seo-nav {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.seo-nav a { color: var(--maroon); font-weight: 700; text-decoration: none; }

.seo-hero { padding: 2.75rem 0 1.5rem; }
.seo-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
h1 { font-size: 2.1rem; line-height: 1.2; margin: 0 0 0.75rem; color: var(--maroon); }
.seo-sub { font-size: 1.15rem; color: var(--muted); margin: 0 0 1.5rem; }

h2 { font-size: 1.4rem; margin: 2rem 0 0.6rem; color: var(--ink); }

ul.seo-list { list-style: none; padding: 0; margin: 1rem 0; }
ul.seo-list li { padding: 0.4rem 0 0.4rem 1.6rem; position: relative; }
ul.seo-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.seo-cta {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 10px;
  margin: 1.5rem 0 0.5rem;
}
.seo-cta:hover { background: #3f151f; }

.seo-cta-row { margin: 1.5rem 0 2rem; }
.seo-cta-secondary {
  display: inline-block;
  margin-left: 1rem;
  color: var(--maroon);
  text-decoration: underline;
  font-weight: 600;
}

.seo-offer {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.seo-offer strong { color: var(--maroon); }

.seo-foot {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
  padding: 1.5rem 0 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.seo-foot a { color: var(--maroon); }
