body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont;
  background: radial-gradient(circle at top, #140a2c, #06030f);
  color: #ffffff;
}

/* SECTION */
.pricing-section {
  padding: 80px 20px;
}

/* HEADER */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 36px;
  font-weight: 800;
}
.pricing-header p {
  color: #b9b9d4;
  margin-top: 10px;
  font-size: 18px;
}

/* GRID */
.pricing-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 40px;
}

/* GLASS CARD */
.price-card {
  position: relative;
  padding: 45px 30px;
  border-radius: 28px;
background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(166, 77, 255, 0.35);

  box-shadow:
    0 0 40px rgba(166, 77, 255, 0.25),
    inset 0 0 30px rgba(166, 77, 255, 0.08);

  transition: 0.35s ease;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 60px rgba(166, 77, 255, 0.45),
    inset 0 0 40px rgba(166, 77, 255, 0.12);
}
/* BADGE */
.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #c026ff, #7c5cff);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(192, 38, 255, 0.6);
}
.pricing-section::before {
content: "";
position: absolute;
width: 600px;
height: 600px;
background: radial-gradient(circle, rgba(168,85,247,0.35), transparent);
top: -200px;
left: -200px;
filter: blur(120px);
z-index: -1;
}
/* TITLE */
.price-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}
/* PRICE */
.price {
  text-align: center;
  font-size: 56px;
  font-weight: 900;
  margin: 20px 0;
}

.price span {
  font-size: 18px;
  opacity: 0.7;
  margin-left: 6px;
}

/* FEATURES */
.price-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.price-features li {
  margin-bottom: 12px;
  color: #cfcfe7;
  font-size: 16px;
}

/* BUTTON */
.price-btn {
  display: block;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: white;

  background: linear-gradient(90deg, #c026ff, #7c5cff);
  box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);

  transition: 0.3s;
}

