/* ── Sticky $19 Estimate CTA Bar ────────────────────────────────── */
.cta-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #0D1B2A 0%, #1A2E42 100%);
  border-top: 1px solid rgba(255,109,0,0.4);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.cta-sticky-bar.visible {
  transform: translateY(0);
}
.cta-sticky-bar-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.cta-sticky-bar-text strong {
  color: #FF6D00;
  font-weight: 700;
}
.cta-sticky-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: #FF6D00;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(255,109,0,0.3);
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}
.cta-sticky-bar-btn:hover {
  background: #E65100;
  transform: translateY(-1px);
}
.cta-sticky-bar-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.cta-sticky-bar-close:hover { color: rgba(255,255,255,0.8); }

@media (max-width: 640px) {
  .cta-sticky-bar {
    flex-wrap: wrap;
    padding: 0.65rem 1rem;
    gap: 0.5rem;
  }
  .cta-sticky-bar-text { font-size: 0.78rem; }
  .cta-sticky-bar-btn { font-size: 0.78rem; padding: 0.5rem 0.9rem; }
}

/* Spacer — prevents content from being hidden behind sticky bar */
.cta-sticky-spacer { display: none; }
body.cta-sticky-active .cta-sticky-spacer { display: block; height: 56px; }