/* Section Pricing */
.pricing-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.pricing-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
  border-color: #667eea;
  transform: scale(1.03);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(102,126,234,0.4);
}

.section-title2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #0A1828 0%, #0A1828 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  letter-spacing: -1px;
}

.pricing-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.pricing-card:hover h3 {
  color: #667eea;
}

.pricing-card .subtitle {
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
}

.pricing-card .price {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #667eea;
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: #444;
}

.pricing-features li::before {
  content: '✓';
  color: #667eea;
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.1rem;
}

.cta-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .section-title2 {
    font-size: 2rem;
  }

  .pricing-card {
    padding: 30px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .badge {
    top: 15px;
    right: 15px;
    font-size: 0.8rem;
  }

  .cta-button {
    position: sticky;
    bottom: 10px;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: 50px;
  }
}
