/* ==========================================================
   Header — ТК «Холод» Premium
========================================================== */

:root {
    --color-primary: #0066FF;
    --color-text: #031A38;
    --color-muted: #64748B;
    --color-white: #FFFFFF;
    --color-accent: #2563EB;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100% - 48px, 1280px);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 16px;
}

.site-header__btn:focus-visible,
.site-header__burger:focus-visible,
.site-header__nav-link:focus-visible,
.site-header__mobile-link:focus-visible,
.hero-buttons a:focus-visible,
.btn:focus-visible,
.cta-contact-form__btn:focus-visible,
.service-card__link:focus-visible,
.project-card__link:focus-visible,
.site-footer__list a:focus-visible,
.site-footer__legal a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* --- Header --- */

.site-header {
    --header-current-height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: box-shadow var(--transition-header);
}

.site-header.site-header--scrolled {
    --header-current-height: var(--header-height-scrolled);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}
.site-header__brand {
    margin-left: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.site-header__brand {
    margin-left: -15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo {
    display: block;
    width: 95px;
    height: 52px;
    object-fit: contain;
}

.site-header--scrolled .site-header__logo {
    height: 42px;
}

.site-header__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.site-header__name {
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -.02em;
    line-height: 1.1;
    white-space: nowrap;
    transition: font-size var(--transition-header);
}

.site-header--scrolled .site-header__name {
    font-size: 24px;
}

.site-header__tagline {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    letter-spacing: .01em;
    white-space: nowrap;
}

/* Navigation */

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-left: 20px;
    white-space: nowrap;
}

.site-header__nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 2px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--color-text);
    white-space: nowrap;
    transition: color var(--transition-header);
}

.site-header__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-header);
}

.site-header__nav-link:hover,
.site-header__nav-link--active {
    color: var(--color-primary);
}

.site-header__nav-link:hover::after,
.site-header__nav-link--active::after {
    transform: scaleX(1);
}

/* Right block */

.site-header__right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    flex-shrink: 0;
}

.site-header__phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    transition: color var(--transition-header);
}

.site-header__phone:hover {
    color: var(--color-primary);
}

.site-header__callback {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    text-decoration: none;
    transition: color var(--transition-header);
}

.site-header__callback:hover {
    text-decoration: underline;
}

.site-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: transform var(--transition-header), box-shadow var(--transition-header);
}

.site-header__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(10, 91, 216, .32);
    color: #fff;
}

.site-header__btn--block {
    width: calc(100% - 48px);
    margin: 16px 24px 24px;
}

.site-header__btn--mobile {
    display: none;
}

/* Mobile bar (burger + CTA) */

.site-header__mobile-bar {
    display: none;
    grid-column: 3;
    justify-self: end;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.site-header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-header), opacity var(--transition-header);
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(2) {
    opacity: 0;
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */

.site-header__mobile {
    display: none;
    position: fixed;
    top: var(--header-current-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, .35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-header), visibility var(--transition-header);
    z-index: 999;
}

.site-header__mobile.is-open {
    opacity: 1;
    visibility: visible;
}

.site-header__mobile-nav {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(18px);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, .08);
}

.site-header__mobile-link {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--color-text);
    border-radius: 10px;
    transition: background var(--transition-header), color var(--transition-header);
}

.site-header__mobile-link:hover {
    background: rgba(10, 91, 216, .08);
    color: var(--color-primary);
}

.site-header__mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
    background: #F8FAFC;
}

.site-header__mobile-contact a:first-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.site-header__mobile-contact a:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.site-header__mobile-contact a:last-child:hover {
    text-decoration: underline;
}

body.header-menu-open {
    overflow: hidden;
}

/* ==========================================================
   Hero
========================================================== */

.hero {
    position: relative;
    padding: 0px 0 0px;
    background:
        linear-gradient(...);
    color: var(--color-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 92% 8%, rgba(56, 189, 248, .22) 0%, transparent 52%),
        radial-gradient(ellipse 55% 50% at 8% 92%, rgba(10, 91, 216, .18) 0%, transparent 48%),
        radial-gradient(circle 40% at 50% 50%, rgba(37, 99, 235, .08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .85;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 56px);
}

.hero-content {
    max-width: 560px;
}

.hero-content > p:first-of-type {
    display: inline-block;
    margin: 0 0 24px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    margin: 150px 0 20px;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.hero-content h1 span {
    color: var(--color-accent);
}

.hero-content > p:last-of-type {
    margin: 0 0 32px;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.75;
    opacity: .9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hero-buttons a:first-child {
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    color: var(--color-white);
    box-shadow: 0 10px 32px rgba(10, 91, 216, .38);
}

.hero-buttons a:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(10, 91, 216, .48);
}

.hero-buttons a:last-child {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .28);
    color: var(--color-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-buttons a:last-child:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.hero-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 90%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    margin-left: auto;
    border-radius: 28px;
}

.hero-image-wrap:hover .hero-image {
    transform: scale(1.02);
    box-shadow:
        0 40px 96px rgba(2, 20, 40, .6),
        0 16px 40px rgba(10, 91, 216, .28),
        inset 0 1px 0 rgba(255, 255, 255, .2);
}

.hero-image-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

.hero-image-card strong {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-white);
}

.hero-image-card span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(20px, 3vw, 28px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: background .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.hero-stats li:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
}

.hero-stats-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    opacity: .95;
}

.hero-stats strong {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent);
}

.hero-stats span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    opacity: .82;
}

/* ==========================================================
   Преимущества
========================================================== */

.section--advantages {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--advantages .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--advantages .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--advantages .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--advantages .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.advantage-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .14);
    box-shadow: 0 24px 56px rgba(15, 23, 42, .12);
}

.advantage-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(10, 91, 216, .1) 0%, rgba(37, 99, 235, .06) 100%);
    border-radius: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.advantage-card__icon svg {
    display: block;
}

.advantage-card__title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.advantage-card__text {
    margin: 0;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-muted);
}

/* ==========================================================
   Услуги
========================================================== */

.section--services {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--services .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--services .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--services .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--services .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}






.section--services .service-card.stagger-5 {
    transition-delay: .5s;
}

.section--services .service-card.stagger-6 {
    transition-delay: .6s;
}

/* ==========================================================
   Проекты
========================================================== */

.section--projects {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--projects .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--projects .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--projects .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--projects .section__desc {
    max-width: 1100px !important;
    width: 100%;
    margin: 25px auto;
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(3, 26, 56, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .12);
    box-shadow: 0 28px 64px rgba(3, 26, 56, .14);
}

.project-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background:
        linear-gradient(145deg, #031a38 0%, #052e5c 30%, #0a5bd8 65%, #38BDF8 100%);
}

.project-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(56, 189, 248, .25) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 15% 85%, rgba(10, 91, 216, .2) 0%, transparent 50%);
    pointer-events: none;
}

.project-card__placeholder {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.project-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 28px 28px 32px;
}

.project-card__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.project-card__city {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.project-card__text {
    margin: 0;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-muted);
}

.project-card__meta {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.project-card__meta-item {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
}

.project-card__meta dt {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.project-card__meta dd {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    transition: gap .25s ease, color .25s ease;
}

.project-card__link::after {
    content: '→';
    transition: transform .25s ease;
}

.project-card__link:hover {
    color: #2563EB;
    gap: 10px;
}

.project-card__link:hover::after {
    transform: translateX(2px);
}

.section--projects .project-card.stagger-5 {
    transition-delay: .5s;
}

.section--projects .project-card.stagger-6 {
    transition-delay: .6s;
}

/* ==========================================================
   Производители и партнёры
========================================================== */

.section--partners {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--partners .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--partners .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--partners .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--partners .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 28px 24px;
    text-align: center;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, .04);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .12);
    box-shadow: 0 20px 48px rgba(15, 23, 42, .1);
}

.partner-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
    margin-bottom: 20px;
    background: #FFFFFF;
    border: 1px dashed rgba(10, 91, 216, .2);
    border-radius: 16px;
}

.partner-card__logo-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--color-primary);
    opacity: .85;
}

.partner-card__name {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.partner-card__desc {
    margin: 0;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
}

.partners-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    margin: clamp(48px, 6vw, 64px) 0 0;
    padding: clamp(28px, 4vw, 36px);
    list-style: none;
    background: linear-gradient(135deg, rgba(10, 91, 216, .06) 0%, rgba(56, 189, 248, .06) 100%);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
}

.partners-benefits__item {
    position: relative;
    padding-left: 28px;
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 600;
    color: var(--color-text);
}

.partners-benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .12);
    border-radius: 50%;
}

.section--partners .partner-card.stagger-5 {
    transition-delay: .5s;
}

.section--partners .partner-card.stagger-6 {
    transition-delay: .6s;
}

.section--partners .partner-card.stagger-7 {
    transition-delay: .7s;
}

.section--partners .partner-card.stagger-8 {
    transition-delay: .8s;
}

/* ==========================================================
   CTA + Контакты
========================================================== */

.section--cta-contact {
    position: relative;
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
    overflow: hidden;
}

.section--cta-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 0% 20%, rgba(10, 91, 216, .07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 100% 80%, rgba(56, 189, 248, .08) 0%, transparent 50%);
    pointer-events: none;
}

.section--cta-contact > .container {
    position: relative;
    z-index: 1;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.cta-contact__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.cta-contact__desc {
    margin: 0 0 32px;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.cta-contact-benefits {
    margin: 0;
    padding: clamp(24px, 3vw, 32px);
    list-style: none;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.cta-contact-benefits__item {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
}

.cta-contact-benefits__item + .cta-contact-benefits__item {
    margin-top: 16px;
}

.cta-contact-benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 50%;
}

.cta-contact-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-contact-form {
    padding: clamp(28px, 4vw, 36px);
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(3, 26, 56, .08);
}

.cta-contact-form .form-field {
    margin-bottom: 20px;
}

.cta-contact-form .form-field__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.cta-contact-form .form-field__input {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    background: rgba(248, 250, 252, .9);
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 12px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.cta-contact-form .form-field__input:focus,
.cta-contact-form .form-field__input:focus-visible {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10, 91, 216, .12);
}

.cta-contact-form .form-field__input--area {
    min-height: 112px;
    resize: vertical;
}

.cta-contact-form__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 32px rgba(10, 91, 216, .32);
    transition: transform .3s ease, box-shadow .3s ease;
}

.cta-contact-form__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(10, 91, 216, .42);
}

.cta-contact-form__privacy {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-muted);
    text-align: center;
}

.cta-contact-form__privacy a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta-contact-form__privacy a:hover {
    color: #2563EB;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.form-message--success {
    color: #065F46;
    background: rgba(16, 185, 129, .12);
    border: 1px solid rgba(16, 185, 129, .24);
}

.form-message--error {
    color: #991B1B;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .22);
}

.cta-contact-form__btn:disabled {
    opacity: .72;
    cursor: not-allowed;
    transform: none;
}

.cta-contact-info {
    padding: clamp(24px, 3vw, 28px);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.cta-contact-info__title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.cta-contact-info__list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.cta-contact-info__item dt {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cta-contact-info__item dd {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.cta-contact-info__item dd a {
    color: var(--color-primary);
    transition: color .25s ease;
}

.cta-contact-info__item dd a:hover {
    color: #2563EB;
}

.cta-contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    background:
        linear-gradient(145deg, rgba(3, 26, 56, .04) 0%, rgba(10, 91, 216, .08) 50%, rgba(56, 189, 248, .06) 100%);
    border: 1px solid rgba(10, 91, 216, .12);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.cta-contact-map__placeholder {
    margin: 0;
    padding: 20px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-muted);
    background: rgba(255, 255, 255, .75);
    border: 1px dashed rgba(10, 91, 216, .25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

/* Кнопки (общие секции сайта) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background: #0a54c4;
    transform: translateY(-2px);
}

/* ==========================================================
   Footer
========================================================== */

.site-footer {
    width:100%;
    background:#031A38;
    margin-top:80px;
}

.site-footer .container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
}

.site-footer__grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr 1fr;
    gap:28px;
    align-items:start;
}

.site-footer__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    transition: opacity .28s ease;
}

.site-footer__brand-link:hover {
    opacity: .88;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer__name {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.site-footer__about {
    margin: 0;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .68);
}

.site-footer__heading {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.site-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__list li + li {
    margin-top: 12px;
}

.site-footer__list a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
    transition: color .28s ease;
}

.site-footer__list a:hover {
    color: var(--color-accent);
}

.site-footer__contacts {
    font-style: normal;
}

.site-footer__list--contacts li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer__list--contacts li + li {
    margin-top: 16px;
}

.site-footer__contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .48);
}

