.pricing-section {
  background: var(--paper);
}

.pricing-intro {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 42px;
}

.pricing-intro h2 { margin-bottom: 0; }
.pricing-intro > p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
  margin: 0;
}

.pricing-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.pricing-table th,
.pricing-table td {
  padding: 22px 26px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.pricing-table th {
  background: var(--ink);
  color: #fff;
  font: 700 .78rem Manrope, sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

.pricing-table td:last-child {
  color: var(--blue-deep);
  font: 800 1.12rem Manrope, sans-serif;
}

.pricing-table td span {
  color: var(--muted);
  margin-left: 8px;
}

.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table tbody tr:hover { background: #f7fcff; }

@media (max-width: 850px) {
  .pricing-intro { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .pricing-section { padding-left: 22px; padding-right: 22px; }
  .pricing-table th, .pricing-table td { padding: 18px 16px; }
  .pricing-table td span { display: block; margin: 4px 0 0; }
}
