/* Reset selaras dengan normalize bawaan Webflow, supaya render standalone ≈ render Webflow.
   Webflow port: blok ini TIDAK diport sebagai class — masuk ke site head custom code.
   Konvensi: semua styling nyata hidup di class (Webflow-safe); element selector di sini
   hanya menormalkan default browser yang berbeda dari Webflow. */

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
}

/* Webflow memberi heading/paragraf margin default — konvensi kita: setiap elemen teks
   memakai class yang menetapkan margin sendiri, jadi default di-nol-kan di kedua sisi. */
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img,
video,
svg {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
