/**
 * ChilledSites — Shared Article & SEO Page Stylesheet
 *
 * One file for all 565 static pages. Brand: cream/coral/navy.
 * Font: Inter (body), Domine (display headings).
 *
 * Page types covered:
 *   - SEO landing pages (hero + sections + FAQ)
 *   - Blog posts (.article-wrap + .prose)
 *   - /us/ city & vertical pages
 *   - Competitor comparison pages
 */

/* ─── Reset & Base ──────────────────────────────────────────────────────────── */

:root {
  --bg: #faf9f5;
  --bg2: #f3f1ec;
  --navy: #181715;
  --coral: #cc785c;
  --coral-light: #e8a87c;
  --coral-dim: rgba(204,120,92,0.10);
  --coral-border: rgba(204,120,92,0.25);
  --text: #3a3632;
  --text-strong: #181715;
  --muted: #5a5650;
  --faint: #8a8680;
  --card: #ffffff;
  --card-border: rgba(24,23,21,0.08);
  --card-hover: rgba(204,120,92,0.04);
  --divider: rgba(24,23,21,0.08);
  --red-bg: rgba(220,60,60,0.06);
  --red-border: rgba(220,60,60,0.18);
  --green-bg: rgba(34,160,90,0.06);
  --green-border: rgba(34,160,90,0.18);
}

.cs-page, .cs-page *, .cs-page *::before, .cs-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--coral); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ─── Layout ────────────────────────────────────────────────────────────────── */

.cs-page { max-width: 100%; overflow-x: hidden; }

.section, .cs-section {
  padding: 80px 24px;
}
.section-alt, .cs-section-alt, .alt-section {
  padding: 80px 24px;
  background: var(--bg2);
}
.section-inner, .cs-section-inner, .cs-container {
  max-width: 1100px;
  margin: 0 auto;
}
.section-header, .cs-section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ─── Hero ──────────────────────────────────────────────────────────────────── */

.hero, .cs-hero {
  background: var(--navy);
  color: #fff;
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner, .cs-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,120,92,0.15) 0%, transparent 70%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,120,92,0.08) 0%, transparent 70%);
  bottom: -150px;
  right: -100px;
  pointer-events: none;
}
.hero h1, .cs-h1 {
  font-family: 'Domine', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero p, .hero-sub, .cs-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto 28px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--coral-light), var(--coral));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-ctas, .cs-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stats-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.teal { color: var(--coral-light) !important; }

/* ─── Badge / Tag ───────────────────────────────────────────────────────────── */

.badge {
  display: inline-block;
  background: var(--coral-dim);
  color: var(--coral);
  border: 1px solid var(--coral-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 16px;
}

/* ─── Section Titles ────────────────────────────────────────────────────────── */

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Domine', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-strong);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
}
/* Center variants (for hero-like sections) */
.section-title.center, .section-sub.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Hero versions (white text) */
.hero .section-label { color: var(--coral-light); }
.hero .section-title, .hero .section-sub { color: #fff; }
.hero .section-sub { color: rgba(255,255,255,0.7); }

/* ─── Buttons ───────────────────────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(204,120,92,0.3);
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(204,120,92,0.4); text-decoration: none; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--coral);
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  border: 1px solid var(--coral-border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--coral-dim); border-color: var(--coral); text-decoration: none; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}
.btn-secondary:hover { opacity: 0.9; text-decoration: none; }

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.cta-btn-secondary:hover { text-decoration: underline; }

/* ─── Cards ─────────────────────────────────────────────────────────────────── */

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.card-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--coral);
}

/* Step cards (numbered) */
.step-card { text-align: center; }
.step-card .step-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 12px;
}

/* Feature cards */
.feature-card { padding: 24px; }
.feature-card h3 { font-size: 16px; font-weight: 600; color: var(--text-strong); margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Pain-point cards */
.pain-card {
  border-left: 3px solid var(--coral);
  padding: 20px 24px;
}

/* Price cards */
.price-card { text-align: center; padding: 32px 24px; }
.price-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--coral);
  border-width: 2px;
}
.price-card .price { font-family: 'Domine', serif; font-size: 36px; font-weight: 700; }
.price-card.featured .price { color: var(--coral-light); }

