#agilenext-popup-cta {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: popupCtaFadeIn 0.3s ease-out;
}

#agilenext-popup-cta.visible {
  display: flex;
}

#agilenext-popup-cta .popup-cta-card {
  background: #0a192f;
  color: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: popupCtaSlideUp 0.3s ease-out;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#agilenext-popup-cta .popup-cta-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#agilenext-popup-cta .popup-cta-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

#agilenext-popup-cta .popup-cta-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: #ffffff;
}

#agilenext-popup-cta .popup-cta-subtitle {
  font-size: 16px;
  margin: 0 0 24px 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

#agilenext-popup-cta .popup-cta-button {
  background: #E76B37;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

#agilenext-popup-cta .popup-cta-button:hover {
  background: #d05a28;
}

@keyframes popupCtaFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popupCtaSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  #agilenext-popup-cta .popup-cta-card {
    padding: 24px;
  }
  #agilenext-popup-cta .popup-cta-title {
    font-size: 20px;
  }
  #agilenext-popup-cta .popup-cta-subtitle {
    font-size: 14px;
  }
}