/* ═══════════════════════════════════════
   HLG Lead Capture System — Styles
   ═══════════════════════════════════════ */

/* ── Inline CTA (for blog posts) ── */
.hlg-lead-cta {
  background: linear-gradient(135deg, #f4f9f5 0%, #e8f2eb 100%);
  border: 1px solid #d0e4d5;
  border-radius: 12px;
  padding: 32px 28px;
  margin: 40px 0;
  text-align: center;
}
.hlg-lead-cta__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #2a643b;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.hlg-lead-cta__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; font-weight: 600;
  color: #1e4a2b;
  margin-bottom: 8px;
}
.hlg-lead-cta__subtitle {
  font-size: 14px; color: #555;
  font-weight: 300; line-height: 1.6;
  margin-bottom: 20px;
  max-width: 480px; margin-left: auto; margin-right: auto;
}
.hlg-lead-cta__form {
  display: flex; gap: 10px;
  max-width: 440px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.hlg-lead-cta__input {
  flex: 1; min-width: 200px;
  padding: 12px 16px;
  border: 1.5px solid #d0e4d5;
  border-radius: 6px;
  font-size: 14px; font-family: 'Outfit', sans-serif;
  background: #fff;
  transition: border-color 0.2s;
}
.hlg-lead-cta__input:focus {
  outline: none;
  border-color: #2a643b;
  box-shadow: 0 0 0 3px rgba(42,100,59,0.1);
}
.hlg-lead-cta__btn {
  display: inline-block;
  padding: 12px 24px;
  background: #2a643b; color: #fff;
  border: none; border-radius: 6px;
  font-size: 14px; font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.hlg-lead-cta__btn:hover { background: #1e4a2b; }
.hlg-lead-cta__btn:disabled { opacity: 0.7; cursor: not-allowed; }
.hlg-lead-cta__fine-print {
  font-size: 11px; color: #999;
  margin-top: 12px; font-weight: 300;
}
.hlg-lead-cta__fine-print a { color: #2a643b; text-decoration: underline; }

/* ── Full-width CTA band (for service pages) ── */
.hlg-lead-band {
  padding: 56px 40px;
  background: linear-gradient(135deg, #2a643b 0%, #1e4a2b 100%);
  text-align: center;
  margin: 0;
}
.hlg-lead-band__inner {
  max-width: 600px;
  margin: 0 auto;
}
.hlg-lead-band__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500; color: #fff;
  margin-bottom: 10px;
}
.hlg-lead-band__subtitle {
  font-size: 15px; color: rgba(255,255,255,0.7);
  font-weight: 300; line-height: 1.6;
  margin-bottom: 24px;
}
.hlg-lead-band__form {
  display: flex; gap: 10px;
  max-width: 440px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}
.hlg-lead-band__input {
  flex: 1; min-width: 200px;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  font-size: 14px; font-family: 'Outfit', sans-serif;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: border-color 0.2s;
}
.hlg-lead-band__input::placeholder { color: rgba(255,255,255,0.5); }
.hlg-lead-band__input:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255,255,255,0.15);
}
.hlg-lead-band__btn {
  display: inline-block;
  padding: 14px 28px;
  background: #fff; color: #2a643b;
  border: none; border-radius: 6px;
  font-size: 14px; font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer; text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.hlg-lead-band__btn:hover { background: #f0f0f0; }
.hlg-lead-band__btn:disabled { opacity: 0.7; cursor: not-allowed; }
.hlg-lead-band__fine-print {
  font-size: 11px; color: rgba(255,255,255,0.4);
  margin-top: 12px; font-weight: 300;
}

/* ── Mobile responsive ── */
@media (max-width: 600px) {
  .hlg-lead-cta { padding: 24px 20px; }
  .hlg-lead-cta__form,
  .hlg-lead-band__form { flex-direction: column; }
  .hlg-lead-cta__input,
  .hlg-lead-band__input { min-width: 100%; }
  .hlg-lead-band { padding: 40px 24px; }
}
