/* ===== HUMAN TECH ===== */
#human-tech {
  background: #08010F;
  position: relative;
}

/* ─── DESKTOP ─── */
.human-tech__sticky {
  position: relative;
  height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.human-tech__sticky::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg,
    rgba(8,1,15,0.85) 0%,
    rgba(8,1,15,0.5) 45%,
    transparent 75%
  );
  pointer-events: none;
}

.human-tech__container {
  position: relative;
  width: 100%;
  height: 92vh;
}

.human-tech__left {
  position: absolute;
  top: 10%;
  left: 14%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 0 3rem;
  max-width: 620px;
}

.human-tech__body {
  color: rgba(255,255,255,0.62);
  font-size: 1rem;
  line-height: 1.8;
}

.human-tech__points {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-top: 0.5rem;
}

.human-tech__point {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

.human-tech__point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow-main);
  box-shadow: 0 0 12px rgba(245,197,24,0.55);
  flex-shrink: 0;
}

.human-tech__right {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#scroll-canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#scroll-img-mobile {
  display: none;
}

/* ─── MOBILE ≤768px ─── */
@media (max-width: 768px) {

  #human-tech {
    height: 100vh;
  }

  #human-tech .human-tech__sticky {
    position: relative !important;
    height: 100vh !important;
    display: block !important;
    overflow: hidden !important;
  }

  /* Gradient sus→jos pentru lizibilitate text */
  #human-tech .human-tech__sticky::after {
    display: block !important;
    background: linear-gradient(to bottom,
      rgba(8,1,15,0.88) 0%,
      rgba(8,1,15,0.5) 55%,
      transparent 100%
    ) !important;
  }

  #human-tech .human-tech__container {
    position: relative !important;
    width: 100% !important;
    height: 100vh !important;
    display: block !important;
  }

  /* Text: overlay sus */
  #human-tech .human-tech__left {
    position: absolute !important;
    top: 6% !important;
    left: 0 !important;
    transform: none !important;
    padding: 2rem 1.5rem !important;
    max-width: 100% !important;
    z-index: 3 !important;
  }

  /* Imagine: umple secțiunea */
  #human-tech .human-tech__right {
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;
  }

  #human-tech #scroll-canvas {
    display: none !important;
  }

  #human-tech #scroll-img-mobile {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 60% !important;
  }
}
