.zp-prices {
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(180deg, rgba(248, 250, 255, 0.9), rgba(244, 247, 255, 0.95));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 25px 60px rgba(9, 10, 18, 0.12);
}

.zp-prices__header {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.zp-prices__header .zp-muted {
  margin-top: 0.6rem;
  color: rgba(12, 16, 32, 0.72);
}

.zp-prices__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.zp-priceCard {
  position: relative;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(9, 13, 29, 0.08);
  box-shadow: 0 20px 40px rgba(15, 16, 32, 0.07);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.zp-priceCard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(223, 115, 133, 0.35), rgba(109, 140, 255, 0.25));
  mask: linear-gradient(#000, #000) content-box, linear-gradient(#000, #000);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.zp-priceCard:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 65px rgba(13, 16, 30, 0.14);
  border-color: rgba(9, 13, 29, 0.18);
}

.zp-priceCard:hover::before {
  opacity: 1;
}

.zp-priceCard__inner {
  position: relative;
  padding: 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  height: 100%;
}

.zp-priceCard__badge {
  align-self: flex-start;
}

.zp-priceCard__head h3 {
  color: #050914;
}

.zp-priceCard__head .zp-muted {
  margin-top: 0.35rem;
  color: rgba(14, 18, 33, 0.68);
}

.zp-priceCard__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  color: #0a0f1f;
}

.zp-priceCard__amount {
  font-size: clamp(2.2rem, 3.2vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.zp-priceCard__period {
  font-size: 1rem;
  color: rgba(15, 18, 34, 0.55);
  text-transform: lowercase;
}

.zp-priceCard__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  color: rgba(8, 12, 26, 0.8);
  font-size: 0.98rem;
}

.zp-priceCard__features li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.zp-priceCard__features li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: #73f0c9;
  box-shadow: 0 0 8px rgba(115, 240, 201, 0.45);
}

.zp-priceCard__cta {
  margin-top: auto;
}

@media (max-width: 640px) {
  .zp-prices {
    padding: 1.75rem;
  }

  .zp-priceCard__inner {
    padding: 2rem 1.75rem 1.75rem;
  }
}
