.internal-hero {
  position: relative;
  padding: 11.5rem 0 4.8rem;
  min-height: 430px;
  overflow: hidden;
  isolation: isolate;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.internal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 20, 25, 0.62) 0%,
      rgba(10, 20, 25, 0.28) 16%,
      rgba(10, 20, 25, 0.08) 34%,
      rgba(255, 255, 255, 0.16) 58%,
      rgba(255, 255, 255, 0.58) 100%
    ),
    radial-gradient(
      circle at top left,
      rgba(255, 220, 29, 0.1) 0%,
      transparent 26%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  pointer-events: none;
}

.internal-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 155px;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.18) 24%,
    rgba(255, 255, 255, 0.5) 52%,
    rgba(255, 255, 255, 0.84) 76%,
    #ffffff 100%
  );
  pointer-events: none;
}

.internal-hero .container {
  position: relative;
  z-index: 2;
}

.internal-hero__content {
  max-width: 860px;
}

.internal-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.internal-hero__content h1 {
  font-size: clamp(2.6rem, 5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
  color: #111111;
  max-width: 780px;
}

.internal-hero__content p {
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 700px;
  color: rgba(17, 17, 17, 0.82);
}

.breadcrumb {
  margin-top: 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
}

.breadcrumb a {
  color: #111111;
  font-weight: 800;
}

.breadcrumb span:last-child {
  color: rgba(17, 17, 17, 0.78);
}

.coming-soon-section {
  padding: 1rem 0 6rem;
}