.site-footer__list--contacts a,
.site-footer__contact-value {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
}

.site-footer__list--contacts a {
    transition: color .28s ease;
}

.site-footer__list--contacts a:hover {
    color: var(--color-accent);
}

.site-footer__brands {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    padding: clamp(24px, 3vw, 32px) 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__brands-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}

.site-footer__brands-list {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding-top: clamp(24px, 3vw, 32px);
}

.site-footer__copy {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .52);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.site-footer__legal a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .62);
    transition: color .28s ease;
}

.site-footer__legal a:hover {
    color: var(--color-accent);
}

/* ==========================================================
   Timeline — этапы работы
========================================================== */

.section--timeline {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--timeline .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--timeline .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--timeline .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--timeline .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, rgba(10, 91, 216, .25) 0%, var(--color-primary) 50%, rgba(56, 189, 248, .5) 100%);
    border-radius: 3px;
    z-index: 0;
}

.timeline__item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.timeline__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(10, 91, 216, .28);
}

.timeline__title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.timeline__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
}

.partner-card__logo img {
    max-width: 80%;
    max-height: 48px;
    object-fit: contain;
}

.section--partners .partner-card__logo--brand img {
    filter: grayscale(20%);
    opacity: .92;
    transition: filter .3s ease, opacity .3s ease;
}

.section--partners .partner-card:hover .partner-card__logo--brand img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================
   Хлебные крошки
========================================================== */

.breadcrumbs {
    margin: 0 0 24px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
}

.breadcrumbs li + li::before {
    content: '/';
    color: rgba(255, 255, 255, .45);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, .88);
    transition: color .25s ease;
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs [aria-current="page"] {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================
   Каталог оборудования — сетка 4 колонки
========================================================== */

.services-grid--catalog {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================
   Области применения
========================================================== */

.section--applications {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--applications .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--applications .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--applications .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--applications .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

/* ==========================================================
   Почему именно это оборудование
========================================================== */

.section--equipment-benefits {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.equipment-benefits {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.equipment-benefits__media {
    position: relative;
    height: 260px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-benefits__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.equipment-benefits__content .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.equipment-benefits__title {
    margin: 0 0 20px;
    font-size: clamp(30px, 3.8vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.equipment-benefits__desc {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
}

.equipment-benefits__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.equipment-benefits__item {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
}

.equipment-benefits__item + .equipment-benefits__item {
    margin-top: 16px;
}

.equipment-benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 50%;
}

/* ==========================================================
   FAQ — accordion
========================================================== */

.section--faq {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--faq .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--faq .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--faq .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--faq .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(3, 26, 56, .04);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item[open] {
    border-color: rgba(10, 91, 216, .15);
    box-shadow: 0 8px 32px rgba(3, 26, 56, .08);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    transition: color .25s ease;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .08);
    border-radius: 8px;
    transition: transform .25s ease, background .25s ease;
}

.faq-item[open] .faq-item__question::after {
    content: '−';
    transform: rotate(180deg);
    background: rgba(10, 91, 216, .14);
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
}

.faq-item__answer p {
    margin: 0;
}

/* ==========================================================
   Projects page — фильтр, изображения, featured, stats, отзывы
========================================================== */

.project-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 clamp(40px, 5vw, 56px);
}

.project-filter__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 50px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.project-filter__btn:hover,
.project-filter__btn:focus-visible {
    border-color: rgba(10, 91, 216, .25);
    color: var(--color-primary);
}

.project-filter__btn--active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(10, 91, 216, .28);
}

.project-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.project-card:hover .project-card__image {
    transform: scale(1.05);
}

.project-card__type {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(3, 26, 56, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.featured-project {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
    padding: clamp(32px, 4vw, 48px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(3, 26, 56, .08);
}

.featured-project__media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(10, 91, 216, .1);
}

.featured-project__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.featured-project__title {
    margin: 0 0 24px;
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0F172A;
}

.featured-project__specs {
    display: grid;
    gap: 14px;
    margin: 0 0 28px;
}

.featured-project__spec {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.featured-project__spec dt {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.featured-project__spec dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.featured-project__works-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
}

.featured-project__works {
    margin: 0 0 28px;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
}

.featured-project__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(10, 91, 216, .32);
    transition: transform .3s ease, box-shadow .3s ease;
}

.featured-project__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(10, 91, 216, .42);
    color: #FFFFFF;
}

.section--stats {
    padding: clamp(64px, 8vw, 96px) 0;
    background:
        linear-gradient(145deg, #021428 0%, #031a38 28%, #052e5c 55%, #0a5bd8 100%);
    color: var(--color-white);
}

.section--stats .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 64px);
}

.section--stats .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.section--stats .section__title {
    margin: 0 0 16px;
    font-size: clamp(30px, 3.8vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
}

.section--stats .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
}

.section--trust {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--trust .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--trust .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--trust .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.section--testimonials {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--testimonials .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--testimonials .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--testimonials .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(28px, 4vw, 36px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(3, 26, 56, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(3, 26, 56, .12);
}

.testimonial-card__company {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-card__text {
    margin: 0;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-muted);
    font-style: italic;
}

.testimonial-card__author {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, .08);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.section--featured {
    padding: 0 0 clamp(80px, 10vw, 120px);
    background: #F8FAFC;
}

.section--featured .container {
    margin-top: clamp(-40px, -4vw, -24px);
}

/* ==========================================================
   Contacts page
========================================================== */

.section--contact-info {
    padding: clamp(80px, 10vw, 120px) 0 clamp(48px, 6vw, 72px);
    background: #FFFFFF;
}

.section--contact-info .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--contact-info .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--contact-info .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.contact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(24px, 3vw, 32px);
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(3, 26, 56, .04);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .12);
    box-shadow: 0 20px 48px rgba(3, 26, 56, .1);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 14px;
}

.contact-card__title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.contact-card__value {
    margin: 0;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
}

.contact-card__value a {
    color: var(--color-primary);
    transition: color .25s ease;
}

.contact-card__value a:hover {
    color: #2563EB;
}

.contact-card__note {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
}

.section--departments {
    padding: clamp(48px, 6vw, 72px) 0;
    background: #F8FAFC;
}

.section--departments .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--departments .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--departments .section__title {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.department-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(24px, 3vw, 28px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(3, 26, 56, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.department-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(3, 26, 56, .1);
}

.department-card__title {
    margin: 0 0 16px;
    padding-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.department-card__badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 50px;
}

.department-card__list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.department-card__item dt {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.department-card__item dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.department-card__item dd a {
    color: var(--color-primary);
}

.department-card__item dd a:hover {
    color: #2563EB;
}

.section--map {
    padding: clamp(48px, 6vw, 72px) 0;
    background: #FFFFFF;
}

.section--map .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.section--map .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--map .section__title {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(10, 91, 216, .12);
    box-shadow: 0 12px 48px rgba(3, 26, 56, .08);
    background: #F8FAFC;
}

.contact-map__frame {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-map__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .95);
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.contact-map__address {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-map__route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(10, 91, 216, .28);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-map__route:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(10, 91, 216, .38);
    color: #FFFFFF;
}

.section--requisites {
    padding: clamp(48px, 6vw, 72px) 0 clamp(80px, 10vw, 120px);
    background: #F8FAFC;
}

.section--requisites .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.section--requisites .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--requisites .section__title {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
}

.requisites-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 40px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.requisites-card__list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.requisites-card__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.requisites-card__row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.requisites-card__row dt {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted);
}

.requisites-card__row dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-text);
}

.requisites-card__placeholder {
    color: var(--color-muted);
    font-weight: 500;
    font-style: italic;
}
/* Преимущества компрессорных агрегатов */

.advantages {
    padding: 90px 0;
    background: #f7faff;
}


.advantages .section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}


.advantages h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: #101828;
    margin: 15px 0;
}


.section-label {
    color: #1468ff;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 13px;
}


.section-desc {
    color: #667085;
    font-size: 18px;
}



.advantages-grid {

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}



.advantage-card {

background:#fff;
padding:32px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.06);

}



.advantage-icon {

font-size:32px;
margin-bottom:20px;

}



.advantage-card h3 {

font-size:22px;
margin-bottom:15px;
color:#101828;

}


.advantage-card p {

color:#667085;
line-height:1.6;

}



@media(max-width:900px){

.advantages-grid{
    grid-template-columns: repeat(2,1fr);
}

}


@media(max-width:600px){

.advantages-grid{
    grid-template-columns:1fr;
}

}
/* Преимущества */

.advantages{
padding:90px 0;
background:#f7faff;
}


.advantages-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;

}


.advantage-card{

background:#ffffff;
padding:32px;
border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

transition:.3s;

}


.advantage-card:hover{

transform:translateY(-8px);

}



.advantage-icon{

width:55px;
height:55px;

display:flex;
align-items:center;
justify-content:center;

border-radius:14px;

background:#e8f4ff;

font-size:28px;

margin-bottom:22px;

}



.advantage-card h3{

font-size:22px;
color:#101828;

margin-bottom:15px;

}



.advantage-card p{

font-size:16px;
line-height:1.6;
color:#667085;

}



@media(max-width:1000px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.advantages-grid{

grid-template-columns:1fr;

}

}
/* Преимущества */

.advantages{
padding:90px 0;
background:#f7faff;
}


.advantages-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;

}


.advantage-card{

background:#ffffff;
padding:32px;
border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

transition:.3s;

}


.advantage-card:hover{

transform:translateY(-8px);

}



.advantage-icon{

width:55px;
height:55px;

display:flex;
align-items:center;
justify-content:center;

border-radius:14px;

background:#e8f4ff;

font-size:28px;

margin-bottom:22px;

}



.advantage-card h3{

font-size:22px;
color:#101828;

margin-bottom:15px;

}



.advantage-card p{

font-size:16px;
line-height:1.6;
color:#667085;

}



@media(max-width:1000px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.advantages-grid{

grid-template-columns:1fr;

}

}
/* ===== Выпадающее меню оборудование ===== */

.nav-dropdown {
    position: relative;
    display: inline-block;
}


.nav-dropdown-title {
    cursor: pointer;
}


.nav-dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;

    width: 260px;

    background: #fff;

    padding: 12px 0;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .25s ease;

    z-index: 1000;
}


.nav-dropdown-menu a {

    display: block;

    padding: 12px 20px;

    color: #1b2738;

    text-decoration: none;

    white-space: nowrap;

}


.nav-dropdown-menu a:hover {

    background:#f1f5ff;

    color:#1463e8;

}


.nav-dropdown:hover .nav-dropdown-menu {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}
/* Выпадающее меню оборудования */

.nav-dropdown {
    position: relative;
}


.nav-dropdown-menu {

    position: absolute;

    top: 100%;
    left: 0;

    width: 260px;

    background: #fff;

    border-radius: 10px;

    padding: 10px 0;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .25s ease;

    z-index: 9999;
}


.nav-dropdown-menu a {

    display: block;

    padding: 12px 20px;

    color: #1b2738;

    text-decoration: none;

    white-space: nowrap;

}


.nav-dropdown-menu a:hover {

    background:#f1f5ff;

}


.nav-dropdown:hover .nav-dropdown-menu {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}
.content-text {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
}
#types .section__header {
    margin-bottom: 10px;
}

#types .section__desc {
    margin-top: 10px;
    margin-bottom: 20px;
}
/* уменьшение расстояний на странице компрессора */
#types {
    padding-top: 20px;
    padding-bottom: 20px;
}

#types .section__header {
    margin-bottom: 10px;
}

#types .section__title {
    margin-bottom: 10px;
}

#types .section__desc {
    margin-top: 5px;
    margin-bottom: 15px;
}

.compressor-text {
    margin-top: 10px;
}
/* Уменьшение отступов FAQ */
.section--faq {
    padding: 40px 0;
}

#faq .section__header {
    margin-bottom: 30px;
}
/* уменьшение блока картинки компрессоров */
.hero-image-wrap {
    width: 420px !important;
    height: 320px !important;
    margin: 0 auto;
}

.hero-image-wrap img,
.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}
.service-card__link {
    display: inline-block !important;
    position: relative;
    z-index: 5;
    margin-top: 15px;
    color: #0066ff;
    visibility: visible !important;
    opacity: 1 !important;
}


/* выравнивание карточек компрессоров */

/* Карточки поршневых компрессоров */





@media(max-width:900px){
.compressor-gallery{
grid-template-columns:1fr;
}
}
/* Поршневые компрессоры - исправление */





/* FIX поршневые компрессоры */








@media(max-width:900px){



}
/* ==========================================================
   Виды поршневых компрессоров
========================================================== */
/* Сетка поршневых компрессоров */

