.pricing-hero {
  background: white;
  color: #333;
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid #e1e5e9;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.pricing-intro {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-intro h2 {
  color: #333;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.pricing-intro p {
  color: #666;
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.pricing-highlight {
  background: #f0f8ff;
  padding: 2rem;
  border-radius: 10px;
  border-left: 5px solid #007bff;
  margin: 2rem 0;
}

.pricing-highlight p {
  color: var(--hover-color);
  font-weight: 600;
  margin: 0;
}

.package-section {
  display: flex;
  justify-content: center;
  margin: 4rem 0;
}

.package-card {
  background: white;
  border-radius: 15px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--success-color);
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.package-card:hover {
  transform: translateY(-5px);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success-color);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 25px;
  font-weight: bold;
  font-size: 0.9rem;
}

.package-header {
  margin-bottom: 2rem;
}

.package-title {
  color: #333;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.package-subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.package-price {
  font-size: 3rem;
  color: var(--success-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.package-period {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.features-list {
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: left;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.feature-icon {
  color: var(--success-color);
  margin-right: 1rem;
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 2px;
}

.feature-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

.feature-coming-soon {
  color: #007bff;
  font-size: 0.9rem;
  font-style: italic;
}

.package-cta {
  margin-top: 2rem;
}

.btn-buy {
  background: var(--success-color);
  color: white;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-buy:hover {
  background: #218838;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.support-info {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
  margin-top: 4rem;
}

.support-info h3 {
  color: #333;
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.support-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.support-item h4 {
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.support-item p {
  color: #666;
  font-size: 0.95rem;
}

.guarantee-section {
  background: var(--primary-gradient);
  color: white;
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  margin: 3rem 0;
}

.guarantee-section h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.guarantee-section p {
  font-size: 1.1rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .package-card {
    margin: 0 15px;
    padding: 2rem 1.5rem;
  }

  .package-price {
    font-size: 2.5rem;
  }

  .pricing-intro h2 {
    font-size: 1.8rem;
  }

  .pricing-intro p {
    font-size: 1rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }
}
