#hero-manual-wrapper {
  background: #f0f4f8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.dot-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  mix-blend-mode: multiply;
}

#canvas-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-container {
  padding: 0 270px; /* batasi kiri kanan */
  max-width: 100%; /* biar penuh sesuai padding */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(34, 104, 42, 0.1);
  color: #1a5e20;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(34, 104, 42, 0.2);
  text-align: center; /* tetap kiri */
}

.hero-title {
  /* font-size: 52px; */
  font-size: var(--fs-hero-title);
  color: #0f172a;
  font-weight: 800;
  letter-spacing: -2px;
  max-width: 100%;
  text-align: center;
  margin: 0; /* hapus margin default */
}

.hero-description {
  /* font-size: 32px; */
  font-size: var(--fs-hero-desc);
  color: #2e7d32;
  margin-top: 12px; /* jarak dikurangi */
  font-weight: 500;
  letter-spacing: -0.5px;
  max-width: 100%;
  text-align: center;
  /* hapus white-space: nowrap */
}

.hero-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 35px;
  background: #2e7d32;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: 0.3s;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.3);
}

/* --- TAMBAHAN STYLE SCROLL CUE --- */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: fit-content;
  text-decoration: none;
  cursor: pointer;
}

.mouse {
  width: 22px;
  height: 36px;
  border: 2px solid #2e7d32;
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 6px;
  background: #2e7d32;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-wheel 1.6s infinite ease-out;
}

.scroll-text {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #2e7d32;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

@keyframes scroll-wheel {
  0% {
    top: 6px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 991px) {
  .hero-container {
    padding: 0 60px; /* tablet */
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-description {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  #hero-manual-wrapper {
    padding-top: 60px;
  }
  .hero-title {
    font-size: var(--fsm-hero-title);
  }
  .hero-description {
    font-size: var(--fsm-hero-desc);
    margin-top: 8px;
  }

  .hero-btn {
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: var(--fsm-cta);
    margin-top: 20px;
  }
  .dot-grid-overlay {
    background-size: 20px 20px;
  }
  .scroll-cue {
    bottom: 20px;
  }
}
