:root {
    --primary: #00ABBC;
    --primary-dark: #008e9c;
    --primary-light: #1EBBD2;
    --dark: #111;
    --topbar-bg: #333;
    --muted: #848484;
    --text: #2b2a29;
    --white: #fff;
    --font: 'Montserrat', system-ui, sans-serif;
    --topbar-h: 44px;
    --header-h: 101px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
    max-width: 1146px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}


/* ═══════════════════════════════════════════════
   TOPBAR — 44px, #333
   ═══════════════════════════════════════════════ */

.topbar {
    background: var(--topbar-bg);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 110;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.topbar__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    transition: opacity .2s;
}
.topbar__link:hover { opacity: .8; }

.topbar__link-icon {
    flex-shrink: 0;
    width: 20px;
    height: 24px;
}

.topbar__link-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.topbar__link-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.topbar__link-sub {
    font-size: 8px;
    font-weight: 400;
    color: rgba(255,255,255,.5);
    line-height: 1;
}

.topbar__center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.topbar__search {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    transition: opacity .2s;
    background: none; border: none; cursor: pointer; padding: 0;
    font-family: inherit;
    transform: translateX(16px);
}
.topbar__search:hover { opacity: .7; }

.topbar__search-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Search Panel */
.search-panel {
    position: fixed; top: 0; left: 0; right: 0;
    background: #fff; z-index: 2000;
    box-shadow: 0 4px 24px rgba(0,0,0,.12);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform .3s ease, opacity .3s ease;
    pointer-events: none;
}
.search-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.search-panel__form {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 64px;
}
.search-panel__icon {
    flex-shrink: 0;
}
.search-panel__input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: inherit;
    color: #222;
    background: transparent;
    padding: 0;
    height: 100%;
}
.search-panel__input::placeholder {
    color: #aaa;
}
.search-panel__btn {
    flex-shrink: 0;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background .2s;
}
.search-panel__btn:hover {
    background: #009aa8;
}
.search-panel__close {
    flex-shrink: 0;
    background: none; border: none; cursor: pointer;
    color: #999; padding: 4px;
    transition: color .2s;
    display: flex; align-items: center; justify-content: center;
}
.search-panel__close:hover {
    color: #333;
}

.topbar__right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0;
}

.topbar__socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar__social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #fff;
    transition: color .2s;
}
.topbar__social:hover { color: #00ABBC; }
.topbar__social svg { width: 22px; height: 22px; }

/* Language switcher */
.lang {
    position: relative;
}

.lang__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 8px;
    color: var(--white);
    transition: border-color .2s;
}
.lang__btn:hover {
    border-color: rgba(255,255,255,.4);
}

.lang__flag {
    width: 24px;
    height: 16px;
    border-radius: 2px;
    object-fit: cover;
    flex-shrink: 0;
}

.lang__label {
    font-size: 14px;
    font-weight: 500;
}

.lang__arrow {
    width: 10px;
    height: 6px;
    color: var(--muted);
    transition: transform .25s;
    flex-shrink: 0;
}

.lang.is-open .lang__arrow {
    transform: rotate(180deg);
}

.lang__dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: rgba(30,30,30,.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 6px 0;
    display: none;
    z-index: 300;
    box-shadow: 0 16px 48px rgba(0,0,0,.4);
}

.lang.is-open .lang__dropdown {
    display: block;
}

.lang__option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transition: background .15s;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.lang__option:last-child {
    border-bottom: none;
}
.lang__option:hover {
    background: rgba(255,255,255,.08);
}
.lang__option.is-active {
    background: rgba(100,60,180,.35);
}

.lang__check {
    width: 16px;
    height: 16px;
    color: var(--white);
    margin-left: auto;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════
   HEADER — 101px, transparent over hero
   ═══════════════════════════════════════════════ */

.header {
    position: absolute;
    top: var(--topbar-h);
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--header-h);
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.header .container {
    display: flex;
    align-items: center;
    height: 100%;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header__logo-wrap {
    display: flex;
    flex-direction: column;
    width: 160px;
    gap: 3px;
    flex-shrink: 0;
}

.header__logo-img {
    width: 100%;
    height: auto;
}

.header__logo-traced {
    width: 100%;
    height: auto;
}

.header__logo-text {
    display: none;
}

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

.header__nav-link {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: -40px;
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}

.header__nav-link:hover {
    border-bottom-color: var(--primary);
}

.header__nav-link--muted {
    color: var(--muted);
}
.header__nav-link--muted:hover {
    color: rgba(255,255,255,.7);
    border-bottom-color: transparent;
}

.header__nav-link img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Mega Menu */
.header__mega-wrap { position: static; }
.header__mega-arrow {
    transition: transform .25s; margin-left: 2px; opacity: .6;
}
.header__mega-wrap:hover .header__mega-arrow,
.header__mega-wrap.is-open .header__mega-arrow {
    transform: rotate(180deg); opacity: 1;
}

.mega {
    display: none; position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
    background: #fff; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.04);
    z-index: 1000; width: min(1040px, calc(100vw - 48px)); padding: 0; overflow: hidden;
    animation: megaFadeIn .2s ease;
}
.mega.is-open, .header__mega-wrap:hover .mega { display: flex; }
@keyframes megaFadeIn { from { opacity: 0; transform: translateX(-50%) translateY(8px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

.mega__cats {
    width: 250px; flex-shrink: 0; padding: 16px 0;
    border-right: 1px solid #f0f0f0; background: #fafbfc;
}
.mega__cat {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 10px 20px; font-size: 14px; font-weight: 500; color: #222;
    transition: all .15s; cursor: pointer; text-decoration: none;
}
.mega__cat:hover, .mega__cat.is-active {
    background: var(--primary); color: #fff;
}
.mega__cat-main {
    display: flex; align-items: center; gap: 10px; min-width: 0;
}
.mega__cat-icon {
    flex-shrink: 0;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
}
.mega__cat-icon img {
    width: 24px; height: 24px; object-fit: contain; display: block;
}
.mega__cat:hover .mega__cat-icon img,
.mega__cat.is-active .mega__cat-icon img {
    filter: brightness(0) invert(1);
}
.mega__cat-chevron { flex-shrink: 0; opacity: .4; }
.mega__cat:hover .mega__cat-chevron,
.mega__cat.is-active .mega__cat-chevron { opacity: 1; }

.mega__detail {
    flex: 1; padding: 20px 24px; min-height: 320px;
}
.mega__subs { display: none; }
.mega__subs.is-active { display: block; }
.mega__subs-title {
    font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 14px;
    padding-bottom: 10px; border-bottom: 2px solid var(--primary);
}
.mega__sub {
    display: block; padding: 7px 0; font-size: 14px; color: #444;
    text-decoration: none; transition: color .15s;
}
.mega__sub:hover { color: var(--primary); }

.mega__brands {
    width: 240px; flex-shrink: 0; padding: 20px 20px;
    border-left: 1px solid #f0f0f0; background: #fafbfc;
}
.mega__brands-title {
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    color: #999; margin-bottom: 14px;
}
.mega__brands-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.mega__brand {
    display: flex; align-items: center; justify-content: center;
    padding: 10px 8px; border-radius: 10px; border: 1px solid #eee;
    background: #fff; transition: all .2s; text-decoration: none;
    aspect-ratio: 16/9;
}
.mega__brand:hover { border-color: var(--primary); box-shadow: 0 4px 12px rgba(0,171,188,.12); transform: translateY(-2px); }
.mega__brand img { max-width: 80%; max-height: 28px; object-fit: contain; filter: grayscale(100%); opacity: .6; transition: all .2s; }
.mega__brand:hover img { filter: grayscale(0); opacity: 1; }
.mega__brand span { font-size: 11px; font-weight: 700; color: #888; }

/* ── МЕГА-МЕНЮ ЗАПЧАСТИ И МАСЛА (3 колонки) ── */
.mega--pl {
    flex-direction: column;
}
.mega-pl__cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
}
.mega-pl__col {
    padding: 20px 22px;
    border-right: 1px solid #f0f0f0;
    min-height: 280px;
    background: #fff;
}
.mega-pl__col:last-child { border-right: none; }

.mega-pl__col-title {
    display: flex; align-items: center; justify-content: space-between;
    gap: 8px;
    font-size: 13px; font-weight: 700;
    color: var(--dark); text-decoration: none;
    padding-bottom: 10px; margin-bottom: 14px;
    border-bottom: 2px solid var(--primary);
    text-transform: uppercase; letter-spacing: .4px;
    transition: color .15s;
}
.mega-pl__col-titletext {
    display: inline-flex; align-items: center; gap: 8px;
    min-width: 0;
}
.mega-pl__col-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.mega-pl__col-icon img { width: 22px; height: 22px; object-fit: contain; display: block; }
.mega-pl__col-title:hover { color: var(--primary); }
.mega-pl__col-arrow { flex-shrink: 0; opacity: .5; transition: transform .2s, opacity .2s; }
.mega-pl__col-title:hover .mega-pl__col-arrow { opacity: 1; transform: translateX(3px); }

.mega-pl__cats { display: flex; flex-direction: column; gap: 12px; }
.mega-pl__cat { line-height: 1.4; }
.mega-pl__cat-name {
    display: block;
    font-size: 14px; font-weight: 600; color: #222;
    text-decoration: none;
    margin-bottom: 4px;
    transition: color .15s;
}
.mega-pl__cat-name:hover { color: var(--primary); }
.mega-pl__subs {
    display: block; line-height: 1.5;
    font-size: 12px; color: #888;
}
.mega-pl__sub { color: #888; text-decoration: none; transition: color .15s; }
.mega-pl__sub:hover { color: var(--primary); }
.mega-pl__sub-sep { color: #ddd; margin: 0 5px; }

.mega-pl__empty {
    color: #aaa; font-size: 13px; font-style: italic; padding: 6px 0;
}

.mega--pl .mega__brands {
    width: 100%; border-left: none; border-top: 1px solid #f0f0f0;
}
.mega--pl .mega__brands-grid {
    grid-template-columns: repeat(8, 1fr);
}

.mobile-menu__sub--head {
    font-weight: 700; color: var(--primary);
    text-transform: uppercase; font-size: 12px; letter-spacing: .5px;
    margin-top: 10px;
    display: inline-flex; align-items: center; gap: 8px;
}
.mobile-menu__sub-icon {
    flex-shrink: 0;
    width: 20px; height: 20px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.mobile-menu__sub-icon img { width: 20px; height: 20px; object-fit: contain; display: block; }
.mobile-menu__sub--nested { padding-left: 14px; font-size: 13px; color: #555; }

.header__contact {
    position: relative;
    margin-left: auto;
    flex-shrink: 0;
}

.header__contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.header__contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.header__contact-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    line-height: 1;
}

.header__contact-sub {
    font-size: 12px;
    font-weight: 400;
    color: #d8d8d8;
    line-height: 1;
}

.header__contact-arrow {
    width: 6px;
    height: 10px;
    transform: rotate(90deg);
    opacity: .6;
    transition: transform .25s;
    flex-shrink: 0;
}

.header__contact.is-open .header__contact-arrow {
    transform: rotate(270deg);
}

.header__dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,.2);
    padding: 8px 0;
    min-width: 300px;
    display: none;
    z-index: 200;
}

.header__contact.is-open .header__dropdown {
    display: block;
}

.header__dropdown-item {
    padding: 12px 20px;
}
.header__dropdown-item + .header__dropdown-item {
    border-top: 1px solid #f0f0f0;
}

.header__dropdown-city {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
}

.header__dropdown-phone {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    transition: color .2s;
}
.header__dropdown-phone:hover { color: var(--primary); }

.header__dropdown-email {
    display: block;
    font-size: 12px;
    color: var(--primary);
    margin-top: 4px;
}

.header__dropdown-addr {
    display: block;
    font-size: 11px;
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.4;
}

.header__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    margin-left: auto;
}

.header__burger span {
    display: block;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: .3s;
}

/* ─── Mobile header action buttons (lang, contacts) ─── */
.header__mobile-actions {
    display: none;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.mob-lang,
.mob-contacts-btn {
    display: none;
}

.mob-lang__btn,
.mob-contacts-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}
.mob-lang__btn:active,
.mob-contacts-btn:active {
    background: rgba(255,255,255,.25);
}
.mob-lang__btn.is-active {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.mob-contacts-btn.is-active {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

.mob-contacts-btn__ico-close { display: none; }
.mob-contacts-btn.is-active .mob-contacts-btn__ico-phone { display: none; }
.mob-contacts-btn.is-active .mob-contacts-btn__ico-close { display: block; }

.mob-lang {
    position: relative;
}
.mob-lang__dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    min-width: 160px;
    padding: 8px 0;
    z-index: 10000;
}
.mob-lang__dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    right: 14px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    border-radius: 2px;
}
.mob-lang.is-open .mob-lang__dropdown {
    display: block;
}
.mob-lang__option {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    transition: background .15s;
}
.mob-lang__option:active {
    background: #f5f5f5;
}
.mob-lang__option.is-active {
    color: var(--primary);
    font-weight: 600;
}

/* ─── Mobile contacts panel ─── */
.mob-contacts-panel {
    position: fixed;
    top: 72px;
    left: 12px;
    right: 12px;
    z-index: 9997;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-20px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s, visibility 0s .3s;
}
.mob-contacts-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s, visibility 0s;
}

.mob-contacts-panel__inner {
    padding: 16px 20px 24px;
}
.mob-contacts-panel__item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}
.mob-contacts-panel__item:last-child {
    border-bottom: none;
}
.mob-contacts-panel__phone {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 4px;
}
.mob-contacts-panel__label {
    display: block;
    font-size: 13px;
    color: #888;
}
.mob-contacts-panel__email {
    display: block;
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
    margin-top: 4px;
}
.mob-contacts-panel__addr {
    display: block;
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    line-height: 1.4;
}
.mob-contacts-panel__item--email,
.mob-contacts-panel__item--hours {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mob-contacts-panel__item--email svg,
.mob-contacts-panel__item--hours svg {
    flex-shrink: 0;
    color: var(--primary);
}
.mob-contacts-panel__item--email a {
    font-size: 15px;
    color: var(--dark);
    text-decoration: none;
}
.mob-contacts-panel__item--hours span {
    font-size: 14px;
    color: #555;
}

.header__burger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active span:nth-child(2) {
    opacity: 0;
}
.header__burger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Mobile overlay ─── */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity .3s;
}
.mobile-overlay.is-open {
    display: block;
    opacity: 1;
}

/* ─── Mobile menu drawer ─── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.mobile-menu.is-open {
    right: 0;
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #007a8a 0%, #00b4c6 50%, #00a5a0 100%);
}
.mobile-menu__logo img {
    height: 28px;
    filter: brightness(0) invert(1);
}
.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu__body {
    flex: 1;
    padding: 16px 0;
}
.mobile-menu__link {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
    transition: background .2s;
}
.mobile-menu__link:hover {
    background: #f8f8f8;
}

.mobile-menu__subs {
    padding: 0 0 8px;
    background: #fafbfc;
}
.mobile-menu__sub {
    display: block;
    padding: 10px 24px 10px 40px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color .2s;
}
.mobile-menu__sub:hover {
    color: var(--primary);
}

.mobile-menu__foot {
    padding: 20px 24px;
    border-top: 1px solid #eee;
    background: #fafbfc;
}
.mobile-menu__phone {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 8px;
}
.mobile-menu__email {
    display: block;
    font-size: 14px;
    color: var(--primary);
    text-decoration: none;
}


/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    white-space: nowrap;
    font-family: var(--font);
    transition: all .25s;
    border: none;
    cursor: pointer;
}

.btn--primary {
    background: linear-gradient(25.7deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}
.btn--primary:hover {
    filter: brightness(1.08);
}
.btn--primary img {
    width: 16px;
    height: 16px;
}

.btn--outline {
    background: rgba(255,255,255,.2);
    color: var(--white);
    border: 1px solid var(--muted);
}
.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,.1);
}


/* ═══════════════════════════════════════════════
   HERO — 900px slider
   ═══════════════════════════════════════════════ */

.hero {
    position: relative;
    margin-top: calc(-1 * (var(--topbar-h) + var(--header-h)));
    padding-top: calc(var(--topbar-h) + var(--header-h));
}

.hero__slider {
    position: relative;
    overflow: hidden;
}

.hero__slide {
    position: relative;
    height: 900px;
    min-height: 600px;
    background: var(--dark) center / cover no-repeat;
}

.hero__video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; pointer-events: none;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(65deg, rgba(0,0,0,.6) 0%, rgba(102,102,102,.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 40px;
    padding-bottom: 120px;
}

.hero__title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0;
    color: var(--white);
    margin-bottom: 24px;
    max-width: 754px;
}

.hero__text {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 40px;
    max-width: 754px;
}

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

.hero__nav {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.hero__nav-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    pointer-events: auto;
}

.hero__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    background: transparent;
    padding: 0;
}

.hero__arrow img {
    width: 12px;
    height: 12px;
}

.hero__arrow--prev {
    border: 2px solid var(--muted);
}
.hero__arrow--prev img {
    transform: rotate(180deg);
}
.hero__arrow--prev:hover {
    border-color: rgba(255,255,255,.6);
}

.hero__arrow--next {
    background: rgba(30,187,210,.2);
    border: 2px solid var(--primary-light);
}
.hero__arrow--next:hover {
    background: rgba(30,187,210,.35);
}

.hero__counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-left: 12px;
}

.hero__counter-current {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-light);
}

