/* Lead magnet — conversion elements sitewide */
.lead-perks {
  list-style: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #86efac;
  border-radius: 10px;
  font-size: 13px;
}
.lead-perks li {
  padding: 4px 0;
  color: #166534;
  font-weight: 500;
}
.lead-form-card.lead-magnet-form {
  border: 2px solid rgba(201, 162, 39, 0.45);
  box-shadow: 0 12px 40px rgba(12, 31, 74, 0.15);
}
.lead-form-card .form-urgency {
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #b45309;
  background: #fffbeb;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
  border: 1px solid #fde68a;
}
.lead-form-card .btn-accent {
  font-size: 16px;
  padding: 14px;
  animation: ctaPulse 2.5s ease infinite;
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35); }
  50% { box-shadow: 0 6px 22px rgba(201, 162, 39, 0.55); }
}

.lead-strip {
  background: linear-gradient(135deg, var(--vgu-navy, #0c1f4a) 0%, #1a3270 100%);
  padding: 28px 0;
  border-top: 3px solid var(--vgu-gold, #c9a227);
  border-bottom: 3px solid var(--vgu-gold, #c9a227);
}
.lead-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  color: #fff;
}
.lead-strip-inner h3 {
  color: #fff;
  font-size: clamp(1.1rem, 3vw, 1.35rem);
  margin-bottom: 4px;
}
.lead-strip-inner p {
  opacity: 0.9;
  font-size: 14px;
}
.lead-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
@media (min-width: 768px) {
  .lead-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  .lead-strip-text { flex: 1; }
}

.mid-cta-box {
  background: var(--secondary-soft, #e0f2fe);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin: 40px 0;
}
.mid-cta-box h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--vgu-navy, #0c1f4a);
}
.mid-cta-box p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.trust-bar-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.trust-bar-inline span {
  font-size: 11px;
  font-weight: 600;
  color: var(--vgu-navy);
  background: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

/* Mobile: floating mini lead prompt */
@media (max-width: 767px) {
  .lead-form-card.lead-magnet-form .form-card-header h2,
  .lead-form-card.lead-magnet-form .form-card-header h3 {
    font-size: 1.1rem;
  }
}
