/* TurboContact Web — surcouche minimale au CDN Tailwind */

html, body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Scrollbar discrète sur thème sombre */
::-webkit-scrollbar       { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* Transition discrète sur les éléments interactifs */
button, a {
  transition-property: background-color, border-color, color, box-shadow;
  transition-duration: 150ms;
}