.piston-types-grid {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Карточка */

.piston-types-grid .piston-card {

    width: auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.piston-types-grid .piston-card {

    width:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.piston-types-grid .piston-card img {

    width:100%;
    height:250px;
    object-fit:contain;
    display:block;

}


.piston-types-grid .piston-card h3 {

    font-size:22px;
    line-height:1.2;
    margin:20px 0 10px;

}


.piston-types-grid .piston-card p {

    color:#666;
    line-height:1.5;

}


.piston-types-grid .piston-card a {

    color:#1266ff;
    font-weight:600;

}

/* Планшет */

@media (max-width: 900px) {
    .piston-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Телефон */

@media(max-width:900px){
    .piston-types-grid {
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .piston-types-grid {
        grid-template-columns:1fr;
    }
}
/* Карточки поршневых компрессоров */

.piston-types-grid .gallery-item img {
    width:100% !important;
    height:250px !important;
    object-fit:contain !important;
    display:block;
}


.piston-types-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1100px;
    margin:50px auto;
}


.piston-types-grid .gallery-item {
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}
.piston-types-grid {
    width:100%;
    max-width:1100px;
    margin:50px auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}


.piston-types-grid .gallery-item {
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}


.piston-types-grid img {
    width:100%;
    height:250px;
    object-fit:contain;
    display:block;
}


.piston-types-grid h3 {
    font-size:22px;
}


@media(max-width:900px){

.piston-types-grid {
    grid-template-columns:1fr;
}

}
/* Поршневые компрессоры - 3 карточки */

.piston-types-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    max-width: 1100px;
    margin: 50px auto;
}


.piston-types-grid .gallery-item {
    width: auto !important;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}


.piston-types-grid img {
    width:100%;
    height:250px;
    object-fit:contain;
}


@media(max-width:900px){

.piston-types-grid {
    grid-template-columns:1fr !important;
}

}
/* Карточки поршневых компрессоров */

.piston-types-grid {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.piston-card {
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}


.piston-card img {
    width:100%;
    height:250px;
    object-fit:contain;
    display:block;
}


.piston-card h3 {
    font-size:22px;
    margin-top:20px;
}


.piston-card p {
    color:#666;
    line-height:1.5;
}


.piston-card a {
    color:#1266ff;
    font-weight:600;
}


@media(max-width:900px){

.piston-types-grid {
    grid-template-columns:1fr;
}

}
/* Сетка типов поршневых компрессоров */

.piston-types-grid {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.piston-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    overflow: hidden;
}


.piston-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}


.piston-card h3 {
    font-size: 22px;
    margin-top: 20px;
}


.piston-card p {
    color: #666;
    line-height: 1.5;
}


.piston-card a {
    color: #1266ff;
    font-weight: 600;
}


@media(max-width:900px){

    .piston-types-grid {
        grid-template-columns: 1fr;
    }

}
/* Карточки поршневых компрессоров */

.piston-types-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1100px;
    margin: 50px auto;
}

.piston-types-grid .piston-card {
    width: auto !important;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.piston-types-grid .piston-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
/* Виды винтовых компрессоров */

.screw-types-grid {
    width:100%;
    max-width:1100px;
    margin:50px auto;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
}


.screw-types-grid .service-card {

    width:auto !important;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
}
.screw-types-grid .service-card img {

    width:100%;
    height:250px;
    object-fit:contain;

}
/* =====================================
   Винтовые компрессоры
===================================== */

.screw-types-grid {

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;

    max-width:1100px;
    margin:50px auto;

}


.screw-card {

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.screw-card__media img {

    width:100%;
    height:250px;
    object-fit:contain;

}


.screw-card__body {

    padding:20px 24px;

}


.screw-card__title {

    font-size:22px;
    margin-bottom:10px;

}


.screw-card__text {

    color:#666;
}


.screw-card__link {

    color:#1266ff;
    font-weight:600;

}
/* =====================================
   EQUIPMENT PAGE
===================================== */

.equipment-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}


.equipment-card {

    background:#fff;
    border-radius:20px;
    overflow:visible;
    height:auto;
    min-height:650px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.equipment-card__media {

    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;

}


.equipment-card__image {

    width:100%;
    height:250px;
    object-fit:contain;

}


.equipment-card__body {

    padding:20px 24px 35px;
    height:auto;

}


.equipment-card__title {

    margin-bottom:10px;
    font-size:22px;

}


.equipment-card__text {

    color:#666;
    line-height:1.5;

}


.equipment-card__link {

    color:#1266ff;
    font-weight:600;

}


@media(max-width:900px){

.equipment-grid{

    grid-template-columns:1fr;

}

}
/* Детальные изображения винтовых компрессоров */

.screw-detail-image {

    width:100%;
    max-width:700px;
    height:350px;

    object-fit:contain;

    display:block;
    margin:0 auto;

    border-radius:20px;

}
.screw-detail-card {

    max-width:1000px;
    margin:50px auto;
    padding:30px;

    background:#fff;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}
.compressor-gallery {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    max-width: 1200px;
    margin: 50px auto;

}


.gallery-item {

    background:#fff;
    border-radius:20px;
    padding:20px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}
@media(max-width:900px){

.compressor-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto;
}

.screw-detail-image {

    height:300px;

}

}
/* Детальная страница винтовых компрессоров */

.screw-details {

    max-width:1200px;
    margin:50px auto;
    padding:0 20px;

}


.screw-detail-card {

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.screw-detail-image {

    width:100%;
    max-width:900px;
    height:500px;

    display:block;
    margin:0 auto;

    object-fit:contain;

}


.screw-detail-content {

    padding:30px;

}


.screw-detail-content h3 {

    font-size:18px;
    margin-bottom:15px;

}


.screw-detail-content p {

    color:#666;
    line-height:1.6;

}
body {
    border-top: 10px solid red !important;
}
.screw-detail-card {
    margin-bottom:40px;
}
/* Винтовые компрессоры - горизонтальная раскладка */

.screw-details {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    max-width: 1400px;
    margin: 50px auto;

}
.screw-detail-card {

    width:100%;
    box-sizing:border-box;

}

.screw-detail-card {

    background:#fff;
    border-radius:20px;
    padding:20px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.screw-detail-image {

    width:100%;
    height:220px;

    object-fit:contain;

    display:block;

    margin-bottom:20px;

}
.product-card img {
    width: 100%;
    height: 250px;        /* одинаковая высота всех картинок */
    object-fit: contain;  /* сохраняет пропорции оборудования */
    display: block;
}
.equipment-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
.product-card {
    min-height: 480px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.product-card img {
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}
/* Выравнивание изображений компрессоров */
.compressor-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 470px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.gallery-item h3 {
    margin-top: 20px;
}

.gallery-item p {
    margin-top: 10px;
}
.equipment-card__text {
    color:#444;
    line-height:1.6;
    font-size:16px;
}
.hero-cond{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:70px 0;
}

.hero-cond .content{
    width:45%;
}

.hero-cond .image{
    width:55%;
}

.hero-cond .image img{
    width:100%;
    border-radius:20px;
}
.equipment-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.equipment-card{
    min-height:360px;
    border-radius:18px;
    overflow:hidden;
}

.equipment-card img{
    height:170px;
    width:100%;
    object-fit:cover;
}

.equipment-card h3{
    font-size:18px;
    margin:20px;
}

.equipment-card p{
    font-size:14px;
    line-height:1.5;
    margin:20px;
}
.hero-cond{
    padding-top:100px;
}
.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero__content {
    width: 45%;
}

.hero__image {
    width: 55%;
    display: flex;
    justify-content: center;
}

.hero__image img {
    width: 850px;
    max-width: none;
    height: 450px;
    object-fit: contain;
}
.hero__inner{
    padding-top:80px;
    padding-bottom:60px;
}
.hero__content h1{
    font-size:48px;
    line-height:1.15;
}

.hero__content h1 span{
    color:#2563eb;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-card{
    text-align:center;
    padding:25px 15px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:15px;
}

.service-card h3{
    font-size:18px;
    line-height:1.25;
}

.service-card p{
    font-size:14px;
    color:#64748b;
}
/* Услуги в одну линию */
.services-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
    width:100%;
}

.service-card {
    min-height: 430px;
    width: 100%;
    padding: 25px;
}
/* одинаковая высота карточек */
.service-card__media{
    height:180px;
}

.service-card__image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-card__body{
    padding:20px;
}


/* адаптация */
@media(max-width:1400px){
    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }
}
/* Увеличение картинок справа на главной странице */

.hero-grid{
    grid-template-columns:40% 60%;
    gap:40px;
}

.hero-image-wrap{
    width:100%;
}

.hero-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.hero-gallery img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:20px;
}
/* Футер на всю ширину страницы */

.site-footer {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* внутреннее содержимое по центру */
.site-footer > .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
/* ===== Уменьшение отступов первого экрана ===== */

.hero {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}

.hero-grid {
    padding-top: 20px !important;
    gap: 25px !important;
}


/* Заголовок и картинки ближе к шапке */

.hero-content h1 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.hero-gallery {
    margin-top: 0 !important;
}


/* ===== Услуги ближе к первому экрану ===== */

.section--services {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
}


.section__header {
    margin-bottom: 30px !important;
}


.section__title {
    margin-bottom: 10px !important;
}


.section__desc {
    margin-bottom: 25px !important;
}


/* Карточки ближе к названию */

.services-grid {
    margin-top: 20px !important;
}
/* Исправление выпадающего меню оборудования */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* скрываем подменю */
.nav-dropdown .dropdown-menu,
.nav-dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 15px 0;
    margin-top: 10px;

    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .25s ease;
    z-index: 9999;
}


/* показываем только при наведении */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:hover ul {
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


/* пункты меню */
.nav-dropdown ul li {
    list-style:none;
}

.nav-dropdown ul li a {
    display:block;
    padding:10px 20px;
    color:#031A38;
    font-size:14px;
    white-space:nowrap;
}


.nav-dropdown ul li a:hover {
    background:#f1f5f9;
    color:#0066FF;
}


/* исправление шапки */
.site-header__inner {
    display:flex;
    align-items:center;
    height:92px;
}


.site-header__nav {
    display:flex;
    align-items:center;
    gap:28px;
    margin-left:30px;
}


.site-header__right {
    margin-left:auto;
}

/* ==========================================================
   Исправление карточек услуг ТК "Холод"
   3 карточки в ряд, нормальный размер
========================================================== */

.section--services .services-grid,
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
    gap: 32px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section--services .service-card,
.service-card {
    width: 100% !important;
    min-height: 430px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(15,23,42,.08) !important;
}

.section--services .service-card__media,
.service-card__media {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
}

.section--services .service-card__image,
.service-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.section--services .service-card__body,
.service-card__body {
    padding: 24px !important;
}

.section--services .service-card h3,
.service-card h3 {
    font-size: 21px !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
}

.section--services .service-card p,
.service-card p {
    font-size: 15px !important;
    line-height: 1.55 !important;
}

@media (max-width: 900px) {
    .section--services .services-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .section--services .services-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Исправление размера подвала */
.site-footer {
    padding: 55px 0 25px;
}

.site-footer__about {
    max-width:260px;
}

.site-footer__heading {
    margin-bottom:14px;
}

.site-footer__list li + li {
    margin-top:8px;
}

.site-footer__brands {
    padding:20px 0;
}

.site-footer__bottom {
    padding-top:20px;
}


/* ==========================================================
   Мобильная адаптация ТК "Холод"
   Исправление меню, блоков и подвала
========================================================== */

@media (max-width: 768px){

    .container{
        width: calc(100% - 32px);
        padding:0;
    }

    .site-header__inner{
        gap:10px;
        flex-wrap:nowrap;
    }

    .site-header__brand{
        margin-left:0;
        max-width:70%;
    }

    .site-header__logo{
        width:55px;
        height:42px;
    }

    .site-header__name{
        font-size:20px;
    }

    .site-header__tagline{
        font-size:10px;
    }

    .site-header__nav,
    .site-header__right{
        display:none;
    }

    .site-header__mobile-bar{
        display:flex;
        margin-left:auto;
    }


    /* Все сетки карточек */
    .advantages-grid,
    .partners-grid,
    .projects-grid,
    .timeline{
        grid-template-columns:1fr !important;
    }


    /* Карточки автоматизации */
    .service-card,
    .advantage-card{
        width:100%;
        min-height:auto;
    }


    /* Hero */
    .hero-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .hero-content h1{
        margin-top:40px;
        font-size:32px;
    }

    .hero-image{
        width:100%;
        margin:auto;
    }


    /* Подвал */
    .site-footer{
        margin-top:40px;
        padding:40px 0 20px;
    }

    .site-footer__grid{
        grid-template-columns:1fr !important;
        gap:30px;
    }

    .site-footer__about{
        max-width:100%;
    }

    .site-footer__brands{
        flex-direction:column;
    }

    .site-footer__bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}


@media (min-width:769px){

    /* карточки в одну линию на ПК */
    .automation-cards,
    .services-grid,
    .advantages-grid{
        grid-template-columns:repeat(4,1fr) !important;
    }

}
/* Мобильная версия */
@media (max-width: 768px) {

    .cards,
    .services-grid,
    .equipment-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0 16px;
    }

    .card,
    .service-card,
    .equipment-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        box-sizing: border-box;
    }

    .card h3,
    .service-card h3,
    .equipment-card h3 {
        font-size: 26px;
        line-height: 1.2;
        word-break: normal;
    }

    .card p,
    .service-card p,
    .equipment-card p {
        font-size: 18px;
        line-height: 1.5;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    body {
        overflow-x: hidden;
    }
}
/* Исправление картинок карточек оборудования */

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__media {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    min-height: 52px;
}

.service-card__text {
    flex-grow: 1;
}
/* Исправление мобильной версии карточек оборудования */
@media (max-width: 768px) {

    .services-grid,
    .equipment-grid,
    .compressor-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .equipment-card,
    .gallery-item {
        width: 100%;
        min-width: 0;
    }

    .service-card__media {
        height: 220px;
    }

    .service-card__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .service-card__title {
        font-size: 22px;
        min-height: auto;
    }

    .service-card__text {
        font-size: 16px;
    }
}


/* ==========================================================
   Дополнительное исправление ТК "Холод"
   Карточки оборудования + мобильная версия
========================================================== */

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    overflow: hidden;
    background: #fff;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__text {
    flex-grow: 1;
}


/* Исправление мобильной версии */
@media (max-width: 768px) {

    .container {
        width: calc(100% - 32px);
    }

    .services-grid,
    .service-grid,
    .compressor-gallery,
    .equipment-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        min-width: 0;
    }

    .service-card__media {
        height: 200px;
    }

    .service-card__image {
        object-fit: contain;
    }

    .site-header__name {
        font-size: 24px;
    }

    .site-header__tagline {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    .service-card__media {
        height: 170px;
    }

    .service-card__title {
        font-size: 20px;
    }
}
/* Исправление карточек оборудования */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__media {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Мобильная версия */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .service-card__media {
        height: 220px;
    }

    .service-card__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
/* Финальная настройка карточек оборудования */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.service-card__media {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__text {
    flex-grow: 1;
}


/* Телефон */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .service-card__media {
        height: 220px;
    }
}
/* ===== FINAL FIX compressor cards ===== */

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
}

.services-grid .service-card {
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
}

.services-grid .service-card__media {
    height: 250px !important;
    min-height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.services-grid .service-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}


/* Мобильная версия */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .services-grid .service-card__media {
        height: 220px !important;
    }
}
/* ==========================================================
   Header — ТК «Холод» Premium
========================================================== */

:root {
    --color-primary: #0066FF;
    --color-text: #031A38;
    --color-muted: #64748B;
    --color-white: #FFFFFF;
    --color-accent: #2563EB;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(100% - 48px, 1280px);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
}

.skip-link:focus,
.skip-link:focus-visible {
    top: 16px;
}

.site-header__btn:focus-visible,
.site-header__burger:focus-visible,
.site-header__nav-link:focus-visible,
.site-header__mobile-link:focus-visible,
.hero-buttons a:focus-visible,
.btn:focus-visible,
.cta-contact-form__btn:focus-visible,
.service-card__link:focus-visible,
.project-card__link:focus-visible,
.site-footer__list a:focus-visible,
.site-footer__legal a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* --- Header --- */

.site-header {
    --header-current-height: var(--header-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
    transition: box-shadow var(--transition-header);
}

.site-header.site-header--scrolled {
    --header-current-height: var(--header-height-scrolled);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
}
.site-header__brand {
    margin-left: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.site-header__brand {
    margin-left: -15px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-header__logo {
    display: block;
    width: 95px;
    height: 52px;
    object-fit: contain;
}

.site-header--scrolled .site-header__logo {
    height: 42px;
}

.site-header__brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.site-header__name {
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -.02em;
    line-height: 1.1;
    white-space: nowrap;
    transition: font-size var(--transition-header);
}

.site-header--scrolled .site-header__name {
    font-size: 24px;
}

.site-header__tagline {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
    letter-spacing: .01em;
    white-space: nowrap;
}

/* Navigation */

.site-header__nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-left: 20px;
    white-space: nowrap;
}

.site-header__nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 2px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--color-text);
    white-space: nowrap;
    transition: color var(--transition-header);
}

.site-header__nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition-header);
}

.site-header__nav-link:hover,
.site-header__nav-link--active {
    color: var(--color-primary);
}

.site-header__nav-link:hover::after,
.site-header__nav-link--active::after {
    transform: scaleX(1);
}

/* Right block */

.site-header__right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    flex-shrink: 0;
}

