/* ============================================================
   CompareLifeCoachTraining — main.css
   ============================================================ */

/* ---- VARIABLES ---- */
:root {
  --ink:        #1c1a17;
  --ink-mid:    #4a4740;
  --ink-light:  #7a7670;
  --ink-faint:  #b8b4ae;
  --cream:      #faf8f4;
  --cream-warm: #f2ede4;
  --cream-rule: #e4ddd2;
  --gold:       #b8933f;
  --gold-light: #d4a85a;
  --gold-pale:  #f5edd9;
  --teal:       #2a6b68;
  --teal-light: #3d8c88;
  --teal-pale:  #e8f4f3;
  --serif: 'Playfair Display', Georgia, serif;
  --body:  'EB Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
}

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-rule);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--cream);
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal); }

/* ---- BUTTONS ---- */
.btn-primary {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  border: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--teal); }
.btn-primary--block {
  display: block;
  text-align: center;
  padding: 1rem 1.75rem;
  width: 100%;
}
.btn-primary--wide {
  width: 100%;
  text-align: center;
}
.btn-secondary {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-mid);
  text-decoration: none;
  background: none;
  border: none;
  border-bottom: 1px solid var(--cream-rule);
  padding: 0 0 2px 0;
  cursor: pointer;
  display: inline;
  transition: color 0.2s, border-color 0.2s;
}
.btn-secondary:hover { color: var(--gold); border-color: var(--gold); }

/* ---- HERO ---- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.hero-kicker {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-kicker--tight { margin-bottom: 0.5rem; }
.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--teal); }
.hero-lead {
  font-size: 1.15rem;
  color: var(--ink-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-family: var(--body);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--cream-warm);
  border: 1px solid var(--cream-rule);
  border-radius: 4px;
}
.hero-stat {
  border-bottom: 1px solid var(--cream-rule);
  padding-bottom: 1.5rem;
}
.hero-stat--last {
  border: none;
  padding-top: 1.5rem;
  padding-bottom: 0;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- EDITORIAL RULE ---- */
.rule {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  border-top: 1px solid var(--cream-rule);
}

/* ---- SECTIONS ---- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.section-kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1.05rem;
  color: var(--ink-mid);
  max-width: 640px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ---- BADGES ---- */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge-gold  { background: var(--gold-pale); color: var(--gold); }
.badge-teal  { background: var(--teal-pale); color: var(--teal); }
.badge-ink   { background: var(--cream-warm); color: var(--ink-mid); }
.badge-light { background: rgba(255,255,255,0.12); color: var(--cream); }
.badge-gold-light { background: rgba(184,147,63,0.3); color: var(--gold-light); }

/* ---- COMPARISON TABLE ---- */
.comparison-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--cream-rule);
  border-radius: 4px;
}
table.comparison {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 0.88rem;
  min-width: 860px;
}
.comparison thead tr { background: var(--ink); color: var(--cream); }
.comparison th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.comparison th:first-child { width: 180px; }
.comparison td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--cream-rule);
  vertical-align: top;
  line-height: 1.45;
}
.comparison tbody tr:last-child td { border-bottom: none; }
.comparison tbody tr:hover { background: var(--cream-warm); }
.comparison .provider-name { font-family: var(--serif); font-weight: 500; font-size: 0.95rem; color: var(--ink); }
.comparison .provider-name a { color: var(--ink); text-decoration: none; }
.comparison .provider-name a:hover { color: var(--teal); }
.tca-row { background: var(--gold-pale) !important; }
.tca-row:hover { background: #f0e3c0 !important; }
.tca-row .provider-name { color: var(--gold); }
.check { color: var(--teal); font-size: 1rem; }
.cross { color: var(--ink-faint); }

/* ---- PRICING NOTE ---- */
.pricing-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: var(--cream-warm);
  border: 1px solid var(--cream-rule);
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-light);
}
.pricing-note strong { color: var(--ink-mid); }

