/* Contact form → AI assistant prompt: highlight + bounce on accept */
@keyframes contact-ai-guided-panel-nudge-bounce {
  0% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
  30% { transform: translateY(-14px); box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.5), 0 24px 48px rgba(15, 23, 42, 0.85); }
  55% { transform: translateY(0); box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.45), 0 12px 28px rgba(15, 23, 42, 0.6); }
  100% { transform: translateY(0); box-shadow: 0 0 0 0 rgba(34, 211, 238, 0); }
}

.contact-ai-guided-panel-nudge {
  position: relative;
  z-index: 2;
  animation: contact-ai-guided-panel-nudge-bounce 1s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .contact-ai-guided-panel-nudge {
    animation: none;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.45);
    transition: box-shadow 0.4s ease;
  }
}
