/* ===== LEKKA OPTYMALIZACJA - MINIMALNA ===== */
/* Tylko to, nic więcej */
/* Naprawa kolejności warstw - navbar nad treścią */
.navbar, 
header,
[class*="navbar"],
[class*="header"] {
  position: relative;
  z-index: 1000 !important;
}

/* Główna zawartość strony pod navbarem */
main,
.hero,
[class*="hero"],
[class*="banner"],
.page-content {
  position: relative;
  z-index: 1;
}

/* Specjalnie dla elementu TRUSTED2YEARS+ jeśli jest osobnym elementem */
.trusted-badge,
[class*="TRUSTED"],
[class*="trusted"] {
  position: relative;
  z-index: 1;
}

/* 1. Płynne scrollowanie */
html {
  scroll-behavior: smooth;
}

/* 2. Szybsze hover */
.btn,
.video-card,
.feedback-card-wrapper {
  transition: transform 0.15s;
}

/* 3. Obrazki nie blokują */
img {
  decoding: async;
}

/* 4. Font Awesome nie blokuje */
.fa,
.fas,
.far,
.fab {
  font-display: swap;
}

/* KONIEC. Tylko tyle. */