/* Финальные визуальные правки: Inter как основной шрифт с быстрым системным fallback и ровные элементы интерфейса. */
:root {
    --site-font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

html,
body,
button,
input,
textarea,
select {
    font-family: var(--site-font-family) !important;
}

body {
    font-weight: 400;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav__company-name {
    font-family: var(--site-font-family) !important;
    font-weight: 700 !important;
    letter-spacing: 0.035em !important;
}

.nav__tagline {
    font-weight: 500 !important;
    letter-spacing: 0.075em !important;
}

.hero__title,
.service-hero h1,
.page-hero__title,
.fleet-section__title {
    font-family: var(--site-font-family) !important;
    font-weight: 700 !important;
    letter-spacing: -0.028em !important;
}

.service-section h2,
.service-detail-card h2,
.service-faq summary,
.services-mega__column-head strong,
.fleet-card__title {
    font-family: var(--site-font-family) !important;
    font-weight: 700 !important;
}

.nav-link,
.services-mega__list a,
.category-tab,
.contact-value,
.service-card p,
.service-clean-list li {
    font-weight: 600 !important;
}

.service-lead,
.service-section-head p:not(.service-kicker),
.service-detail-card p,
.service-text-panel p {
    font-weight: 400 !important;
}

.service-card-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card {
    min-height: 178px;
}

.hero-carousel .carousel-arrow,
.hero-carousel__arrow,
.carousel-arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.hero-carousel .carousel-arrow:hover,
.hero-carousel__arrow:hover,
.carousel-arrow:hover {
    transform: translateY(-50%) scale(1.04) !important;
}

@media (max-width: 1180px) {
    .service-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 820px) {
    .service-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
    .service-card-grid { grid-template-columns: 1fr; }
}

/* Финальная правка крупных заголовков: Inter остаётся, но без чрезмерной жирности. */
:root {
    --site-heading-weight: 700;
    --site-heading-letter-spacing: -0.036em;
}

.hero__title,
.service-hero h1,
.page-hero__title,
.fleet-section__title,
.autopark-hero-card h1,
.services-index-hero h1,
.about-hero-title,
.faq-hero-title,
.section-title {
    font-family: var(--site-font-family) !important;
    font-weight: var(--site-heading-weight) !important;
    letter-spacing: var(--site-heading-letter-spacing) !important;
    text-rendering: geometricPrecision;
}

.autopark-hero-card h1,
.services-index-hero h1 {
    line-height: 1.02 !important;
}

