/* ═══════════════════════════════════════════════════════
   02-reset.css — Global Reset
   Intecracy Group Theme v3.2.0
   ─────────────────────────────────────────────────────
   Box-sizing reset + margin/padding zeroing only.
   No typography. No component rules.
   ═══════════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
