* {
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

/* SECTION */
.pricing-section {
  padding: 80px 20px;
  text-align: center;
  background: #000000;
  color: #e5e7eb;
}

.pricing-section h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #ffffff;
}

.subtitle {
  color: #9ca3af;
  margin-bottom: 50px;
}

/* GRID */
.pricing-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* CARD */
.pricing-card {
  background: #0b0b0b;
  border: 1px solid #8c32ff;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.25);
}

/* HEADINGS */
.pricing-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
  color: #ffffff;
}

.desc {
  color: #9ca3af;
  font-size: 14px;
  margin-bottom: 24px;
}

/* PRICE */
.price-box {
  margin-bottom: 24px;
}

.old-price {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 14px;
}

.badge {
  background: rgba(234, 88, 12, 0.15);
  color: #fb923c;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
}

.price {
  font-size: 42px;
  font-weight: 800;
  margin: 12px 0;
  color: #ffffff;
}

.price span {
  font-size: 16px;
  color: #9ca3af;
}

.free {
  color: #8c32ff;
  font-weight: 600;
  font-size: 14px;
}

/* BUTTONS */
.btn-outline,
.btn-primary {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  margin: 12px 0;
}

.btn-outline {
  border: 2px solid #8c32ff;
  background: transparent;
  color: #8c32ff;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #8c32ff, #8c32ff);
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.25);
}

/* RENEW TEXT */
.renew {
  font-size: 13px;
  color: #9ca3af;
  margin: 16px 0;
}

/* FEATURES */
ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

ul li {
  font-size: 14px;
  padding: 8px 0;
  color: #e5e7eb;
}

.muted {
  color: #6b7280;
}

/* BEST PLAN */
.best {
  border: 2px solid #8c32ff;
  transform: scale(1.05);
  background: linear-gradient(180deg, #0b1220, #05080f);
}

.best-tag {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #8c32ff, #8c32ff);
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.plan-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: white; /* dark theme text */
  font-size: 14px;
}

/* ✔ icon */
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background-image: url("https://www.hostbank.in/assets/images/common-icons/check-mark.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.plan-list li.plan_cross {
  color: #6b7280;
}

/* ✖ icon */
.plan-list li.plan_cross::before {
  background-image: url("https://www.hostbank.in/assets/images/common-icons/cross-dash.svg");
  opacity: 0.6;
}



/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
