.hba-price-category {
  position: relative;
  margin-bottom: 90px;
  padding: 52px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top right,
      rgba(234, 216, 207, 0.42),
      transparent 28%
    ),
    linear-gradient(135deg, #f8f5f1 0%, #ffffff 48%, #f1e8df 100%);
  border: 1px solid rgba(47, 52, 41, 0.08);
  box-shadow: 0 24px 70px rgba(47, 52, 41, 0.06);
}

.hba-price-category::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(154, 170, 135, 0.08);
}

.hba-price-category h2 {
  position: relative;
  margin: 0 0 42px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #2f3429;
}

.hba-price-category h2::after {
  content: "";
  display: block;
  width: 74px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(to right, #6f7f5f, transparent);
}

.hba-price-list {
  position: relative;
}

.hba-price-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(47, 52, 41, 0.08);
  transition: 0.25s ease;
}

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

.hba-price-row:hover {
  transform: translateX(6px);
}

.hba-service {
  position: relative;
  flex: 1;
  font-size: 18px;
  line-height: 1.5;
  color: #4f4a45;
  padding-left: 26px;
}

.hba-service::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 1px;
  color: #6f7f5f;
  font-size: 12px;
}

.hba-price {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(154, 170, 135, 0.12);
  color: #2f3429;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Mobile */

@media screen and (max-width: 768px) {
  .hba-price-category {
    padding: 34px 24px;
    border-radius: 24px;
    margin-bottom: 60px;
  }

  .hba-price-category h2 {
    margin-bottom: 28px;
  }

  .hba-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
  }

  .hba-price {
    padding: 8px 14px;
  }

  .hba-service {
    padding-left: 22px;
    font-size: 16px;
  }
}
