.gradient-bg {
  background: linear-gradient(135deg, #0d1d1a 0%, #284547 100%);
}
.gradient-text {
  background: linear-gradient(90deg, #a6b4b6, #8bbbc4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.card-hover {
  transition: all 0.3s ease;
}
.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pricing-card-bg {
  background: linear-gradient(
    135deg,
    rgba(32, 146, 118, 0.1) 0%,
    rgba(32, 141, 136, 0.1) 100%
  );
}