.pricing-table {
  width: 90%;
  margin: 2rem auto 1rem auto;
  border-collapse: collapse;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 1.05rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(30,41,59,0.10);
  max-width: 700px;
}

.pricing-table th,
.pricing-table td {
  padding: 0.9rem 0.7rem;
  text-align: left;
}

.pricing-table th {
  background: rgba(30,41,59,0.25);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.08rem;
}

.pricing-table tr:nth-child(even) {
  background: rgba(255,255,255,0.06);
}

.pricing-table tr:nth-child(odd) {
  background: rgba(255,255,255,0.02);
}

.pricing-table td {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-note {
  color: var(--hover-gray);
  font-size: 0.98rem;
  margin-top: 1.2rem;
  text-align: center;
}

@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    padding: 0.6rem 0.3rem;
    font-size: 0.98rem;
  }
  .pricing-table {
    font-size: 0.98rem;
  }
}