/* Better / comparison cards */
.better-card { text-align: center; }
.user-card, .image-card, .telegram-card, .chain-card { text-align: center; }

/* cs-prefixed card variants */
.cs-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cs-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.cs-card-icon, .cs-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--coral);
}
.cs-card-title { font-size: 16px; font-weight: 600; color: var(--text-strong); margin-bottom: 8px; }
.cs-card-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }
.cs-card-teal .cs-card-icon, .cs-card-teal .cs-feature-icon { background: var(--coral-dim); color: var(--coral); }
.cs-card-red { border-left: 3px solid rgba(220,60,60,0.4); }
.cs-card-red .cs-card-red-icon { color: rgba(220,60,60,0.7); }

.cs-pain-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-left: 3px solid var(--coral);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
}
.cs-pain-icon { color: var(--coral); margin-bottom: 8px; }

.cs-feature-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
}
.cs-feature-card h3, .feature-card h3 { font-size: 16px; font-weight: 600; color: var(--text-strong); margin-bottom: 8px; }
.cs-feature-card p, .feature-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Step cards */
.cs-step {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.cs-step-num, .step-number, .step-num {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto 12px;
}
.cs-step-title { font-size: 16px; font-weight: 600; color: var(--text-strong); margin-bottom: 8px; }
.cs-step-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Pill / tag lists */
.pill, .cs-pill {
  display: inline-block;
  background: var(--coral-dim);
  color: var(--coral);
  border: 1px solid var(--coral-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  margin: 3px;
}
.pill-list, .cs-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pill-dot, .cs-stat-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--coral); margin-right: 6px; }

/* cs-stat variants */
.cs-stat { text-align: center; padding: 16px 12px; }
.cs-stat-value { font-family: 'Domine', serif; font-size: 28px; font-weight: 700; color: var(--coral); line-height: 1; margin-bottom: 4px; }
.cs-stat-label { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; }
.cs-stats { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }

/* Final CTA variants */
.final-cta, .cs-final-cta, .cs-cta-section {
  background: var(--navy);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  margin: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.final-cta-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,120,92,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}
.final-cta h2, .cs-final-cta h2, .cs-final-cta-inner h2 {
  font-family: 'Domine', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.final-cta p, .cs-final-cta p, .cs-final-cta-sub {
  color: var(--faint);
  font-size: 16px;
  margin-bottom: 28px;
}
.cs-final-cta-inner { position: relative; z-index: 1; }
.cs-cta-btn { display: inline-block; }

/* cs-badge */
.cs-badge { display: inline-block; background: var(--coral-dim); color: var(--coral); border: 1px solid var(--coral-border); border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 14px; margin-bottom: 16px; }
/* cs-h2 */
.cs-h2 { font-family: 'Domine', serif; font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--text-strong); line-height: 1.2; margin-bottom: 12px; }
.cs-section-label { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral); margin-bottom: 12px; }
.cs-section-sub { font-size: 17px; color: var(--muted); line-height: 1.65; max-width: 640px; }
.cs-link-secondary { color: var(--coral); font-weight: 500; }
.cs-btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: linear-gradient(135deg, var(--coral), var(--coral-light)); color: #fff; font-weight: 700; font-size: 15px; padding: 14px 32px; border-radius: 10px; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 4px 16px rgba(204,120,92,0.3); text-decoration: none; }
.cs-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(204,120,92,0.4); text-decoration: none; }

/* cs-faq variants */
.cs-faq { max-width: 800px; margin: 0 auto; }
.cs-faq-list { list-style: none; padding: 0; }
.cs-faq-item { border-bottom: 1px solid var(--divider); padding: 20px 0; cursor: pointer; }
.cs-faq-q { font-size: 16px; font-weight: 600; color: var(--text-strong); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cs-faq-chevron { transition: transform 0.3s; flex-shrink: 0; color: var(--faint); }
.cs-faq-item.open .cs-faq-chevron { transform: rotate(180deg); }
.cs-faq-a { font-size: 15px; color: var(--muted); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding-top: 0; }
.cs-faq-item.open .cs-faq-a { max-height: 500px; padding-top: 12px; }

/* Timeline (used on some landing pages) */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--divider); }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--coral); margin-top: 6px; flex-shrink: 0; }
.timeline-content { flex: 1; }
.timeline-time { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: 0.04em; }

