* {
  transition: 0.3s ease;
}

.primary {
  background: linear-gradient(135deg, #ffb800, #ff6a00);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255,184,0,0.25);
}

.primary:hover {
  transform: translateY(-3px);
}

.secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.secondary:hover {
  background: rgba(255,255,255,0.08);
}

.bottom-text {
  margin-top: 35px;
  color: #98a1b3;
  font-size: 14px;
}

.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.blur-1 {
  width: 350px;
  height: 350px;
  background: rgba(255,140,0,0.35);
  top: -100px;
  left: -80px;
}

.blur-2 {
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  bottom: -80px;
  right: -60px;
}

@media(max-width: 768px) {
  .card {
    padding: 40px 24px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 24px;
  }

  .desc {
    font-size: 15px;
  }
}