.hero__counter-sep {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.hero__counter-total {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}


/* ═══════════════════════════════════════════════
   BRANDS — infinite carousel
   ═══════════════════════════════════════════════ */

.brands {
    padding: 80px 0 60px;
    background: var(--white);
    overflow: hidden;
}

.brands__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}
.brands__title span {
    color: var(--primary);
}

.brands__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 48px;
}

.brands__track-wrap {
    position: relative;
    width: 100%;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands__track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: brands-scroll 30s linear infinite;
}

.brands__item {
    flex-shrink: 0;
    width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-right: 1px solid #eee;
}

.brands__item img {
    max-width: 100px;
    max-height: 32px;
    object-fit: contain;
}

@keyframes brands-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Brand items stagger reveal */
.brands-reveal .brands__item {
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity .5s cubic-bezier(.22,1,.36,1),
                transform .5s cubic-bezier(.22,1,.36,1);
}
.brands-reveal.is-visible .brands__item {
    opacity: 1;
    transform: translateX(0);
}
.brands-reveal.is-visible .brands__item:nth-child(1)  { transition-delay: .03s; }
.brands-reveal.is-visible .brands__item:nth-child(2)  { transition-delay: .06s; }
.brands-reveal.is-visible .brands__item:nth-child(3)  { transition-delay: .09s; }
.brands-reveal.is-visible .brands__item:nth-child(4)  { transition-delay: .12s; }
.brands-reveal.is-visible .brands__item:nth-child(5)  { transition-delay: .15s; }
.brands-reveal.is-visible .brands__item:nth-child(6)  { transition-delay: .18s; }
.brands-reveal.is-visible .brands__item:nth-child(7)  { transition-delay: .21s; }
.brands-reveal.is-visible .brands__item:nth-child(8)  { transition-delay: .24s; }
.brands-reveal.is-visible .brands__item:nth-child(9)  { transition-delay: .27s; }
.brands-reveal.is-visible .brands__item:nth-child(10) { transition-delay: .30s; }
.brands-reveal.is-visible .brands__item:nth-child(11) { transition-delay: .33s; }
.brands-reveal.is-visible .brands__item:nth-child(12) { transition-delay: .36s; }
.brands-reveal.is-visible .brands__item:nth-child(13) { transition-delay: .39s; }
.brands-reveal.is-visible .brands__item:nth-child(14) { transition-delay: .42s; }

@media (max-width: 768px) {
    .brands { padding: 48px 0 36px; }
    .brands__title { font-size: 22px; }
    .brands__text { font-size: 14px; margin-bottom: 32px; }
    .brands__text br { display: none; }
    .brands__item { width: 140px; height: 60px; }
    .brands__track { animation-duration: 20s; }
}


/* ═══════════════════════════════════════════════
   CATALOG — bento grid
   ═══════════════════════════════════════════════ */

.catalog--bento {
    padding: 96px 0 104px;
    background: #f5f5f7;
}

.bento-head {
    text-align: left;
    margin-bottom: 52px;
}
.bento-head__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.2;
}
.bento-head__title span {
    color: var(--primary);
}
.bento-head__sub {
    font-size: 15px;
    color: #888;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Grid */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

/* Cell */
.bento__cell {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 210px;
    padding: 24px 26px 26px;
    border-radius: 20px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: transform .35s cubic-bezier(.25,.8,.25,1),
                box-shadow .35s cubic-bezier(.25,.8,.25,1);
}
.bento__cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(0,0,0,.13);
}

.bento__cell--wide {
    grid-column: span 2;
    min-height: 230px;
    background: linear-gradient(135deg, #0a1a20 0%, #153038 100%);
    color: #fff;
}

/* Number — hidden */
.bento__num {
    display: none;
}

/* Icon */
.bento__ico {
    display: block;
    margin-bottom: 20px;
}
.bento__ico img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    opacity: .7;
    transition: opacity .3s ease;
}
.bento__cell--wide .bento__ico img {
    width: 42px;
    height: 42px;
    opacity: .75;
    filter: brightness(2.5) grayscale(.2);
}

/* Label */
.bento__label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
    color: var(--primary);
    text-decoration: none;
    transition: color .2s ease;
}
.bento__label:hover {
    color: var(--text);
}
.bento__cell--wide .bento__label {
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 700;
    color: #7edce6;
}
.bento__cell--wide .bento__label:hover {
    color: #fff;
}

/* Tags (subcategories) — always visible */
.bento__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
}

.bento__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.5;
    background: rgba(0,0,0,.05);
    color: #666;
    white-space: nowrap;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.bento__tag:hover {
    background: var(--primary);
    color: #fff;
}
.bento__cell--wide .bento__tag {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.75);
}
.bento__cell--wide .bento__tag:hover {
    background: rgba(255,255,255,.28);
    color: #fff;
}

/* Arrow — hidden */
.bento__go {
    display: none;
}


@media (max-width: 900px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .bento__cell--wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .catalog--bento { padding: 56px 0 64px; }
    .bento-head { margin-bottom: 36px; }
    .bento-head__title { font-size: 26px; }
    .bento-head__sub { font-size: 14px; }
    .bento__cell {
        min-height: 170px;
        padding: 20px 22px 22px;
        border-radius: 16px;
    }
    .bento__cell--wide { min-height: 180px; }
    .bento__label { font-size: 16px; }
    .bento__cell--wide .bento__label { font-size: 18px; }
    .bento__tags {
        max-height: none;
        opacity: 1;
    }
}

@media (max-width: 520px) {
    .bento {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .bento__cell--wide {
        grid-column: span 1;
    }
    .bento__cell { min-height: 150px; }
}

.bento--catalog {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.bento--catalog .bento__cell {
    min-height: 180px;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
@media (max-width: 1100px) {
    .bento--catalog { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .bento--catalog { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   CAT-DESCRIPTION — описание категории/подкатегории
   ═══════════════════════════════════════════════ */

.cat-description {
    padding: 56px 0 64px;
    background: #fff;
}
.cat-description__content {
    max-width: 820px;
    font-size: 15px;
    line-height: 1.75;
    color: #444;
}
.cat-description__content h1,
.cat-description__content h2,
.cat-description__content h3 {
    color: var(--text);
    margin: 1.6em 0 .6em;
    line-height: 1.3;
    font-weight: 600;
}
.cat-description__content h2 { font-size: 22px; }
.cat-description__content h3 { font-size: 18px; }
.cat-description__content p {
    margin: 0 0 1em;
}
.cat-description__content ul,
.cat-description__content ol {
    padding-left: 1.4em;
    margin: 0 0 1em;
    list-style: revert;
}
.cat-description__content ul {
    list-style-type: disc;
}
.cat-description__content ol {
    list-style-type: decimal;
}
.cat-description__content li {
    margin-bottom: .4em;
    display: list-item;
}

.cat-description--inline {
    padding: 48px 0 16px;
    background: transparent;
}
.cat-description__content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.cat-description__content a:hover {
    text-decoration: none;
}
.cat-description__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1em 0;
}
.cat-description__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 14px;
}
.cat-description__content th,
.cat-description__content td {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    text-align: left;
}
.cat-description__content th {
    background: #f7f8fa;
    font-weight: 600;
    color: var(--text);
}

@media (max-width: 768px) {
    .cat-description { padding: 40px 0 48px; }
    .cat-description__content { font-size: 14px; }
    .cat-description__content h2 { font-size: 19px; }
    .cat-description__content h3 { font-size: 16px; }
}


/* ═══════════════════════════════════════════════
   PRODUCTS — equipment cards
   ═══════════════════════════════════════════════ */

.products {
    padding: 80px 0;
    background: var(--white);
}

.products__title {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}

.products__text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 32px;
    max-width: 600px;
}

/* Filters */
.products__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.products__filter {
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: transparent;
    border: 1px solid #ddd;
    transition: all .25s;
    font-family: var(--font);
    cursor: pointer;
}
.products__filter:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.products__filter.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Cards grid */
.products__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.products__card {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e8e8e8;
    transition: box-shadow .25s;
    position: relative;
    text-decoration: none;
    color: inherit;
}
.products__card:nth-child(4n) {
    border-right: none;
}
.products__card:hover {
    box-shadow: inset 0 0 0 2px var(--primary);
    z-index: 1;
}

.products__card.is-hidden {
    display: none;
}

/* Card top — photo area */
.products__card-top {
    position: relative;
    padding: 20px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.products__card-brand {
    position: absolute;
    top: 14px;
    right: 14px;
    height: 18px;
    width: auto;
    opacity: .5;
}

.products__card-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.products__card-photo img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

/* Card body — info */
.products__card-body {
    padding: 16px 20px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.products__card-cat {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 4px;
}

.products__card-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Specs */
.products__card-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    flex: 1;
}

.products__spec {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.products__spec-label {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.2;
}

.products__spec-val {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
}

/* Card button */
.products__card-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 8px 20px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: all .2s;
}
.products__card:hover .products__card-btn {
    border-color: var(--primary);
    color: var(--primary);
}

/* Bottom actions */
.products__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.btn--outline-dark {
    background: transparent;
    color: var(--text);
    border: 1px solid #ccc;
}
.btn--outline-dark:hover {
    border-color: var(--text);
    background: rgba(0,0,0,.03);
}

/* Responsive */
@media (max-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products__card:nth-child(4n) { border-right: 1px solid #e8e8e8; }
    .products__card:nth-child(3n) { border-right: none; }
}

@media (max-width: 768px) {
    .products { padding: 48px 0; }
    .products__title { font-size: 22px; }
    .products__text { font-size: 14px; }
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products__card:nth-child(3n) { border-right: 1px solid #e8e8e8; }
    .products__card:nth-child(2n) { border-right: none; }
    .products__card-top { min-height: 140px; }
    .products__card-name { font-size: 16px; }
    .products__actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .products__grid {
        grid-template-columns: 1fr;
    }
    .products__card { border-right: none !important; border-bottom: 1px solid #e8e8e8; }
    .products__card:last-child { border-bottom: none; }
}


/* ═══════════════════════════════════════════════
   HOME — About Company Block
   ═══════════════════════════════════════════════ */

.home-about {
    padding: 80px 0;
    background: #00ABBC;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.home-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.home-about__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-left: 32px;
}
.home-about__badge::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    width: 20px; height: 2px;
    background: #fff;
    transform: translateY(-50%);
}

.home-about__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}
.home-about__title span {
    font-weight: 300;
    opacity: .6;
}

.home-about__text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,.8);
    margin-bottom: 16px;
}
.home-about__text:last-of-type {
    margin-bottom: 32px;
}

.home-about__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #00ABBC;
}
.home-about__btn:hover {
    background: rgba(255,255,255,.9);
}
.home-about__btn svg {
    transition: transform .3s;
}
.home-about__btn:hover svg {
    transform: translateX(4px);
}

.home-about__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.home-about__stat {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 28px 24px;
    transition: background .3s, border-color .3s, transform .3s;
}
.home-about__stat:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.35);
    transform: translateY(-4px);
}

.home-about__stat-icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.15);
    border-radius: 12px;
    color: #fff;
    margin-bottom: 16px;
}

.home-about__stat-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 4px;
    color: #fff;
}

.home-about__stat-label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.6);
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .home-about { padding: 64px 0; }
    .home-about__grid { gap: 40px; }
}

@media (max-width: 768px) {
    .home-about { padding: 48px 0; }
    .home-about__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .home-about__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .home-about__stat { padding: 20px 16px; }
    .home-about__stat-num { font-size: 26px; }
}

@media (max-width: 400px) {
    .home-about__stats { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════
   ANIMATIONS — entrance & scroll reveal
   ═══════════════════════════════════════════════ */

/* ---------- Hero entrance (plays on page load) ---------- */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroSlideRight {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.hero__title {
    animation: heroFadeUp 1.4s cubic-bezier(.22,1,.36,1) .3s both;
}
.hero__text {
    animation: heroFadeUp 1.4s cubic-bezier(.22,1,.36,1) .7s both;
}
.hero__buttons {
    animation: heroFadeUp 1.4s cubic-bezier(.22,1,.36,1) 1.1s both;
}
.hero__nav-inner {
    animation: heroSlideRight 1.2s cubic-bezier(.22,1,.36,1) 1.5s both;
}

/* ---------- Scroll reveal system ---------- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.3s cubic-bezier(.22,1,.36,1),
                transform 1.3s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1.3s cubic-bezier(.22,1,.36,1),
                transform 1.3s cubic-bezier(.22,1,.36,1);
}
.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(.92);
    transition: opacity 1.3s cubic-bezier(.22,1,.36,1),
                transform 1.3s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 1s cubic-bezier(.22,1,.36,1),
                transform 1s cubic-bezier(.22,1,.36,1);
}
.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateX(0);
}
.reveal-stagger.is-visible > *:nth-child(1)  { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(2)  { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(3)  { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(4)  { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(5)  { transition-delay: .40s; }
.reveal-stagger.is-visible > *:nth-child(6)  { transition-delay: .48s; }
.reveal-stagger.is-visible > *:nth-child(7)  { transition-delay: .56s; }
.reveal-stagger.is-visible > *:nth-child(8)  { transition-delay: .64s; }
.reveal-stagger.is-visible > *:nth-child(9)  { transition-delay: .72s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .hero__title, .hero__text, .hero__buttons, .hero__nav-inner { animation: none !important; }
    .reveal, .reveal-left, .reveal-scale { transition: none !important; opacity: 1; transform: none; }
    .reveal-stagger > * { transition: none !important; opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */

/* --- Hero Banner --- */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #004d56 0%, var(--primary) 60%, #004c48 100%);
    padding: calc(var(--topbar-h) + var(--header-h) + 80px) 0 80px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
    pointer-events: none;
}
.about-hero__inner {
    position: relative;
    z-index: 2;
}
.about-hero__badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.4);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
    animation: heroFadeUp 1s ease .3s both;
}
.about-hero__title {
    font-size: 56px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -1px;
    animation: heroFadeUp 1s ease .5s both;
}
.about-hero__title span {
    color: var(--white);
    font-weight: 400;
    margin-left: 8px;
    opacity: .7;
}
.about-hero__sub {
    font-size: 18px;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 48px;
    animation: heroFadeUp 1s ease .7s both;
}
.about-hero__stats {
    display: flex;
    gap: 48px;
    animation: heroFadeUp 1s ease .9s both;
}
.about-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-hero__stat-num {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}
.about-hero__stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.45);
    font-weight: 400;
}

/* --- Story / About text --- */
.about-story {
    padding: 96px 0;
}
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.about-story__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 28px;
}
.about-story__title span {
    color: var(--primary);
}
.about-story__left p,
.about-story__right p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 16px;
}
.about-story__right {
    padding-top: 64px;
}

