/* Pricing Page Styles */

.pricing-hero {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-headline-box {
  background: #fff;
  border: 3px solid #000;
  border-radius: 15px;
  padding: 40px;
}

.pricing-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.3;
}

.pricing-description-box {
  background: #fff;
  border: 3px solid #000;
  border-radius: 15px;
  padding: 30px;
}

.pricing-description {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
  margin: 0;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.pricing-card {
  background: #fff;
  border: 3px solid #000;
  border-radius: 15px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card-featured {
  border-color: #667eea;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #667eea;
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #f0f0f0;
}

.tier-name {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.tier-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: #667eea;
}

.period {
  font-size: 1.2rem;
  color: #666;
}

.pricing-card-body {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.feature-icon {
  color: #667eea;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.5;
}

.pricing-btn {
  width: 100%;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 3px solid #000;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn-free {
  background: #fff;
  color: #333;
}

.pricing-btn-free:hover {
  background: #f8f9ff;
  transform: translateY(-2px);
}

.pricing-btn-paid {
  background: #667eea;
  color: #fff;
  border-color: #667eea;
}

.pricing-btn-paid:hover {
  background: #5568d3;
  border-color: #5568d3;
  transform: translateY(-2px);
}

.pricing-btn-paid:disabled {
  background: #ccc;
  border-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}

.pricing-btn-paid:disabled:hover {
  transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .pricing-headline {
    font-size: 2rem;
  }

  .pricing-description {
    font-size: 1.1rem;
  }

  .pricing-tiers {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tier-name {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2.5rem;
  }
}
