/* =========================================================================
   Modern Pricing Cards  (assets/css/pricing-cards.css)
   Reusable card style: title + sub + big price + button + "What's included".
   Use with the .pcards grid + .pcard structure. Fully responsive.
   ========================================================================= */

.pcards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.pcard {
  background: #fff;
  border: 1px solid #e8ebf0;
  border-radius: 12px;
  padding: 26px 24px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s ease, transform .2s ease;
}
.pcard:hover { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transform: translateY(-3px); }

.pcard-title {
  font-size: 19px;
  font-weight: 700;
  color: #1f2a44;
  margin: 0 0 6px;
}
.pcard-sub {
  font-size: 14px;
  color: #8a93a2;
  margin: 0 0 18px;
}
.pcard-price {
  font-size: 33px;
  font-weight: 800;
  color: #1f2a44;
  line-height: 1.1;
  margin-bottom: 20px;
  min-height: 38px;
}

.pcard-btn {
  display: block;
  text-align: center;
  background: #273043;
  color: #fff !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 8px;
  transition: background .15s ease;
}
.pcard-btn:hover { background: #1c2333; color: #fff; }

.pcard-div {
  border: 0;
  border-top: 1px solid #eef0f4;
  margin: 22px 0 16px;
}
.pcard-inc {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  color: #1f2a44;
  text-transform: uppercase;
  margin: 0 0 14px;
}

.pcard-list { list-style: none; padding: 0; margin: 0; }
.pcard-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #5a6472;
  font-size: 15px;
  line-height: 1.4;
}
.pcard-list li:last-child { margin-bottom: 0; }
.pcard-list li::before {
  content: "\2713";               /* ✓ */
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  line-height: 17px;
  text-align: center;
  font-size: 11px;
  color: #17b06b;
  border: 1.5px solid #17b06b;
  border-radius: 50%;
}

/* Optional highlighted card */
.pcard.pcard-featured { border-color: #106eea; box-shadow: 0 8px 26px rgba(16,110,234,.15); }

/* Responsive */
@media (max-width: 992px) { .pcards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pcards { grid-template-columns: 1fr; } }
