/* Site-wide ITR promo popup */
.itr-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.itr-promo-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.itr-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
}

.itr-promo-modal__dialog {
  position: relative;
  width: min(700px, 100%);
  max-height: calc(80vh - 32px);
  overflow: auto;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.28);
}

.itr-promo-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.15);
  transition: background 0.2s ease;
}

.itr-promo-modal__close:hover {
  background: #fff;
}

.itr-promo-modal__hero {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.itr-promo-modal__img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 20px;
}

.itr-promo-modal__cta {
  position: absolute;
  left: 50%;
  bottom: 2%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(22, 163, 74, 0.45);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.itr-promo-modal__cta:hover {
  color: #fff;
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.5);
}

.itr-promo-modal__cta-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .itr-promo-modal__cta {
    padding: 5px 18px;
    font-size: 0.88rem;
    bottom: 3%;
  }
}