.site-header__phone {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
    transition: color var(--transition-header);
}

.site-header__phone:hover {
    color: var(--color-primary);
}

.site-header__callback {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    text-decoration: none;
    transition: color var(--transition-header);
}

.site-header__callback:hover {
    text-decoration: underline;
}

.site-header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: transform var(--transition-header), box-shadow var(--transition-header);
}

.site-header__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(10, 91, 216, .32);
    color: #fff;
}

.site-header__btn--block {
    width: calc(100% - 48px);
    margin: 16px 24px 24px;
}

.site-header__btn--mobile {
    display: none;
}

/* Mobile bar (burger + CTA) */

.site-header__mobile-bar {
    display: none;
    grid-column: 3;
    justify-self: end;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.site-header__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
}

.site-header__burger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: transform var(--transition-header), opacity var(--transition-header);
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(2) {
    opacity: 0;
}

.site-header__burger[aria-expanded="true"] .site-header__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */

.site-header__mobile {
    display: none;
    position: fixed;
    top: var(--header-current-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, .35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-header), visibility var(--transition-header);
    z-index: 999;
}

.site-header__mobile.is-open {
    opacity: 1;
    visibility: visible;
}

.site-header__mobile-nav {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(18px);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 8px 32px rgba(15, 23, 42, .08);
}

.site-header__mobile-link {
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .2px;
    color: var(--color-text);
    border-radius: 10px;
    transition: background var(--transition-header), color var(--transition-header);
}

.site-header__mobile-link:hover {
    background: rgba(10, 91, 216, .08);
    color: var(--color-primary);
}

.site-header__mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 24px;
    background: #F8FAFC;
}

.site-header__mobile-contact a:first-child {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.site-header__mobile-contact a:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.site-header__mobile-contact a:last-child:hover {
    text-decoration: underline;
}

body.header-menu-open {
    overflow: hidden;
}

/* ==========================================================
   Hero
========================================================== */

.hero {
    position: relative;
    padding: 0px 0 0px;
    background:
        linear-gradient(...);
    color: var(--color-white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 92% 8%, rgba(56, 189, 248, .22) 0%, transparent 52%),
        radial-gradient(ellipse 55% 50% at 8% 92%, rgba(10, 91, 216, .18) 0%, transparent 48%),
        radial-gradient(circle 40% at 50% 50%, rgba(37, 99, 235, .08) 0%, transparent 60%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .85;
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    margin-bottom: clamp(40px, 6vw, 56px);
}

.hero-content {
    max-width: 560px;
}

.hero-content > p:first-of-type {
    display: inline-block;
    margin: 0 0 24px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    margin: 150px 0 20px;
    font-size: clamp(32px, 4.5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.02em;
}

.hero-content h1 span {
    color: var(--color-accent);
}

.hero-content > p:last-of-type {
    margin: 0 0 32px;
    font-size: clamp(15px, 1.8vw, 18px);
    line-height: 1.75;
    opacity: .9;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius);
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.hero-buttons a:first-child {
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    color: var(--color-white);
    box-shadow: 0 10px 32px rgba(10, 91, 216, .38);
}

.hero-buttons a:first-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(10, 91, 216, .48);
}

.hero-buttons a:last-child {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .28);
    color: var(--color-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-buttons a:last-child:hover {
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .4);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
}

.hero-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.hero-image {
    display: block;
    width: 90%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    object-position: center;
    margin-left: auto;
    border-radius: 28px;
}

.hero-image-wrap:hover .hero-image {
    transform: scale(1.02);
    box-shadow:
        0 40px 96px rgba(2, 20, 40, .6),
        0 16px 40px rgba(10, 91, 216, .28),
        inset 0 1px 0 rgba(255, 255, 255, .2);
}

.hero-image-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 22px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
}

.hero-image-card strong {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-white);
}

.hero-image-card span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .78);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2.5vw, 24px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-stats li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: clamp(20px, 3vw, 28px);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: background .35s ease, border-color .35s ease, transform .35s ease, box-shadow .35s ease;
}

.hero-stats li:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .18);
}

.hero-stats-icon {
    flex-shrink: 0;
    color: var(--color-accent);
    opacity: .95;
}

.hero-stats strong {
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1;
    color: var(--color-accent);
}

.hero-stats span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    opacity: .82;
}

/* ==========================================================
   Преимущества
========================================================== */

.section--advantages {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--advantages .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--advantages .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--advantages .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--advantages .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.advantage-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 32px;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .05);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.advantage-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .14);
    box-shadow: 0 24px 56px rgba(15, 23, 42, .12);
}

.advantage-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(10, 91, 216, .1) 0%, rgba(37, 99, 235, .06) 100%);
    border-radius: 16px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.advantage-card__icon svg {
    display: block;
}

.advantage-card__title {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.advantage-card__text {
    margin: 0;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-muted);
}

/* ==========================================================
   Услуги
========================================================== */

.section--services {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--services .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--services .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--services .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--services .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}






.section--services .service-card.stagger-5 {
    transition-delay: .5s;
}

.section--services .service-card.stagger-6 {
    transition-delay: .6s;
}

/* ==========================================================
   Проекты
========================================================== */

.section--projects {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--projects .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--projects .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--projects .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--projects .section__desc {
    max-width: 1100px !important;
    width: 100%;
    margin: 25px auto;
    text-align: left;
    font-size: 18px;
    line-height: 1.8;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.project-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(3, 26, 56, .06);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .12);
    box-shadow: 0 28px 64px rgba(3, 26, 56, .14);
}

.project-card__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    aspect-ratio: 16 / 11;
    background:
        linear-gradient(145deg, #031a38 0%, #052e5c 30%, #0a5bd8 65%, #38BDF8 100%);
}

.project-card__media::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(56, 189, 248, .25) 0%, transparent 55%),
        radial-gradient(ellipse 50% 50% at 15% 85%, rgba(10, 91, 216, .2) 0%, transparent 50%);
    pointer-events: none;
}

.project-card__placeholder {
    position: relative;
    z-index: 1;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.project-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 28px 28px 32px;
}

.project-card__title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.project-card__city {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.project-card__text {
    margin: 0;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-muted);
}

.project-card__meta {
    display: grid;
    gap: 10px;
    margin: 20px 0 0;
    padding: 16px 0 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.project-card__meta-item {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
}

.project-card__meta dt {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.project-card__meta dd {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
}

.project-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-primary);
    transition: gap .25s ease, color .25s ease;
}

.project-card__link::after {
    content: '→';
    transition: transform .25s ease;
}

.project-card__link:hover {
    color: #2563EB;
    gap: 10px;
}

.project-card__link:hover::after {
    transform: translateX(2px);
}

.section--projects .project-card.stagger-5 {
    transition-delay: .5s;
}

.section--projects .project-card.stagger-6 {
    transition-delay: .6s;
}

/* ==========================================================
   Производители и партнёры
========================================================== */

.section--partners {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--partners .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--partners .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--partners .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--partners .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 28px 24px;
    text-align: center;
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, .04);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .12);
    box-shadow: 0 20px 48px rgba(15, 23, 42, .1);
}

.partner-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 72px;
    margin-bottom: 20px;
    background: #FFFFFF;
    border: 1px dashed rgba(10, 91, 216, .2);
    border-radius: 16px;
}

.partner-card__logo-text {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--color-primary);
    opacity: .85;
}

.partner-card__name {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.partner-card__desc {
    margin: 0;
    flex-grow: 1;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
}

.partners-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(16px, 3vw, 40px);
    margin: clamp(48px, 6vw, 64px) 0 0;
    padding: clamp(28px, 4vw, 36px);
    list-style: none;
    background: linear-gradient(135deg, rgba(10, 91, 216, .06) 0%, rgba(56, 189, 248, .06) 100%);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
}