/* --- Vision / Mission --- */
.about-vm {
    padding: 96px 0;
    background: var(--primary);
}
.about-vm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}
.about-vm__block {
    display: flex;
    gap: 24px;
}
.about-vm__accent {
    width: 4px;
    flex-shrink: 0;
    background: rgba(255,255,255,.4);
    border-radius: 2px;
}
.about-vm__content {
    flex: 1;
}
.about-vm__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    margin-bottom: 20px;
}
.about-vm__text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
    color: var(--white);
}

/* --- Key Advantages --- */
.about-advantages {
    padding: 96px 0;
}
.about-advantages__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 48px;
}
.about-advantages__title span {
    color: var(--primary);
}
.about-advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
}
.about-advantages__card {
    padding: 40px 32px;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    position: relative;
    transition: background .3s;
}
.about-advantages__card:nth-child(3n) {
    border-right: none;
}
.about-advantages__card:nth-child(n+4) {
    border-bottom: none;
}
.about-advantages__card:hover {
    background: #f0fafb;
}
.about-advantages__num {
    font-size: 48px;
    font-weight: 700;
    color: rgba(0,171,188,.1);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px;
}
.about-advantages__card:hover .about-advantages__num {
    color: rgba(0,171,188,.25);
}
.about-advantages__card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}
.about-advantages__card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
}

/* --- Industries --- */
.about-industries {
    padding: 96px 0;
    background: #f7f8fa;
}
.about-industries__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}
.about-industries__title span {
    color: var(--primary);
}
.about-industries__sub {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 600px;
}
.about-industries__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-industries__card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #eee;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}
.about-industries__card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.06);
}
.about-industries__card-icon {
    margin-bottom: 20px;
}
.about-industries__card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}
.about-industries__geo {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}
.about-industries__equip {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* --- Geography --- */
.about-geo {
    padding: 96px 0;
}
.about-geo__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 48px;
}
.about-geo__title span {
    color: var(--primary);
}
.about-geo__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.about-geo__card {
    background: #f7f8fa;
    border-radius: 16px;
    padding: 28px 24px;
    position: relative;
    border: 1px solid transparent;
    transition: border-color .3s, background .3s;
}
.about-geo__card:hover {
    border-color: var(--primary);
    background: #f0fafb;
}
.about-geo__card--hq {
    background: var(--primary);
    border-color: transparent;
}
.about-geo__card--hq:hover {
    background: var(--primary-light);
    border-color: transparent;
}
.about-geo__card--hq h4,
.about-geo__card--hq p {
    color: var(--white);
}
.about-geo__card--hq .about-geo__badge {
    color: rgba(255,255,255,.7);
}
.about-geo__card--hq .about-geo__extra {
    color: rgba(255,255,255,.75) !important;
}
.about-geo__card--hq .about-geo__marker svg path {
    fill: var(--white);
}
.about-geo__marker {
    margin-bottom: 16px;
}
.about-geo__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}
.about-geo__badge--service {
    color: #E4002B;
}
.about-geo__card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}
.about-geo__card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}
.about-geo__extra {
    margin-top: 8px;
    font-size: 12px !important;
    color: var(--primary) !important;
    font-weight: 500;
}

/* --- Team --- */
.about-team {
    padding: 96px 0;
    background: #f7f8fa;
}
.about-team__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 12px;
}
.about-team__title span {
    color: var(--primary);
}
.about-team__sub {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 48px;
    max-width: 500px;
}
.about-team__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e8e8e8;
}
.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.about-team__grid--5 {
    grid-template-columns: repeat(5, 1fr);
    margin-bottom: 0;
}
.about-team__card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    transition: border-color .3s, box-shadow .3s, transform .3s;
}
.about-team__card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,171,188,.08);
    transform: translateY(-2px);
}
.about-team__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}
.about-team__info {
    flex: 1;
    min-width: 0;
}
.about-team__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    line-height: 1.3;
}
.about-team__role {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}
.about-team__dept {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

/* --- Org Structure --- */
.about-org {
    padding: 96px 0;
    background: #f7f8fa;
}
.about-org__title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 56px;
    text-align: center;
}
.about-org__title span {
    color: var(--primary);
}
.org-chart {
    max-width: 900px;
    margin: 0 auto;
}
.org-chart__level {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.org-chart__level--4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.org-chart__level--sub3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}
.org-chart__level--sub2r {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 440px;
    margin: 0 auto;
}
.org-chart__node {
    background: var(--white);
    border: 1px solid #e4e4e4;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: border-color .3s, box-shadow .3s;
}
.org-chart__node:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,171,188,.08);
}
.org-chart__node--root {
    padding: 40px 60px;
    border: none;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,.06);
}
.org-chart__node--sm {
    padding: 18px 16px;
}
.org-chart__company {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.1;
}
.org-chart__company-sub {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 6px;
    color: var(--muted);
    margin-top: 4px;
}
.org-chart__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    line-height: 1.3;
}
.org-chart__pos {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.3;
}
.org-chart__conn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}
.org-chart__conn-v {
    width: 1px;
    height: 24px;
    background: #ccc;
}
.org-chart__conn-h {
    height: 1px;
    background: #ccc;
    position: relative;
}
.org-chart__conn-h--4 {
    width: 75%;
}
.org-chart__conn-h--3 {
    width: 66%;
}
.org-chart__conn-h--2 {
    width: 50%;
}
.org-chart__conn-h::before,
.org-chart__conn-h::after {
    content: '';
    position: absolute;
    top: 0;
    width: 1px;
    height: 24px;
    background: #ccc;
}
.org-chart__conn-h::before {
    left: 0;
}
.org-chart__conn-h::after {
    right: 0;
}
.org-chart__conn-h--4::before {
    left: 0;
}
.org-chart__conn-h--4::after {
    right: 0;
}
.org-chart__conn-h--4 .org-chart__tick-2,
.org-chart__conn-h--4 .org-chart__tick-3 {
    position: absolute;
    top: 0;
    width: 1px;
    height: 24px;
    background: #ccc;
}
.org-chart__level--4 .org-chart__node,
.org-chart__level--sub3 .org-chart__node,
.org-chart__level--sub2r .org-chart__node {
    position: relative;
}
.org-chart__level--4 .org-chart__node::before,
.org-chart__level--sub3 .org-chart__node::before,
.org-chart__level--sub2r .org-chart__node::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    width: 1px;
    height: 24px;
    background: #ccc;
}
.org-chart__conn--offset-left {
    margin-left: -12.5%;
}
.org-chart__conn--offset-right {
    margin-left: 12.5%;
}

/* --- CTA --- */
.about-cta {
    padding: 96px 0;
    background: #f7f8fa;
}
.about-cta__inner {
    background: var(--primary);
    border-radius: 24px;
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
}
.about-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    position: relative;
}
.about-cta__title span {
    color: var(--white);
    opacity: .7;
}
.about-cta__text {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 36px;
    position: relative;
}
.about-cta__actions {
    display: flex;
    gap: 16px;
    position: relative;
}
.about-cta__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s;
}
.about-cta__actions .btn--primary {
    background: var(--white);
    color: var(--primary);
}
.about-cta__actions .btn--primary:hover {
    background: rgba(255,255,255,.9);
}
.about-cta__actions .btn--outline {
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
}
.about-cta__actions .btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* --- About page responsive --- */
@media (max-width: 1024px) {
    .about-hero__stats { gap: 32px; }
    .about-hero__title { font-size: 44px; }
    .about-geo__grid { grid-template-columns: repeat(3, 1fr); }
    .about-industries__grid { grid-template-columns: repeat(2, 1fr); }
    .about-team__grid { grid-template-columns: repeat(2, 1fr); }
    .about-team__grid--5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .about-hero {
        padding: calc(64px + 40px) 0 60px;
        min-height: auto;
    }
    .about-hero__title { font-size: 32px; }
    .about-hero__sub { font-size: 16px; }
    .about-hero__stats {
        flex-wrap: wrap;
        gap: 24px 32px;
    }
    .about-hero__stat-num { font-size: 32px; }

    .about-story { padding: 64px 0; }
    .about-story__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .about-story__right { padding-top: 0; }
    .about-story__title { font-size: 28px; }

    .about-vm { padding: 64px 0; }
    .about-vm__grid { grid-template-columns: 1fr; }
    .about-vm__text { font-size: 17px; }

    .about-advantages { padding: 64px 0; }
    .about-advantages__title { font-size: 28px; }
    .about-advantages__grid { grid-template-columns: 1fr 1fr; }
    .about-advantages__card:nth-child(2n) { border-right: none; }
    .about-advantages__card:nth-child(n+5) { border-bottom: none; }

    .about-industries { padding: 64px 0; }
    .about-industries__title { font-size: 28px; }
    .about-industries__grid { grid-template-columns: 1fr; }

    .about-geo { padding: 64px 0; }
    .about-geo__title { font-size: 28px; }
    .about-geo__grid { grid-template-columns: 1fr 1fr; }

    .about-team { padding: 64px 0; }
    .about-team__title { font-size: 28px; }
    .about-team__grid { grid-template-columns: 1fr 1fr; }
    .about-team__grid--5 { grid-template-columns: 1fr 1fr; }

    .about-cta { padding: 64px 0; }
    .about-cta__inner { padding: 48px 32px; }
    .about-cta__title { font-size: 28px; }
    .about-cta__actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .about-hero__title { font-size: 28px; }
    .about-hero__stats { gap: 20px 24px; }
    .about-hero__stat-num { font-size: 28px; }
    .about-advantages__grid { grid-template-columns: 1fr; }
    .about-advantages__card { border-right: none !important; }
    .about-team__grid { grid-template-columns: 1fr; }
    .about-team__grid--5 { grid-template-columns: 1fr; }
    .about-advantages__card:nth-child(n+6) { border-bottom: none; }
    .about-geo__grid { grid-template-columns: 1fr; }
    .about-cta__inner { padding: 36px 24px; border-radius: 16px; }
}


/* ═══════════════════════════════════════════════
   SEARCH RESULTS
   ═══════════════════════════════════════════════ */

.search-results { padding: 40px 0 80px; min-height: 50vh; }

