.hero {
  background: linear-gradient(135deg, #4A00E0 0%, #8E2DE2 100%);
  color: #fff;
  text-align: center;
  padding: 120px 30px;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 133px;
  margin-left: 33px;
  margin-right: 33px;
  z-index: 1;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.50), transparent);
  z-index: 0;
  border-radius: 50%;
  animation: moveGlow 20s infinite ease-in-out alternate;
}

.hero::before {
  top: -100px;
  left: -100px;
}

.hero::after {
  bottom: -100px;
  right: -100px;
}

@keyframes moveGlow {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  animation: slideFadeIn 1.2s ease-out forwards;
  background: linear-gradient(to right, #ffffff, #ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 2;
  position: relative;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInUp 1.5s ease-out forwards;
  animation-delay: 0.8s;
  z-index: 2;
  position: relative;
}

@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  background: linear-gradient(to right, #FF9800, #FFC107);
  color: white;
  padding: 18px 45px;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 12px 30px rgba(255, 152, 0, 0.4);
  z-index: 2;
  position: relative;
}

.btn:hover {
  background: linear-gradient(to right, #FFC107, #FF9800);
  transform: scale(1.07) rotate(0deg);
  box-shadow: 0 16px 40px rgba(255, 152, 0, 0.6);
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  z-index: 999;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(to right, #FF9800, #FF5722);
  color: white;
  padding: 16px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(8px);
}

.sticky-cta:hover {
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 16px 45px rgba(255, 152, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .btn {
    font-size: 1rem;
    padding: 14px 30px;
  }

  .sticky-cta {
    padding: 14px 20px;
    font-size: 1rem;
  }
}
