.pricing {
  padding: clamp(52px, 18vw, 88px) clamp(20px, 8vw, 32px) clamp(44px, 16vw, 64px);
  background: linear-gradient(170deg, rgba(4, 12, 30, 0.85), rgba(2, 6, 18, 0.95));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-grid {
  display: grid;
  gap: clamp(20px, 7vw, 28px);
  grid-template-columns: 1fr;
}

.price-card {
  --price-card-button-min-height: 52px;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 10vw, 38px);
  border-radius: 24px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.15)), rgba(8, 18, 35, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 26px 60px rgba(2, 8, 20, 0.45);
  transform: none;
}

.price-card.highlight {
  background: linear-gradient(180deg, rgba(0, 110, 255, 0.32), rgba(8, 18, 35, 0.9));
  border-color: rgba(0, 132, 255, 0.55);
}

.price {
  font-size: clamp(1.8rem, 6vw + 0.9rem, 2.4rem);
  justify-content: center;
  text-align: center;
}

.price.small-note,
.price.headline.small-note {
  display: inline-block;
  margin-top: -6px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(235, 244, 255, 0.8);
  width: 100%;
  text-align: center;
}

.processing-rate {
  margin: 4px 0 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.processing-rate__value {
  font-size: clamp(1.4rem, 5vw + 0.8rem, 2rem);
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  color: #fff;
}

.processing-rate__label {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(225, 235, 255, 0.84);
}

.price-card ul {
  gap: 12px;
  font-size: 0.95rem;
}

.price-card ul li::before {
  content: '';
  display: inline-flex;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b8cff, #0d6bfd);
  box-shadow: 0 0 0 5px rgba(0, 102, 255, 0.14);
}

.price-card ul li.negative::before {
  background: linear-gradient(135deg, #ff7b7b, #ff4b4b);
  box-shadow: 0 0 0 5px rgba(255, 107, 107, 0.18);
}

.price-card .primary-button,
.price-card .secondary-button {
  width: 100%;
  min-height: var(--price-card-button-min-height);
  height: var(--price-card-button-min-height);
  border-radius: 16px;
  padding: 0 24px;
  line-height: 1;
  white-space: nowrap;
}

.price-card .secondary-button {
  background: rgba(255, 255, 255, 0.12);
}

.pricing-note {
  margin: clamp(28px, 9vw, 40px) 0 0;
  font-size: 0.9rem;
  text-align: left;
  color: rgba(228, 235, 255, 0.75);
}
