/* STICKY CTA — mobile-only (<=768px) fixed bottom bar. */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.25);
}
.sticky-cta[hidden],
.sticky-cta-thanks[hidden] {
  display: none;
}
.sticky-cta-form {
  display: flex;
  gap: 8px;
  flex: 1 1 auto;
}
.sticky-cta-input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #0D0D0F;
  color: var(--fg);
  font: inherit;
}
.sticky-cta-input:focus {
  outline: none;
  border-color: var(--accent);
}
.sticky-cta-btn {
  padding: 12px 16px;
  background: var(--accent);
  color: #0D0D0F;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.sticky-cta-btn:hover {
  filter: brightness(1.08);
}
.sticky-cta-thanks {
  flex: 1 1 auto;
  text-align: center;
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  align-self: center;
}
.sticky-cta.is-error .sticky-cta-input {
  border-color: #e5484d;
}

@media (min-width: 769px) {
  .sticky-cta {
    display: none !important;
  }
}