.sr-form { margin-bottom: 32px; }
.sr-form__wrap {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 2px solid #e8e8e8; border-radius: 12px;
    padding: 8px 8px 8px 20px;
    transition: border-color .2s;
}
.sr-form__wrap:focus-within { border-color: var(--primary); }
.sr-form__icon { flex-shrink: 0; }
.sr-form__input {
    flex: 1; border: none; outline: none; font-size: 16px;
    font-family: inherit; color: #222; background: transparent; padding: 8px 0;
}
.sr-form__input::placeholder { color: #aaa; }
.sr-form__btn {
    flex-shrink: 0; background: var(--primary); color: #fff; border: none;
    border-radius: 8px; padding: 12px 32px; font-size: 15px; font-weight: 600;
    font-family: inherit; cursor: pointer; transition: background .2s;
}
.sr-form__btn:hover { background: #009aa8; }

.sr-count {
    font-size: 15px; color: #666; margin-bottom: 24px;
}
.sr-count strong { color: #222; }

.sr-empty {
    text-align: center; padding: 60px 20px 80px;
}
.sr-empty svg { margin-bottom: 20px; }
.sr-empty__title {
    font-size: 22px; font-weight: 700; color: #222; margin-bottom: 10px;
}
.sr-empty__text {
    font-size: 15px; color: #777; line-height: 1.6; margin-bottom: 24px;
}
.sr-empty__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff; border-radius: 10px;
    padding: 14px 28px; font-size: 14px; font-weight: 600;
    text-decoration: none; transition: background .2s;
}
.sr-empty__btn:hover { background: #009aa8; }

@media (max-width: 768px) {
    .search-results { padding: 24px 0 48px; }
    .sr-form__wrap { padding: 6px 6px 6px 14px; }
    .sr-form__input { font-size: 14px; }
    .sr-form__btn { padding: 10px 20px; font-size: 13px; }
    .sr-empty { padding: 40px 16px 60px; }
    .sr-empty__title { font-size: 18px; }
}


/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

.footer {
    background: #111;
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

.footer__top { padding: 64px 0 48px; }

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.footer__logo { display: inline-block; margin-bottom: 20px; }
.footer__logo-img { height: 36px; width: auto; }

.footer__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    margin-bottom: 24px;
}

.footer__socials { display: flex; gap: 12px; }
.footer__social {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: 10px;
    color: rgba(255,255,255,.6);
    transition: background .2s, color .2s;
}
.footer__social:hover {
    background: #00ABBC;
    color: #fff;
}

.footer__heading {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}
.footer__links a:hover { color: #00ABBC; }

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}
.footer__contact-item:last-child { margin-bottom: 0; }
.footer__contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #00ABBC;
}
.footer__contact-item a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .2s;
}
.footer__contact-item a:hover { color: #00ABBC; }

.footer__branches {
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
}
.footer__branches-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    justify-content: center;
}
.footer__branch {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.footer__branch-city {
    color: rgba(255,255,255,.4);
    font-weight: 500;
}
.footer__branch-phone {
    color: rgba(255,255,255,.7);
    text-decoration: none;
    font-weight: 600;
    transition: color .2s;
}
.footer__branch-phone:hover { color: #00ABBC; }

.footer__bottom { padding: 20px 0; }
.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.footer__dev {
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.footer__dev a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .2s;
}
.footer__dev a:hover { color: #00ABBC; }

@media (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
}
@media (max-width: 768px) {
    .footer__top { padding: 40px 0 32px; }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer__branches-grid {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}


/* ═══════════════════════════════════════════════
   404
   ═══════════════════════════════════════════════ */

.page-404 .header {
    position: relative;
    top: auto;
    background: var(--dark);
}

body.page-404 {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
body.page-404 main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.e404 {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(160deg, #f0f4f5 0%, #e8eef0 40%, #dce6e9 100%);
}

.e404__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.e404__grid {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1px;
    opacity: .35;
}
.e404__grid span {
    border: 1px solid rgba(0,171,188,.08);
    border-radius: 2px;
}

.e404__inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px 100px;
}

.e404__badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(0,171,188,.08);
    border: 1px solid rgba(0,171,188,.15);
    padding: 6px 18px;
    border-radius: 40px;
    margin-bottom: 40px;
    animation: e404FadeDown .8s ease both;
}

.e404__number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 32px;
    animation: e404FadeDown .8s .15s ease both;
}

.e404__digit {
    font-size: clamp(100px, 18vw, 180px);
    font-weight: 800;
    line-height: 1;
    color: var(--dark);
    letter-spacing: -6px;
}
.e404__digit--4a {
    background: linear-gradient(135deg, var(--dark) 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.e404__digit--4b {
    background: linear-gradient(225deg, var(--dark) 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.e404__digit--0 {
    position: relative;
    width: clamp(80px, 14vw, 140px);
    height: clamp(100px, 18vw, 180px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.e404__gear {
    width: 100%;
    height: 100%;
    animation: e404Spin 20s linear infinite;
}

.e404__title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    animation: e404FadeDown .8s .3s ease both;
}

.e404__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin: 0 auto 40px;
    animation: e404FadeDown .8s .45s ease both;
}

.e404__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: e404FadeDown .8s .6s ease both;
}

.e404__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 8px;
    transition: all .3s cubic-bezier(.4,0,.2,1);
    text-decoration: none;
}

.e404__btn--primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,171,188,.25);
}
.e404__btn--primary:hover {
    background: var(--primary-light);
    box-shadow: 0 8px 30px rgba(0,171,188,.35);
    transform: translateY(-2px);
}

.e404__btn--outline {
    background: var(--white);
    color: var(--dark);
    border: 1.5px solid rgba(0,0,0,.1);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.e404__btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,171,188,.1);
    transform: translateY(-2px);
}

.e404__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.e404__line {
    position: absolute;
    background: linear-gradient(180deg, transparent 0%, var(--primary) 50%, transparent 100%);
    opacity: .06;
    border-radius: 2px;
}
.e404__line--1 {
    width: 2px;
    height: 200px;
    top: 10%;
    left: 15%;
    animation: e404Float 6s ease-in-out infinite;
}
.e404__line--2 {
    width: 2px;
    height: 160px;
    top: 20%;
    right: 18%;
    animation: e404Float 8s 2s ease-in-out infinite;
}
.e404__line--3 {
    width: 140px;
    height: 2px;
    bottom: 25%;
    right: 10%;
    background: linear-gradient(90deg, transparent 0%, var(--primary) 50%, transparent 100%);
    animation: e404Float 7s 1s ease-in-out infinite;
}

@keyframes e404Spin {
    to { transform: rotate(360deg); }
}
@keyframes e404FadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes e404Float {
    0%, 100% { transform: translateY(0) scale(1); opacity: .06; }
    50%      { transform: translateY(-20px) scale(1.1); opacity: .12; }
}


/* ═══════════════════════════════════════════════
   BRANDS PAGE — Listing
   ═══════════════════════════════════════════════ */

.page-brands .header,
.page-about .header,
.page-contacts .header,
.page-brand-detail .header,
.page-catalog .header,
.page-catalog-category .header,
.page-catalog-subcategory .header,
.page-product-detail .header {
    position: absolute;
    top: var(--topbar-h);
    background: transparent;
}

.bp-hero {
    position: relative;
    background: var(--primary);
    padding: 80px 0 60px;
    overflow: hidden;
    color: var(--white);
}
.page-brands .bp-hero {
    padding: calc(var(--topbar-h) + var(--header-h) + 80px) 0 60px;
    background: linear-gradient(135deg, #004d56 0%, var(--primary) 60%, #004c48 100%);
}
.page-brands .bp-hero__overlay {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
    opacity: 1;
}
.bp-hero__overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(0,0,0,.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.08) 0%, transparent 40%);
}
.bp-hero__inner { position: relative; z-index: 2; text-align: center; }

.bp-hero__badge {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    padding: 8px 20px; border-radius: 40px; margin-bottom: 28px;
    animation: bpFadeUp .8s ease both;
}
.bp-hero__title {
    font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.1;
    margin-bottom: 20px;
    animation: bpFadeUp .8s .1s ease both;
}
.bp-hero__title span { font-weight: 300; }
.bp-hero__sub {
    font-size: 16px; line-height: 1.7; opacity: .85; max-width: 640px; margin: 0 auto 40px;
    animation: bpFadeUp .8s .2s ease both;
}
.bp-hero__trust {
    display: inline-flex; align-items: center; gap: 32px;
    background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
    padding: 20px 40px;
    animation: bpFadeUp .8s .3s ease both;
}
.bp-hero__trust-sep { width: 1px; height: 36px; background: rgba(255,255,255,.2); }
.bp-hero__trust-num { display: block; font-size: 28px; font-weight: 800; line-height: 1.2; }
.bp-hero__trust-label { font-size: 12px; opacity: .7; text-transform: uppercase; letter-spacing: .5px; }

/* Status cards */
.bp-status { padding: 64px 0; background: #f7f8fa; }
.bp-status__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bp-status__card {
    background: var(--white); border-radius: 16px; padding: 32px 24px;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .35s ease;
}
.bp-status__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,171,188,.1);
    border-color: rgba(0,171,188,.15);
}
.bp-status__card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(0,171,188,.08); display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.bp-status__card-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.bp-status__card-text { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* Brand list */
.bp-list { padding: 72px 0 80px; }
.bp-list__header { text-align: center; margin-bottom: 48px; }
.bp-list__title { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.bp-list__sub { font-size: 14px; color: var(--muted); }
.bp-list__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.bp-card {
    display: flex; flex-direction: column;
    background: var(--white); border-radius: 20px; overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    text-decoration: none; color: inherit;
    transition: all .4s cubic-bezier(.4,0,.2,1);
    position: relative;
}
.bp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
    border-color: var(--brand-color, var(--primary));
}

.bp-card__logo-wrap {
    padding: 36px 32px; background: #f9fafb;
    display: flex; align-items: center; justify-content: center;
    min-height: 120px;
    border-bottom: 1px solid rgba(0,0,0,.04);
    transition: background .4s ease;
}
.bp-card:hover .bp-card__logo-wrap { background: #f4f6f7; }
.bp-card__logo { max-height: 56px; max-width: 180px; object-fit: contain; }

.bp-card__body { padding: 24px 28px 16px; flex: 1; }
.bp-card__name { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.bp-card__tagline { font-size: 13px; color: var(--primary); font-weight: 500; margin-bottom: 12px; }
.bp-card__meta {
    display: flex; align-items: center; gap: 6px;
    font-size: 12px; color: var(--muted); margin-bottom: 12px;
}
.bp-card__meta svg { flex-shrink: 0; }
.bp-card__meta span { opacity: .7; }
.bp-card__desc { font-size: 13px; line-height: 1.6; color: #666; }

.bp-card__subs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.bp-card__sub {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    color: #555;
    background: #f3f4f6;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.bp-card__sub:hover {
    background: var(--primary);
    color: #fff;
}

.bp-card__footer {
    display: none;
}
.bp-card__link { font-size: 13px; font-weight: 600; color: var(--primary); }
.bp-card__footer svg { color: var(--primary); transition: transform .3s ease; }
.bp-card:hover .bp-card__footer svg { transform: translateX(4px); }

.bp-card__accent {
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--brand-color, var(--primary));
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.bp-card:hover .bp-card__accent { transform: scaleX(1); }

/* CTA */
.bp-cta { padding: 0 0 80px; }
.bp-cta__inner {
    background: var(--primary); border-radius: 24px;
    padding: 48px 56px; display: flex; align-items: center; justify-content: space-between;
    gap: 32px; color: var(--white);
}
.bp-cta__title { font-size: 24px; font-weight: 700; margin-bottom: 8px; }
.bp-cta__text { font-size: 14px; opacity: .8; }
.bp-cta__actions { display: flex; gap: 12px; flex-shrink: 0; }
.bp-cta__btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; padding: 14px 24px; border-radius: 10px;
    text-decoration: none; transition: all .3s ease;
}
.bp-cta__btn--primary { background: var(--white); color: var(--primary); }
.bp-cta__btn--primary:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }
.bp-cta__btn--outline { border: 1.5px solid rgba(255,255,255,.4); color: var(--white); }
.bp-cta__btn--outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }


/* ═══════════════════════════════════════════════
   BRAND DETAIL PAGE
   ═══════════════════════════════════════════════ */

.bd-hero {
    position: relative; min-height: 440px; display: flex; align-items: flex-end;
    padding: 0 0 48px; overflow: hidden; color: var(--white);
    background: var(--bc, var(--primary));
}
.bd-hero--compact {
    min-height: auto;
    align-items: flex-start;
    padding: calc(var(--topbar-h) + var(--header-h) + 24px) 0 40px;
    background: linear-gradient(135deg, #004d56 0%, var(--primary) 60%, #004c48 100%);
}
.bd-hero--compact .bd-hero__overlay {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
}
.bd-hero--compact .bd-breadcrumb { margin-bottom: 20px; }
.bd-hero--compact .bd-hero__content { margin-bottom: 0; }
.bd-hero--compact .bd-hero__title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 10px;
}
.bd-hero__bg { position: absolute; inset: 0; }
.bd-hero__bg-img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.bd-hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,.2) 50%, transparent 100%);
}
.bd-hero__inner { position: relative; z-index: 2; width: 100%; }

.bd-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; opacity: .7; margin-bottom: 32px;
}
.bd-breadcrumb a { color: var(--white); text-decoration: none; }
.bd-breadcrumb a:hover { opacity: .8; }
.bd-breadcrumb__current { font-weight: 600; opacity: 1; }

.bd-hero__content {
    display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
    margin-bottom: 32px;
}
.bd-hero__info { flex: 1; }

.bd-hero__badge {
    display: inline-block; font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
    padding: 6px 16px; border-radius: 40px; margin-bottom: 16px;
}
.bd-hero__title {
    font-size: clamp(36px, 6vw, 56px); font-weight: 800; line-height: 1.05;
    margin-bottom: 12px;
}
.bd-hero__tagline { font-size: 18px; opacity: .8; margin-bottom: 20px; font-weight: 300; }
.bd-hero__meta { display: flex; flex-wrap: wrap; gap: 20px; }
.bd-hero__meta-item {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; opacity: .75;
}
.bd-hero__meta-link { text-decoration: none; color: var(--white); }
.bd-hero__meta-link:hover { opacity: 1; }

.bd-hero__logo-wrap {
    flex-shrink: 0; width: 180px; height: 100px;
    background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.bd-hero__logo { max-width: 100%; max-height: 100%; object-fit: contain;
}

.bd-hero__stats {
    display: flex; gap: 40px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.bd-hero__stat-num { display: block; font-size: 32px; font-weight: 800; line-height: 1.2; }
.bd-hero__stat-label { font-size: 12px; opacity: .7; text-transform: uppercase; letter-spacing: .5px; }

/* About brand */
.bd-about { padding: 80px 0; }
.bd-about__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.bd-about__label {
    font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
    color: var(--primary); margin-bottom: 12px;
}
.bd-about__title { font-size: 36px; font-weight: 800; color: var(--dark); line-height: 1.15; }
.bd-about__lead {
    margin-top: 20px; font-size: 16px; line-height: 1.7; color: #555;
    padding-left: 20px; border-left: 3px solid var(--primary);
}
.bd-about__text { font-size: 15px; line-height: 1.8; color: #444; }
.bd-about__text p { margin-bottom: 16px; }
.bd-about__text p:last-child { margin-bottom: 0; }

/* Features */
.bd-features { padding: 72px 0; background: #f7f8fa; }
.bd-features__header { text-align: center; margin-bottom: 48px; }
.bd-features__title { font-size: 28px; font-weight: 700; color: var(--dark); }
.bd-features__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.bd-features__card {
    background: var(--white); border-radius: 16px; padding: 28px 24px;
    border: 1px solid rgba(0,0,0,.05);
    transition: all .35s ease;
}
.bd-features__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
}
.bd-features__icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(0,171,188,.08); display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; color: var(--bc, var(--primary));
}
.bd-features__card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.bd-features__card-text { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* Gallery */
.bd-gallery { padding: 72px 0; }
.bd-gallery__title { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 32px; }
.bd-gallery__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.bd-gallery__item {
    border-radius: 12px; overflow: hidden; aspect-ratio: 4/3;
    background: #f0f0f0;
}
.bd-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
}
.bd-gallery__item:hover img { transform: scale(1.05); }

/* Brand catalog */
.bd-catalog { padding: 64px 0 80px; }
.bd-catalog__head { margin-bottom: 40px; }
.bd-catalog__title {
    font-size: 28px; font-weight: 700; color: var(--dark);
    margin-bottom: 20px;
}
.bd-catalog__title span { color: var(--primary); }
.bd-catalog__nav {
    display: flex; flex-wrap: wrap; gap: 8px;
}
.bd-catalog__nav-item {
    display: inline-block; padding: 7px 18px;
    border-radius: 999px; font-size: 13px; font-weight: 500;
    color: #555; background: #f3f4f6; text-decoration: none;
    transition: background .2s, color .2s;
}
.bd-catalog__nav-item:hover {
    background: var(--primary); color: #fff;
}
.bd-catalog__section { margin-bottom: 56px; }
.bd-catalog__section:last-child { margin-bottom: 0; }
.bd-catalog__section-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; margin-bottom: 24px;
    padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,.07);
}
.bd-catalog__section-title {
    font-size: 20px; font-weight: 600; color: var(--dark);
    margin: 0;
}
.bd-catalog__section-link {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: var(--primary);
    text-decoration: none; white-space: nowrap;
    transition: opacity .2s;
}
.bd-catalog__section-link:hover { opacity: .7; }
.bd-catalog__section-link svg { transition: transform .2s; }
.bd-catalog__section-link:hover svg { transform: translateX(3px); }

@media (max-width: 768px) {
    .bd-catalog { padding: 40px 0 56px; }
    .bd-catalog__title { font-size: 22px; }
    .bd-catalog__nav { gap: 6px; }
    .bd-catalog__section-head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Other brands */
.bd-other { padding: 0 0 80px; }
.bd-other__title { font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 32px; }
.bd-other__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 32px; }
.bd-other__card {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: #f9fafb; border-radius: 14px; padding: 28px 16px;
    text-decoration: none; border: 1px solid rgba(0,0,0,.05);
    transition: all .3s ease; min-height: 90px;
}
.bd-other__card:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    border-color: var(--primary);
    transform: translateY(-3px);
}
.bd-other__logo { height: 40px; display: flex; align-items: center; }
.bd-other__logo img { max-height: 100%; max-width: 100px; object-fit: contain; }
.bd-other__name { font-size: 13px; font-weight: 600; color: var(--dark); }
.bd-other__all { text-align: center; }
.bd-other__btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--primary);
    padding: 12px 28px; border: 1.5px solid var(--primary);
    border-radius: 10px; text-decoration: none;
    transition: all .3s ease;
}
.bd-other__btn:hover { background: var(--primary); color: var(--white); }

@keyframes bpFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ═══════════════════════════════════════════════
   CATALOG PAGE — Main Listing
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   CATALOG — Shared Layout
   ═══════════════════════════════════════════════ */

.cp-hero {
    position: relative;
    background: #00ABBC;
    padding: 48px 0 40px;
    color: var(--white);
    overflow: hidden;
}
.cp-hero__overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,.1) 0%, transparent 60%);
}
.cp-hero__inner { position: relative; z-index: 2; }
.cp-hero__title {
    font-size: clamp(26px, 4vw, 36px); font-weight: 800; line-height: 1.15;
    margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px;
}
.cp-hero__title span { font-weight: 300; opacity: .85; }
.cp-hero__title--sm { font-size: clamp(22px, 3.5vw, 30px); }
.cp-hero__count {
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 700; min-width: 28px; height: 28px;
    background: rgba(255,255,255,.2); border-radius: 8px; padding: 0 8px;
    vertical-align: middle; margin-left: 8px;
}
.cp-hero__sub {
    font-size: 14px; line-height: 1.6; opacity: .75; max-width: 540px;
}
.cp-hero--compact { padding: 36px 0 28px; }

