.home-itr-sticky-bar {
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 10040;
  width: min(1120px, calc(100% - 32px));
  transform: translate(-50%, 120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease, visibility 0.35s ease;
}

.home-itr-sticky-bar.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.home-itr-sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 60px;
  border-radius: 20px;
  background: linear-gradient(135deg, #1a2744 0%, #152238 50%, #1e3a5f 100%);
  box-shadow: 0 20px 56px rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-itr-sticky-bar__close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.home-itr-sticky-bar__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.home-itr-sticky-bar__inner {
  position: relative;
}

.home-itr-sticky-bar__copy {
  min-width: 0;
  padding-right: 24px;
}

.home-itr-sticky-bar__title {
  display: block;
  margin: 0 0 6px;
  font-family: Manrope, Inter, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.02em;
}

.home-itr-sticky-bar__subtitle {
  display: block;
  margin: 0;
  font-size: clamp(0.82rem, 1.6vw, 0.95rem);
  line-height: 1.45;
  color: rgba(226, 232, 240, 0.82);
}

.home-itr-sticky-bar__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  padding: 14px 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.home-itr-sticky-bar__cta:hover {
  color: #fff;
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.5);
}

@media (max-width: 768px) {
  .home-itr-sticky-bar {
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .home-itr-sticky-bar__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px 18px 18px;
    text-align: center;
  }

  .home-itr-sticky-bar__copy {
    padding-right: 0;
    padding-top: 8px;
  }

  .home-itr-sticky-bar__cta {
    width: 100%;
    min-width: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-itr-sticky-bar {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .home-itr-sticky-bar.is-visible {
    transform: translate(-50%, 0);
  }

  .home-itr-sticky-bar__cta:hover {
    transform: none;
  }
}
