/* === PRICING TABLE LAYOUT === */
.pricing-table {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr); /* always 3 per row on desktop */
  gap: 24px;
  margin: 40px auto;
  max-width: 1200px;
  align-items: stretch;
}

/* === PRICING CARD === */
.pricing-card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  padding: 24px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

/* === POPULAR HIGHLIGHT === */
.pricing-card.popular {
  border: 2px solid #183ABF;
  box-shadow: 0 10px 28px rgba(24,58,191,.15);
  transform: scale(1.03);
  z-index: 2;
}
.pricing-card .badge {
  position: absolute;
  top: -12px; right: 12px;
  background: #183ABF; color: #fff;
  font-size: 12px; padding: 4px 8px;
  border-radius: 6px; font-weight: 700;
}

/* === HEADINGS & PRICE === */
.pricing-card h3 {
  font-size: 22px; margin: 0 0 6px; font-weight: 800;
}
.price {
  font-size: 20px; font-weight: 700;
  margin: 6px 0 12px; color: #14235F;
}
.price .old-price {
  text-decoration: line-through;
  color: #999;
  font-weight: 500;
  margin-left: 8px;
  font-size: 14px;
}
.tagline {
  color: #555; font-size: 14px; margin: 0 0 14px;
}

/* === FEATURES LIST === */
.features { list-style: none; padding: 0; margin: 0 0 12px; }
.features li { margin: 6px 0; padding-left: 22px; position: relative; }
.features li::before { content: "✔"; color: #183ABF; position: absolute; left: 0; top: 0; }
.hidden { display: none; }

/* === TOGGLE BUTTON === */
.toggle-btn {
  background: transparent; border: none; color: #183ABF;
  font-weight: 700; cursor: pointer;
  padding: 0; margin: 4px 0 14px;
}
.toggle-btn:hover { text-decoration: underline; }

/* === CTA BUTTON === */
.btn {
  display: inline-block; background: #183ABF; color: #fff; text-decoration: none;
  padding: 12px 18px; border-radius: 10px; font-weight: 700;
  transition: background .2s ease;
}
.btn:hover { background: #0F2C9C; }

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 900px) {
  .pricing-table { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-table { grid-template-columns: 1fr; }
}

