.exit-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.exit-popup {
  background: var(--color-white, #fff);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.exit-popup-overlay--visible .exit-popup {
  transform: translateY(0);
}

.exit-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.exit-popup__close:hover {
  color: #333;
}

.exit-popup__title {
  font-family: var(--font-heading, 'Clash Display', sans-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-primary, #0C2340);
  margin-bottom: 0.75rem;
}

.exit-popup__desc {
  font-size: 1rem;
  color: var(--color-text-light, #6B7280);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.exit-popup__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.exit-popup__trust {
  font-size: 0.78rem;
  color: var(--color-text-light, #6B7280);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
