
/* Base utilities */
.nav-link { color: #334155; }
.nav-link:hover { color: #0f172a; }
.btn { @apply inline-flex items-center justify-center px-4 py-2 rounded-md font-medium border border-transparent transition; }
.btn-primary { @apply bg-brand text-white hover:bg-brand-dark; }
.btn-outline { @apply bg-white text-brand border border-brand hover:bg-brand/5; }
.btn-ghost { @apply bg-transparent border border-slate-300 hover:bg-slate-100; }
.btn-ghost.text-slate-700 { color:#334155 }
.card { @apply bg-white border border-slate-200 p-5 rounded-lg; }
.service-card { @apply bg-white border border-slate-200 p-5 rounded-lg; }
.footer-link { @apply text-slate-600 hover:text-brand; }
.input { @apply w-full border border-slate-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-brand/40; }
.textarea { @apply w-full border border-slate-300 rounded-md px-3 py-2 focus:outline-none focus:ring-2 focus:ring-brand/40; }
.label { @apply block text-sm text-slate-700 mb-1; }
.check { @apply h-5 w-5 inline-flex shrink-0 rounded-full bg-brand text-white items-center justify-center; }
.check::after { content: "✓"; font-size: 12px; }

/* Cookie banner */
.cookie-banner { position: fixed; inset-inline: 0; bottom: 0; background: #ffffff; border-top: 1px solid #e2e8f0; z-index: 50; box-shadow: 0 -6px 20px -12px rgba(0,0,0,0.15); }

/* Prose minimal */
.prose h2 { @apply text-xl font-semibold mt-6; }
.prose p, .prose li { @apply text-slate-700; }
.prose blockquote { @apply border-l-4 border-brand/50 pl-4 text-slate-700 italic; }
