
.cta-dialog {
  max-width: 480px;
  width: 90vw;
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: popIn .25s ease-out;
  margin: auto;
  overflow: hidden;
}

.cta-dialog::backdrop {
  background: rgba(15, 23, 42, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

/* Header / close */
.cta-dialog-header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 16px 20px 0;
  margin-bottom: 0;
}

.cta-dialog-close-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #64748b;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  font-size: 1rem;
  width: 32px;
  height: 32px;
}

.cta-dialog-close-btn:hover {
  background: #f1f5f9;
  color: #1e293b;
}

/* Body */
.cta-dialog-body {
  padding: 8px 24px 24px;
}

.cta-dialog-message {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.cta-dialog-message strong {
  color: #1e293b;
  font-weight: 600;
}

/* CTA button */
.cta-dialog-action-button {
  width: 100%;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #192342 0%, #0f172a 100%);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(25, 35, 66, 0.3);
  transition: all 0.15s ease;
}

.cta-dialog-action-button:hover {
  background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
  box-shadow: 0 4px 12px rgba(25, 35, 66, 0.4);
  transform: translateY(-1px);
}

.cta-dialog-action-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(25, 35, 66, 0.3);
}

/* Footer */
.cta-dialog-footer {
  display: none;
}

.cta-dialog-footer-text {
  font-size: 13px;
  font-weight: 400;
  margin-top: 16px;
  text-align: center;
  color: #64748b;
}

.cta-dialog-footer-text a {
  color: #0091af;
  font-weight: 500;
  text-decoration: none;
}

.cta-dialog-footer-text a:hover {
  text-decoration: underline;
}

.cta-login-link {
  cursor: pointer;
  color: #0091af;
  font-weight: 500;
  margin-left: 4px;
}

.cta-login-link:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes popIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
