/* =========================================================================
   COMPARE.CSS — shared styles for the "vs-*.html" competitor comparison
   pages. Loaded alongside global.css / components.css / landing.css /
   audience.css (hero: .aud-hero/.aud-tag/.aud-heading/.aud-sub/.aud-ctas)
   and pricing.css (FAQ accordion: .pricing-faq/.pfaq-*), both reused here.
   ========================================================================= */

/* ── Verdict cards: "Choose RecruitMX if…" / "Choose [Competitor] if…" ── */
.verdict-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.verdict-card {
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  border: 1px solid var(--border);
}

.verdict-card.verdict-us {
  background: var(--primary-light);
  border-color: rgba(79, 70, 229, 0.25);
}

.verdict-card.verdict-them {
  background: var(--bg);
}

.verdict-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
}

.verdict-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.verdict-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.5;
}

.verdict-list svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--primary); }
.verdict-them .verdict-list svg { color: var(--text-muted); }

/* ── Feature comparison table ── */
.compare-table-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 520px;
}

.compare-table th, .compare-table td {
  padding: 0.875rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
}

.compare-table thead th {
  background: var(--bg);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}

.compare-table thead th.col-us {
  background: var(--primary-light);
  color: var(--primary);
}

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td.col-us { background: rgba(79, 70, 229, 0.04); }

.ct-yes { color: var(--success); }
.ct-no  { color: var(--text-light); }
.ct-partial { color: var(--warning); font-size: 0.75rem; font-weight: 700; }

/* ── Pricing highlight strip ── */
.pricing-highlight {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.pricing-highlight-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.pricing-highlight-card.us { border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.pricing-highlight-name { font-size: 0.8125rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem; }
.pricing-highlight-value { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.pricing-highlight-note { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.375rem; }

/* ── Trust / sourcing footer note ── */
.compare-sources {
  max-width: 900px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.7;
}
.compare-sources a { color: var(--text-muted); }

@media (max-width: 640px) {
  .verdict-grid, .pricing-highlight { grid-template-columns: 1fr; }
}
