/* ClaritiOne Lead-Gen Slide-In Popup */
#c1-popup-overlay {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  max-width: 420px;
  width: calc(100% - 48px);
  animation: c1-slide-up 0.4s ease-out;
}
#c1-popup-overlay.c1-active {
  display: block;
}
@keyframes c1-slide-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.c1-popup-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.16);
  border: 1px solid #e0e6f0;
  overflow: hidden;
  position: relative;
}
.c1-popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  z-index: 2;
}
.c1-popup-close:hover { color: #333; }
.c1-popup-body {
  padding: 28px 24px 20px;
}
.c1-popup-badge {
  display: inline-block;
  background: #fde8e8;
  color: #be2625;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.c1-popup-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #121826;
  letter-spacing: -.02em;
}
.c1-popup-body p {
  margin: 0 0 14px;
  font-size: 13px;
  color: #5b6578;
  line-height: 1.5;
}
.c1-popup-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #c9d5ea;
  border-radius: 10px;
  font-size: 14px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.c1-popup-input:focus {
  outline: none;
  border-color: #be2625;
  box-shadow: 0 0 0 3px rgba(190,38,37,.12);
}
.c1-popup-btn {
  width: 100%;
  padding: 12px;
  background: #be2625;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
}
.c1-popup-btn:hover { background: #9b1f1e; }
.c1-popup-btn:disabled { opacity: .6; cursor: not-allowed; }
.c1-popup-footer {
  font-size: 11px;
  color: #9aa3b8;
  text-align: center;
  padding: 10px 24px 14px;
  border-top: 1px solid #f0f3f9;
}
.c1-popup-footer span { cursor: pointer; text-decoration: underline; }
.c1-popup-footer span:hover { color: #be2625; }
.c1-popup-success {
  text-align: center;
  padding: 8px 0;
}
.c1-popup-success .c1-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.c1-popup-success h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #121826;
}
.c1-popup-success p {
  font-size: 13px;
  color: #5b6578;
  margin: 0;
}
.c1-loading-dots::after {
  content: '';
  animation: c1-dots 1.2s steps(4, end) infinite;
}
@keyframes c1-dots {
  0%   { content: ''; }
  25%  { content: '.'; }
  50%  { content: '..'; }
  75%  { content: '...'; }
  100% { content: ''; }
}
