.container-narrow {
  max-width: 900px;
  margin-inline: auto;
}

.prices-group + .prices-group {
  margin-top: 2.5rem;
}

.prices-group__title {
  margin: 0 0 1.25rem;
  color: var(--dark-blue);
  font-size: 1.8rem;
}

.prices-table {
  border: 1px solid rgba(197, 160, 89, 0.18);
  background: var(--white);
}

.prices-table__head,
.prices-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px 90px;
  gap: 1rem;
  align-items: center;
}

.prices-table__head {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.18);
  background: var(--panel-warm);
  color: var(--dark-blue);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.prices-table__head > :nth-child(2),
.prices-table__head > :nth-child(3) {
  text-align: center;
}

.prices-row {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #ececec;
}

.prices-row:last-child {
  border-bottom: 0;
}

.prices-table__body .prices-row:nth-child(even) {
  background: rgba(197, 160, 89, 0.04);
}

.prices-row__service h4 {
  margin: 0;
  font-size: 1.1rem;
}

.prices-row__price,
.prices-row__qty {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.prices-row__price strong {
  font-size: 1.2rem;
  white-space: nowrap;
}

.prices-row__qty-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 40px;
  border: 1px dashed rgba(197, 160, 89, 0.35);
  color: var(--muted-light);
  background: rgba(197, 160, 89, 0.03);
  font-weight: 700;
}

.prices-note {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  background: var(--panel-warm);
  color: var(--muted);
  font-style: italic;
}

.prices-cta {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 640px) {
  .prices-table__head {
    display: none;
  }

  .prices-row {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .prices-row__price {
    justify-content: flex-end;
    text-align: right;
  }

  .prices-row__price strong {
    font-size: 1.4rem;
  }

  .prices-row__qty {
    display: none;
  }
}