/* Small development-only overrides for rapid hot-reload testing */

/* Example: make CTA buttons slightly larger during dev */
.cta-section .cta-button {
  transition: background-color 120ms ease-in-out, transform 120ms ease-in-out;
}
.cta-section .cta-button:hover {
  transform: translateY(-2px);
}

/* Body background to help spot layout issues quickly */
body.dev-debug {
  background: #fbf8ff;
}