.page-search .cp-hero { padding: calc(var(--topbar-h) + var(--header-h) + 24px) 0 40px; }
/* Контакты: шапка прозрачная над hero — отступ только под topbar+header; градиент как на Сервисе */
.page-contacts .cp-hero {
    padding-top: calc(var(--topbar-h) + var(--header-h));
    background: linear-gradient(135deg, #004d56 0%, var(--primary) 60%, #004c48 100%);
}
.page-contacts .cp-hero__overlay {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
    opacity: 1;
}
.page-catalog .cp-hero,
.page-catalog-category .cp-hero,
.page-catalog-subcategory .cp-hero,
.page-product-detail .cp-hero,
.page-parts-and-lubricants .cp-hero,
.page-attachments .cp-hero,
.page-attachments-category .cp-hero,
.page-attachments-subcategory .cp-hero,
.page-attachment-detail .cp-hero,
.page-spare-parts .cp-hero,
.page-spare-parts-category .cp-hero,
.page-spare-parts-subcategory .cp-hero,
.page-spare-part-detail .cp-hero,
.page-lubricants .cp-hero,
.page-lubricants-category .cp-hero,
.page-lubricants-subcategory .cp-hero,
.page-lubricant-detail .cp-hero,
.page-lubricant-variant .cp-hero {
    padding-top: calc(var(--topbar-h) + var(--header-h));
    background: linear-gradient(135deg, #004d56 0%, var(--primary) 60%, #004c48 100%);
}
.page-catalog .cp-hero__overlay,
.page-catalog-category .cp-hero__overlay,
.page-catalog-subcategory .cp-hero__overlay,
.page-product-detail .cp-hero__overlay,
.page-parts-and-lubricants .cp-hero__overlay,
.page-attachments .cp-hero__overlay,
.page-attachments-category .cp-hero__overlay,
.page-attachments-subcategory .cp-hero__overlay,
.page-attachment-detail .cp-hero__overlay,
.page-spare-parts .cp-hero__overlay,
.page-spare-parts-category .cp-hero__overlay,
.page-spare-parts-subcategory .cp-hero__overlay,
.page-spare-part-detail .cp-hero__overlay,
.page-lubricants .cp-hero__overlay,
.page-lubricants-category .cp-hero__overlay,
.page-lubricants-subcategory .cp-hero__overlay,
.page-lubricant-detail .cp-hero__overlay,
.page-lubricant-variant .cp-hero__overlay {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
    opacity: 1;
}
.page-search .cp-hero--compact { padding: calc(var(--topbar-h) + var(--header-h) + 16px) 0 28px; }

.cc-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; margin-bottom: 16px; flex-wrap: wrap;
}
.cc-breadcrumb a { color: var(--muted); text-decoration: none; transition: opacity .2s; }
.cc-breadcrumb a:hover { opacity: .7; }
.cc-breadcrumb__current { font-weight: 600; color: var(--white); }
.cc-breadcrumb.cc-breadcrumb--light,
.cc-breadcrumb.cc-breadcrumb--light a,
.cc-breadcrumb.cc-breadcrumb--light span,
.cc-breadcrumb.cc-breadcrumb--light .cc-breadcrumb__current { color: #fff !important; opacity: 1 !important; }
.cc-breadcrumb.cc-breadcrumb--light a:hover { text-decoration: underline; }

/* Sidebar + Main layout */
.cl-wrap { padding: 32px 0 56px; }
.cl-layout { display: flex; gap: 32px; align-items: flex-start; }

.cl-sidebar {
    width: 260px; flex-shrink: 0; position: sticky; top: 24px;
    align-self: flex-start;
}
.cl-sidebar__card {
    background: var(--white); border: 1px solid rgba(0,0,0,.06);
    border-radius: 14px; overflow: hidden;
}
.cl-sidebar__title {
    display: flex; align-items: center; gap: 10px;
    padding: 18px 20px; font-size: 14px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; color: var(--dark);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.cl-sidebar__nav { padding: 8px 0; }
.cl-sidebar__group {}
.cl-sidebar__item {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 11px 20px; font-size: 14px; font-weight: 500;
    color: var(--dark); text-decoration: none; transition: all .2s;
    border-left: 3px solid transparent;
}
.cl-sidebar__item-main {
    display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1;
}
.cl-sidebar__item-icon {
    flex-shrink: 0;
    width: 22px; height: 22px;
    display: flex; align-items: center; justify-content: center;
}
.cl-sidebar__item-icon img {
    width: 22px; height: 22px; object-fit: contain; display: block;
}
.cl-sidebar__item-label { min-width: 0; }
.cl-sidebar__item-chevron { flex-shrink: 0; opacity: .45; }
.cl-sidebar__item:hover .cl-sidebar__item-chevron { opacity: .85; }
.cl-sidebar__item:hover { background: #f7f8fa; color: var(--primary); }
.cl-sidebar__item.is-active {
    color: var(--primary); font-weight: 600;
    background: rgba(0,171,188,.04);
    border-left-color: var(--primary);
}
.cl-sidebar__item.is-active .cl-sidebar__item-chevron { transform: rotate(90deg); opacity: 1; }
.cl-sidebar__subs { padding: 0 0 8px; }
.cl-sidebar__sub {
    display: block; padding: 8px 20px 8px 36px;
    font-size: 13px; color: var(--muted); text-decoration: none;
    transition: all .2s; border-left: 3px solid transparent;
}
.cl-sidebar__sub:hover { color: var(--primary); background: #f7f8fa; }
.cl-sidebar__sub.is-active {
    color: var(--primary); font-weight: 600;
    border-left-color: var(--primary); background: rgba(0,171,188,.04);
}

/* Hub-страница /parts-and-lubricants — секции */
.pl-hub__section { margin-bottom: 36px; }
.pl-hub__section:last-child { margin-bottom: 24px; }
.pl-hub__section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 16px; gap: 12px; flex-wrap: wrap;
}
.pl-hub__section-title {
    margin: 0; font-size: 22px; font-weight: 700; color: var(--dark);
    letter-spacing: -.2px;
    display: inline-flex; align-items: center; gap: 12px;
}
.pl-hub__section-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--primary);
}
.pl-hub__section-icon img { width: 32px; height: 32px; object-fit: contain; display: block; }
.pl-hub__section-title a {
    color: inherit; text-decoration: none; transition: color .2s;
}
.pl-hub__section-title a:hover { color: var(--primary); }
.pl-hub__section-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); text-decoration: none; font-size: 13px; font-weight: 600;
    transition: opacity .2s;
}
.pl-hub__section-link:hover { opacity: .75; }
.pl-hub__section-link svg { transition: transform .2s; }
.pl-hub__section-link:hover svg { transform: translateX(2px); }
.pl-hub__empty {
    padding: 40px 24px; text-align: center; color: var(--muted);
    background: #f7f8fa; border-radius: 12px; font-size: 14px;
    border: 1px dashed rgba(0,0,0,.08);
}

/* Трёхуровневый sidebar для разделов "Запчасти / Навесное оборудование / Масла" */
.cl-sidebar__item--lvl2 {
    padding-left: 32px;
    font-size: 13px;
}
.cl-sidebar__item--lvl2 .cl-sidebar__item-icon,
.cl-sidebar__item--lvl2 .cl-sidebar__item-icon img {
    width: 20px;
    height: 20px;
}
.cl-sidebar__subs--lvl3 {
    padding: 4px 0 8px;
}
.cl-sidebar__subs--lvl3 .cl-sidebar__sub {
    padding-left: 56px;
    font-size: 12.5px;
}

.cl-sidebar__banner {
    margin-top: 16px; border-radius: 14px; overflow: hidden;
}
.cl-sidebar__banner a { display: block; line-height: 0; }
.cl-sidebar__banner img {
    width: 100%; height: auto; display: block;
    border-radius: 14px;
    transition: transform .3s ease;
}
.cl-sidebar__banner a:hover img {
    transform: scale(1.03);
}

.cl-main { flex: 1; min-width: 0; }
.cl-section-title {
    font-size: 20px; font-weight: 700; color: var(--dark);
    margin: 32px 0 20px;
}

/* Category grid (in main area) */
.cp-cats__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.cp-cat {
    display: flex; flex-direction: column;
    background: var(--white); border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    text-decoration: none; color: inherit;
    transition: all .35s cubic-bezier(.4,0,.2,1);
}
.cp-cat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,.07);
    border-color: rgba(0,171,188,.2);
}
.cp-cat__img {
    height: 130px; background: #f4f5f7; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.cp-cat__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cp-cat:hover .cp-cat__img img { transform: scale(1.06); }
.cp-cat__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }
.cp-cat__body { padding: 16px 18px 14px; flex: 1; }
.cp-cat__name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; text-transform: uppercase; letter-spacing: .3px; }
.cp-cat__subs { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; }
.cp-cat__subs li {
    font-size: 11px; color: var(--muted);
    background: #f4f5f7; padding: 3px 8px; border-radius: 4px;
    transition: all .25s ease;
}
.cp-cat:hover .cp-cat__subs li { background: rgba(0,171,188,.06); color: #555; }
.cp-cat__subs-more { color: var(--primary) !important; font-weight: 600; background: rgba(0,171,188,.08) !important; }

/* Brands tiles grid */
.cp-brands { margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(0,0,0,.06); }
.cp-brands__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cp-brands__title { font-size: 20px; font-weight: 700; color: var(--dark); }
.cp-brands__link { font-size: 13px; font-weight: 600; color: var(--primary); text-decoration: none; }
.cp-brands__link:hover { opacity: .8; }
.cp-brands__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px;
}
.cp-brands__item {
    height: 72px; padding: 16px;
    background: #f7f8fa; border-radius: 12px; border: 1px solid rgba(0,0,0,.05);
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: all .3s ease;
}
.cp-brands__item img { max-height: 32px; max-width: 100px; object-fit: contain; }
.cp-brands__item span { font-size: 13px; font-weight: 600; color: var(--dark); }
.cp-brands__item:hover {
    background: var(--white); border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(0,171,188,.08);
    transform: translateY(-2px);
}

/* Subcategory tiles (in category page main area) */
.cc-subtiles {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
    margin-bottom: 8px;
}
.cc-subtile {
    display: flex; align-items: center; gap: 14px;
    background: var(--white); border: 1px solid rgba(0,0,0,.06); border-radius: 12px;
    padding: 16px 18px; text-decoration: none; color: inherit;
    transition: all .3s ease;
}
.cc-subtile:hover {
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(0,171,188,.08);
    transform: translateY(-2px);
}
.cc-subtile__icon {
    width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px;
    background: rgba(0,171,188,.06); display: flex; align-items: center; justify-content: center;
    color: var(--primary); transition: all .3s ease;
}
.cc-subtile:hover .cc-subtile__icon { background: var(--primary); color: var(--white); }
.cc-subtile__icon img { transition: filter .3s ease; }
.cc-subtile:hover .cc-subtile__icon img { filter: brightness(0) invert(1); }
.cc-subtile__name { font-size: 13px; font-weight: 600; color: var(--dark); }

.pl-filter {
    background: #fff;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.pl-filter__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.pl-filter__field { display: block; }
.pl-filter__label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
}
.pl-filter-dd {
    position: relative;
    z-index: 2;
}
.pl-filter-dd.is-open {
    z-index: 20;
}
.pl-filter-dd__toggle {
    width: 100%;
    height: 42px;
    border: 1px solid #dfe5ea;
    border-radius: 9px;
    background: #fff;
    color: var(--dark);
    padding: 0 12px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.pl-filter-dd__toggle span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.pl-filter-dd__toggle svg {
    flex-shrink: 0;
    color: var(--primary);
    transition: transform .2s ease;
}
.pl-filter-dd.is-open .pl-filter-dd__toggle {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 173, 181, .12);
}
.pl-filter-dd.is-open .pl-filter-dd__toggle svg {
    transform: rotate(180deg);
}
.pl-filter-dd__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    max-height: 240px;
    overflow-y: auto;
    padding: 6px;
    border: 1px solid #e6edf2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.pl-filter-dd.is-open .pl-filter-dd__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.pl-filter-dd__option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 36px;
    padding: 8px 10px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--dark);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}
.pl-filter-dd__option:hover {
    background: rgba(0, 173, 181, .08);
    color: var(--primary);
}
.pl-filter-dd__option.is-selected {
    background: var(--primary);
    color: #fff;
}
.pl-filter__actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.pl-filter__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 20px;
    border-radius: 9px;
    border: 1px solid var(--primary);
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}
.pl-filter__btn--ghost {
    background: #fff;
    color: var(--primary);
}

/* Product cards (shared) */
.cc-products__grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 16px;
}
.cc-prod {
    display: flex; flex-direction: column;
    background: var(--white); border-radius: 14px; overflow: hidden;
    border: 1px solid rgba(0,0,0,.06); transition: all .35s ease;
    text-decoration: none; color: inherit;
}
.cc-prod:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0,0,0,.07);
    border-color: rgba(0,171,188,.15);
}
.cc-prod__img {
    height: 200px; background: #f4f5f7; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.cc-prod__img > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cc-prod:hover .cc-prod__img > img { transform: scale(1.05); }
.page-lubricants .cc-prod__img,
.page-lubricants-category .cc-prod__img,
.page-lubricants-subcategory .cc-prod__img,
.page-lubricant-detail .cc-prod__img,
.page-lubricant-variant .cc-prod__img,
.page-lubricant-direct-variant .cc-prod__img {
    background: #fff;
    padding: 16px;
}
.page-lubricants .cc-prod__img > img,
.page-lubricants-category .cc-prod__img > img,
.page-lubricants-subcategory .cc-prod__img > img,
.page-lubricant-detail .cc-prod__img > img,
.page-lubricant-variant .cc-prod__img > img,
.page-lubricant-direct-variant .cc-prod__img > img {
    object-fit: contain;
}
.page-lubricants .cc-prod:hover .cc-prod__img > img,
.page-lubricants-category .cc-prod:hover .cc-prod__img > img,
.page-lubricants-subcategory .cc-prod:hover .cc-prod__img > img,
.page-lubricant-detail .cc-prod:hover .cc-prod__img > img,
.page-lubricant-variant .cc-prod:hover .cc-prod__img > img,
.page-lubricant-direct-variant .cc-prod:hover .cc-prod__img > img {
    transform: scale(1.03);
}
.cc-prod__placeholder { display: flex; align-items: center; justify-content: center; height: 100%; }
.cc-prod__brand-label {
    position: absolute; top: 10px; right: 10px;
    background: rgba(255,255,255,.9); border-radius: 8px; padding: 6px 10px;
    backdrop-filter: blur(4px); z-index: 2;
}
.cc-prod__brand-label img { height: 20px; object-fit: contain; display: block; }
/* Водяной знак (watermark.svg); список ID / флаг — layouts/default.htm */
.cc-prod__img--watermark::after,
.pd-gallery__main--watermark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/watermark.svg') no-repeat center center;
    background-size: min(68%, 420px) auto;
    pointer-events: none;
    z-index: 1;
}
.cc-prod__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.cc-prod__cat {
    font-size: 12px; font-weight: 600; color: var(--primary);
    text-transform: uppercase; letter-spacing: .3px; margin-bottom: 4px;
}
.cc-prod__name { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.cc-prod__specs {
    display: flex; flex-direction: column; gap: 0; margin-bottom: 16px;
    border-top: 1px solid rgba(0,0,0,.06);
}
.cc-prod__spec {
    display: flex; flex-direction: column; gap: 2px;
    padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.06);
}
.cc-prod__spec-lbl {
    font-size: 11px; color: var(--muted); font-weight: 500;
}
.cc-prod__spec-val {
    font-size: 12px; font-weight: 700; color: var(--dark);
}
.cc-prod__sku {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 10px 0 12px;
}
.cc-prod__sku span {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(0, 173, 181, .08);
    color: var(--primary);
    font-size: 11px;
    font-weight: 800;
}
.cc-prod__more {
    margin-top: auto; display: inline-block;
    font-size: 13px; font-weight: 600; color: var(--dark);
    padding: 9px 20px; border: 1px solid rgba(0,0,0,.1); border-radius: 8px;
    transition: all .25s; text-align: center;
}
.cc-prod:hover .cc-prod__more { border-color: var(--primary); color: var(--primary); }

/* Subcategory tabs */
.cs-tabs__row {
    display: flex; gap: 4px; overflow-x: auto; padding: 0 0 20px;
    scrollbar-width: thin; margin-bottom: 4px;
}
.cs-tabs__tab {
    flex-shrink: 0; font-size: 13px; font-weight: 500;
    padding: 9px 18px; border-radius: 8px;
    text-decoration: none; color: var(--muted); white-space: nowrap;
    transition: all .25s ease; border: 1px solid rgba(0,0,0,.06);
    background: var(--white);
}
.cs-tabs__tab:hover { color: var(--dark); border-color: rgba(0,0,0,.12); }
.cs-tabs__tab.is-active {
    background: var(--primary); border-color: var(--primary);
    color: var(--white); font-weight: 600;
}

/* Toolbar */
.cl-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 20px; padding-bottom: 16px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.cl-toolbar__count { font-size: 14px; color: var(--muted); }
.cl-toolbar__count strong { color: var(--dark); }

/* ═══ Top-bar filter (horizontal above products) ═══ */
.topbar-filter {
    margin-bottom: 28px;
    padding: 0 0 20px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.topbar-filter__title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    margin: 0 0 12px;
}
.topbar-filter__row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.topbar-filter__drop--extra {
    display: none;
}
.topbar-filter.is-expanded .topbar-filter__drop--extra {
    display: block;
}

.topbar-filter__toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: var(--primary);
    background: transparent;
    border: 1px dashed rgba(0,171,188,.35);
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
}
.topbar-filter__toggle:hover {
    background: rgba(0,171,188,.06);
    border-color: var(--primary);
}
.topbar-filter__toggle svg {
    transition: transform .25s;
}
.topbar-filter.is-expanded .topbar-filter__toggle svg {
    transform: rotate(180deg);
}
.topbar-filter__toggle-hide {
    display: none;
}
.topbar-filter.is-expanded .topbar-filter__toggle-show {
    display: none;
}
.topbar-filter.is-expanded .topbar-filter__toggle-hide {
    display: inline;
}

.topbar-filter__drop {
    position: relative;
}

.topbar-filter__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    font-family: var(--font);
    color: var(--text);
    background: #f5f6f8;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, border-color .2s;
    white-space: nowrap;
}
.topbar-filter__btn:hover {
    background: #eef0f3;
}
.topbar-filter__drop.is-open .topbar-filter__btn {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
}
.topbar-filter__btn svg {
    transition: transform .25s;
    flex-shrink: 0;
}
.topbar-filter__drop.is-open .topbar-filter__btn svg {
    transform: rotate(180deg);
}

