/* Убираем анимации для CLS/LCP */
.t-animate, .t-effect { 
  animation: none !important; 
  transition: none !important; 
}

/* Lazy-load и оптимизация изображений */
img { 
  loading: lazy; 
  object-fit: cover; 
  max-width: 100%; 
  height: auto; 
}

/* Мобильные фиксы для UX/ПФ */
@media (max-width: 768px) { 
  .t-container { 
    padding: 10px !important; 
  } 
  .t-text { 
    font-size: 16px !important; 
    line-height: 1.4; 
  } 
}

/* Шрифты без FOIT для FID/INP */
body { 
  font-display: swap !important; 
}

/* Выделение NAP и кнопок записи для конверсии */
.nap-block { 
  font-weight: bold; 
  color: #000; 
} 
.book-btn { 
  background: #ff6347; 
  color: #fff; 
  padding: 10px 20px; 
  border-radius: 5px; 
}