.pricing-section {
  position: relative;
  text-align: center;
  padding: 80px 20px;                 /* more breathing space */
  background:#0b0b0f;                 /* optional dark bg */
  color:#ddd;
}
.plan-bg{
  position: absolute;
  bottom: -200px;
  left: 0;
  height: 700px;
  width: 700px;
}

.pricing-section h2 {
  font-size: 3rem;                    /* bigger headline */
  margin-bottom: 60px;
  color:#fff;
}


.plans {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1400px;                   /* container max */
  margin: 0 auto;
}

.plan {
  background: linear-gradient(180deg, #2c1039, #1c0f2e);
  padding: 40px 30px;                  /* more inner space */
  border-radius: 16px;
  width: 340px;                        /* wider default card */
  color: #ddd;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.5);
}

.plan h3 {
  margin: 0 0 15px 0;
  font-size: 1.8rem;
  color: #fff;
}

.price {
  font-size: 2.4rem;
  margin: 20px 0;
  color: #fff;
}

.price span {
  font-size: 1rem;
  opacity: 0.8;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  text-align: left;
}

.plan ul li {
  margin: 12px 0;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
}

.plan ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #9d6cff;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 32px;
  border-radius: 30px;
  background: #2d193d;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #5e3b8d;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.btn:hover {
  background: #ff6b4a;
  border-color: #ff6b4a;
}

/* Special gradient for the middle card */
.highlight {
  background: linear-gradient(180deg, #5d1a8c, #2c1039);
}
.highlight .btn {
  background: #ff6b4a;
  border-color: #ff6b4a;
}
.highlight .btn:hover {
  background: #e65a3c;
  border-color: #e65a3c;
}

/* ===== Responsive Breakpoints ===== */




@media (max-width:768px){
  
}

@media (max-width: 1024px) {
  .plans { gap:25px; }
  .plan { width: 400px; }
  .pricing-section h2{ font-size:2.5rem; }

  .plan-bg {
    height: 600px;
    width: 600px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .plan-bg {
    height: 400px;
    width: 400px;
  }
  .plans { gap:25px; }
  .plan { width: 350px; }
  .pricing-section h2{ font-size:2.5rem; }
}