.topbar-filter__panel {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 200px;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0,0,0,.12);
    padding: 10px 0;
    z-index: 20;
    display: none;
}
.topbar-filter__drop.is-open .topbar-filter__panel {
    display: block;
}

.topbar-filter__opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    transition: background .15s;
    white-space: nowrap;
}
.topbar-filter__opt:hover {
    background: #f5f7fa;
}

.topbar-filter__opt input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid rgba(0,0,0,.18);
    appearance: none;
    cursor: pointer;
    transition: all .15s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.topbar-filter__opt input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}
.topbar-filter__opt input[type="checkbox"]:checked::after {
    content: '✓';
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.topbar-filter__reset {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    color: #e53e3e;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s;
    margin-left: 4px;
}
.topbar-filter__reset:hover {
    background: #fee2e2;
}

@media (max-width: 768px) {
    .topbar-filter__row {
        gap: 6px;
    }
    .topbar-filter__btn {
        padding: 7px 12px;
        font-size: 12px;
    }
    .topbar-filter__panel {
        min-width: 180px;
    }
}

/* No results */
.cl-no-results {
    text-align: center; padding: 56px 24px;
    background: #f9fafb; border-radius: 16px;
}
.cl-no-results p { font-size: 15px; color: var(--muted); margin: 16px 0; }
.cl-no-results__btn {
    display: inline-block; font-size: 13px; font-weight: 600;
    color: var(--primary); background: rgba(0,171,188,.08);
    padding: 10px 24px; border-radius: 8px; border: none;
    cursor: pointer; transition: all .2s;
}
.cl-no-results__btn:hover { background: rgba(0,171,188,.15); }

/* Empty state */
.cs-empty {
    text-align: center; padding: 56px 24px;
    background: #f9fafb; border-radius: 16px; border: 2px dashed rgba(0,0,0,.08);
}
.cs-empty__icon { margin-bottom: 16px; }
.cs-empty__title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.cs-empty__text { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.cs-empty__btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600; color: var(--white);
    background: var(--primary); padding: 12px 24px; border-radius: 10px;
    text-decoration: none; transition: all .3s ease;
}
.cs-empty__btn:hover { background: var(--primary-light); transform: translateY(-2px); }


/* ═══════════════════════════════════════════════
   PRODUCT DETAIL
   ═══════════════════════════════════════════════ */

.pd-top {
    display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    margin-bottom: 40px; align-items: start;
}

/* Иначе grid-item с min-width:auto не сужается ниже intrinsic width широкого img — колонка раздувает вёрстку */
.pd-gallery,
.pd-info {
    min-width: 0;
}

.pd-gallery__main {
    width: 100%; max-width: 100%; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden;
    background: #f4f5f7; display: flex; align-items: center; justify-content: center;
}
.pd-gallery__main img {
    display: block;
    max-width: 100%;
    width: 100%; height: 100%; object-fit: cover; transition: opacity .3s;
}
.page-lubricant-detail .pd-gallery__main,
.page-lubricant-variant .pd-gallery__main,
.page-lubricant-direct-variant .pd-gallery__main {
    background: #fff;
    padding: 18px;
}
.page-lubricant-detail .pd-gallery__main img,
.page-lubricant-variant .pd-gallery__main img,
.page-lubricant-direct-variant .pd-gallery__main img {
    object-fit: contain;
}
.pd-gallery__placeholder {
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%;
}
.pd-gallery__thumbs {
    display: flex; gap: 8px; margin-top: 12px; overflow-x: auto;
    padding-bottom: 4px; scrollbar-width: thin;
}
.pd-gallery__thumb {
    flex-shrink: 0; width: 72px; height: 56px; border-radius: 8px;
    overflow: hidden; border: 2px solid transparent; cursor: pointer;
    background: #f4f5f7; transition: border-color .2s;
    padding: 0; display: flex; align-items: center; justify-content: center;
}
.pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.page-lubricant-detail .pd-gallery__thumb,
.page-lubricant-variant .pd-gallery__thumb,
.page-lubricant-direct-variant .pd-gallery__thumb {
    background: #fff;
    padding: 4px;
}
.page-lubricant-detail .pd-gallery__thumb img,
.page-lubricant-variant .pd-gallery__thumb img,
.page-lubricant-direct-variant .pd-gallery__thumb img {
    object-fit: contain;
}
.pd-gallery__thumb:hover { border-color: rgba(0,171,188,.4); }
.pd-gallery__thumb.is-active { border-color: var(--primary); }

.pd-gallery__main { position: relative; }
.pd-gallery__brand {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: rgba(255,255,255,.92); border-radius: 8px; padding: 8px 12px;
    backdrop-filter: blur(4px);
}
.pd-gallery__brand img { height: 22px; object-fit: contain; display: block; }

.pd-info { display: flex; flex-direction: column; }
.pd-info__cat {
    font-size: 13px; font-weight: 600; color: var(--primary);
    text-transform: uppercase; letter-spacing: .3px; margin-bottom: 6px;
}
.pd-info__name {
    font-size: 26px; font-weight: 800; color: var(--dark);
    line-height: 1.2; margin-bottom: 12px;
}
.pd-sku {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: -2px 0 14px;
    font-size: 13px;
}
.pd-sku__label {
    color: var(--muted);
    font-weight: 600;
}
.pd-sku__value {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--dark);
    font-weight: 800;
}
.pd-sku__value span {
    display: inline-flex;
}
.pd-info__desc {
    font-size: 14px; line-height: 1.7; color: var(--muted);
    margin-bottom: 20px;
}
.pd-offers {
    margin-bottom: 22px;
    padding: 16px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 16px;
    background: #fff;
}
.pd-offers__title {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-bottom: 12px;
}
.pd-offers__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pd-offer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(0, 173, 181, .08);
    color: var(--dark);
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}
.pd-offer:hover,
.pd-offer.is-active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}
.pd-offer__pack {
    font-size: 14px;
    font-weight: 800;
}
.pd-offer__sku {
    font-size: 12px;
    color: var(--muted);
}
.pd-offer:hover .pd-offer__sku,
.pd-offer.is-active .pd-offer__sku {
    color: rgba(255,255,255,.8);
}
.pd-info__keyspecs {
    display: flex; flex-direction: column; gap: 0;
    margin-bottom: 24px;
}
.pd-keyspec {
    display: flex; align-items: baseline; justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.pd-keyspec:first-child { border-top: 1px solid rgba(0,0,0,.06); }
.pd-keyspec__label {
    font-size: 13px; color: var(--muted);
}
.pd-keyspec__value {
    font-size: 15px; font-weight: 700; color: var(--dark); text-align: right;
}
.pd-info__actions { display: flex; gap: 12px; }
.pd-purchase {
    display: flex; flex-direction: column; gap: 0; margin-top: 20px;
}
.pd-purchase__item {
    display: block; padding: 10px 0;
    font-size: 14px; color: var(--dark); text-decoration: none;
    border-bottom: 1px dashed rgba(0,0,0,.15);
    transition: color .2s;
}
.pd-purchase__item:hover { color: var(--primary); }

.pd-btn {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; padding: 14px 28px;
    border-radius: 10px; text-decoration: none; transition: all .3s ease;
    white-space: nowrap; border: none; cursor: pointer;
}
.pd-btn svg {
    flex-shrink: 0;
    overflow: visible;
}
.pd-btn--primary {
    background: var(--primary); color: var(--white);
}
.pd-btn--primary:hover {
    background: var(--primary-light); transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,171,188,.25);
}
.pd-btn--outline {
    background: var(--white); color: var(--dark);
    border: 1px solid rgba(0,0,0,.1);
}
.pd-btn--outline:hover {
    border-color: var(--primary); color: var(--primary);
    transform: translateY(-2px);
}

/* Tabs */
.pd-tabs { margin-bottom: 40px; }
.pd-tabs__nav {
    display: flex; gap: 4px; border-bottom: 2px solid rgba(0,0,0,.06);
    margin-bottom: 0;
}
.pd-tabs__btn {
    padding: 14px 24px; font-size: 14px; font-weight: 600;
    color: var(--muted); background: none; border: none;
    cursor: pointer; border-bottom: 2px solid transparent;
    margin-bottom: -2px; transition: all .2s;
}
.pd-tabs__btn:hover { color: var(--dark); }
.pd-tabs__btn.is-active {
    color: var(--primary); border-bottom-color: var(--primary);
}
.pd-tabs__panel { display: none; padding: 28px 0; }
.pd-tabs__panel.is-active { display: block; }

/* Specs — группы как в PDF-каталоге */
.pd-specs-wrap { display: flex; flex-direction: column; gap: 28px; }
.pd-spec-section { margin: 0; }
.pd-spec-section__title {
    margin: 0 0 12px;
    padding: 10px 16px;
    font-size: 13px; font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #6b7280 0%, #9ca3af 100%);
    border-radius: 6px;
}
.pd-spec-section__subtitle {
    margin: 0 0 8px;
    padding: 6px 4px 0;
    font-size: 14px; font-weight: 700;
    color: #ca8a04;
}
.pd-spec-section--plain .pd-spec-section__title { display: none; }

.pd-specs {
    width: 100%; border-collapse: collapse;
}
.pd-specs tr { border-bottom: 1px solid rgba(0,0,0,.04); }
.pd-specs__row--odd { background: #f9fafb; }
.pd-specs__label {
    padding: 13px 16px; font-size: 14px; font-weight: 500;
    color: var(--muted); width: 45%;
}
.pd-specs__value {
    padding: 13px 16px; font-size: 14px; font-weight: 600;
    color: var(--dark);
}

/* Description */
.pd-description {
    font-size: 15px; line-height: 1.8; color: #444; white-space: pre-line;
}
.pd-desc-figure {
    margin: 20px 0 32px;
    text-align: center;
    white-space: normal;
}
.pd-desc-figure img {
    display: block; max-width: 100%; height: auto; margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.pd-desc-figure__cap {
    margin-top: 12px; font-size: 13px; color: var(--muted); line-height: 1.5;
}
.pd-description h2, .pd-description h3 {
    color: var(--dark); margin: 24px 0 12px;
}
.pd-description p { margin-bottom: 14px; }
.pd-description ul, .pd-description ol {
    margin: 12px 0; padding-left: 24px;
}
.pd-description img {
    max-width: 100%; height: auto; border-radius: 10px; margin: 16px 0;
}

/* Описание товара — текстовая вёрстка (без изображений) */
.pd-desc-rich {
    white-space: normal;
    max-width: 720px;
    margin: 0 auto;
}
.pd-desc-rich__lead {
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 32px;
    color: #374151;
    letter-spacing: -0.01em;
}
.pd-desc-rich__section {
    margin-bottom: 40px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.pd-desc-rich__section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}
.pd-desc-rich__head {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 18px;
}
.pd-desc-rich__badge {
    flex-shrink: 0;
    min-width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 17px;
    line-height: 48px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,171,188,.28);
}
.pd-desc-rich__head-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.pd-desc-rich__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--muted);
    margin: 0;
    line-height: 1.25;
}
/* .pd-description h2 задаёт margin: 24px 0 12px — ломает блок «eyebrow + title» в шапке секции */
.pd-desc-rich h2,
.pd-desc-rich h3 {
    margin-top: 0;
    margin-bottom: 0;
    color: var(--dark);
}
.pd-desc-rich__head .pd-desc-rich__title {
    margin: 0;
    padding: 0;
}
.pd-desc-rich__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}
.pd-desc-rich__title--standalone {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0,171,188,.28);
    font-size: 19px;
}
.pd-desc-rich__intro {
    margin: 0 0 18px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.75;
}
.pd-desc-rich__highlight {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--primary);
    padding: 16px 18px;
    border-radius: 0 12px 12px 0;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 22px;
    color: #334155;
}
.pd-desc-rich__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
@media (max-width: 768px) {
    .pd-desc-rich__cols { grid-template-columns: 1fr; }
}
.pd-desc-rich__col {
    background: #fafbfc;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 12px;
    padding: 16px 16px 18px;
    transition: border-color .2s, box-shadow .2s;
}
.pd-desc-rich__col:hover {
    border-color: rgba(0,171,188,.2);
    box-shadow: 0 4px 20px rgba(0,0,0,.04);
}
.pd-desc-rich__col-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0,171,188,.35);
}
.pd-desc-rich__col p {
    margin: 0;
    font-size: 13px;
    line-height: 1.65;
    color: #4b5563;
}
.pd-desc-rich__feat {
    margin-bottom: 20px;
    padding: 14px 16px 14px 18px;
    background: #fafbfc;
    border-radius: 0 10px 10px 0;
    border-left: 3px solid var(--primary);
}
.pd-desc-rich__feat:last-child { margin-bottom: 0; }
.pd-desc-rich__feat strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.pd-desc-rich__feat p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}
.pd-desc-rich__list {
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.75;
    color: #4b5563;
}
.pd-desc-rich__list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
}
.pd-desc-rich__list li:last-child { margin-bottom: 0; }
.pd-desc-rich__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: .85;
}
.pd-desc-rich__note {
    font-size: 13px;
    color: var(--muted);
    margin-top: 20px;
    padding: 14px 16px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px dashed rgba(0,0,0,.08);
    line-height: 1.6;
}
.pd-desc-rich__brand {
    font-size: 15px;
    line-height: 1.75;
    color: #4b5563;
}
.pd-desc-rich__brand p { margin: 0 0 12px; }
.pd-desc-rich__brand p:last-child { margin-bottom: 0; }

