.hero-wrap {
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at 50% 30%,
      rgba(37, 99, 235, 0.15),
      #ffffff 65%
  );
  text-align: center;
  padding: 80px 20px;
}

.hero-inner {
  max-width: 1050px;
  margin: 0 auto;
}

/* Small Tag */
.hero-tag {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2563eb;
  margin-bottom: 1.8rem;
  text-transform: uppercase;
}

/* Main Title */
.hero-title {
  font-size: clamp(3rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  margin-bottom: 1.8rem;
}

.hero-title span {
  color: #2563eb;
}

/* Subtitle */
.hero-subtitle {
  font-size: 1.25rem;
  color: #475569;
  max-width: 680px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

/* Buttons Wrapper */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Button Base */
.btn-primary-xl,
.btn-secondary-xl,
.btn-warning-xl {
  height: 60px;
  padding: 0 38px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

/* Primary Blue */
.btn-primary-xl {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.btn-primary-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(37, 99, 235, 0.45);
}

/* White Outline */
.btn-secondary-xl {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  color: #0f172a;
}

.btn-secondary-xl:hover {
  border-color: #2563eb;
  color: #2563eb;
  transform: translateY(-3px);
}

/* Orange */
.btn-warning-xl {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.btn-warning-xl:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.45);
}

/* Login Text */
.hero-login {
  font-size: 1rem;
  color: #64748b;
}

.hero-login a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.hero-login a:hover {
  text-decoration: underline;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

  .hero-wrap {
    min-height: auto;
    padding: 60px 15px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .btn-primary-xl,
  .btn-secondary-xl,
  .btn-warning-xl {
    width: 100%;
    max-width: 320px;
    height: 54px;
    font-size: 1rem;
  }

}
