/* ===========================
   Pricing cards
=========================== */

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

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

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

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

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

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

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

/* ===========================
   Plan emphasis
=========================== */

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

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

/* ===========================
   Mobile
=========================== */

@media (max-width: 768px) {
  .pricing-card {
    padding: 1.5rem 1.25rem;
  }
}


.page-controls-wrapper {
  margin-top: 12px;
  margin-bottom: 10px;
}

.page-controls {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.control-group {
  max-width: 220px;
}

/* ================= 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;
}