/* Documents */
.pd-docs { display: flex; flex-direction: column; gap: 10px; }
.pd-doc {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px; background: #f7f8fa; border-radius: 12px;
    border: 1px solid rgba(0,0,0,.04); text-decoration: none;
    color: inherit; transition: all .25s;
}
.pd-doc:hover {
    border-color: var(--primary); background: var(--white);
    box-shadow: 0 4px 14px rgba(0,171,188,.08);
}
.pd-doc__icon { color: var(--primary); flex-shrink: 0; }
.pd-doc__info { flex: 1; }
.pd-doc__name { display: block; font-size: 14px; font-weight: 600; color: var(--dark); }
.pd-doc__size { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.pd-doc__dl { color: var(--muted); flex-shrink: 0; transition: color .2s; }
.pd-doc:hover .pd-doc__dl { color: var(--primary); }

/* PDF Request Form */
.pd-docs-form { max-width: 560px; }
.pd-docs-form__header { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 28px; }
.pd-docs-form__icon { color: var(--primary); flex-shrink: 0; }
.pd-docs-form__text { font-size: 15px; line-height: 1.6; color: var(--dark); margin: 0; }
.pd-docs-form__fields { display: flex; flex-direction: column; gap: 16px; }
.pd-docs-form__field label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.pd-docs-form__field input {
    width: 100%; padding: 12px 16px; border: 1px solid #dde1e6; border-radius: 10px;
    font-family: var(--font); font-size: 14px; background: #f7f8fa;
    transition: border-color .2s, box-shadow .2s; outline: none;
}
.pd-docs-form__field input:focus {
    border-color: var(--primary); background: var(--white);
    box-shadow: 0 0 0 3px rgba(0,171,188,.12);
}
.pd-docs-form__foot { margin-top: 24px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.pd-docs-form__submit {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; background: var(--primary); color: var(--white);
    border: none; border-radius: 10px; font-family: var(--font); font-size: 15px; font-weight: 600;
    cursor: pointer; transition: background .2s, transform .1s; flex-shrink: 0;
}
.pd-docs-form__submit:hover { background: var(--primary-dark, #0097a3); }
.pd-docs-form__submit:active { transform: scale(.97); }
.pd-docs-form__submit:disabled { opacity: .7; cursor: not-allowed; }
.pd-docs-form__policy {
    font-size: 12px; color: var(--muted); margin: 0; line-height: 1.5; flex: 1; min-width: 200px;
}
.pd-docs-form__policy a { color: var(--primary); text-decoration: underline; }
.pd-docs-form__success { text-align: center; padding: 32px 0; }
.pd-docs-form__success-icon { margin-bottom: 16px; }
.pd-docs-form__success-title { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0 0 8px; }
.pd-docs-form__success-text { font-size: 14px; color: var(--muted); line-height: 1.6; margin: 0; }
@keyframes spin { to { transform: rotate(360deg); } }
.spin { animation: spin .8s linear infinite; }
@media (max-width: 600px) {
    .pd-docs-form__header { flex-direction: column; align-items: center; text-align: center; }
    .pd-docs-form { max-width: 100%; }
}

/* Video */
.pd-video {
    position: relative; width: 100%; padding-top: 56.25%;
    border-radius: 14px; overflow: hidden; background: #000;
}
.pd-video iframe {
    position: absolute; inset: 0;
    width: 100%; height: 100%; border: none;
}

/* Advantages */
.pd-advantages {
    background: #f7f8fa; border-radius: 16px; padding: 32px;
    margin-bottom: 40px;
}
.pd-advantages__title {
    font-size: 20px; font-weight: 700; color: var(--dark);
    margin-bottom: 24px;
}
.pd-advantages__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.pd-adv {
    background: var(--white); border-radius: 12px; padding: 24px 20px;
    border: 1px solid rgba(0,0,0,.04);
    transition: all .3s;
}
.pd-adv:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.05); }
.pd-adv__icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(0,171,188,.06); display: flex;
    align-items: center; justify-content: center;
    color: var(--primary); margin-bottom: 14px;
}
.pd-adv__name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.pd-adv__text { font-size: 12px; line-height: 1.6; color: var(--muted); }

/* Related */
.pd-related { margin-bottom: 8px; }
.pd-related__title {
    font-size: 20px; font-weight: 700; color: var(--dark);
    margin-bottom: 20px;
}

/* Modal */
.pd-modal {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,.5); display: flex;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .3s;
    padding: 20px;
}
.pd-modal.is-open { opacity: 1; visibility: visible; }
.pd-modal__box {
    background: var(--white); border-radius: 16px;
    padding: 36px 40px; max-width: 640px; width: 100%;
    position: relative; max-height: 90vh; overflow-y: auto;
    transform: translateY(20px); transition: transform .3s;
}
.pd-modal.is-open .pd-modal__box { transform: translateY(0); }
.pd-modal__close {
    position: absolute; top: 16px; right: 16px;
    width: 36px; height: 36px; border-radius: 50%;
    background: #f4f5f7; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); transition: background .2s;
}
.pd-modal__close:hover { background: #e5e7eb; }
.pd-modal__title {
    font-size: 20px; font-weight: 700; color: var(--dark);
    margin-bottom: 28px; padding-right: 40px;
}
.pd-modal__form { display: flex; flex-direction: column; gap: 16px; }
.pd-modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pd-modal__row--3 { grid-template-columns: 1fr 1fr 1fr; }
.pd-modal__field label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--dark); margin-bottom: 6px;
}
.pd-modal__field input,
.pd-modal__field textarea {
    width: 100%; padding: 12px 14px; border-radius: 8px;
    border: 1px solid rgba(0,0,0,.1); font-size: 14px;
    color: var(--dark); font-family: inherit;
    transition: border-color .2s;
}
.pd-modal__field input:focus,
.pd-modal__field textarea:focus {
    outline: none; border-color: var(--primary);
}
.pd-modal__field textarea { resize: vertical; min-height: 80px; }
.pd-modal__foot {
    display: flex; align-items: center; gap: 16px;
    margin-top: 8px;
}
.pd-modal__submit {
    padding: 14px 36px; border-radius: 10px; border: none;
    background: var(--primary); color: var(--white);
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: all .3s; flex-shrink: 0;
}
.pd-modal__submit:hover { background: var(--primary-light); transform: translateY(-1px); }
.pd-modal__policy {
    font-size: 12px; line-height: 1.5; color: var(--muted);
}
.pd-modal__policy a { color: var(--primary); text-decoration: underline; }

/* Lightbox */
.pd-lightbox {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,.85); display: flex;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: all .3s;
    padding: 40px;
}
.pd-lightbox.is-open { opacity: 1; visibility: visible; }
.pd-lightbox__close {
    position: absolute; top: 20px; right: 20px;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: none;
    color: var(--white); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.pd-lightbox__close:hover { background: rgba(255,255,255,.2); }
.pd-lightbox__frame {
    position: relative;
    display: inline-block;
    max-width: 80vw;
    max-height: 85vh;
}
.pd-lightbox__frame > img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: opacity .15s ease;
}
.pd-lightbox__frame--watermark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../images/watermark.svg') no-repeat center center;
    background-size: min(68%, 480px) auto;
    pointer-events: none;
    z-index: 1;
    border-radius: 8px;
}
.pd-lightbox__frame--watermark > img {
    position: relative;
    z-index: 0;
}
.pd-lightbox__arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.1); border: none;
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, transform .2s;
    z-index: 2;
}
.pd-lightbox__arrow:hover { background: rgba(255,255,255,.25); transform: translateY(-50%) scale(1.1); }
.pd-lightbox__prev { left: 20px; }
.pd-lightbox__next { right: 20px; }
.pd-lightbox__counter {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,.7); font-size: 14px; font-weight: 500;
    letter-spacing: 1px;
}
@media (max-width: 600px) {
    .pd-lightbox__arrow { width: 40px; height: 40px; }
    .pd-lightbox__prev { left: 8px; }
    .pd-lightbox__next { right: 8px; }
    .pd-lightbox__frame { max-width: 95vw; }
    .pd-lightbox__frame > img { max-width: 95vw; }
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1280px) {
    .header__nav { gap: 20px; }
    .header__logo-text { font-size: 11px; }
}

@media (max-width: 1024px) {
    .header__nav { gap: 14px; }
    .header__nav-link { font-size: 14px; }
    .header__logo-text { display: none; }
    .topbar__left { gap: 16px; }
    .topbar__link-sub { display: none; }
    .topbar__center { display: none; }
    .header__contact-sub { display: none; }
    .hero__title { font-size: 36px; }
    .hero__text { font-size: 17px; }
    .mega { width: min(880px, calc(100vw - 48px)); }
    .mega__brands { width: 190px; padding: 16px 14px; }
    .mega__brand img { max-height: 22px; }
    .mega__cats { width: 210px; }
    .mega__detail { padding: 16px 18px; }
    .mega--pl .mega__brands-grid { grid-template-columns: repeat(6, 1fr); }
    .mega-pl__col { padding: 16px 16px; }
}

