/* ══════════════════════════════════════════════════════════
   PRICING.CSS — Pricing Page Styles
   Dark-dominant PlugJolt theme
   ══════════════════════════════════════════════════════════ */

/* ── PRICING CARDS (LARGE) ── */
.pricing-grid--large {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  align-items: start;
}

.pricing-card--large {
  padding: var(--space-12) var(--space-8);
}

.pricing-card--large .pricing-card__price {
  font-size: var(--size-5xl);
}

.pricing-card--large .pricing-card__name {
  font-size: var(--size-xl);
  margin-bottom: var(--space-3);
}

.pricing-card--large .pricing-card__desc {
  font-size: var(--size-md);
}

.pricing-card__overage {
  font-size: var(--size-sm);
  color: var(--text-tertiary);
  margin-top: var(--space-2);
  margin-bottom: var(--space-6);
}

/* ── COMPARISON TABLE ── */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table thead th {
  font-family: var(--font-display);
  font-size: var(--size-sm);
  font-weight: var(--weight-semi);
  color: var(--white);
  background: var(--section-alt);
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 2px solid var(--border-subtle);
}

.comparison-table thead th:first-child {
  width: 22%;
}

.comparison-table thead th.comparison-table__highlight {
  background: var(--volt-green-10);
  color: var(--white);
}

.comparison-table tbody td {
  padding: var(--space-4) var(--space-6);
  font-size: var(--size-sm);
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid var(--border-subtle);
  line-height: var(--leading-relaxed);
  vertical-align: top;
}

.comparison-table tbody td:first-child {
  font-weight: var(--weight-medium);
  color: var(--white);
}

.comparison-table tbody td.comparison-table__highlight {
  background: var(--volt-green-10);
  color: var(--white);
  font-weight: var(--weight-medium);
}

.comparison-source {
  text-align: center;
  font-size: var(--size-xs);
  color: var(--text-tertiary);
  margin-top: var(--space-4);
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .pricing-grid--large {
    grid-template-columns: 1fr;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table thead th,
  .comparison-table tbody td {
    min-width: 140px;
    padding: var(--space-3) var(--space-4);
    font-size: var(--size-xs);
  }

  .pricing-card--large .pricing-card__price {
    font-size: var(--size-4xl);
  }
}