.partners-benefits__item {
    position: relative;
    padding-left: 28px;
    font-size: clamp(15px, 1.6vw, 17px);
    font-weight: 600;
    color: var(--color-text);
}

.partners-benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .12);
    border-radius: 50%;
}

.section--partners .partner-card.stagger-5 {
    transition-delay: .5s;
}

.section--partners .partner-card.stagger-6 {
    transition-delay: .6s;
}

.section--partners .partner-card.stagger-7 {
    transition-delay: .7s;
}

.section--partners .partner-card.stagger-8 {
    transition-delay: .8s;
}

/* ==========================================================
   CTA + Контакты
========================================================== */

.section--cta-contact {
    position: relative;
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
    overflow: hidden;
}

.section--cta-contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 0% 20%, rgba(10, 91, 216, .07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 45% at 100% 80%, rgba(56, 189, 248, .08) 0%, transparent 50%);
    pointer-events: none;
}

.section--cta-contact > .container {
    position: relative;
    z-index: 1;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 5vw, 56px);
    align-items: start;
    margin-bottom: clamp(40px, 5vw, 56px);
}

.cta-contact__title {
    margin: 0 0 20px;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.cta-contact__desc {
    margin: 0 0 32px;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.cta-contact-benefits {
    margin: 0;
    padding: clamp(24px, 3vw, 32px);
    list-style: none;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.cta-contact-benefits__item {
    position: relative;
    padding-left: 32px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
}

.cta-contact-benefits__item + .cta-contact-benefits__item {
    margin-top: 16px;
}

.cta-contact-benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 50%;
}

.cta-contact-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cta-contact-form {
    padding: clamp(28px, 4vw, 36px);
    background: rgba(255, 255, 255, .85);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(3, 26, 56, .08);
}

.cta-contact-form .form-field {
    margin-bottom: 20px;
}

.cta-contact-form .form-field__label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.cta-contact-form .form-field__input {
    width: 100%;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-text);
    background: rgba(248, 250, 252, .9);
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 12px;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.cta-contact-form .form-field__input:focus,
.cta-contact-form .form-field__input:focus-visible {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(10, 91, 216, .12);
}

.cta-contact-form .form-field__input--area {
    min-height: 112px;
    resize: vertical;
}

.cta-contact-form__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 0 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    box-shadow: 0 10px 32px rgba(10, 91, 216, .32);
    transition: transform .3s ease, box-shadow .3s ease;
}

.cta-contact-form__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(10, 91, 216, .42);
}

.cta-contact-form__privacy {
    margin: 16px 0 0;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-muted);
    text-align: center;
}

.cta-contact-form__privacy a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cta-contact-form__privacy a:hover {
    color: #2563EB;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.form-message {
    margin-top: 16px;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.form-message--success {
    color: #065F46;
    background: rgba(16, 185, 129, .12);
    border: 1px solid rgba(16, 185, 129, .24);
}

.form-message--error {
    color: #991B1B;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .22);
}

.cta-contact-form__btn:disabled {
    opacity: .72;
    cursor: not-allowed;
    transform: none;
}

.cta-contact-info {
    padding: clamp(24px, 3vw, 28px);
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(10, 91, 216, .1);
    border-radius: 24px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.cta-contact-info__title {
    margin: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
}

.cta-contact-info__list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.cta-contact-info__item dt {
    margin-bottom: 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cta-contact-info__item dd {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
}

.cta-contact-info__item dd a {
    color: var(--color-primary);
    transition: color .25s ease;
}

.cta-contact-info__item dd a:hover {
    color: #2563EB;
}

.cta-contact-map {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
    background:
        linear-gradient(145deg, rgba(3, 26, 56, .04) 0%, rgba(10, 91, 216, .08) 50%, rgba(56, 189, 248, .06) 100%);
    border: 1px solid rgba(10, 91, 216, .12);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.cta-contact-map__placeholder {
    margin: 0;
    padding: 20px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-muted);
    background: rgba(255, 255, 255, .75);
    border: 1px dashed rgba(10, 91, 216, .25);
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

/* Кнопки (общие секции сайта) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background: #0a54c4;
    transform: translateY(-2px);
}

/* ==========================================================
   Footer
========================================================== */

.site-footer {
    width:100%;
    background:#031A38;
    margin-top:80px;
}

.site-footer .container{
    width:100%;
    max-width:1280px;
    margin:0 auto;
    padding-left:24px;
    padding-right:24px;
}

.site-footer__grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr 1fr;
    gap:28px;
    align-items:start;
}

.site-footer__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    transition: opacity .28s ease;
}

.site-footer__brand-link:hover {
    opacity: .88;
}

.site-footer__logo {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}

.site-footer__name {
    font-size: 22px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.site-footer__about {
    margin: 0;
    max-width: 320px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .68);
}

.site-footer__heading {
    margin: 0 0 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #FFFFFF;
}

.site-footer__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__list li + li {
    margin-top: 12px;
}

.site-footer__list a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .72);
    transition: color .28s ease;
}

.site-footer__list a:hover {
    color: var(--color-accent);
}

.site-footer__contacts {
    font-style: normal;
}

.site-footer__list--contacts li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-footer__list--contacts li + li {
    margin-top: 16px;
}

.site-footer__contact-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .48);
}

.site-footer__list--contacts a,
.site-footer__contact-value {
    font-size: 15px;
    font-weight: 600;
    color: #FFFFFF;
}

.site-footer__list--contacts a {
    transition: color .28s ease;
}

.site-footer__list--contacts a:hover {
    color: var(--color-accent);
}

.site-footer__brands {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
    padding: clamp(24px, 3vw, 32px) 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__brands-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}

.site-footer__brands-list {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
}

.site-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 24px;
    padding-top: clamp(24px, 3vw, 32px);
}

.site-footer__copy {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, .52);
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.site-footer__legal a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, .62);
    transition: color .28s ease;
}

.site-footer__legal a:hover {
    color: var(--color-accent);
}

/* ==========================================================
   Timeline — этапы работы
========================================================== */

.section--timeline {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--timeline .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--timeline .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--timeline .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--timeline .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, rgba(10, 91, 216, .25) 0%, var(--color-primary) 50%, rgba(56, 189, 248, .5) 100%);
    border-radius: 3px;
    z-index: 0;
}

.timeline__item {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}

.timeline__marker {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    font-size: 18px;
    font-weight: 800;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border: 4px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 8px 28px rgba(10, 91, 216, .28);
}

.timeline__title {
    margin: 0 0 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text);
}

.timeline__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
}

.partner-card__logo img {
    max-width: 80%;
    max-height: 48px;
    object-fit: contain;
}

.section--partners .partner-card__logo--brand img {
    filter: grayscale(20%);
    opacity: .92;
    transition: filter .3s ease, opacity .3s ease;
}

.section--partners .partner-card:hover .partner-card__logo--brand img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ==========================================================
   Хлебные крошки
========================================================== */

.breadcrumbs {
    margin: 0 0 24px;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .72);
}

.breadcrumbs li + li::before {
    content: '/';
    color: rgba(255, 255, 255, .45);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, .88);
    transition: color .25s ease;
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs [aria-current="page"] {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==========================================================
   Каталог оборудования — сетка 4 колонки
========================================================== */

.services-grid--catalog {
    grid-template-columns: repeat(4, 1fr);
}

/* ==========================================================
   Области применения
========================================================== */

.section--applications {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--applications .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--applications .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--applications .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--applications .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

/* ==========================================================
   Почему именно это оборудование
========================================================== */

.section--equipment-benefits {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.equipment-benefits {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: center;
}

.equipment-benefits__media {
    position: relative;
    height: 260px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-benefits__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.equipment-benefits__content .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.equipment-benefits__title {
    margin: 0 0 20px;
    font-size: clamp(30px, 3.8vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.equipment-benefits__desc {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.45;
}

.equipment-benefits__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.equipment-benefits__item {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-text);
}

.equipment-benefits__item + .equipment-benefits__item {
    margin-top: 16px;
}

.equipment-benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 50%;
}

/* ==========================================================
   FAQ — accordion
========================================================== */

.section--faq {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--faq .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--faq .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--faq .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.section--faq .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: var(--color-muted);
}

.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(3, 26, 56, .04);
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.faq-item[open] {
    border-color: rgba(10, 91, 216, .15);
    box-shadow: 0 8px 32px rgba(3, 26, 56, .08);
}

.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    transition: color .25s ease;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .08);
    border-radius: 8px;
    transition: transform .25s ease, background .25s ease;
}

.faq-item[open] .faq-item__question::after {
    content: '−';
    transform: rotate(180deg);
    background: rgba(10, 91, 216, .14);
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item__answer {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
}

.faq-item__answer p {
    margin: 0;
}

/* ==========================================================
   Projects page — фильтр, изображения, featured, stats, отзывы
========================================================== */

.project-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 0 clamp(40px, 5vw, 56px);
}

.project-filter__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .1);
    border-radius: 50px;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.project-filter__btn:hover,
.project-filter__btn:focus-visible {
    border-color: rgba(10, 91, 216, .25);
    color: var(--color-primary);
}

.project-filter__btn--active {
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(10, 91, 216, .28);
}

.project-card__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .45s ease;
}

.project-card:hover .project-card__image {
    transform: scale(1.05);
}

.project-card__type {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #FFFFFF;
    background: rgba(3, 26, 56, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.featured-project {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
    padding: clamp(32px, 4vw, 48px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(3, 26, 56, .08);
}

.featured-project__media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(10, 91, 216, .1);
}

.featured-project__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.featured-project__title {
    margin: 0 0 24px;
    font-size: clamp(26px, 3.2vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #0F172A;
}

.featured-project__specs {
    display: grid;
    gap: 14px;
    margin: 0 0 28px;
}

.featured-project__spec {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.featured-project__spec dt {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.featured-project__spec dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.featured-project__works-title {
    margin: 0 0 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
}

.featured-project__works {
    margin: 0 0 28px;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
}

.featured-project__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 32px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border-radius: 14px;
    box-shadow: 0 10px 32px rgba(10, 91, 216, .32);
    transition: transform .3s ease, box-shadow .3s ease;
}

.featured-project__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 14px 36px rgba(10, 91, 216, .42);
    color: #FFFFFF;
}

.section--stats {
    padding: clamp(64px, 8vw, 96px) 0;
    background:
        linear-gradient(145deg, #021428 0%, #031a38 28%, #052e5c 55%, #0a5bd8 100%);
    color: var(--color-white);
}

.section--stats .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(48px, 6vw, 64px);
}

.section--stats .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-accent);
}

.section--stats .section__title {
    margin: 0 0 16px;
    font-size: clamp(30px, 3.8vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
}

.section--stats .section__desc {
    margin: 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, .78);
}

.section--trust {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #FFFFFF;
}

.section--trust .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--trust .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--trust .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.section--testimonials {
    padding: clamp(80px, 10vw, 120px) 0 clamp(72px, 9vw, 104px);
    background: #F8FAFC;
}

.section--testimonials .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--testimonials .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--testimonials .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(28px, 4vw, 36px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(3, 26, 56, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(3, 26, 56, .12);
}

.testimonial-card__company {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-card__text {
    margin: 0;
    flex-grow: 1;
    font-size: 15px;
    line-height: 1.75;
    color: var(--color-muted);
    font-style: italic;
}

.testimonial-card__author {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, .08);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.section--featured {
    padding: 0 0 clamp(80px, 10vw, 120px);
    background: #F8FAFC;
}

.section--featured .container {
    margin-top: clamp(-40px, -4vw, -24px);
}

/* ==========================================================
   Contacts page
========================================================== */

.section--contact-info {
    padding: clamp(80px, 10vw, 120px) 0 clamp(48px, 6vw, 72px);
    background: #FFFFFF;
}

.section--contact-info .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--contact-info .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--contact-info .section__title {
    margin: 0 0 20px;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: stretch;
}

.contact-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(24px, 3vw, 32px);
    background: #F8FAFC;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(3, 26, 56, .04);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(10, 91, 216, .12);
    box-shadow: 0 20px 48px rgba(3, 26, 56, .1);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 14px;
}

.contact-card__title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.contact-card__value {
    margin: 0;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text);
}

.contact-card__value a {
    color: var(--color-primary);
    transition: color .25s ease;
}

.contact-card__value a:hover {
    color: #2563EB;
}

.contact-card__note {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
}

.section--departments {
    padding: clamp(48px, 6vw, 72px) 0;
    background: #F8FAFC;
}

.section--departments .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(52px, 6vw, 72px);
}

