@media (max-width: 640px) {
  .prices-section {
    padding: 56px 0;
  }

  .prices-table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
    border-collapse: separate;
    overflow: visible;
  }

  .prices-table thead {
    display: none;
  }

  .prices-table tbody {
    display: grid;
    gap: 12px;
  }

  .prices-table tr {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid #EDECEA;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 24px rgba(26,27,46,0.05);
  }

  .prices-table tr:hover td {
    background: transparent;
  }

  .prices-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 0;
    border-bottom: 0;
    background: transparent;
    color: #2D2E45;
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .prices-table td::before {
    color: #9A9BAC;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .prices-table td:nth-child(1)::before {
    content: 'Услуга';
  }

  .prices-table td:nth-child(2)::before {
    content: 'Описание';
  }

  .prices-table tr td:nth-child(2):last-child::before {
    content: 'Стоимость';
  }

  .prices-table td:nth-child(3)::before {
    content: 'Цена';
  }

  .prices-table td:first-child {
    font-weight: 700;
    color: #1A1B2E;
  }

  .prices-table td:last-child {
    color: #1A1B2E;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    white-space: normal;
  }
}