/* ─── Grid Layouts ──────────────────────────────────────────────────────────── */

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3, .cs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4, .cs-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto, .features-grid, .steps-grid, .cs-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.users-grid, .images-grid, .telegram-grid, .chain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.cs-pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.cs-steps, .steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  counter-reset: step-counter;
}

@media (max-width: 900px) {
  .grid-3, .grid-4, .cs-grid-3, .cs-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4, .cs-grid-3, .cs-grid-4 { grid-template-columns: 1fr; }
}

/* ─── Stats Bar ─────────────────────────────────────────────────────────────── */

.stat { text-align: center; padding: 16px 12px; }
.stat-num {
  font-family: 'Domine', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* Dark background stats */
.hero .stat-num { color: var(--coral-light); }
.hero .stat-label { color: rgba(255,255,255,0.5); }

/* ─── FAQ Accordion ─────────────────────────────────────────────────────────── */

.faq-item {
  border-bottom: 1px solid var(--divider);
  padding: 20px 0;
  cursor: pointer;
}
.faq-q {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--faint);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding-top: 0;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-top: 12px;
}

/* Static FAQ (non-accordion, e.g. blog posts) */
.faq-section .faq-item:not([onclick]) { cursor: default; }
.faq-section .faq-item:not([onclick]) .faq-a {
  max-height: none;
  overflow: visible;
  padding-top: 8px;
}

/* ─── Answer Capsule ────────────────────────────────────────────────────────── */

.answer-capsule {
  background: var(--coral-dim);
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}

/* ─── Breadcrumb ────────────────────────────────────────────────────────────── */

.breadcrumb {
  background: var(--card);
  padding: 14px 24px;
  border-bottom: 1px solid var(--divider);
}
.breadcrumb-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--faint);
}
.breadcrumb-inner a { color: var(--faint); }
.breadcrumb-inner a:hover { color: var(--coral); text-decoration: none; }
.breadcrumb-sep { color: #c4bfb8; }
.breadcrumb-current { color: var(--text-strong); }

/* ─── Article / Blog Layout ─────────────────────────────────────────────────── */

.article-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-header { margin-bottom: 48px; }
.article-header h1 {
  font-family: 'Domine', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.article-tag, .article-category, .article-label {
  display: inline-block;
  background: var(--coral-dim);
  color: var(--coral);
  border: 1px solid var(--coral-border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 20px;
}
.article-title {
  font-family: 'Domine', serif;
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-strong);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.article-subtitle, .article-lead, .article-intro {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--faint);
  padding-top: 20px;
  border-top: 1px solid var(--divider);
}
.article-meta span { color: var(--faint); }

/* ─── Prose / Article Body ──────────────────────────────────────────────────── */
/* Both .prose and .article-body are used as content wrappers across pages */

.prose h2, .article-body h2 {
  font-family: 'Domine', serif;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  color: var(--text-strong);
  margin: 48px 0 16px;
  line-height: 1.3;
}
.prose h3, .article-body h3 {
  font-size: clamp(17px, 2.5vw, 20px);
  font-weight: 600;
  color: var(--text-strong);
  margin: 32px 0 12px;
}
.prose h4, .article-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-strong);
  margin: 24px 0 8px;
}
.prose p, .article-body p { color: var(--text); margin-bottom: 20px; }
.prose ul, .prose ol,
.article-body ul, .article-body ol { margin: 16px 0 24px; padding-left: 24px; color: var(--text); }
.prose li, .article-body li { margin-bottom: 8px; }
.prose strong, .article-body strong { color: var(--text-strong); font-weight: 600; }
.prose hr, .article-body hr { border: none; border-top: 1px solid var(--divider); margin: 40px 0; }
.prose a, .article-body a { color: var(--coral); }
.prose a:hover, .article-body a:hover { text-decoration: underline; }
.prose blockquote, .article-body blockquote {
  border-left: 3px solid var(--coral);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--coral-dim);
  border-radius: 0 8px 8px 0;
  color: var(--muted);
  font-style: italic;
}

