/* Pricing Section Styles */
.pricing-section {
  background: transparent;
  padding: 80px 20px;
  margin: 0 auto 40px;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.pricing-label {
  font-size: 0.9rem;
  font-weight: 400;
  color: #666666;
  margin: 0 0 20px 0;
  text-transform: none;
  letter-spacing: 0;
}

/* Pricing title now uses .section-title class */

.pricing-cards-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.pricing-card.selected {
  border: 2px solid #1976d2;
  box-shadow: 0 4px 16px rgba(25, 118, 210, 0.2);
  transform: translateY(-2px);
}

.pricing-card.featured {
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), 
                    linear-gradient(135deg, rgba(25, 118, 210, 0.3), rgba(66, 165, 245, 0.3));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
}

.pricing-card.featured.selected {
  background-image: linear-gradient(white, white), 
                    linear-gradient(135deg, #1976d2, #42a5f5);
  box-shadow: 0 4px 20px rgba(25, 118, 210, 0.3);
  transform: translateY(-2px);
}

.best-deal-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1976d2;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 20px 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.plan-price {
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #1976d2;
  line-height: 1;
}

.price-period {
  font-size: 1rem;
  font-weight: 400;
  color: #999;
}

.plan-description {
  font-size: 0.95rem;
  color: #666;
  margin: 0 0 25px 0;
  line-height: 1.5;
}

.plan-separator {
  height: 1px;
  background: #e0e0e0;
  margin: 0 0 25px 0;
}

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

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.plan-features li i {
  color: #1976d2;
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.plan-features li span {
  flex: 1;
}

.plan-button {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #1976d2;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  margin-top: auto;
}

.starter-button {
  background: white;
  color: #1976d2;
}

.starter-button:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.standard-button {
  background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
  color: white;
  border: none;
}

.standard-button:hover {
  background: linear-gradient(135deg, #1565c0 0%, #1e88e5 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(25, 118, 210, 0.3);
}

/* Responsive adjustments for pricing section */
@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 20px;
    margin: 40px 16px 20px 16px;
  }
  
  
  .pricing-cards-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .pricing-card {
    min-width: 100%;
    max-width: 100%;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 15px;
    margin: 30px 12px 20px 12px;
  }
  
  
  .pricing-label {
    font-size: 0.85rem;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .plan-name {
    font-size: 1.25rem;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .plan-features li {
    font-size: 0.9rem;
  }
}

