
/* Apple-style pricing page */

.pricing-hero {
  text-align: center;
  padding: 60px 20px 40px;
}
.pricing-hero h1 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-hero p {
  font-size: 18px;
  color: #555;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.price-card {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.price-card.premium {
  background: #f5f5f7;
}

.price-card h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
}

.price {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
}
.price span {
  font-size: 18px;
  color: #777;
  font-weight: 400;
}

.price-card p {
  font-size: 16px;
  color: #555;
  margin-bottom: 22px;
  line-height: 1.6;
}

.cta {
  display: inline-block;
  padding: 12px 28px;
  background: #0071e3;
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.cta:hover {
  opacity: .88;
}
