/* PRICING PAGE STYLES */

.pricing-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  padding: 100px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(150, 15, 22, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.pricing-hero-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.pricing-hero-subtitle {
  color: #4a4a4a;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-section {
  padding: 100px 20px;
  background: #ffffff;
}

.pricing-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.pricing-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  padding: 40px 35px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #960f16, #7a0ac7);
  border-radius: 20px 20px 0 0;
  transform: scaleY(0);
  transition: transform 0.4s ease;
}

.pricing-card:hover::before {
  transform: scaleY(1);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(150, 15, 22, 0.2);
  border-color: rgba(150, 15, 22, 0.2);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #fff5f6 0%, #ffffff 100%);
  border: 2px solid rgba(150, 15, 22, 0.3);
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(150, 15, 22, 0.25);
}

.pricing-card.featured::before {
  transform: scaleY(1);
  height: 5px;
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.featured-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(150, 15, 22, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(150, 15, 22, 0.1);
}

.pricing-card-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #960f16;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #960f16;
  vertical-align: baseline;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
}

.price-period {
  font-size: 1.2rem;
  color: #666;
  font-weight: 500;
}

.pricing-description {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}

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

.pricing-features li {
  padding: 12px 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: color 0.3s ease;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li:hover {
  color: #960f16;
}

.pricing-button {
  display: block;
  text-align: center;
  padding: 18px 30px;
  background: linear-gradient(135deg, #960f16 0%, #7a0ac7 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(150, 15, 22, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.pricing-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.pricing-button:hover::before {
  width: 300px;
  height: 300px;
}

.pricing-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(150, 15, 22, 0.4);
}

.featured-button {
  background: linear-gradient(135deg, #c41e3a 0%, #960f16 100%);
  box-shadow: 0 10px 35px rgba(150, 15, 22, 0.4);
}

.featured-button:hover {
  box-shadow: 0 15px 50px rgba(150, 15, 22, 0.5);
}

.pricing-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-info p {
  color: #555;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

.pricing-note {
  color: #960f16;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .pricing-hero {
    padding: 60px 20px 50px;
  }

  .pricing-hero h1 {
    font-size: 2.5rem;
  }

  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card {
    padding: 30px 25px;
  }

  .price-amount {
    font-size: 2.8rem;
  }

  .featured-badge {
    right: 20px;
    font-size: 0.75rem;
    padding: 6px 15px;
  }
}

@media (max-width: 480px) {
  .pricing-hero h1 {
    font-size: 2rem;
  }

  .pricing-hero-subtitle {
    font-size: 1rem;
  }

  .pricing-card-header h3 {
    font-size: 1.6rem;
  }

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

  .pricing-features li {
    font-size: 0.95rem;
    padding: 10px 0;
  }
}