/* ---- PROVIDER CARDS ---- */
.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.provider-card {
  border: 1px solid var(--cream-rule);
  border-radius: 4px;
  padding: 1.75rem;
  background: white;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  color: inherit;
  box-sizing: border-box;
  width: 100%;
}
.provider-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.provider-card.featured { border-color: var(--gold); border-width: 2px; }
.card-badges { display: flex; gap: 0.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.card-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.card-title-suffix {
  font-size: 0.8em;
  font-weight: 400;
  color: var(--ink-light);
}
.card-meta-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
/* Keep label selector for non-card contexts */
.card-meta-item label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.card-tagline {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  flex: 1;
}
.card-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--cream-rule);
  margin-top: auto;
}
.card-meta-item label {
  display: block;
  font-family: var(--sans);
  font-size: 0.68rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.card-meta-item span {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink);
  font-weight: 500;
}
.featured-ribbon {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--gold);
  color: white;
  padding: 0.25rem 0.75rem;
  margin-bottom: 1rem;
  display: inline-block;
  border-radius: 2px;
}

/* ---- EDITORIAL COLUMNS ---- */
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.editorial-text h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.editorial-text p {
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.editorial-text p:last-child { margin-bottom: 0; }

/* ---- PULLQUOTE ---- */
.pullquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--gold-pale);
}
.pullquote--top { margin-top: 3rem; }
.pullquote p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin: 0;
}

/* ---- ARTICLE LAYOUT ---- */
.article-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.article-body h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.article-body .byline {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--ink-light);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-rule);
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 2.5rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.75rem 0 0.5rem;
}
.article-body p {
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.article-body ul, .article-body ol {
  font-family: var(--body);
  font-size: 1.05rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin: 0 0 1.25rem 1.5rem;
}
.article-body li { margin-bottom: 0.35rem; }

/* ---- SIDEBAR ---- */
.article-sidebar { padding-top: 4rem; }
.sidebar-box {
  border: 1px solid var(--cream-rule);
  border-radius: 4px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: white;
}
.sidebar-box h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.sidebar-box p {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.sidebar-box p:last-child { margin: 0; }
.sidebar-link-list { list-style: none; }
.sidebar-link-list li {
  border-bottom: 1px solid var(--cream-rule);
  padding: 0.5rem 0;
  font-family: var(--sans);
  font-size: 0.85rem;
}
.sidebar-link-list li:last-child { border: none; }
.sidebar-link-list a { color: var(--ink-mid); text-decoration: none; transition: color 0.2s; }
.sidebar-link-list a:hover { color: var(--teal); }

/* ---- PROVIDER HERO ---- */
.provider-hero {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem 2rem;
}
.provider-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.provider-hero .back-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--cream-rule);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 1.25rem;
  transition: color 0.2s;
}
.provider-hero .back-link:hover { color: var(--gold-light); }
.provider-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.provider-hero .tagline {
  font-family: var(--body);
  font-size: 1.1rem;
  color: var(--ink-faint);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.provider-hero-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.provider-score {
  text-align: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  min-width: 160px;
}
.score-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.score-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.score-sub {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: #666;
  line-height: 1.5;
  margin-top: 12px;
}
.score-spacer { height: 12px; }
.editors-choice-badge { margin-bottom: 0.75rem; }

/* ---- PROVIDER DETAIL ---- */
.provider-detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.provider-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.01em;
}
.provider-body h2:first-child { margin-top: 0; }
.provider-body p {
  font-family: var(--body);
  font-size: 1.02rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.provider-body ul {
  font-family: var(--body);
  font-size: 1.02rem;
  color: var(--ink-mid);
  line-height: 1.85;
  margin: 0 0 1.25rem 1.5rem;
}
.provider-body li { margin-bottom: 0.35rem; }
.provider-body .btn-inline-group { margin-top: 1rem; }
.btn-separator { margin: 0 0.75rem; color: var(--ink-faint); }

/* ---- PROVIDER HERO TITLE SUFFIX ---- */
.hero-title-suffix {
  font-size: 0.65em;
  font-weight: 400;
  opacity: 0.7;
}

/* ---- FACTS BOX ---- */
.facts-box {
  border: 1px solid var(--cream-rule);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: white;
}
.facts-box-header {
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.facts-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--cream-rule);
  font-family: var(--sans);
  font-size: 0.85rem;
}
.facts-row:last-child { border: none; }
.facts-row .label { color: var(--ink-light); }
.facts-row .value { color: var(--ink); font-weight: 500; text-align: right; }

