/* Whistleblowing Hero – redesigned to match reference */
.wb-hero {
  position: relative;
  width: 100%;
  min-height: 800px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background: linear-gradient(180deg, rgb(209 209 209 / 0%) 0%, rgba(18, 60, 120, 0.22) 15%, rgba(14, 50, 105, 0.50) 40%, rgb(1 9 99 / 78%) 70%, rgb(6 17 81) 100%), url(/cfind/source/thumb/images/kapal-gray.svg) center 45% / cover no-repeat;
}

/* Gradient overlay positioned ABOVE the hero section (outside layout flow) */
.wb-hero::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%; 
  height: 200px; 
  background: linear-gradient(180deg, transparent 0%, #ffffff 100%, #e3e6eb 100%);
  pointer-events: none;
  z-index: 1;
}

.wb-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.wb-hero__inner {
  position: relative;
  width: 100%;
  max-width: 1390px;
  margin: 0 auto;
  padding: 96px 40px;
  z-index: 1;
}

/* .wb-hero__content {
  max-width: 640px;
} */

.wb-hero__title {
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -0.6px;
  color: #ffffff;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.wb-hero__subtitle {
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 28px 0;
  max-width: 560px;
}

.wb-hero__cta {
  display: block;
}

.wb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 510px;
  height: 56px;
  padding: 0 28px;
  border: 1.6px solid rgba(255, 255, 255, 0.9);
  background: transparent;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  transition: background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0),
    0 6px 16px rgba(0, 0, 0, 0.2);
}

.wb-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 0 rgba(255, 255, 255, 0),
    0 10px 24px rgba(0, 0, 0, 0.25);
}

.wb-btn:focus-visible {
  outline: 3px solid #7aa2ff;
  outline-offset: 2px;
}

/* Responsive */
@media (max-width: 1200px) {
  .wb-hero {
    min-height: 500px;
  }
  .wb-hero__inner {
    padding: 84px 32px;
  }
}

@media (max-width: 992px) {
  .wb-hero {
    min-height: 460px;
  }
  .wb-hero__inner {
    padding: 72px 28px;
  }
  .wb-btn {
    min-width: 320px;
  }
}

@media (max-width: 600px) {
  .wb-hero {
    min-height: 420px;
  }
  .wb-hero__inner {
    padding: 56px 20px;
  }
  .wb-hero__content {
    max-width: 100%;
  }
  .wb-btn {
    min-width: 260px;
    width: 100%;
    height: 52px;
    border-radius: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wb-btn {
    transition: none;
  }
}
