/* ─── Smooth scroll offset for fixed nav ─── */
html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

/* ─── Language buttons ─── */
.lang-btn { color: #64748b; }
.lang-btn-active { background: white; color: #4f46e5; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }

/* ─── Selection ─── */
::selection { background: rgba(99,102,241,0.25); color: #312e81; }

/* ─── FAQ open/close marker ─── */
details summary::-webkit-details-marker { display: none; }
details summary { list-style: none; }

/* ─── Disable animations on motion-reduce ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ─── Subtle pattern on hero ─── */
.bg-grid { background-image: linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px); background-size: 40px 40px; }

/* ─── Fix iOS safari input zoom ─── */
@supports (-webkit-touch-callout: none) {
  input[type="text"], input[type="email"], input[type="tel"], textarea { font-size: 16px; }
}
