/* Страница «Купить QR-код» — стили в соответствии с DESIGN_GUIDE */

.prices-page {
  color: var(--app-text);
  padding: clamp(1rem, 2vw, 2rem) 0;
}

.prices-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}


.prices-hero::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--app-primary-soft) 0%, rgba(232, 241, 251, 0) 70%);
  pointer-events: none;
}

.prices-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.prices-hero__lead {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 1rem auto 0;
  color: var(--app-muted);
  font-size: 1.05rem;
  line-height: 1.55;
  text-align: center;
}

.prices-hero__actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.prices-product-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.prices-product-card__title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--app-text);
}

.prices-product-card__desc {
  margin: 0 0 1.5rem;
  color: var(--app-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.prices-product-card__logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.prices-product-card__logo img {
  height: 100px;
  width: auto;
  object-fit: contain;
}

.prices-product-card .btn {
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  border-radius: 999px;
}

.prices-product-card .btn-outline-primary {
  border-color: var(--app-primary);
  color: var(--app-primary);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.prices-product-card .btn-outline-primary:hover {
  background: var(--app-primary-soft);
  border-color: var(--app-primary);
  color: var(--app-primary);
}

@media (max-width: 768px) {
  .prices-hero__actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
