/* RESET */
.pricingX-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.pricingX-wrapper {
  background: #0b0b0f;
  padding: 80px 20px;
  color: #fff;
}

/* GRID */
.pricingX-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

/* CARD */
.pricingX-card {
  background: #111217;
  border-radius: 16px;
  padding: 35px 25px;
  transition: 0.4s;
  border: 1px solid #1f2937;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HOVER */
.pricingX-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* ACTIVE */
.pricingX-active {
  background: linear-gradient(180deg, #2563eb, #1d4ed8);
  transform: scale(1.05);
}

/* BIG TITLE (MAIN CHANGE 🔥) */
.pricingX-title {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

/* HIGHLIGHT SEO */
.highlight {
  color: #22c55e;
}

/* PRICE */
.pricingX-price {
  font-size: 34px;
  font-weight: bold;
}

.pricingX-price span {
  font-size: 14px;
  color: #ddd;
}

/* DESC */
.pricingX-desc {
  font-size: 14px;
  color: #bbb;
  margin: 12px 0 20px;
}

/* LIST */
.pricingX-list {
  list-style: none;
  margin-bottom: 25px;
}

.pricingX-list li {
  font-size: 14px;
  margin: 10px 0;
  color: #ccc;
  padding-left: 18px;
  position: relative;
}

/* CHECK ICON */
.pricingX-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-size: 12px;
}

/* BUTTON */
.pricingX-btn {
  width: 100%;
  padding: 12px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
}

.pricingX-btn:hover {
  background: #1d4ed8;
}

/* FOOTER */
.pricingX-footer {
  text-align: center;
  color: #888;
  margin-top: 40px;
  font-size: 13px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .pricingX-grid {
    grid-template-columns: 1fr;
  }
}
