.rz-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: #f7f9fa;
}

.rz-hero-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.rz-layer {
  position: absolute;
  will-change: transform;
}

.rz-layer-wall {
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.rz-layer-person {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 70%;
  z-index: 2;
}

.rz-layer-desk {
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
}

.rz-hero-title {
  position: absolute;
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(2rem, 4vw, 4rem);
  color: #111;
  text-align: center;
  z-index: 5;
  text-shadow: 0 0 20px rgba(31,138,112,0.4);
}

@media (max-width: 768px) {
  .rz-hero {
    height: 60vh;
  }
  .rz-layer-person,
  .rz-layer-desk {
    display: none;
  }
}