.section--departments .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--departments .section__title {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #0F172A;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.department-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: clamp(24px, 3vw, 28px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(3, 26, 56, .06);
    transition: transform .35s ease, box-shadow .35s ease;
}

.department-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(3, 26, 56, .1);
}

.department-card__title {
    margin: 0 0 16px;
    padding-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.department-card__badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(10, 91, 216, .1);
    border-radius: 50px;
}

.department-card__list {
    display: grid;
    gap: 12px;
    margin: 0;
}

.department-card__item dt {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.department-card__item dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.department-card__item dd a {
    color: var(--color-primary);
}

.department-card__item dd a:hover {
    color: #2563EB;
}

.section--map {
    padding: clamp(48px, 6vw, 72px) 0;
    background: #FFFFFF;
}

.section--map .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.section--map .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--map .section__title {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
}

.contact-map {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(10, 91, 216, .12);
    box-shadow: 0 12px 48px rgba(3, 26, 56, .08);
    background: #F8FAFC;
}

.contact-map__frame {
    display: block;
    width: 100%;
    height: 420px;
    border: 0;
}

.contact-map__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .95);
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.contact-map__address {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.contact-map__route {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #0A5BD8 0%, #2563EB 100%);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(10, 91, 216, .28);
    transition: transform .3s ease, box-shadow .3s ease;
}

.contact-map__route:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 28px rgba(10, 91, 216, .38);
    color: #FFFFFF;
}

.section--requisites {
    padding: clamp(48px, 6vw, 72px) 0 clamp(80px, 10vw, 120px);
    background: #F8FAFC;
}

.section--requisites .section__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(40px, 5vw, 56px);
}

.section--requisites .section__label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section--requisites .section__title {
    margin: 0;
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    color: #0F172A;
}

.requisites-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(28px, 4vw, 40px);
    background: #FFFFFF;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(3, 26, 56, .06);
}

.requisites-card__list {
    display: grid;
    gap: 16px;
    margin: 0;
}

.requisites-card__row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.requisites-card__row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.requisites-card__row dt {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-muted);
}

.requisites-card__row dd {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-text);
}

.requisites-card__placeholder {
    color: var(--color-muted);
    font-weight: 500;
    font-style: italic;
}
/* Преимущества компрессорных агрегатов */

.advantages {
    padding: 90px 0;
    background: #f7faff;
}


.advantages .section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}


.advantages h2 {
    font-size: clamp(32px, 4vw, 46px);
    color: #101828;
    margin: 15px 0;
}


.section-label {
    color: #1468ff;
    font-weight: 700;
    letter-spacing: .08em;
    font-size: 13px;
}


.section-desc {
    color: #667085;
    font-size: 18px;
}



.advantages-grid {

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;

}



.advantage-card {

background:#fff;
padding:32px;
border-radius:24px;
box-shadow:0 10px 30px rgba(0,0,0,.06);

}



.advantage-icon {

font-size:32px;
margin-bottom:20px;

}



.advantage-card h3 {

font-size:22px;
margin-bottom:15px;
color:#101828;

}


.advantage-card p {

color:#667085;
line-height:1.6;

}



@media(max-width:900px){

.advantages-grid{
    grid-template-columns: repeat(2,1fr);
}

}


@media(max-width:600px){

.advantages-grid{
    grid-template-columns:1fr;
}

}
/* Преимущества */

.advantages{
padding:90px 0;
background:#f7faff;
}


.advantages-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;

}


.advantage-card{

background:#ffffff;
padding:32px;
border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

transition:.3s;

}


.advantage-card:hover{

transform:translateY(-8px);

}



.advantage-icon{

width:55px;
height:55px;

display:flex;
align-items:center;
justify-content:center;

border-radius:14px;

background:#e8f4ff;

font-size:28px;

margin-bottom:22px;

}



.advantage-card h3{

font-size:22px;
color:#101828;

margin-bottom:15px;

}



.advantage-card p{

font-size:16px;
line-height:1.6;
color:#667085;

}



@media(max-width:1000px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.advantages-grid{

grid-template-columns:1fr;

}

}
/* Преимущества */

.advantages{
padding:90px 0;
background:#f7faff;
}


.advantages-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;

}


.advantage-card{

background:#ffffff;
padding:32px;
border-radius:20px;

box-shadow:
0 15px 40px rgba(0,0,0,.06);

transition:.3s;

}


.advantage-card:hover{

transform:translateY(-8px);

}



.advantage-icon{

width:55px;
height:55px;

display:flex;
align-items:center;
justify-content:center;

border-radius:14px;

background:#e8f4ff;

font-size:28px;

margin-bottom:22px;

}



.advantage-card h3{

font-size:22px;
color:#101828;

margin-bottom:15px;

}



.advantage-card p{

font-size:16px;
line-height:1.6;
color:#667085;

}



@media(max-width:1000px){

.advantages-grid{

grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:600px){

.advantages-grid{

grid-template-columns:1fr;

}

}
/* ===== Выпадающее меню оборудование ===== */

.nav-dropdown {
    position: relative;
    display: inline-block;
}


.nav-dropdown-title {
    cursor: pointer;
}


.nav-dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;

    width: 260px;

    background: #fff;

    padding: 12px 0;

    border-radius: 10px;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: .25s ease;

    z-index: 1000;
}


.nav-dropdown-menu a {

    display: block;

    padding: 12px 20px;

    color: #1b2738;

    text-decoration: none;

    white-space: nowrap;

}


.nav-dropdown-menu a:hover {

    background:#f1f5ff;

    color:#1463e8;

}


.nav-dropdown:hover .nav-dropdown-menu {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}
/* Выпадающее меню оборудования */

.nav-dropdown {
    position: relative;
}


.nav-dropdown-menu {

    position: absolute;

    top: 100%;
    left: 0;

    width: 260px;

    background: #fff;

    border-radius: 10px;

    padding: 10px 0;

    box-shadow: 0 10px 30px rgba(0,0,0,.15);

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    transition: .25s ease;

    z-index: 9999;
}


.nav-dropdown-menu a {

    display: block;

    padding: 12px 20px;

    color: #1b2738;

    text-decoration: none;

    white-space: nowrap;

}


.nav-dropdown-menu a:hover {

    background:#f1f5ff;

}


.nav-dropdown:hover .nav-dropdown-menu {

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}
.content-text {
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
}
#types .section__header {
    margin-bottom: 10px;
}

#types .section__desc {
    margin-top: 10px;
    margin-bottom: 20px;
}
/* уменьшение расстояний на странице компрессора */
#types {
    padding-top: 20px;
    padding-bottom: 20px;
}

#types .section__header {
    margin-bottom: 10px;
}

#types .section__title {
    margin-bottom: 10px;
}

#types .section__desc {
    margin-top: 5px;
    margin-bottom: 15px;
}

.compressor-text {
    margin-top: 10px;
}
/* Уменьшение отступов FAQ */
.section--faq {
    padding: 40px 0;
}

#faq .section__header {
    margin-bottom: 30px;
}
/* уменьшение блока картинки компрессоров */
.hero-image-wrap {
    width: 420px !important;
    height: 320px !important;
    margin: 0 auto;
}

.hero-image-wrap img,
.hero-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}
.service-card__link {
    display: inline-block !important;
    position: relative;
    z-index: 5;
    margin-top: 15px;
    color: #0066ff;
    visibility: visible !important;
    opacity: 1 !important;
}


/* выравнивание карточек компрессоров */

/* Карточки поршневых компрессоров */





@media(max-width:900px){
.compressor-gallery{
grid-template-columns:1fr;
}
}
/* Поршневые компрессоры - исправление */





/* FIX поршневые компрессоры */








@media(max-width:900px){



}
/* ==========================================================
   Виды поршневых компрессоров
========================================================== */
/* Сетка поршневых компрессоров */