/* Tables */
.prose table, .article-body table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 14px; }
.prose thead tr, .article-body thead tr { background: var(--coral-dim); }
.prose th, .article-body th { padding: 12px 16px; text-align: left; font-weight: 600; color: var(--text-strong); border-bottom: 2px solid rgba(204,120,92,0.2); }
.prose td, .article-body td { padding: 12px 16px; color: var(--text); border-bottom: 1px solid var(--divider); }
.prose tr:hover td, .article-body tr:hover td { background: var(--card-hover); }
.prose tr.highlight-row td, .article-body tr.highlight-row td { background: var(--coral-dim); color: var(--text-strong); font-weight: 500; }
.table-wrap { overflow-x: auto; margin: 32px 0; }

/* Table cell status colors */
.td-good { background: var(--green-bg); }
.td-warn { background: rgba(245,158,11,0.08); }
.td-bad { background: var(--red-bg); }

/* ─── Article Callout Boxes ─────────────────────────────────────────────────── */

.toc {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px 28px;
  margin: 24px 0 36px;
}
.toc h2 {
  font-family: 'Domine', serif;
  font-size: 18px !important;
  font-weight: 700;
  color: var(--text-strong);
  margin: 0 0 12px !important;
}
.toc ol, .toc ul {
  margin: 0 !important;
  padding-left: 20px;
}
.toc li {
  margin-bottom: 6px;
  font-size: 15px;
}
.toc a { color: var(--coral); }

.highlight {
  background: var(--coral-dim);
  border-left: 3px solid var(--coral);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight h3 {
  font-size: 16px !important;
  margin: 0 0 12px !important;
  color: var(--text-strong);
}
.highlight ul { margin: 8px 0 0 !important; }

.tip {
  background: var(--green-bg);
  border-left: 3px solid rgba(34,160,90,0.5);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.warning {
  background: rgba(245,158,11,0.06);
  border-left: 3px solid rgba(245,158,11,0.5);
  border-radius: 0 10px 10px 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.comparison {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 24px;
  margin: 24px 0;
}

/* ─── Inline CTA Boxes ──────────────────────────────────────────────────────── */

.inline-cta {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 36px 32px;
  margin: 44px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inline-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light));
}
.inline-cta p { color: #c4bfb8; font-size: 15px; margin-bottom: 12px; }
.inline-cta strong { color: #fff; }
.inline-cta .cta-headline {
  font-family: 'Domine', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.inline-cta .cta-btn-sm {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(204,120,92,0.3);
}
.inline-cta .cta-btn-sm:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(204,120,92,0.4); text-decoration: none; }

/* ─── Final CTA Section ─────────────────────────────────────────────────────── */

.cta-section {
  background: var(--navy);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  margin: 56px 0 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(204,120,92,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Domine', serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.cta-section p { color: var(--faint); font-size: 16px; margin-bottom: 28px; }
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--coral), var(--coral-light));
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(204,120,92,0.35);
}
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(204,120,92,0.45); text-decoration: none; }

/* ─── Social Proof ──────────────────────────────────────────────────────────── */

.social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.02em;
}
.social-proof span { display: flex; align-items: center; gap: 6px; }
.inline-cta .social-proof { color: #6a6560; }
.cta-section .social-proof { color: #6a6560; }

/* ─── Methodology / Info Boxes ──────────────────────────────────────────────── */

.methodology-note {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Checkmark Lists ───────────────────────────────────────────────────────── */

.check-list { list-style: none; padding-left: 0; }
.check-list li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  background: var(--coral-dim);
  border-radius: 50%;
}
.check-list li::after {
  content: '\2713';
  position: absolute;
  left: 4px; top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  .hero { padding: 56px 16px 48px; }
  .section, .section-alt { padding: 56px 16px; }
  .article-wrap { padding: 36px 16px 60px; }
  .cta-section { padding: 36px 24px; border-radius: 12px; }
  .inline-cta { padding: 28px 20px 24px; }
  .prose table { font-size: 12px; }
  .prose th, .prose td { padding: 8px 10px; }
}
