/* ════════════════════════════════════════════════════
   SEO — page-specific styles only
   (Shared service-detail patterns live in service-detail.css)
   ════════════════════════════════════════════════════ */

/* ─── §02 · Compounding timeline sidebar (unique to SEO) ─── */
/* A 4-row "what to expect at month 1 / 3 / 6 / 12" timeline
   with a growing bar to convey compounding organic growth. */
.seo-timeline {
  padding: 32px 30px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: 18px;
}
.seo-timeline__label {
  font-size: 10px;
  color: var(--gold-2);
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}
.seo-timeline__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.seo-timeline__row { font-size: 13.5px; line-height: 1.55; }
.seo-timeline__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 6px;
}
.seo-timeline__when {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--gold-2);
  letter-spacing: 0.18em;
}
.seo-timeline__what {
  font-weight: 600;
  color: var(--ink);
  font-size: 13.5px;
}
.seo-timeline__bar {
  height: 6px;
  background: var(--paper);
  border-radius: 3px;
  overflow: hidden;
}
.seo-timeline__bar-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 3px;
  transition: width .4s;
}
.seo-timeline__bar-fill--gold { background: var(--gold); }
.seo-timeline__note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
