@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* Современный шрифт вместо Times New Roman */
body, .t-body, .t-wrapper, .t-rec, .t-text, .t-title, .t-descr, .t-name, .t-uptitle,
.t-input, .t-btn, .t-button, .t-menu__link, .t-footermenu, .t-footer, .t495__title,
.t495__descr, .t-card__title, .t-card__descr, p, h1, h2, h3, h4, h5, h6, li, a, span, div {
  font-family: 'Manrope', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Единый радиус кнопок и полей форм */
.t-btn, .t-button, .t-submit, input[type='submit'], .t-form__submit button, .t-input, .t-select, .t-form__inputsbox input {
  border-radius: 12px !important;
}

/* Плавные переходы при наведении */
.t-btn, .t-button {
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease !important;
}
.t-btn:hover, .t-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

/* Плавная прокрутка по якорям */
html { scroll-behavior: smooth; }