/* =========================
   HERO BASE
========================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* =========================
   BACKGROUND GLOW (UPGRADE)
========================= */
.hero-bg {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(79,172,254,0.18), transparent 70%);
  filter: blur(120px);
  z-index: 0;
  animation: floatGlow 8s ease-in-out infinite;
}

/* EXTRA GLOW LAYER */
.hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,242,254,0.12), transparent 70%);
  bottom: -150px;
  right: 50%;
  transform: translateX(50%);
  filter: blur(120px);
  z-index: 0;
}

/* =========================
   CONTENT
========================= */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 20px;
}

/* =========================
   BADGE
========================= */
.hero-badge {
  display: inline-block;
  background: rgba(0,0,0,0.05);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.3px;
}

/* =========================
   TITLE (PREMIUM SCALE)
========================= */
.hero h1 {
  font-size: 68px;
  line-height: 1.15;
  font-weight: 700;
  color: #111;
  letter-spacing: -1.5px;
}

/* GRADIENT TEXT */
.hero h1 span {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   TEXT
========================= */
.hero p {
  margin-top: 25px;
  font-size: 18px;
  color: #666;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================
   PROOF LIST
========================= */
.hero-proof {
  margin-top: 30px;
  font-size: 14px;
  color: #444;
  line-height: 2;
}

/* =========================
   BUTTON
========================= */
.hero-buttons {
  margin-top: 50px;
}

/* REMOVE DUPLICATE BUTTON STYLE (use global) */
.hero .btn-primary {
  margin-right: 15px;
}

/* =========================
   HOVER MICRO INTERACTION
========================= */
.hero .btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
}

.hero .btn-secondary:hover {
  transform: translateY(-2px);
}

/* =========================
   ANIMATION
========================= */
@keyframes floatGlow {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-proof {
    font-size: 13px;
  }

}