
/* Tailwind utility helpers extension */
:root {
  --brand-emerald: #059669;
}
.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
  background: #0f172a;
  color: #fff;
  padding: 8px 12px;
  z-index: 50;
  border-radius: 6px;
}
.nav-link {
  color: #334155;
  text-decoration: none;
}
.nav-link:hover { color: #0f766e; }
.nav-link.active { color: #0ea5e9; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
}
.btn-primary {
  background: #059669;
  color: white;
}
.btn-primary:hover { background: #047857; }
.btn-secondary {
  background: #e2e8f0;
  color: #0f172a;
}
.btn-secondary:hover { background: #cbd5e1; }
.btn-light {
  background: rgba(255,255,255,.15);
  color: white;
  border: 1px solid rgba(255,255,255,.2);
}
.btn-white {
  background: white;
  color: #0f172a;
  border: 1px solid #e2e8f0;
}
.icon { width: 24px; height: 24px; }
.card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgba(0,0,0,0.02);
}
.feature-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.02);
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.stat-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.stat-number {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
}
.stat-label {
  color: #64748b;
}
.check {
  width: 18px; height: 18px; border-radius: 9999px; background: #10b981; display: inline-block; margin-top: 4px;
}
.form-label {
  display: block;
  font-size: 14px;
  color: #334155;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  background: white;
}
.form-input:focus {
  outline: 2px solid #05966933;
  border-color: #059669;
}
.footer-link { color: #cbd5e1; }
.footer-link:hover { color: white; text-decoration: underline; }
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #0f172a;
  color: #e2e8f0;
  z-index: 50;
  border-top: 1px solid #1f2937;
}
.prose h2 { font-size: 1.35rem; margin-top: 1.5rem; }
.faq-item { border: 1px solid #e5e7eb; border-radius: 10px; padding: 14px; background: #fafafa; }
.faq-q { font-weight: 600; color: #0f172a; }
.faq-a { color: #475569; margin-top: 6px; }
