/* ── Pricing grid — give the 4-in-a-row layout more breathing room
   than the sitewide .container allows, so cards aren't squeezed. ── */
#ds-pricing-section .container {
  max-width: 1400px;
}

#ds-pricing-section .grid-4 {
  gap: 16px;
}

#ds-pricing-section .pricing-card {
  padding: 28px 20px;
}

@media (max-width: 1279px) {
  #ds-pricing-section .container { max-width: var(--container-max); }
}

/* ── Feature comparison matrix (page-scoped copy of pricing.css) ── */
.feature-matrix {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  margin-top: 8px;
}

.feature-matrix th,
.feature-matrix td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.feature-matrix th:first-child,
.feature-matrix td:first-child {
  text-align: left;
  padding-left: 0;
}

.feature-matrix th {
  font-weight: 700;
  color: var(--color-text-primary);
  background: var(--color-bg-elevated);
  font-size: var(--text-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-matrix thead th:first-child { background: transparent; }

.feature-matrix td { color: var(--color-text-secondary); }
.feature-matrix tr:last-child td { border-bottom: none; }
.feature-matrix .check { color: var(--color-accent-primary); font-size: 16px; }
.feature-matrix .dash  { color: var(--color-text-muted); }

.feature-matrix .highlighted-col {
  background: var(--color-violet-subtle);
}

@media (max-width: 768px) {
  .feature-matrix { display: none; }
}
