.hiring-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9998;
  width: min(250px, calc(100vw - 24px));
  padding: 12px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(18, 30, 34, 0.99) 0%, rgba(31, 50, 57, 0.99) 56%, rgba(42, 65, 75, 0.99) 100%);
  background-size: 46px 46px, 46px 46px, auto;
  color: #fff;
  box-shadow: 0 16px 36px rgba(10, 24, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-family: var(--body-font, "fontzz", sans-serif);
  animation: hiring-cta-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hiring-cta::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -36px;
  width: 125px;
  aspect-ratio: 1;
  background: url("../img/water-mark.webp") center / contain no-repeat;
  opacity: 0.06;
  transform: rotate(-5deg);
  pointer-events: none;
}

.hiring-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hiring-cta__close {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hiring-cta__close:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(5deg);
}

.hiring-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hiring-cta__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a6cbcd;
  box-shadow: 0 0 0 4px rgba(166, 203, 205, 0.12);
}

.hiring-cta h2 {
  max-width: 190px;
  margin: 0 0 4px;
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hiring-cta p {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.35;
}

.hiring-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hiring-cta__button:hover {
  border-color: rgba(166, 203, 205, 0.5);
  background: rgba(255, 255, 255, 0.085);
  color: #d9eff0;
  transform: translateY(-2px);
}

.hiring-cta__button svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.hiring-cta__button:hover svg {
  transform: translateX(3px);
}

.hiring-cta__close:focus-visible,
.hiring-cta__button:focus-visible {
  outline: 3px solid rgba(166, 203, 205, 0.65);
  outline-offset: 3px;
}

@keyframes hiring-cta-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 991px) {
  .hiring-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hiring-cta { animation: none; }
  .hiring-cta *, .hiring-cta *::before, .hiring-cta *::after { transition: none !important; }
}
