.cta-lead-capture {
  display: none;
  position: fixed;
  right: 32px;
  bottom: 32px;
  background: #101820;
  border-radius: 12px;
  box-shadow: 0 4px 24px #0008;
  padding: 24px 20px 20px 20px;
  z-index: 9999;
  min-width: 260px;
  max-width: 320px;
  color: #fff;
  animation: fadeInCtaLead 0.7s;
}

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

.cta-lead-capture label {
  font-size: 1rem;
  margin-bottom: 10px;
  display: block;
}

.cta-lead-capture input {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #222;
  margin-bottom: 10px;
  font-size: 1rem;
  background: #181c22;
  color: #fff;
}

.cta-lead-capture button {
  width: 100%;
  background: #5ce164;
  color: #010a18;
  border: none;
  border-radius: 6px;
  padding: 10px 0;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}

.cta-lead-capture button:hover {
  background: #3fae6c;
}

.cta-lead-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 1.3rem;
  color: #bdbdbd;
  cursor: pointer;
  transition: color 0.2s;
}

.cta-lead-close:hover {
  color: #fff;
}