/* ===========================
   Pricing card styles
=========================== */

.pricing-card {
  border: 2px solid #e9ecef;
  border-radius: 16px;
  transition: all 0.25s ease;
  background: #fff;
}

.pricing-card:hover {
  border-color: #0d6efd;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Plan title */
.pricing-header {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

/* Price */
.price {
  font-size: 2rem;
  font-weight: 700;
  color: #0d6efd;
}

/* ===========================
   Feature list
=========================== */

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 6px 0;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

/* REMOVE the automatic checkmark */
/* .feature-list li::before { }  <-- intentionally removed */

/* ===========================
   Plan emphasis (optional)
=========================== */

/* Basic plan: slightly highlighted */
.pricing-card.border-primary {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

/* Premium plan: subtle emphasis */
.pricing-card.border-dark {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

/* ===========================
   Buttons
=========================== */

.pricing-card .btn {
  border-radius: 999px;
  padding: 8px 20px;
  font-weight: 500;
}


/* ================= BILLING TOGGLE ================= */

.billing-toggle {
  display: inline-flex;
  background: #f1f1f1;
  border-radius: 999px;
  padding: 4px;
}

.billing-toggle button {
  border: none;
  background: transparent;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  transition: all 0.2s ease;
}

.billing-toggle button.active {
  background: #0d6efd;
  color: white;
}

/* ================= YEARLY HIGHLIGHT ================= */

.yearly-card {
  border: 2px solid #0d6efd;
  transform: scale(1.02);
}

@keyframes softPulse {
  0%   { box-shadow: 0 0 0 0 rgba(13,110,253,0.35); }
  70%  { box-shadow: 0 0 0 12px rgba(13,110,253,0); }
  100% { box-shadow: 0 0 0 0 rgba(13,110,253,0); }
}

.yearly-highlight {
  animation: softPulse 2.8s ease-out infinite;
}

/* ================= BADGES ================= */

.save-badge {
  display: inline-block;
  background: #0d6efd;
  color: white;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 6px;
}

.popular-ribbon {
  position: absolute;
  top: 14px;
  right: -36px;
  background: #0d6efd;
  color: white;
  padding: 6px 48px;
  font-size: 0.75rem;
  font-weight: 700;
  transform: rotate(45deg);
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ================= MONTHLY MUTED ================= */

.monthly-muted {
  opacity: 0.6;
  transform: scale(0.97);
}

/* ================= PRICE TEXT ================= */

.price-subtext {
  font-size: 0.85rem;
  color: #777;
}

#ccbillCheckoutModal .form-control {
  border-radius: 12px;
  padding: 12px;
  font-size: 1rem;
}

#ccbillCheckoutModal .form-label {
  font-weight: 500;
}

#ccbillPayBtn {
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 14px;
}