@media (max-width: 768px) {
    .topbar { display: none; }

    .header {
        top: 0;
        position: fixed;
        background: linear-gradient(135deg, #007a8a 0%, #00b4c6 50%, #00a5a0 100%);
        height: 64px;
    }

    .hero {
        margin-top: 0;
        padding-top: 0;
    }

    .hero__slide {
        height: 100vh;
        min-height: 500px;
        max-height: 900px;
        padding-top: 64px;
    }

    .header__nav { display: none; }
    .header__contact { display: none; }
    .header__mobile-actions { display: flex; }
    .header__burger { display: flex; }
    .mob-lang { display: block; }
    .mob-contacts-btn { display: flex; }

    .header__logo-img,
    .header__logo-traced {
        filter: brightness(0) invert(1);
    }

    .hero__title { font-size: 28px; }
    .hero__text { font-size: 16px; }
    .hero__content { padding-bottom: 100px; }
    .hero__buttons { flex-direction: column; }
    .btn { justify-content: center; font-size: 14px; padding: 16px 24px; }
    .hero__counter-current { font-size: 36px; }
    .hero__counter-sep,
    .hero__counter-total { font-size: 18px; }

    .page-404 .header {
        position: fixed;
        top: 0;
        background: linear-gradient(135deg, #007a8a 0%, #00b4c6 50%, #00a5a0 100%);
        height: 64px;
    }
    .e404 { flex: 1; }
    .e404__inner { padding: 60px 20px 80px; }
    .e404__digit { letter-spacing: -3px; }
    .e404__text br { display: none; }
    .e404__actions { flex-direction: column; }
    .e404__btn { width: 100%; justify-content: center; }
    .e404__line { display: none; }

    .bp-hero { padding: 50px 0 40px; }
    .bp-hero__sub br { display: none; }
    .bp-hero__trust { flex-direction: column; gap: 16px; padding: 20px 32px; }
    .bp-hero__trust-sep { width: 60px; height: 1px; }
    .bp-status__grid { grid-template-columns: 1fr 1fr; }
    .bp-list__grid { grid-template-columns: 1fr; }
    .bp-cta__inner { flex-direction: column; text-align: center; padding: 36px 28px; }
    .bp-cta__actions { width: 100%; }
    .bp-cta__btn { flex: 1; justify-content: center; }

    .page-brands .header,
    .page-about .header,
    .page-contacts .header,
    .page-brand-detail .header,
    .page-catalog .header,
    .page-catalog-category .header,
    .page-catalog-subcategory .header,
    .page-product-detail .header,
    .page-parts-and-lubricants .header,
    .page-attachments .header,
    .page-attachments-category .header,
    .page-attachments-subcategory .header,
    .page-attachment-detail .header,
    .page-spare-parts .header,
    .page-spare-parts-category .header,
    .page-spare-parts-subcategory .header,
    .page-spare-part-detail .header,
    .page-lubricants .header,
    .page-lubricants-category .header,
    .page-lubricants-subcategory .header,
    .page-lubricant-detail .header {
        position: fixed; top: 0;
        background: linear-gradient(135deg, #007a8a 0%, #00b4c6 50%, #00a5a0 100%);
        height: 64px;
    }
    .page-brands .bp-hero { padding: 114px 0 40px; }
    .page-contacts .cp-hero,
    .page-catalog .cp-hero,
    .page-catalog-category .cp-hero,
    .page-catalog-subcategory .cp-hero,
    .page-product-detail .cp-hero,
    .page-parts-and-lubricants .cp-hero,
    .page-attachments .cp-hero,
    .page-attachments-category .cp-hero,
    .page-attachments-subcategory .cp-hero,
    .page-attachment-detail .cp-hero,
    .page-spare-parts .cp-hero,
    .page-spare-parts-category .cp-hero,
    .page-spare-parts-subcategory .cp-hero,
    .page-spare-part-detail .cp-hero,
    .page-lubricants .cp-hero,
    .page-lubricants-category .cp-hero,
    .page-lubricants-subcategory .cp-hero,
    .page-lubricant-detail .cp-hero {
        padding-top: 100px;
    }
    .bd-hero { min-height: 360px; padding-bottom: 32px; padding-top: 100px; }
    .about-hero { padding-top: 100px; }
    .bd-hero__content { flex-direction: column; align-items: flex-start; }
    .bd-hero__logo-wrap { width: 120px; height: 70px; }
    .bd-hero__stats { flex-wrap: wrap; gap: 24px; }
    .bd-about__grid { grid-template-columns: 1fr; gap: 32px; }
    .bd-features__grid { grid-template-columns: 1fr; }
    .bd-gallery__grid { grid-template-columns: 1fr 1fr; }
    .bd-other__grid { grid-template-columns: repeat(3, 1fr); }

    .page-search .header {
        position: fixed; top: 0;
        background: linear-gradient(135deg, #007a8a 0%, #00b4c6 50%, #00a5a0 100%);
        height: 64px;
    }
    .cp-hero { padding: 24px 0 24px; }
    .cp-hero--compact { padding: 20px 0 20px; }
    .page-search .cp-hero { padding-top: 88px; }
    .page-search .cp-hero--compact { padding-top: 80px; }
    .cl-sidebar { display: none; }
    .cl-layout { flex-direction: column; }
    .cp-cats__grid { grid-template-columns: 1fr 1fr; }
    .pl-filter__grid { grid-template-columns: 1fr; }
    .pl-filter__actions { flex-direction: column; }
    .cp-hero__sub br { display: none; }

    .cc-breadcrumb,
    .bd-breadcrumb {
        flex-wrap: nowrap;
        overflow: hidden;
        white-space: nowrap;
        font-size: 12px;
        gap: 5px;
        margin-bottom: 10px;
    }
    .cc-breadcrumb > a,
    .cc-breadcrumb > span,
    .bd-breadcrumb > a,
    .bd-breadcrumb > span { flex-shrink: 0; }
    .cc-breadcrumb > a:not(:nth-last-child(-n+3)),
    .cc-breadcrumb > span:not(:nth-last-child(-n+2)):not(.cc-breadcrumb__current),
    .bd-breadcrumb > a:not(:nth-last-child(-n+3)),
    .bd-breadcrumb > span:not(:nth-last-child(-n+2)):not(.bd-breadcrumb__current) {
        display: none;
    }
    .cc-breadcrumb > a:nth-last-child(3)::before,
    .bd-breadcrumb > a:nth-last-child(3)::before {
        content: '… / ';
        opacity: .6;
    }
    .cc-breadcrumb__current,
    .bd-breadcrumb__current {
        overflow: hidden;
        text-overflow: ellipsis;
        min-width: 0;
        flex-shrink: 1;
    }
    .cc-subtiles { grid-template-columns: 1fr 1fr; }
    .cc-products__grid { grid-template-columns: 1fr 1fr; }
    .cp-brands__grid { grid-template-columns: repeat(3, 1fr); }
    .cs-empty__text br { display: none; }
    .pd-top { grid-template-columns: 1fr; gap: 24px; }
    .pd-info__actions { flex-wrap: wrap; }
    .pd-tabs__btn { padding: 12px 16px; font-size: 13px; }
    .pd-advantages__grid { grid-template-columns: 1fr 1fr; }
    .pd-modal__row--3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero__title { font-size: 24px; }
    .hero__counter-current { font-size: 28px; }
    .hero__arrow { width: 40px; height: 40px; }
    .bp-status__grid { grid-template-columns: 1fr; }
    .bd-other__grid { grid-template-columns: repeat(2, 1fr); }
    .bd-gallery__grid { grid-template-columns: 1fr; }
    .cp-cats__grid { grid-template-columns: 1fr; }
    .cc-products__grid { grid-template-columns: 1fr; }
    .cc-subtiles { grid-template-columns: 1fr; }
    .cp-brands__grid { grid-template-columns: 1fr 1fr; }
    .cs-tabs__row { gap: 2px; }
    .cs-tabs__tab { padding: 7px 14px; font-size: 12px; }
    .pd-info__name { font-size: 22px; }
    .pd-info__actions { flex-direction: column; }
    .pd-btn { justify-content: center; width: 100%; box-sizing: border-box; }
    .pd-tabs__nav { overflow-x: auto; }
    .pd-tabs__btn { white-space: nowrap; padding: 10px 14px; font-size: 12px; }
    .pd-advantages__grid { grid-template-columns: 1fr; }
    .pd-modal__row, .pd-modal__row--3 { grid-template-columns: 1fr; }
    .pd-modal__box { padding: 28px 24px; }
    .pd-modal__foot { flex-direction: column; }
    .pd-modal__submit { width: 100%; }
}

/* ═══════════════════════════════════════════════
   CONTACTS PAGE
   ═══════════════════════════════════════════════ */

.cnt-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0;
}
.cnt-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.cnt-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 24px;
    border-right: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background .2s;
}
.cnt-bar__item:last-child { border-right: none; }
a.cnt-bar__item:hover { background: #f8fafa; }
.cnt-bar__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: #f0fafa;
    border-radius: 12px;
    color: #00ABBC;
    flex-shrink: 0;
}
.cnt-bar__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.cnt-bar__label { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: .5px; font-weight: 500; }
.cnt-bar__val { font-size: 14px; font-weight: 600; color: #111; white-space: nowrap; }
.cnt-bar__links { display: flex; gap: 12px; }
.cnt-bar__links a {
    color: #00ABBC; text-decoration: none; font-weight: 600;
    transition: color .2s;
}
.cnt-bar__links a:hover { color: #008e9b; }

/* Interactive Map */
.cnt-map { line-height: 0; }
.cnt-map__canvas { width: 100%; height: 520px; }

/* Office List */
.cnt-offices { padding: 56px 0 80px; background: #fff; }

.cnt-region { margin-bottom: 48px; }
.cnt-region:last-child { margin-bottom: 0; }
.cnt-region__title {
    font-size: 22px; font-weight: 800; color: #111;
    padding-bottom: 16px;
}
.cnt-region__sep {
    height: 1px; background: #e0e0e0; margin-bottom: 0;
}

.cnt-office {
    display: flex;
    gap: 28px;
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f0;
    align-items: flex-start;
}
.cnt-office:last-child { border-bottom: none; }

.cnt-office__photo {
    width: 180px; height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f4f5f7;
}
.cnt-office__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.cnt-office__placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f0f1f3, #e8eaed);
    color: #bbb;
}

.cnt-office__info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.cnt-office__main { flex: 1; }
.cnt-office__addr {
    font-size: 16px; font-weight: 700; color: #111;
    margin: 0 0 10px; line-height: 1.4;
}
.cnt-office__tags {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px; flex-wrap: wrap;
}
.cnt-office__map-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 600; color: #00ABBC;
    background: none; border: none; cursor: pointer;
    padding: 0; font-family: inherit;
    transition: color .2s;
}
.cnt-office__map-link:hover { color: #008e9b; }
.cnt-office__badge {
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px;
    padding: 3px 10px; border-radius: 4px;
}
.cnt-office__badge--hq { background: #e6f7f9; color: #00ABBC; }
.cnt-office__badge--service { background: #fde8ec; color: #E4002B; }

.cnt-office__detail {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 14px; color: #555; line-height: 1.5;
    margin-bottom: 6px;
}
.cnt-office__detail:last-child { margin-bottom: 0; }
.cnt-office__detail svg {
    flex-shrink: 0; margin-top: 3px; color: #999;
}
.cnt-office__detail a {
    color: #111; text-decoration: none; font-weight: 500;
    transition: color .2s;
}
.cnt-office__detail a:hover { color: #00ABBC; }

.cnt-office__contacts {
    min-width: 200px;
    flex-shrink: 0;
}

.cnt-cta {
    padding: 64px 0;
    background: #fff;
}
.cnt-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #00ABBC 0%, #008e9b 100%);
    border-radius: 20px;
    padding: 48px 56px;
    color: #fff;
}
.cnt-cta__title {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 800;
    margin-bottom: 8px;
}
.cnt-cta__title span { font-weight: 400; opacity: .9; }
.cnt-cta__text {
    font-size: 15px;
    opacity: .85;
    max-width: 440px;
    line-height: 1.6;
}
.cnt-cta__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cnt-cta__actions .btn--primary {
    background: #fff;
    color: #00ABBC;
}
.cnt-cta__actions .btn--primary:hover {
    background: #f0fafa;
}
.cnt-cta__actions .btn--outline-dark {
    border-color: rgba(255,255,255,.5);
    color: #fff;
}
.cnt-cta__actions .btn--outline-dark:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
}

@media (max-width: 1024px) {
    .cnt-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .cnt-bar__item:nth-child(2) { border-right: none; }
    .cnt-bar__item:nth-child(3),
    .cnt-bar__item:nth-child(4) { border-top: 1px solid #eee; }
    .cnt-office__info { flex-direction: column; gap: 12px; }
    .cnt-office__contacts { min-width: auto; }
}

@media (max-width: 768px) {
    .cnt-bar__grid { grid-template-columns: 1fr; }
    .cnt-bar__item { border-right: none; border-bottom: 1px solid #eee; }
    .cnt-bar__item:last-child { border-bottom: none; }
    .cnt-map__canvas { height: 320px; }
    .cnt-offices { padding: 32px 0 48px; }
    .cnt-office { flex-direction: column; gap: 16px; }
    .cnt-office__photo { width: 100%; height: 160px; }
    .cnt-cta__inner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }
    .cnt-cta__text { margin: 0 auto; }
    .cnt-cta__actions { flex-direction: column; width: 100%; }
    .cnt-cta__actions .btn { width: 100%; justify-content: center; }
}

/* ====================================================================
   REGIONS MAP — главная
   ==================================================================== */
.regions {
    padding: 80px 0;
    background: linear-gradient(135deg, #004d56 0%, var(--primary) 60%, #004c48 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
}
.regions::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
    pointer-events: none;
}
.regions__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.regions__sub {
    font-size: 16px;
    opacity: .65;
    margin-bottom: 48px;
}
.regions__grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}
.regions__panel {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.regions__select-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: .5;
    margin-bottom: 8px;
}
.regions__select-box {
    position: relative;
    margin-bottom: 24px;
}
.regions__select-box select {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    padding: 12px 40px 12px 16px;
    color: var(--white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    transition: border-color .2s;
}
.regions__select-box select:focus {
    border-color: rgba(255,255,255,.5);
}
.regions__select-box select option {
    background: #1a3a3e;
    color: #fff;
}
.regions__select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--white);
    opacity: .6;
}
.regions__info {}
.regions__office {
    margin-bottom: 20px;
}
.regions__office:last-child { margin-bottom: 0; }
.regions__office-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}
.regions__office-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5;
}
.regions__office-row:last-child { margin-bottom: 0; }
.regions__office-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(0,171,188,.25);
    display: flex;
    align-items: center;
    justify-content: center;
}
.regions__office-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}
.regions__office-text {
    display: flex;
    flex-direction: column;
}
.regions__office-label {
    font-size: 11px;
    opacity: .45;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.regions__office-val { font-weight: 500; }
.regions__office-val a {
    color: var(--white);
    text-decoration: none;
}
.regions__office-val a:hover { text-decoration: underline; }
.regions__no-office {
    font-size: 14px;
    opacity: .55;
    line-height: 1.7;
    padding: 16px 0;
}
.regions__map {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
}
.regions__map svg {
    width: 100%;
    height: auto;
    display: block;
}
.regions__map .region-path {
    transition: fill .25s ease;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .regions__grid {
        grid-template-columns: 320px 1fr;
        gap: 28px;
    }
}
@media (max-width: 768px) {
    .regions { padding: 56px 0; }
    .regions__sub { margin-bottom: 32px; }
    .regions__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .regions__map { order: -1; }
}


/* ====================================================================
   SERVICE PAGE
   ==================================================================== */
.svc-hero {
    position: relative;
    background: linear-gradient(135deg, #004d56 0%, var(--primary) 60%, #00d4c8 100%);
    padding: calc(var(--topbar-h) + var(--header-h) + 80px) 0 80px;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.svc-hero__overlay {
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0v60M0 30h60' stroke='%23fff' stroke-width='.3' opacity='.06'/%3E%3C/svg%3E");
    pointer-events: none;
}
.svc-hero__inner { position: relative; z-index: 2; }
.svc-hero__badge {
    display: inline-block;
    font-size: 12px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,.4);
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 24px;
    animation: heroFadeUp 1s ease .3s both;
}
.svc-hero__title {
    font-size: 56px; font-weight: 700; color: var(--white);
    line-height: 1.1; margin-bottom: 16px;
    letter-spacing: -1px;
    animation: heroFadeUp 1s ease .5s both;
}
.svc-hero__title span { font-weight: 400; opacity: .7; margin-left: 8px; }
.svc-hero__sub {
    font-size: 18px; color: rgba(255,255,255,.6);
    line-height: 1.6; max-width: 560px; margin-bottom: 48px;
    animation: heroFadeUp 1s ease .7s both;
}
.svc-hero__stats { display: flex; gap: 48px; animation: heroFadeUp 1s ease .9s both; }
.svc-hero__stat { display: flex; flex-direction: column; gap: 4px; }
.svc-hero__stat-num { font-size: 42px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -1px; }
.svc-hero__stat-label { font-size: 13px; color: rgba(255,255,255,.45); }

/* --- Section title helper --- */
.svc-section-title {
    font-size: 36px; font-weight: 700; line-height: 1.2;
    color: var(--text); margin-bottom: 48px;
}
.svc-section-title span { color: var(--primary); }

/* --- CRC section --- */
.svc-crc { padding: 96px 0; }
.svc-crc__grid {
    display: grid; grid-template-columns: 1.2fr 1fr;
    gap: 64px; align-items: start;
}
.svc-crc__list {
    list-style: none; padding: 0; margin: 0;
}
.svc-crc__list li {
    position: relative;
    padding: 16px 0 16px 32px;
    font-size: 15px; line-height: 1.7;
    color: var(--muted);
    border-bottom: 1px solid #eee;
}
.svc-crc__list li::before {
    content: '';
    position: absolute; left: 0; top: 22px;
    width: 12px; height: 12px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}
.svc-crc__card {
    background: #f7fafa; border-radius: 16px; padding: 40px;
    text-align: center;
    border: 1px solid #e4f0f1;
}
.svc-crc__card-icon { margin-bottom: 20px; }
.svc-crc__card h3 {
    font-size: 20px; font-weight: 700; color: var(--text);
    margin-bottom: 12px;
}
.svc-crc__card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* --- Repair services --- */
.svc-repair {
    padding: 96px 0;
    background: var(--primary);
}
.svc-repair .svc-section-title { color: var(--white); }
.svc-repair .svc-section-title span { color: rgba(255,255,255,.6); }
.svc-repair__grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
    border: 1px solid rgba(255,255,255,.15);
}
.svc-repair__card {
    padding: 36px 28px;
    border-right: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transition: background .3s;
}
.svc-repair__card:hover { background: rgba(255,255,255,.06); }
.svc-repair__card:last-child { border-right: none; }
.svc-repair__num {
    font-size: 36px; font-weight: 800;
    color: rgba(255,255,255,.12); margin-bottom: 20px;
}
.svc-repair__card h4 {
    font-size: 17px; font-weight: 700; color: var(--white);
    margin-bottom: 12px; line-height: 1.35;
}
.svc-repair__card p {
    font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.6;
}

/* --- Programs grid --- */
.svc-programs { padding: 96px 0; }
.svc-programs__grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.svc-programs__card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    transition: box-shadow .3s, transform .3s;
}
.svc-programs__card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
    transform: translateY(-4px);
}
.svc-programs__icon { margin-bottom: 20px; }
.svc-programs__card h4 {
    font-size: 17px; font-weight: 700; color: var(--text);
    margin-bottom: 10px; line-height: 1.35;
}
.svc-programs__card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* --- Extra services --- */
.svc-extra { padding: 0 0 96px; }
.svc-extra__grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.svc-extra__card {
    background: #f7fafa;
    border-radius: 16px; padding: 40px;
    border-left: 4px solid var(--primary);
}
.svc-extra__card h4 {
    font-size: 18px; font-weight: 700; color: var(--text);
    margin-bottom: 12px;
}
.svc-extra__card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* --- Service request form --- */
.svc-request { padding: 0 0 96px; }
.svc-request__inner {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.35fr);
    gap: 36px;
    padding: 40px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 12% 10%, rgba(255,255,255,.18), transparent 32%),
        linear-gradient(135deg, #004d56 0%, var(--primary) 100%);
    box-shadow: 0 24px 70px rgba(0, 80, 90, .18);
    overflow: hidden;
    position: relative;
}
.svc-request__inner::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -140px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 48px solid rgba(255,255,255,.08);
    pointer-events: none;
}
.svc-request__intro,
.svc-request__form {
    position: relative;
    z-index: 1;
}
.svc-request__intro {
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    padding: 12px 0;
}
.svc-request__eyebrow {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .7px;
    margin-bottom: 18px;
}
.svc-request__title {
    font-size: 34px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -.6px;
    margin-bottom: 18px;
}
.svc-request__text {
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.75;
}
.svc-request__contacts {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.svc-request__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255,255,255,.14);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    transition: background .2s, transform .2s;
}
.svc-request__contact:hover {
    background: rgba(255,255,255,.22);
    transform: translateY(-2px);
}
.svc-request__contact small {
    display: block;
    margin-bottom: 2px;
    color: rgba(255,255,255,.6);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.svc-request__contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,.14);
    flex-shrink: 0;
}
.svc-request__note {
    max-width: 340px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.6;
}
.svc-request__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 50px rgba(0,0,0,.12);
}
.svc-request__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.svc-request__field label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
}
.svc-request__field input,
.svc-request__field textarea {
    width: 100%;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    background: #fff;
    color: var(--dark);
    font: inherit;
    font-size: 14px;
    padding: 12px 14px;
    transition: border-color .2s, box-shadow .2s;
}
.svc-request__field textarea {
    min-height: 104px;
    resize: vertical;
}
.svc-request__field input:focus,
.svc-request__field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,171,188,.12);
}
.svc-request__native-select {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.svc-select {
    position: relative;
    z-index: 1;
}
.svc-select.is-open {
    z-index: 20;
}
.svc-select__toggle {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,.1);
    border-radius: 10px;
    background: #fff;
    color: #8a8a8a;
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s, color .2s;
}
.svc-select.has-value .svc-select__toggle {
    color: var(--dark);
}
.svc-select__toggle svg {
    color: #9ca3af;
    flex-shrink: 0;
    transition: transform .2s, color .2s;
}
.svc-select.is-open .svc-select__toggle,
.svc-select__toggle:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0,171,188,.12);
}
.svc-select.is-open .svc-select__toggle svg {
    color: var(--primary);
    transform: rotate(180deg);
}
.svc-select.has-error .svc-select__toggle {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,.12);
}
.svc-select__menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    padding: 8px;
    border: 1px solid rgba(0,171,188,.22);
    border-radius: 14px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 18px 45px rgba(0,0,0,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    max-height: 250px;
    overflow-y: auto;
}
.svc-select.is-open .svc-select__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.svc-select__option {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 9px 12px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--dark);
    font: inherit;
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    transition: background .15s, color .15s;
}
.svc-select__option:hover {
    background: rgba(0,171,188,.08);
    color: var(--primary);
}
.svc-select__option.is-selected {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}
.svc-request__foot {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 4px;
}
.svc-request__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 26px;
    border-radius: 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s, transform .2s, opacity .2s;
}
.svc-request__submit:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
}
.svc-request__submit:disabled {
    cursor: default;
    opacity: .75;
    transform: none;
}
.svc-request__policy {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}
.svc-request__policy a {
    color: var(--primary);
    text-decoration: underline;
}
.svc-request__status {
    display: none;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
}
.svc-request__status.is-success {
    display: block;
    color: #166534;
    background: #dcfce7;
}
.svc-request__status.is-error {
    display: block;
    color: #991b1b;
    background: #fee2e2;
}

/* --- reveal animations --- */
.svc-crc .reveal,
.svc-repair .reveal,
.svc-programs .reveal,
.svc-extra .reveal,
.svc-request .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.svc-crc .reveal.is-visible,
.svc-repair .reveal.is-visible,
.svc-programs .reveal.is-visible,
.svc-extra .reveal.is-visible,
.svc-request .reveal.is-visible { opacity: 1; transform: none; }
.svc-repair .reveal-stagger,
.svc-programs .reveal-stagger,
.svc-extra .reveal-stagger { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.svc-repair .reveal-stagger.is-visible,
.svc-programs .reveal-stagger.is-visible,
.svc-extra .reveal-stagger.is-visible { opacity: 1; transform: none; }



/* --- Service responsive --- */
@media (max-width: 1024px) {
    .svc-crc__grid { grid-template-columns: 1fr; }
    .svc-repair__grid { grid-template-columns: repeat(2, 1fr); }
    .svc-programs__grid { grid-template-columns: repeat(2, 1fr); }
    .svc-request__inner { grid-template-columns: 1fr; }
    .svc-request__intro { padding: 0; }
}
@media (max-width: 768px) {
    .svc-hero { min-height: auto; padding-bottom: 56px; }
    .svc-hero__title { font-size: 36px; }
    .svc-hero__stats { flex-wrap: wrap; gap: 24px; }
    .svc-hero__stat-num { font-size: 32px; }
    .svc-section-title { font-size: 28px; margin-bottom: 32px; }
    .svc-repair__grid { grid-template-columns: 1fr; }
    .svc-repair__card { border-right: none; }
    .svc-programs__grid { grid-template-columns: 1fr; }
    .svc-extra__grid { grid-template-columns: 1fr; }
    .svc-request__inner { padding: 24px; border-radius: 18px; }
    .svc-request__title { font-size: 28px; }
    .svc-request__form { padding: 20px; }
    .svc-request__row { grid-template-columns: 1fr; }
    .svc-request__foot { flex-direction: column; align-items: stretch; }
    .svc-request__submit { width: 100%; }
    .svc-request__contact { width: 100%; }
}
