.hero {
  /* background: linear-gradient(135deg, #1e3a8a, #7c3aed); */
  background: linear-gradient(135deg, #4e73df, #9b59b6, #ff6ec4);
  background-size: 200% 200%;
  animation: gradientMove 8s ease infinite;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 750px;
  margin: auto;
  opacity: 0.95;
  line-height: 1.6;
}

/* ================= PRICING SECTION ================= */

.pricing-section {
  padding: 100px 0;
  background: #f8fafc;
}

.pricing-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 15px;
  color: #1e293b;
}

.pricing-subtitle {
  text-align: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
  color: #64748b;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.pricing-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  position: relative;
  border: 1px solid #e2e8f0;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 55px rgba(59, 130, 246, 0.15);
}

.pricing-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1e293b;
}

.price {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #f97316, #ef4444);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-desc {
  color: #64748b;
  margin-bottom: 25px;
}

.features {
  list-style: none;
  margin-bottom: 30px;
}

.features li {
  margin-bottom: 10px;
  color: #475569;
  font-size: 14px;
}

.pricing-card button {
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  background: linear-gradient(90deg, #4e73df, #9b59b6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.pricing-card button:hover {
  transform: scale(1.05);
}

/* FEATURED CARD */

.featured {
  transform: scale(1.05);
  border: 2px solid #6366f1;
}

.featured .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #6366f1;
  color: #fff;
  padding: 5px 14px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .featured {
    transform: scale(1);
  }
}
