.plan-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.gold-gradient-card {
  background: linear-gradient(to top, #ffd700, #000 60%);
  border-radius: 20px;
  color: #fff;
  padding: 2rem;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 0 15px var(--text-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.gold-gradient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.plan-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}

.tag {
  background: #fff;
  color: #2a1a4a;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: bold;
  border-radius: 999px;
}

.card-price h2 {
  font-size: 2.5rem;
  color: #fff;
  margin: 0;
}

.card-price p {
  margin: 0;
  color: #f3f3f3;
  font-size: 1.2rem;
}

.card-price small {
  display: block;
  margin-top: 5px;
  color: #ddd;
  font-size: 0.85rem;
}

.gold-btn {
  width: 100%;
  margin: 1.5rem 0;
  padding: 12px 0;
  background: #fff;
  color: #2a1a4a;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.gold-btn:hover {
  background: #f7f7f7;
}

.card-features {
  font-size: 0.95rem;
}

.card-subtitle {
  color: #eee;
  margin-bottom: 1rem;
  font-style: italic;
}

.card-features ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.card-features li {
  margin-bottom: 10px;
  padding-left: 1.4em;
  position: relative;
  color: #fff;
}



.subscription-header {
  text-align: center;
  margin-bottom: 2rem;
  color: #fff;
}

.subscription-header h2 {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(to right, #ffd700, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.billing-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.billing-option {
  background: linear-gradient(145deg, #1a1a1a, #111);
  padding: 12px 20px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: 0.3s ease;
  cursor: pointer;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.billing-option:hover,
.billing-option.active {
  border-color: #a855f7;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}
/* Start off-screen and invisible */
#subscriptionSection {
  opacity: 0;
  transform: translateY(600px);
  transition: opacity 2.6s ease, transform 0.6s ease;
}

/* Slide up and fade in */
#subscriptionSection.show {
  opacity: 1;
  transform: translateY(0);
}
.card-features li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #a855f7; /* purple tick */
  font-weight: bold;
}
.small-cents {
  font-size: 40%;       /* smaller text */
  vertical-align: super; /* raise it slightly */
  line-height: 1;
}


@media (min-width: 768px) {
  .plan-wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }

  .gold-card {
    flex: 1 1 320px;
    max-width: 400px;
  }
}
