/* ── Page-specific styles for /ai-therapist-free ─────────────── */
/* Reuses the at-* class system from anonymous-therapy.css */

.atf-trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  margin-bottom: 8px;
}

.atf-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 6px 14px;
  border-radius: 99px;
}

.atf-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Comparison table */
.atf-compare-table {
  margin-top: 28px;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  overflow: hidden;
  font-size: 14px;
}

.atf-compare-header {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-card);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.atf-compare-header > div {
  padding: 12px 16px;
}

.atf-compare-header > div:nth-child(2) {
  color: var(--accent);
}

.atf-compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1.2fr 1.2fr;
  border-bottom: 1px solid var(--border-card);
  transition: background 0.12s;
}

.atf-compare-row:last-child {
  border-bottom: none;
}

.atf-compare-row:hover {
  background: rgba(255,255,255,0.02);
}

.atf-compare-cell {
  padding: 14px 16px;
  color: var(--text-dim);
  line-height: 1.5;
  display: flex;
  align-items: center;
}

.atf-compare-cell--label {
  font-weight: 500;
  color: var(--text);
  font-size: 13px;
}

.atf-compare-cell--orbel {
  color: #86efac;
  font-size: 13px;
}

.atf-compare-cell--negative {
  color: rgba(245,240,232,0.35);
}

@media (max-width: 600px) {
  .atf-compare-table {
    font-size: 12px;
    border-radius: 12px;
  }
  .atf-compare-header,
  .atf-compare-row {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }
  .atf-compare-header > div:nth-child(3),
  .atf-compare-cell:nth-child(3) {
    display: none;
  }
  .atf-compare-header > div:nth-child(1) {
    grid-column: 1 / -1;
  }
  .atf-compare-cell--label {
    grid-column: 1 / -1;
    padding-bottom: 4px;
  }
  .atf-compare-row {
    padding: 12px 0;
  }
  .atf-compare-cell {
    padding: 4px 16px;
  }
  .atf-trust-pills {
    flex-direction: column;
    align-items: center;
  }
  .atf-trust-pill {
    font-size: 11px;
    padding: 5px 12px;
  }
}