/* Оптимизация шрифтов и изображений */
@font-face {
  font-display: swap;
}

img, svg {
  will-change: transform;
}

/* Оптимизация анимаций */
.t-animate {
  will-change: opacity, transform;
}

/* Оптимизация прокрутки */
html {
  scroll-behavior: smooth;
}