.lifegence-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 10px;
}

.pricing-header p {
  font-size: 1.25rem;
  color: #718096;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid #e2e8f0;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.highlight {
  border-color: #4f46e5;
  box-shadow: 0 8px 16px rgba(79, 70, 229, 0.2);
}

.pricing-card.current {
  border-color: #10b981;
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.current-plan-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 5px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 20px;
  text-align: center;
}

.plan-price {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.plan-price .currency {
  font-size: 1.5rem;
  color: #4a5568;
  margin-right: 5px;
}

.plan-price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a202c;
}

.plan-price .period {
  font-size: 1rem;
  color: #718096;
  margin-left: 5px;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.plan-features li {
  display: flex;
  align-items: center;
  padding: 12px 0;
  color: #4a5568;
  font-size: 0.95rem;
}

.check-icon {
  width: 20px;
  height: 20px;
  color: #48bb78;
  margin-right: 12px;
  flex-shrink: 0;
}

.cta-button {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-button.primary:hover:not(:disabled) {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary {
  background: white;
  color: #4f46e5;
  border: 2px solid #4f46e5;
}

.cta-button.secondary:hover:not(:disabled) {
  background: #4f46e5;
  color: white;
}

.cta-button.current-plan {
  background: #d1fae5;
  color: #065f46;
  border: 2px solid #10b981;
}

.cta-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header h2 {
    font-size: 2rem;
  }

  .plan-price .amount {
    font-size: 2.5rem;
  }
}

