/* ─── CONTENT PAGE STYLES ─────────────────────────── */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  padding: 16px 0;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: var(--muted);
  transition: color .2s;
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--purple); }
.breadcrumb .sep { color: var(--muted-3); }

/* Content Hero */
.content-hero {
  padding: 120px 0 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.content-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  max-width: 720px;
}
.content-hero .hero-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 620px;
  margin-top: 16px;
}

/* Content Body */
.content-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0;
  line-height: 1.8;
}
.content-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-top: 56px;
  margin-bottom: 20px;
}
.content-body h3 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 14px;
}
.content-body p {
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 20px;
  line-height: 1.8;
}
.content-body ul,
.content-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
  list-style: disc;
}
.content-body ol { list-style: decimal; }
.content-body li {
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.8;
  margin-bottom: 8px;
}
.content-body a {
  color: var(--purple);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.content-body a:hover { color: #6D28D9; }
.content-body strong { color: var(--ink); font-weight: 600; }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.comparison-table thead th {
  background: var(--ink);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .02em;
}
.comparison-table thead th:first-child { border-radius: 0; }
.comparison-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-2);
}
.comparison-table tbody tr:nth-child(even) { background: var(--bg-2); }
.comparison-table tbody tr:hover { background: var(--purple-faint); }
.comparison-table .check { color: var(--green); font-weight: 700; }
.comparison-table .cross { color: var(--muted-3); }
.comparison-table .highlight-col {
  background: var(--purple-faint);
  font-weight: 600;
  color: var(--purple);
}

/* CTA Inline */
.cta-inline {
  background: linear-gradient(135deg, var(--purple-faint), var(--cyan-pale));
  border: 1px solid var(--purple-pale);
  border-radius: var(--radius-xl);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.cta-inline h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.cta-inline p {
  color: var(--muted);
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-inline .btn-cta-primary {
  padding: 14px 28px; font-size: 15px; font-weight: 600; color: #fff;
  background: var(--purple); border: none; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; gap: 8px; transition: all .25s;
  box-shadow: 0 4px 16px rgba(124,58,237,.25); letter-spacing: -.01em;
  text-decoration: none;
}
.cta-inline .btn-cta-primary:hover {
  background: #6D28D9; transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(124,58,237,.35);
}

/* Related Pages */
.related-pages {
  border-top: 1px solid var(--border);
  padding: 64px 0;
  margin-top: 32px;
}
.related-pages h2 {
  font-size: 28px;
  margin-bottom: 32px;
  margin-top: 0;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none;
  color: inherit;
}
.related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.related-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--ink);
}
.related-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
}
.related-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  margin-top: 12px;
  text-decoration: none;
}

/* Feature list in content */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
  list-style: none;
  padding: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}
.feature-list .feat-check {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  margin-top: 1px;
}

/* Pricing Table (content page version) */
.pricing-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

/* Info box / tip */
.info-box {
  background: var(--purple-faint);
  border-left: 4px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p {
  font-size: 14px;
  color: var(--ink-2);
  margin-bottom: 0;
}
.info-box strong { color: var(--purple); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 960px) {
  .content-hero { padding: 100px 0 40px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .pricing-cards-row { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 640px) {
  .content-hero { padding: 88px 0 32px; }
  .content-body { padding: 40px 0; }
  .content-body h2 { margin-top: 40px; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-inline { padding: 28px 20px; }
  .comparison-table { font-size: 12px; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 10px 8px; }
}
