.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  background: radial-gradient(circle at 20% 0, #fafcff 10%, #ff8410);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/home/larabase.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 400px auto; /* 👈 ini yang mengatur ukuran */
}