/* Pricing Page Styles */
.pricing-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  color: white;
  padding: 120px 20px 30px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.pricing-header {
  text-align: center;
  margin-bottom: 35px;
}

.pricing-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-header p {
  font-size: 1.05rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.popular {
  border: 2px solid #667eea;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 20px;
}

.plan-header h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.price {
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.original-price {
  font-size: 1.05rem;
  color: #888;
  text-decoration: line-through;
  font-weight: 400;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #667eea;
}

.period {
  font-size: 1rem;
  color: #b0b0b0;
  font-weight: 400;
}

.discount-badge {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.price-extra {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
}

.description {
  color: #b0b0b0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.pricing-card .features {
  margin-bottom: 25px;
  flex: 1;
  background: transparent;
  min-height: 120px;
  padding: 0;
}

.pricing-card .features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card .features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.4;
}

.checkmark {
  color: #4ade80;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.select-plan-btn {
  width: 100%;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.select-plan-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.select-plan-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.pricing-footer {
  text-align: center;
  margin-top: 100px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-footer p {
  color: #b0b0b0;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.back-link {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  font-size: 1rem;
}

.back-link:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 80px 15px 30px;
  }

  .pricing-header h1 {
    font-size: 2.5rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .price .amount {
    font-size: 2.8rem;
  }
}

@media (max-width: 480px) {
  .pricing-header h1 {
    font-size: 2rem;
  }

  .pricing-header p {
    font-size: 1rem;
  }

  .price .amount {
    font-size: 2.2rem;
  }
}