/* Finsemble SEO Shared Styles
   Used by all 40 SEO/marketing pages */

:root {
  --navy: #1A3A52;
  --green: #2D6A4F;
  --green-text: #2D6A4F;
  --red: #C73E32;
  --cream: #FAF7F2;
  --ink: #111827;
  --muted: #6B7280;
  --gray-bg: #F1F3F4;
  --border: #E5E7EB;
  --white: #FFFFFF;
  --amber: #FCD34D;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* ── Contrast Block ── */
.contrast-block {
  background: var(--cream);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  margin: 2rem 0;
}

.contrast-block--navy {
  background: var(--navy);
  color: var(--white);
}

.contrast-block--white {
  background: var(--white);
  border: 1px solid var(--border);
}

.contrast-block--gray {
  background: var(--gray-bg);
}

.contrast-block h2,
.contrast-block h3 {
  margin-top: 0;
}

.contrast-block--navy h2,
.contrast-block--navy h3 {
  color: var(--white);
}

.contrast-block--navy p,
.contrast-block--navy li {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Product Definition ── */
.product-definition {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.product-definition h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
}

.product-definition p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── Testimonials ── */
.testimonials-section {
  padding: 3rem 0;
}

.testimonials-section h2 {
  text-align: center;
  color: var(--navy);
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.testimonial-card blockquote {
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
}

.testimonial-card cite {
  color: var(--muted);
  font-size: 0.9rem;
  font-style: normal;
}

/* ── Shared Page Layout ── */
.seo-page {
  font-family: 'Inter', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
  background: #FAF7F2;
}

.seo-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.seo-hero {
  text-align: center;
  padding: 3rem 0;
}

.seo-hero h1 {
  color: var(--navy);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1rem;
}

.seo-hero p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.seo-cta {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: opacity 0.15s;
}

.seo-cta:hover {
  opacity: 0.9;
}

.seo-section h2 {
  color: var(--navy);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.seo-section h3 {
  color: var(--navy);
  font-size: 1.15rem;
  margin: 1.5rem 0 0.5rem;
}

.seo-section p {
  color: var(--ink);
  margin: 0.5rem 0;
}

.seo-section ul {
  padding-left: 1.5rem;
}

.seo-section li {
  margin: 0.4rem 0;
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.feature-card {
  background: var(--gray-bg);
  border-radius: 10px;
  padding: 1.25rem;
}

.feature-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.comparison-table tr:nth-child(even) {
  background: var(--gray-bg);
}

/* ── Footer ── */
.seo-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 3rem;
}

.seo-footer a {
  color: var(--white);
  text-decoration: none;
}

.seo-footer a:hover {
  text-decoration: underline;
}

/* ── Footer (shared partial) ── */
footer {
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer p {
  font-size: 13px;
  color: var(--muted);
}

/* ── Responsive ── */
/* ── Nav ── */
.seo-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(250,247,242,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', var(--font-sans);
}

.seo-nav .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.seo-nav .logo-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: 0.015em;
  line-height: 1;
}

.seo-nav .logo-wordmark .fin { color: var(--navy); }
.seo-nav .logo-wordmark .semble { color: var(--green); }
.seo-nav .logo-wordmark .wm-ns { letter-spacing: -0.01em; }

.seo-nav .nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.seo-nav .nav-actions a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
}

.seo-nav .nav-cta {
  background: var(--navy);
  color: var(--cream) !important;
  padding: 8px 20px;
  border-radius: 100px;
  transition: background 0.2s;
}

.seo-nav .nav-cta:hover { background: var(--green); }

/* ── Hero ── */
.seo-hero {
  padding-top: 80px;
}

.seo-hero h1 {
  font-family: 'DM Serif Display', serif;
}

.hero-ownership {
  font-size: 15px;
  color: var(--muted);
}

/* ── Hero Form ── */
.hero-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 480px;
  margin: 1.5rem auto;
  justify-content: center;
}

.hero-input {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Inter', var(--font-sans);
  outline: none;
  background: var(--white);
}

.hero-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
}

.hero-btn {
  padding: 12px 24px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', var(--font-sans);
  transition: opacity 0.15s;
}

.hero-btn:hover { opacity: 0.9; }

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

/* ── Problem Section ── */
.problem-section {
  background: var(--navy);
  color: white;
  padding: 4rem 0;
}

.problem-section h2 {
  color: white;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.problem-section ul {
  list-style: none;
  padding: 0;
}

.problem-section li {
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* ── Solution Section ── */
.solution-section {
  padding: 4rem 0;
}

.solution-section h2 {
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.solution-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}


/* ── How It Works ── */
.how-it-works {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.how-it-works h2 {
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step { text-align: center; }

.step-number {
  width: 48px;
  height: 48px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

.step h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Tabs Section ── */
.tabs-section {
  padding: 4rem 0;
}

.tabs-section h2 {
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.tab-pill {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 14px;
  background: var(--gray-bg);
  color: var(--muted);
}

.tab-pill.featured {
  background: var(--green);
  color: white;
  font-weight: 600;
}

/* ── Trust Section ── */
.trust-section {
  padding: 4rem 0;
  background: var(--cream);
}

.trust-section h2 {
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trust-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.trust-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.trust-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

/* ── Nudge Section ── */
.nudge-section {
  padding: 4rem 0;
}

.nudge-section h2 {
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.nudge-section p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ── FAQ Accordion ── */
.faq-section {
  padding: 4rem 0;
  background: var(--gray-bg);
}

.faq-section h2 {
  color: var(--navy);
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', var(--font-sans);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--muted);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question.active::after { content: '\2212'; }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.faq-answer.active { display: block; }

/* ── Final CTA ── */
.final-cta {
  padding: 4rem 0;
  text-align: center;
  background: var(--navy);
  color: white;
}

.final-cta h2 {
  color: white;
  font-family: 'DM Serif Display', serif;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.final-cta .hero-input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}

.final-cta .hero-input::placeholder { color: rgba(255,255,255,0.5); }
.final-cta .form-note { color: rgba(255,255,255,0.6); }

/* ── Related Resources ── */
.related-section {
  padding: 3rem 0;
}

.related-section h3 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.related-links a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.related-links a:hover { text-decoration: underline; }

/* ── Footer Layout ── */
.seo-footer-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.seo-footer-inner .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.seo-footer-inner .logo-wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}

.seo-footer-inner .logo-wordmark .fin { color: white; }
.seo-footer-inner .logo-wordmark .fin .wm-ns { letter-spacing: -0.01em; }
.seo-footer-inner .logo-wordmark .semble { color: var(--green); }

.seo-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.seo-footer-links p { margin: 0; }

.seo-footer-links nav {
  display: flex;
  gap: 20px;
  position: static;
  padding: 0;
  background: none;
  backdrop-filter: none;
  border: none;
}

.seo-footer-links nav a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.seo-footer-links nav a:hover { color: var(--green); }

/* ── Hero Contrast Block (static vs live) ── */
.hero-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px auto 24px;
  max-width: 480px;
}

.contrast-col {
  border-radius: 10px;
  padding: 16px;
}

.contrast-before {
  background: rgba(199,62,50,0.06);
  border: 1px solid rgba(199,62,50,0.2);
}

.contrast-after {
  background: rgba(45,106,79,0.07);
  border: 1px solid rgba(45,106,79,0.25);
}

.contrast-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contrast-before .contrast-label { color: var(--red); }
.contrast-after .contrast-label { color: var(--green-text); }

.contrast-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contrast-col ul li {
  font-size: 12px;
  color: var(--ink);
  padding: 3px 0;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.contrast-col ul li::before {
  position: absolute;
  left: 0;
  font-size: 11px;
  top: 4px;
}

.contrast-before ul li::before { content: '\2717'; color: var(--red); }
.contrast-after ul li::before { content: '\2713'; color: var(--green-text); }

/* ── Responsive ── */
@media (max-width: 640px) {
  .seo-hero h1 { font-size: 1.6rem; }
  .seo-container { padding: 1rem; }
  .contrast-block { padding: 1.5rem 1rem; }
  .seo-nav { padding: 12px 16px; }
  footer { padding: 24px 18px; flex-direction: column; gap: 16px; text-align: center; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .hero-form { flex-direction: column; }
  .tab-list { gap: 8px; }
  .hero-contrast { grid-template-columns: 1fr; }
  .seo-footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
  .seo-footer-links { align-items: center; }
  .seo-footer-links nav { flex-wrap: wrap; justify-content: center; }
}

/* ── GENERATED PAGE CLASS ALIASES ─────────────────────────────────────────
   The following rules map seo- prefixed classes (used in generated pages)
   to the same styles as the non-prefixed equivalents already in this file.
   ────────────────────────────────────────────────────────────────────────── */

.seo-problem { background: var(--navy); padding: 60px 48px; }
.seo-problem .seo-section-inner { max-width: 760px; margin: 0 auto; }
.seo-problem h2 { font-family: 'DM Serif Display', serif; font-size: clamp(24px,2.8vw,38px); color: #fff; margin-bottom: 28px; line-height: 1.2; }
.seo-problem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.seo-problem-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.prob-x { color: #e88; font-size: 16px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.seo-solution { padding: 72px 48px; background: var(--cream); }
.seo-solution .seo-section-inner { max-width: 860px; margin: 0 auto; }
.seo-solution h2 { font-family: 'DM Serif Display', serif; font-size: clamp(24px,2.8vw,38px); color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.seo-solution-sub { font-size: 16px; color: var(--muted); line-height: 1.65; margin-bottom: 32px; max-width: 680px; }
.seo-proof-claim { font-size: 14px; color: var(--muted); margin-top: 24px; line-height: 1.6; font-style: italic; }

.seo-how { padding: 72px 48px; background: #fff; }
.seo-how .seo-section-inner { max-width: 860px; margin: 0 auto; }
.seo-how h2 { font-family: 'DM Serif Display', serif; font-size: clamp(24px,2.8vw,38px); color: var(--navy); margin-bottom: 40px; line-height: 1.2; }
.seo-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.seo-step { display: flex; gap: 16px; align-items: flex-start; }
.step-num { font-family: 'DM Serif Display', serif; font-size: 36px; color: var(--border); line-height: 1; flex-shrink: 0; }
.step-body { flex: 1; }
.step-title { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.step-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }

.seo-tabs-section { padding: 72px 48px; background: var(--cream); }
.seo-tabs-section .seo-section-inner { max-width: 860px; margin: 0 auto; }
.seo-tabs-section h2 { font-family: 'DM Serif Display', serif; font-size: clamp(22px,2.5vw,34px); color: var(--navy); margin-bottom: 28px; }
.seo-tabs-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.seo-tab-item { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 8px 14px; font-size: 13px; color: var(--ink); font-weight: 500; }
.seo-tab-featured { background: rgba(45,106,79,0.07); border-color: rgba(45,106,79,0.3); color: var(--navy); font-weight: 600; }
.tab-icon { font-size: 15px; }

.seo-trust { padding: 72px 48px; background: #fff; }
.seo-trust .seo-section-inner { max-width: 860px; margin: 0 auto; }
.seo-trust h2 { font-family: 'DM Serif Display', serif; font-size: clamp(22px,2.5vw,34px); color: var(--navy); margin-bottom: 32px; }
.trust-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.trust-card { background: var(--cream); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }
.trust-icon { font-size: 24px; margin-bottom: 12px; }
.trust-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.trust-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.seo-nudge { background: var(--navy); padding: 64px 48px; text-align: center; }
.seo-nudge .seo-section-inner { max-width: 640px; margin: 0 auto; }
.seo-nudge h2 { font-family: 'DM Serif Display', serif; font-size: clamp(22px,2.5vw,34px); color: #fff; margin-bottom: 16px; line-height: 1.2; }
.seo-nudge p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 24px; }
.nudge-badges { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.nudge-badge { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 100px; padding: 6px 14px; font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500; }

.seo-faq { padding: 72px 48px; background: var(--cream); }
.seo-faq .seo-section-inner { max-width: 720px; margin: 0 auto; }
.seo-faq h2 { font-family: 'DM Serif Display', serif; font-size: clamp(22px,2.5vw,34px); color: var(--navy); margin-bottom: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; background: #fff; padding: 0 24px; }
.faq-item:first-child { border-top: 1px solid var(--border); border-radius: 12px 12px 0 0; }
.faq-item:last-child { border-radius: 0 0 12px 12px; }
.faq-item:only-child { border-radius: 12px; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 4px; font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.4; gap: 16px; }
.faq-toggle { flex-shrink: 0; font-size: 20px; color: var(--muted); font-weight: 300; line-height: 1; }
.faq-toggle::after { content: '+'; }
.faq-item.open .faq-toggle::after { content: '-'; }
.faq-a { display: none; padding: 0 4px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; max-width: 600px; }
.faq-item.open .faq-a { display: block; }

.seo-final-cta { padding: 80px 48px; background: var(--navy); text-align: center; }
.seo-final-cta .seo-section-inner { max-width: 580px; margin: 0 auto; }
.seo-final-cta h2 { font-family: 'DM Serif Display', serif; font-size: clamp(24px,2.8vw,38px); color: #fff; margin-bottom: 16px; line-height: 1.2; }
.seo-final-cta p { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 28px; }

.seo-related { padding: 48px 48px 64px; background: #fff; }
.seo-related .seo-section-inner { max-width: 860px; margin: 0 auto; }
.seo-related h3 { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.related-links { display: flex; flex-wrap: wrap; gap: 12px; }
.related-links a { font-size: 14px; color: var(--navy); text-decoration: none; border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; transition: border-color 0.15s, background 0.15s; }
.related-links a:hover { border-color: var(--navy); background: var(--gray-bg); }

.seo-hero { padding: 120px 48px 64px; background: var(--cream); }
.seo-hero-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.seo-label { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-text); margin-bottom: 16px; background: rgba(45,106,79,0.08); border-radius: 100px; padding: 4px 12px; }
.seo-hero h1 { font-family: 'DM Serif Display', serif; font-size: clamp(28px,3.5vw,48px); color: var(--navy); line-height: 1.15; margin-bottom: 16px; }
.seo-subhead { font-size: 17px; color: var(--muted); line-height: 1.65; margin-bottom: 24px; }
.seo-ownership { font-size: 13px; color: var(--green-text); font-weight: 500; margin: 16px 0; }
.seo-cta-form { display: flex; gap: 8px; justify-content: center; margin: 20px 0 8px; flex-wrap: wrap; }
.seo-email-input { flex: 1; min-width: 220px; max-width: 280px; padding: 11px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 14px; font-family: inherit; color: var(--ink); background: #fff; outline: none; }
.seo-email-input:focus { border-color: var(--navy); }
.seo-cta-btn { background: var(--green); color: #fff; border: none; border-radius: 8px; padding: 11px 22px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; white-space: nowrap; }
.seo-cta-btn:hover { background: #245a42; }
.seo-form-note { font-size: 12px; color: var(--muted); }
.seo-form-note a { color: var(--green-text); text-decoration: none; }
.seo-success { font-size: 14px; color: var(--green-text); font-weight: 500; padding: 10px; background: rgba(45,106,79,0.08); border-radius: 8px; }
.seo-section-inner { max-width: 860px; margin: 0 auto; }

@media (max-width: 768px) {
  .seo-problem, .seo-solution, .seo-how, .seo-tabs-section, .seo-trust, .seo-nudge, .seo-faq, .seo-final-cta, .seo-related, .seo-hero { padding-left: 24px; padding-right: 24px; }
  .seo-steps { grid-template-columns: 1fr; }
  .trust-cards { grid-template-columns: repeat(2,1fr); }
  .seo-cta-form { flex-direction: column; align-items: center; }
  .seo-email-input { max-width: 100%; width: 100%; }
}
@media (max-width: 480px) {
  .trust-cards { grid-template-columns: 1fr; }
}