.piston-types-grid {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* Карточка */

.piston-types-grid .piston-card {

    width: auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}

.piston-types-grid .piston-card {

    width:100%;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.piston-types-grid .piston-card img {

    width:100%;
    height:250px;
    object-fit:contain;
    display:block;

}


.piston-types-grid .piston-card h3 {

    font-size:22px;
    line-height:1.2;
    margin:20px 0 10px;

}


.piston-types-grid .piston-card p {

    color:#666;
    line-height:1.5;

}


.piston-types-grid .piston-card a {

    color:#1266ff;
    font-weight:600;

}

/* Планшет */

@media (max-width: 900px) {
    .piston-types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Телефон */

@media(max-width:900px){
    .piston-types-grid {
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .piston-types-grid {
        grid-template-columns:1fr;
    }
}
/* Карточки поршневых компрессоров */

.piston-types-grid .gallery-item img {
    width:100% !important;
    height:250px !important;
    object-fit:contain !important;
    display:block;
}


.piston-types-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
    max-width:1100px;
    margin:50px auto;
}


.piston-types-grid .gallery-item {
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}
.piston-types-grid {
    width:100%;
    max-width:1100px;
    margin:50px auto;
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}


.piston-types-grid .gallery-item {
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}


.piston-types-grid img {
    width:100%;
    height:250px;
    object-fit:contain;
    display:block;
}


.piston-types-grid h3 {
    font-size:22px;
}


@media(max-width:900px){

.piston-types-grid {
    grid-template-columns:1fr;
}

}
/* Поршневые компрессоры - 3 карточки */

.piston-types-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    max-width: 1100px;
    margin: 50px auto;
}


.piston-types-grid .gallery-item {
    width: auto !important;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}


.piston-types-grid img {
    width:100%;
    height:250px;
    object-fit:contain;
}


@media(max-width:900px){

.piston-types-grid {
    grid-template-columns:1fr !important;
}

}
/* Карточки поршневых компрессоров */

.piston-types-grid {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.piston-card {
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
}


.piston-card img {
    width:100%;
    height:250px;
    object-fit:contain;
    display:block;
}


.piston-card h3 {
    font-size:22px;
    margin-top:20px;
}


.piston-card p {
    color:#666;
    line-height:1.5;
}


.piston-card a {
    color:#1266ff;
    font-weight:600;
}


@media(max-width:900px){

.piston-types-grid {
    grid-template-columns:1fr;
}

}
/* Сетка типов поршневых компрессоров */

.piston-types-grid {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.piston-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    overflow: hidden;
}


.piston-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    display: block;
}


.piston-card h3 {
    font-size: 22px;
    margin-top: 20px;
}


.piston-card p {
    color: #666;
    line-height: 1.5;
}


.piston-card a {
    color: #1266ff;
    font-weight: 600;
}


@media(max-width:900px){

    .piston-types-grid {
        grid-template-columns: 1fr;
    }

}
/* Карточки поршневых компрессоров */

.piston-types-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    max-width: 1100px;
    margin: 50px auto;
}

.piston-types-grid .piston-card {
    width: auto !important;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    overflow: hidden;
}

.piston-types-grid .piston-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
/* Виды винтовых компрессоров */

.screw-types-grid {
    width:100%;
    max-width:1100px;
    margin:50px auto;

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
}


.screw-types-grid .service-card {

    width:auto !important;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    padding:20px;
}
.screw-types-grid .service-card img {

    width:100%;
    height:250px;
    object-fit:contain;

}
/* =====================================
   Винтовые компрессоры
===================================== */

.screw-types-grid {

    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;

    max-width:1100px;
    margin:50px auto;

}


.screw-card {

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.screw-card__media img {

    width:100%;
    height:250px;
    object-fit:contain;

}


.screw-card__body {

    padding:20px 24px;

}


.screw-card__title {

    font-size:22px;
    margin-bottom:10px;

}


.screw-card__text {

    color:#666;
}


.screw-card__link {

    color:#1266ff;
    font-weight:600;

}
/* =====================================
   EQUIPMENT PAGE
===================================== */

.equipment-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}


.equipment-card {

    background:#fff;
    border-radius:20px;
    overflow:visible;
    height:auto;
    min-height:650px;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.equipment-card__media {

    height:250px;
    display:flex;
    align-items:center;
    justify-content:center;

}


.equipment-card__image {

    width:100%;
    height:250px;
    object-fit:contain;

}


.equipment-card__body {

    padding:20px 24px 35px;
    height:auto;

}


.equipment-card__title {

    margin-bottom:10px;
    font-size:22px;

}


.equipment-card__text {

    color:#666;
    line-height:1.5;

}


.equipment-card__link {

    color:#1266ff;
    font-weight:600;

}


@media(max-width:900px){

.equipment-grid{

    grid-template-columns:1fr;

}

}
/* Детальные изображения винтовых компрессоров */

.screw-detail-image {

    width:100%;
    max-width:700px;
    height:350px;

    object-fit:contain;

    display:block;
    margin:0 auto;

    border-radius:20px;

}
.screw-detail-card {

    max-width:1000px;
    margin:50px auto;
    padding:30px;

    background:#fff;
    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}
.compressor-gallery {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;

    max-width: 1200px;
    margin: 50px auto;

}


.gallery-item {

    background:#fff;
    border-radius:20px;
    padding:20px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}
@media(max-width:900px){

.compressor-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 50px auto;
}

.screw-detail-image {

    height:300px;

}

}
/* Детальная страница винтовых компрессоров */

.screw-details {

    max-width:1200px;
    margin:50px auto;
    padding:0 20px;

}


.screw-detail-card {

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.screw-detail-image {

    width:100%;
    max-width:900px;
    height:500px;

    display:block;
    margin:0 auto;

    object-fit:contain;

}


.screw-detail-content {

    padding:30px;

}


.screw-detail-content h3 {

    font-size:18px;
    margin-bottom:15px;

}


.screw-detail-content p {

    color:#666;
    line-height:1.6;

}
body {
    border-top: 10px solid red !important;
}
.screw-detail-card {
    margin-bottom:40px;
}
/* Винтовые компрессоры - горизонтальная раскладка */

.screw-details {

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;

    max-width: 1400px;
    margin: 50px auto;

}
.screw-detail-card {

    width:100%;
    box-sizing:border-box;

}

.screw-detail-card {

    background:#fff;
    border-radius:20px;
    padding:20px;

    box-shadow:0 8px 30px rgba(0,0,0,.08);

}


.screw-detail-image {

    width:100%;
    height:220px;

    object-fit:contain;

    display:block;

    margin-bottom:20px;

}
.product-card img {
    width: 100%;
    height: 250px;        /* одинаковая высота всех картинок */
    object-fit: contain;  /* сохраняет пропорции оборудования */
    display: block;
}
.equipment-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
.product-card {
    min-height: 480px;
    height: auto;
    display: flex;
    flex-direction: column;
}

.product-card img {
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}
/* Выравнивание изображений компрессоров */
.compressor-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 470px;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.gallery-item h3 {
    margin-top: 20px;
}

.gallery-item p {
    margin-top: 10px;
}
.equipment-card__text {
    color:#444;
    line-height:1.6;
    font-size:16px;
}
.hero-cond{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    padding:70px 0;
}

.hero-cond .content{
    width:45%;
}

.hero-cond .image{
    width:55%;
}

.hero-cond .image img{
    width:100%;
    border-radius:20px;
}
.equipment-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.equipment-card{
    min-height:360px;
    border-radius:18px;
    overflow:hidden;
}

.equipment-card img{
    height:170px;
    width:100%;
    object-fit:cover;
}

.equipment-card h3{
    font-size:18px;
    margin:20px;
}

.equipment-card p{
    font-size:14px;
    line-height:1.5;
    margin:20px;
}
.hero-cond{
    padding-top:100px;
}
.hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero__content {
    width: 45%;
}

.hero__image {
    width: 55%;
    display: flex;
    justify-content: center;
}

.hero__image img {
    width: 850px;
    max-width: none;
    height: 450px;
    object-fit: contain;
}
.hero__inner{
    padding-top:80px;
    padding-bottom:60px;
}
.hero__content h1{
    font-size:48px;
    line-height:1.15;
}

.hero__content h1 span{
    color:#2563eb;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.service-card{
    text-align:center;
    padding:25px 15px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.service-card img{
    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:15px;
}

.service-card h3{
    font-size:18px;
    line-height:1.25;
}

.service-card p{
    font-size:14px;
    color:#64748b;
}
/* Услуги в одну линию */
.services-grid{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
    width:100%;
}

.service-card {
    min-height: 430px;
    width: 100%;
    padding: 25px;
}
/* одинаковая высота карточек */
.service-card__media{
    height:180px;
}

.service-card__image{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-card__body{
    padding:20px;
}


/* адаптация */
@media(max-width:1400px){
    .services-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .services-grid{
        grid-template-columns:1fr;
    }
}
/* Увеличение картинок справа на главной странице */

.hero-grid{
    grid-template-columns:40% 60%;
    gap:40px;
}

.hero-image-wrap{
    width:100%;
}

.hero-gallery{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.hero-gallery img{
    width:100%;
    height:230px;
    object-fit:cover;
    border-radius:20px;
}
/* Футер на всю ширину страницы */

.site-footer {
    width: 100%;
    max-width: none;
    margin: 0;
}

/* внутреннее содержимое по центру */
.site-footer > .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}
/* ===== Уменьшение отступов первого экрана ===== */

.hero {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
}

.hero-grid {
    padding-top: 20px !important;
    gap: 25px !important;
}


/* Заголовок и картинки ближе к шапке */

.hero-content h1 {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

.hero-gallery {
    margin-top: 0 !important;
}


/* ===== Услуги ближе к первому экрану ===== */

.section--services {
    padding-top: 40px !important;
    padding-bottom: 60px !important;
}


.section__header {
    margin-bottom: 30px !important;
}


.section__title {
    margin-bottom: 10px !important;
}


.section__desc {
    margin-bottom: 25px !important;
}


/* Карточки ближе к названию */

.services-grid {
    margin-top: 20px !important;
}
/* Исправление выпадающего меню оборудования */

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* скрываем подменю */
.nav-dropdown .dropdown-menu,
.nav-dropdown ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    padding: 15px 0;
    margin-top: 10px;

    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);

    transition: .25s ease;
    z-index: 9999;
}


/* показываем только при наведении */
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:hover ul {
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}


/* пункты меню */
.nav-dropdown ul li {
    list-style:none;
}

.nav-dropdown ul li a {
    display:block;
    padding:10px 20px;
    color:#031A38;
    font-size:14px;
    white-space:nowrap;
}


.nav-dropdown ul li a:hover {
    background:#f1f5f9;
    color:#0066FF;
}


/* исправление шапки */
.site-header__inner {
    display:flex;
    align-items:center;
    height:92px;
}


.site-header__nav {
    display:flex;
    align-items:center;
    gap:28px;
    margin-left:30px;
}


.site-header__right {
    margin-left:auto;
}

/* ==========================================================
   Исправление карточек услуг ТК "Холод"
   3 карточки в ряд, нормальный размер
========================================================== */

.section--services .services-grid,
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
    gap: 32px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.section--services .service-card,
.service-card {
    width: 100% !important;
    min-height: 430px !important;
    padding: 0 !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(15,23,42,.08) !important;
}

.section--services .service-card__media,
.service-card__media {
    width: 100% !important;
    height: 220px !important;
    overflow: hidden !important;
}

.section--services .service-card__image,
.service-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.section--services .service-card__body,
.service-card__body {
    padding: 24px !important;
}

.section--services .service-card h3,
.service-card h3 {
    font-size: 21px !important;
    line-height: 1.3 !important;
    margin-bottom: 14px !important;
}

.section--services .service-card p,
.service-card p {
    font-size: 15px !important;
    line-height: 1.55 !important;
}

@media (max-width: 900px) {
    .section--services .services-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .section--services .services-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}


/* Исправление размера подвала */
.site-footer {
    padding: 55px 0 25px;
}

.site-footer__about {
    max-width:260px;
}

.site-footer__heading {
    margin-bottom:14px;
}

.site-footer__list li + li {
    margin-top:8px;
}

.site-footer__brands {
    padding:20px 0;
}

.site-footer__bottom {
    padding-top:20px;
}


/* ==========================================================
   Мобильная адаптация ТК "Холод"
   Исправление меню, блоков и подвала
========================================================== */

@media (max-width: 768px){

    .container{
        width: calc(100% - 32px);
        padding:0;
    }

    .site-header__inner{
        gap:10px;
        flex-wrap:nowrap;
    }

    .site-header__brand{
        margin-left:0;
        max-width:70%;
    }

    .site-header__logo{
        width:55px;
        height:42px;
    }

    .site-header__name{
        font-size:20px;
    }

    .site-header__tagline{
        font-size:10px;
    }

    .site-header__nav,
    .site-header__right{
        display:none;
    }

    .site-header__mobile-bar{
        display:flex;
        margin-left:auto;
    }


    /* Все сетки карточек */
    .advantages-grid,
    .partners-grid,
    .projects-grid,
    .timeline{
        grid-template-columns:1fr !important;
    }


    /* Карточки автоматизации */
    .service-card,
    .advantage-card{
        width:100%;
        min-height:auto;
    }


    /* Hero */
    .hero-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .hero-content h1{
        margin-top:40px;
        font-size:32px;
    }

    .hero-image{
        width:100%;
        margin:auto;
    }


    /* Подвал */
    .site-footer{
        margin-top:40px;
        padding:40px 0 20px;
    }

    .site-footer__grid{
        grid-template-columns:1fr !important;
        gap:30px;
    }

    .site-footer__about{
        max-width:100%;
    }

    .site-footer__brands{
        flex-direction:column;
    }

    .site-footer__bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}


@media (min-width:769px){

    /* карточки в одну линию на ПК */
    .automation-cards,
    .services-grid,
    .advantages-grid{
        grid-template-columns:repeat(4,1fr) !important;
    }

}
/* Мобильная версия */
@media (max-width: 768px) {

    .cards,
    .services-grid,
    .equipment-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0 16px;
    }

    .card,
    .service-card,
    .equipment-card {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        height: auto;
        box-sizing: border-box;
    }

    .card h3,
    .service-card h3,
    .equipment-card h3 {
        font-size: 26px;
        line-height: 1.2;
        word-break: normal;
    }

    .card p,
    .service-card p,
    .equipment-card p {
        font-size: 18px;
        line-height: 1.5;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    body {
        overflow-x: hidden;
    }
}
/* Исправление картинок карточек оборудования */

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__media {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__title {
    min-height: 52px;
}

.service-card__text {
    flex-grow: 1;
}
/* Исправление мобильной версии карточек оборудования */
@media (max-width: 768px) {

    .services-grid,
    .equipment-grid,
    .compressor-gallery {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card,
    .equipment-card,
    .gallery-item {
        width: 100%;
        min-width: 0;
    }

    .service-card__media {
        height: 220px;
    }

    .service-card__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .service-card__title {
        font-size: 22px;
        min-height: auto;
    }

    .service-card__text {
        font-size: 16px;
    }
}


/* ==========================================================
   Дополнительное исправление ТК "Холод"
   Карточки оборудования + мобильная версия
========================================================== */

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 240px;
    overflow: hidden;
    background: #fff;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__text {
    flex-grow: 1;
}


/* Исправление мобильной версии */
@media (max-width: 768px) {

    .container {
        width: calc(100% - 32px);
    }

    .services-grid,
    .service-grid,
    .compressor-gallery,
    .equipment-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        min-width: 0;
    }

    .service-card__media {
        height: 200px;
    }

    .service-card__image {
        object-fit: contain;
    }

    .site-header__name {
        font-size: 24px;
    }

    .site-header__tagline {
        font-size: 11px;
    }
}

@media (max-width: 480px) {

    .service-card__media {
        height: 170px;
    }

    .service-card__title {
        font-size: 20px;
    }
}
/* Исправление карточек оборудования */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card__media {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Мобильная версия */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .service-card__media {
        height: 220px;
    }

    .service-card__image {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
/* Финальная настройка карточек оборудования */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.service-card__media {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card__text {
    flex-grow: 1;
}


/* Телефон */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .service-card {
        width: 100%;
    }

    .service-card__media {
        height: 220px;
    }
}
/* ===== FINAL FIX compressor cards ===== */

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 30px !important;
}

.services-grid .service-card {
    width: auto !important;
    max-width: none !important;
    display: flex !important;
    flex-direction: column !important;
}

.services-grid .service-card__media {
    height: 250px !important;
    min-height: 250px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.services-grid .service-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}


/* Мобильная версия */
@media (max-width: 768px) {

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .services-grid .service-card__media {
        height: 220px !important;
    }
}

/* ===== FINAL MOBILE HEADER + OVERFLOW FIX ===== */

html,
body {
    max-width: 100%;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img,
video,
iframe {
    max-width: 100%;
}

@media (max-width: 768px) {
    .site-header {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-header__inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        min-height: 78px;
        padding: 10px 12px !important;
    }

    .site-header__brand {
        display: flex !important;
        align-items: center !important;
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: calc(100% - 58px) !important;
        margin-left: 0 !important;
    }

    .site-header__logo {
        width: 56px !important;
        height: 42px !important;
        flex: 0 0 auto !important;
        object-fit: contain !important;
    }

    .site-header__brand-text {
        display: flex !important;
        flex-direction: column !important;
        min-width: 0 !important;
    }

    .site-header__name {
        display: block !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 22px !important;
        line-height: 1.1 !important;
        letter-spacing: 0 !important;
    }

    .site-header__tagline {
        display: block !important;
        max-width: 100% !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
        letter-spacing: 0 !important;
    }

    .site-header__nav,
    .site-header__right {
        display: none !important;
    }

    .site-header__mobile-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        flex: 0 0 48px !important;
        width: 48px !important;
        margin-left: auto !important;
    }

    .site-header__burger {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 44px !important;
        height: 44px !important;
        padding: 10px !important;
        background: #fff !important;
        border: 1px solid rgba(15, 23, 42, .16) !important;
        border-radius: 12px !important;
    }

    .site-header__burger-line {
        width: 100% !important;
        min-height: 2px !important;
        background: #0F172A !important;
    }

    .site-header__mobile {
        display: block !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    .site-header__mobile-nav,
    .site-header__mobile-contact {
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container,
    .hero,
    .hero-grid,
    .hero__inner,
    .hero-cond,
    .services-grid,
    .service-grid,
    .compressor-gallery,
    .screw-details,
    .equipment-grid,
    .piston-types-grid,
    .screw-types-grid {
        max-width: 100% !important;
    }

    .hero-grid,
    .hero__inner,
    .hero-cond {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .hero-content,
    .hero__content,
    .hero__image,
    .hero-cond .content,
    .hero-cond .image {
        width: 100% !important;
        max-width: 100% !important;
    }

    .services-grid,
    .service-grid,
    .compressor-gallery,
    .screw-details,
    .equipment-grid,
    .piston-types-grid,
    .screw-types-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

@media (max-width: 420px) {
    .site-header__inner {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .site-header__logo {
        width: 46px !important;
        height: 36px !important;
    }

    .site-header__brand {
        max-width: calc(100% - 54px) !important;
    }

    .site-header__name {
        font-size: 20px !important;
    }

    .site-header__tagline {
        font-size: 10px !important;
    }
}


/* ===== FINAL MOBILE SAFETY OVERRIDE v4 ===== */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; max-width: 100% !important; }
  .site-header__inner { display:flex !important; align-items:center !important; flex-wrap:nowrap !important; min-width:0 !important; width:100% !important; }
  .site-header__brand { min-width:0 !important; flex:1 1 auto !important; margin-left:0 !important; }
  .site-header__nav, .site-header__right { display:none !important; }
  .site-header__mobile-bar { display:flex !important; align-items:center !important; flex:0 0 auto !important; margin-left:auto !important; gap:8px !important; white-space:nowrap !important; }
  .site-header__mobile-phone { display:inline-flex !important; white-space:nowrap !important; max-width:112px !important; min-width:0 !important; }
  .site-header__burger { display:flex !important; flex:0 0 44px !important; }
  .services-grid, .equipment-grid, .cards, .advantages-grid, .projects-grid, .applications-grid, .compressor-gallery, .piston-types-grid, .screw-types-grid { display:grid !important; grid-template-columns:1fr !important; min-width:0 !important; max-width:100% !important; }
  .service-card, .equipment-card, .card, .project-card { min-width:0 !important; max-width:100% !important; width:100% !important; }
}


/* ==========================================================
   TK "Холод" — MOBILE HEADER FINAL v10
   Applied inside the primary style.css; no separate mobile CSS.
========================================================== */

@media (max-width: 768px) {
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  .site-header,
  .site-header__inner {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
  }

  .site-header__inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 82px !important;
    min-height: 82px !important;
    padding: 8px 10px !important;
    margin: 0 !important;
    gap: 6px !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
  }

  .site-header__brand {
    display: flex !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: calc(100% - 152px) !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  .site-header__logo {
    flex: 0 0 48px !important;
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 40px !important;
    object-fit: contain !important;
  }

  .site-header__brand-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    overflow: hidden !important;
    margin-left: 6px !important;
  }

  .site-header__name {
    display: block !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    font-size: 20px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .site-header__tagline {
    display: block !important;
    margin: 2px 0 0 !important;
    width: 100% !important;
    min-width: 0 !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  .site-header__nav,
  .site-header__right {
    display: none !important;
  }

  /* One horizontal phone + burger group */
  .site-header__mobile-bar {
    display: flex !important;
    flex: 0 0 144px !important;
    width: 144px !important;
    min-width: 144px !important;
    max-width: 144px !important;
    height: 50px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    z-index: 10000 !important;
  }

  .site-header__mobile-phone {
    display: block !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow: visible !important;
    color: #031A38 !important;
    text-align: right !important;
  }

  .site-header__burger {
    display: flex !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 9px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    background: #fff !important;
    border: 1px solid rgba(15,23,42,.18) !important;
    border-radius: 12px !important;
    z-index: 10001 !important;
  }

  .site-header__burger-line {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    min-height: 2px !important;
    margin: 0 !important;
    background: #031A38 !important;
  }

  /* Mobile menu */
  .site-header__mobile {
    display: block !important;
    position: fixed !important;
    top: 82px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100dvh - 82px) !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    background: rgba(15,23,42,.35) !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .site-header__mobile.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header__mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    gap: 2px !important;
    background: #fff !important;
  }

  .site-header__mobile-link {
    display: block !important;
    width: 100% !important;
    min-height: 48px !important;
    padding: 13px 14px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    color: #031A38 !important;
    background: #fff !important;
    text-decoration: none !important;
  }

  .site-header__mobile-contact {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 16px !important;
    gap: 8px !important;
    background: #f8fafc !important;
  }

  .site-header__mobile-contact a {
    white-space: nowrap !important;
  }

  /* Content never creates a horizontal page */
  .container,
  main,
  section,
  .hero,
  .hero-grid,
  .hero-content,
  .hero-image-wrap {
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .container {
    width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-content h1,
  .hero-content h1 span {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  /* Every major card/gallery grid: one column */
  .cards,
  .services-grid,
  .service-grid,
  .equipment-grid,
  .compressor-gallery,
  .projects-grid,
  .advantages-grid,
  .partners-grid,
  .automation-cards,
  .timeline {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-flow: row !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    gap: 20px !important;
  }

  .card,
  .service-card,
  .equipment-card,
  .advantage-card,
  .project-card,
  .gallery-item {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .hero-gallery {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .hero-gallery img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}

@media (max-width: 380px) {
  .site-header__inner {
    padding-left: 7px !important;
    padding-right: 6px !important;
  }

  .site-header__brand {
    max-width: calc(100% - 140px) !important;
  }

  .site-header__logo {
    flex-basis: 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 37px !important;
  }

  .site-header__name {
    font-size: 18px !important;
  }

  .site-header__tagline {
    font-size: 8px !important;
  }

  .site-header__mobile-bar {
    flex-basis: 134px !important;
    width: 134px !important;
    min-width: 134px !important;
    max-width: 134px !important;
  }

  .site-header__mobile-phone {
    font-size: 10px !important;
  }
}



/* ==========================================================
   TK "Холод" — FINAL MOBILE HEADER v11
   IMPORTANT: this block is in /assets/css/style.css,
   which is the stylesheet actually loaded by index.html.
========================================================== */

html, body {
  max-width: 100% !important;
  overflow-x: hidden !important;
}

@media screen and (max-width: 768px) {

  /* ---- page width ---- */
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  /* ---- header ---- */
  .site-header {
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  .site-header > .container.site-header__inner,
  .site-header__inner {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    height: 84px !important;
    min-height: 84px !important;
    padding: 8px 10px !important;
    margin: 0 !important;
    gap: 6px !important;
    overflow: visible !important;
  }

  .site-header__brand {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: calc(100% - 154px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .site-header__logo {
    display: block !important;
    flex: 0 0 50px !important;
    width: 50px !important;
    min-width: 50px !important;
    max-width: 50px !important;
    height: 42px !important;
    object-fit: contain !important;
    margin: 0 !important;
  }

  .site-header__brand-text {
    display: flex !important;
    flex-direction: column !important;
    flex: 1 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 0 0 6px !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .site-header__name {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 20px !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }

  .site-header__tagline {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 2px 0 0 !important;
    padding: 0 !important;
    font-size: 9px !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
  }

  /* desktop navigation and desktop right block are OFF */
  .site-header__nav,
  .site-header__right {
    display: none !important;
    visibility: hidden !important;
  }

  /* ---- mobile phone + burger ---- */
  .site-header__mobile-bar {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 148px !important;
    width: 148px !important;
    min-width: 148px !important;
    max-width: 148px !important;
    height: 50px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    overflow: visible !important;
    z-index: 10001 !important;
  }

  .site-header__mobile-phone {
    display: inline-block !important;
    flex: 0 0 auto !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 10.5px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    word-break: keep-all !important;
    overflow: visible !important;
    text-align: right !important;
    color: #031A38 !important;
  }

  .site-header__burger {
    display: flex !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    margin: 0 !important;
    padding: 9px !important;
    box-sizing: border-box !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    background: #fff !important;
    border: 1px solid rgba(15,23,42,.18) !important;
    border-radius: 12px !important;
    z-index: 10002 !important;
  }

  .site-header__burger-line {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    min-height: 2px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #031A38 !important;
    border-radius: 2px !important;
  }

  /* ---- mobile menu ---- */
  .site-header__mobile {
    display: block !important;
    position: fixed !important;
    top: 84px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: calc(100dvh - 84px) !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    background: rgba(15,23,42,.35) !important;
    z-index: 10000 !important;
  }

  .site-header__mobile.is-open {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .site-header__mobile-nav {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 8px 12px !important;
    margin: 0 !important;
    gap: 2px !important;
    background: #fff !important;
    box-sizing: border-box !important;
  }

  .site-header__mobile-link {
    display: block !important;
    width: 100% !important;
    min-height: 48px !important;
    box-sizing: border-box !important;
    padding: 13px 14px !important;
    margin: 0 !important;
    font-size: 17px !important;
    line-height: 1.2 !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    color: #031A38 !important;
    background: #fff !important;
    text-decoration: none !important;
  }

  .site-header__mobile-contact {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 16px !important;
    margin: 0 !important;
    gap: 8px !important;
    background: #f8fafc !important;
  }

  .site-header__mobile-contact a {
    white-space: nowrap !important;
  }

  body.header-menu-open {
    overflow: hidden !important;
  }

  /* ---- mobile content / cards ---- */
  .container,
  main,
  section,
  .hero,
  .hero-grid,
  .hero-content,
  .hero-image-wrap {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .container {
    width: calc(100% - 20px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-grid {
    display: flex !important;
    flex-direction: column !important;
  }

  .hero-content h1,
  .hero-content h1 span {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: normal !important;
  }

  .hero-content h1 {
    font-size: 28px !important;
    line-height: 1.08 !important;
  }

  .cards,
  .services-grid,
  .service-grid,
  .services-modern,
  .equipment-grid,
  .equipment-gallery,
  .compressor-gallery,
  .projects-grid,
  .partners-grid,
  .products-grid,
  .gallery-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-auto-flow: row !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .cards > *,
  .services-grid > *,
  .service-grid > *,
  .services-modern > *,
  .equipment-grid > *,
  .equipment-gallery > *,
  .compressor-gallery > *,
  .projects-grid > *,
  .partners-grid > *,
  .products-grid > *,
  .gallery-grid > * {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  img, video, iframe, svg {
    max-width: 100% !important;
  }
}

@media screen and (max-width: 380px) {
  .site-header__inner {
    height: 80px !important;
    min-height: 80px !important;
    padding-left: 7px !important;
    padding-right: 6px !important;
  }

  .site-header__brand {
    max-width: calc(100% - 140px) !important;
  }

  .site-header__logo {
    flex-basis: 44px !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 37px !important;
  }

  .site-header__name {
    font-size: 18px !important;
  }

  .site-header__tagline {
    font-size: 8px !important;
  }

  .site-header__mobile-bar {
    flex-basis: 134px !important;
    width: 134px !important;
    min-width: 134px !important;
    max-width: 134px !important;
  }

  .site-header__mobile-phone {
    font-size: 9.5px !important;
  }

  .site-header__mobile {
    top: 80px !important;
    height: calc(100dvh - 80px) !important;
  }
}
/* ===== Отступы верхней шапки на компьютере ===== */
@media (min-width: 769px) {

    .site-header__inner.container {
        width: min(calc(100% - 48px), 1600px) !important;
        max-width: 1600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .site-header__brand {
        margin-left: 0 !important;
    }
}
/* Заголовок страницы "О компании" */
#hero-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #031a38;
    margin: 0 0 24px;
}