/* ---- VERDICT BOX ---- */
.verdict-box {
  border: 2px solid var(--gold);
  border-radius: 4px;
  padding: 1.5rem;
  background: var(--gold-pale);
  margin-bottom: 1.5rem;
}
.verdict-box h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.verdict-box p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.verdict-box p:last-child { margin: 0; }

/* ---- VISIT BUTTON WRAPPER ---- */
.visit-btn-wrap { margin-top: 1rem; }

/* ---- PROS / CONS ---- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 1.5rem 0;
}
.pros, .cons { border-radius: 4px; padding: 1.25rem; }
.pros { background: var(--teal-pale); border: 1px solid #c0dedd; }
.cons { background: #fdf5f0; border: 1px solid #f0d8cb; }
.pros h5, .cons h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.pros h5 { color: var(--teal); }
.cons h5 { color: #c05030; }
.pros ul, .cons ul {
  list-style: none;
  font-family: var(--sans);
  font-size: 0.85rem;
  line-height: 1.55;
}
.pros li { padding-left: 1.2rem; position: relative; margin-bottom: 0.4rem; color: var(--ink-mid); }
.pros li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 500; }
.cons li { padding-left: 1.2rem; position: relative; margin-bottom: 0.4rem; color: var(--ink-mid); }
.cons li::before { content: '–'; position: absolute; left: 0; color: #c05030; }

/* ---- ACCREDITATION GRID ---- */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}
.accred-grid--top { margin-top: 1.5rem; }
.accred-card {
  border: 1px solid var(--cream-rule);
  border-radius: 4px;
  padding: 1.75rem;
  background: white;
}
.accred-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.accred-card .accred-sub {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--ink-light);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}
.accred-card p {
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.75;
}

/* ---- COMPARE PAGE WRAPPER ---- */
.compare-badge-wrap { margin-top: 4px; }

/* ---- INLINE TEXT HELPERS ---- */
.text-ink-light { color: var(--ink-light); }
.text-ink-faint { color: var(--ink-faint); }
.text-ink-mid   { color: var(--ink-mid); }
.text-small     { font-size: 0.82rem; }
.mt-1  { margin-top: 1rem; }
.mt-3  { margin-top: 3rem; }

/* ---- FOOTER ---- */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.footer-brand span { color: var(--gold-light); }
.footer-desc {
  font-family: var(--sans);
  font-size: 0.83rem;
  color: var(--ink-faint);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.footer-disclaimer {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: #555;
  line-height: 1.6;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; font-family: var(--sans); font-size: 0.85rem; }
.footer-col a { color: #888; text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2826;
  display: flex;
  justify-content: space-between;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: #555;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .hero               { grid-template-columns: 1fr; gap: 2rem; }
  .editorial-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .article-wrap       { grid-template-columns: 1fr; }
  .article-sidebar    { padding-top: 0; }
  .provider-detail    { grid-template-columns: 1fr; }
  .provider-hero-inner{ grid-template-columns: 1fr; }
  .footer-inner       { grid-template-columns: 1fr 1fr; }
  .accred-grid        { grid-template-columns: 1fr 1fr; }
  .pros-cons          { grid-template-columns: 1fr; }
  .nav-links          { display: none; }
}
@media (max-width: 600px) {
  .footer-inner  { grid-template-columns: 1fr; }
  .accred-grid   { grid-template-columns: 1fr; }
  .hero-stats    { grid-template-columns: 1fr; }
}

/* ---- TRUSTPILOT ---- */
.tp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--teal);
  text-decoration: none;
  margin-bottom: 0.75rem;
}
.tp-badge:hover { color: var(--teal-light); }
.tp-badge--card {
  display: block;
  margin-bottom: 0.75rem;
  pointer-events: none;
}
.tp-badge.tp-na {
  color: var(--ink-faint);
  font-weight: 400;
  font-size: 0.78rem;
}
.tp-count {
  font-weight: 400;
  color: var(--ink-light);
}
.tp-na-cell { color: var(--ink-faint); font-family: var(--sans); font-size: 0.85rem; }
.tp-table-link {
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--teal);
  text-decoration: none;
  white-space: nowrap;
}
.tp-table-link:hover { color: var(--teal-light); }
