/* Lead Magnet Overlay */
.lead-magnet-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    transparent,
    rgba(255, 255, 255, 0.95) 20%,
    rgba(255, 255, 255, 1) 60%
  );
  padding: 60px 20px 20px;
  z-index: 100;
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lead-magnet-content {
  max-width: 600px;
  margin: 0 auto;
}

.lead-magnet-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid #f8f9fa;
}

.lead-magnet-card h3 {
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 24px;
}

.lead-magnet-card p {
  color: #6c757d;
  margin-bottom: 25px;
  font-size: 16px;
}

.lead-form .form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.lead-form input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 16px;
}

.lead-form .btn-submit {
  background: #2c7a7b;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.lead-form .btn-submit:hover {
  background: #234e4f;
}

.privacy-note {
  font-size: 12px;
  color: #6c757d;
  margin: 0;
}

@media (max-width: 768px) {
  .lead-form .form-group {
    flex-direction: column;
  }

  .lead-magnet-card {
    padding: 20px;
  }
}
