:root {
    --sb-white: #ffffff;
    --sb-ice: #f3f7fb;
    --sb-ice-strong: #e7f0f8;
    --sb-line: #d8e3ee;
    --sb-line-strong: #b9cadb;
    --sb-blue-900: #082a4d;
    --sb-blue-800: #0b3f77;
    --sb-blue-700: #11599c;
    --sb-blue-600: #1268b3;
    --sb-ak: #40539d;
    --sb-ak-rgb: 64, 83, 157;
    --sb-amber: var(--sb-ak);
    --sb-green: #138a53;
    --sb-text: #101828;
    --sb-muted: #5d6b7c;
    --sb-muted-2: #7b8794;
    --sb-dark: #0e1726;
    --sb-footer: #111c2b;

    --sb-font-body: "Onest", "Segoe UI", sans-serif;
    --sb-font-display: "Onest", "Segoe UI", sans-serif;
    --sb-container: 1320px;
    --sb-pad: clamp(18px, 4vw, 44px);
    --sb-radius: 8px;
    --sb-radius-sm: 4px;
    --sb-shadow: 0 18px 46px rgba(8, 42, 77, 0.12);
    --sb-shadow-strong: 0 26px 70px rgba(8, 42, 77, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    color: var(--sb-text);
    background: var(--sb-white);
    font-family: var(--sb-font-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.has-mobile-menu,
body.has-quote-success {
    overflow: hidden;
}

img,
svg {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--sb-amber);
    outline-offset: 3px;
}

.container {
    width: 100%;
    max-width: var(--sb-container);
    margin: 0 auto;
    padding: 0 var(--sb-pad);
}

.site-main {
    overflow-x: clip;
    overflow-y: visible;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--sb-blue-700);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--sb-amber);
}

.button,
.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--sb-radius-sm);
    font-weight: 800;
    line-height: 1;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.button {
    min-height: 44px;
    gap: 10px;
    padding: 0 18px;
    font-size: 0.88rem;
}

.button svg,
.icon-button svg {
    width: 18px;
    height: 18px;
}

.button img,
.icon-button img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.button__label {
    min-width: 0;
    line-height: 1.12;
    overflow-wrap: anywhere;
    text-align: center;
}

.button--lg {
    min-height: 52px;
    padding: 0 22px;
}

.button--primary {
    color: var(--sb-white);
    background: var(--sb-blue-800);
    box-shadow: 0 12px 28px rgba(11, 63, 119, 0.22);
}

.button--primary:hover {
    background: var(--sb-blue-600);
    transform: translateY(-1px);
}

.button--secondary {
    color: var(--sb-blue-800);
    background: var(--sb-white);
    border-color: var(--sb-line-strong);
}

.button--secondary:hover {
    border-color: var(--sb-blue-600);
    color: var(--sb-blue-600);
    transform: translateY(-1px);
}

.button--light {
    color: var(--sb-blue-900);
    background: var(--sb-white);
}

.button--full {
    width: 100%;
}

.icon-button {
    position: relative;
    width: 44px;
    height: 44px;
    color: var(--sb-blue-800);
    background: var(--sb-white);
    border-color: var(--sb-line);
}

.icon-button:hover {
    color: var(--sb-white);
    background: var(--sb-blue-800);
    border-color: var(--sb-blue-800);
}

.cart-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    display: grid;
    place-items: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    color: var(--sb-white);
    background: var(--sb-amber);
    font-size: 0.68rem;
    font-weight: 800;
}

.cart-trigger {
    position: relative;
}

.mobile-cart-trigger {
    margin-bottom: 10px;
}

.cart-count {
    display: inline-grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    color: var(--sb-blue-900);
    background: var(--sb-white);
    font-size: 0.72rem;
    font-weight: 900;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 130;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--sb-line);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.topbar {
    color: rgba(255, 255, 255, 0.82);
    background: var(--sb-blue-900);
    font-size: 0.78rem;
}

.topbar__inner,
.topbar__left,
.topbar__right,
.mainbar__inner,
.header-actions {
    display: flex;
    align-items: center;
}

.topbar__inner {
    justify-content: space-between;
    min-height: 34px;
    gap: 16px;
}

.topbar__left,
.topbar__right {
    gap: 18px;
}

.topbar span,
.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.topbar svg {
    width: 14px;
    height: 14px;
    color: var(--sb-amber);
}

.topbar__phone {
    color: var(--sb-white);
    font-weight: 800;
}

.mainbar__inner {
    justify-content: space-between;
    min-height: 76px;
    min-width: 0;
    gap: 22px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 220px;
    gap: 12px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--sb-white);
    background:
        linear-gradient(135deg, var(--sb-amber) 0 32%, transparent 32%),
        var(--sb-blue-800);
    border-radius: var(--sb-radius-sm);
    font-family: var(--sb-font-display);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.custom-logo {
    width: auto;
    max-width: 210px;
    max-height: 54px;
}

.brand-copy {
    display: grid;
    min-width: 0;
    gap: 2px;
}

.brand-copy strong {
    color: var(--sb-blue-900);
    font-family: var(--sb-font-display);
    font-size: 1.04rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.brand-copy span {
    overflow: hidden;
    color: var(--sb-muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu a {
    color: var(--sb-muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--sb-blue-700);
}

.nav-menu li {
    position: relative;
}

.nav-menu__item--mega::after {
    content: "";
    position: absolute;
    top: 100%;
    right: -16px;
    left: -16px;
    z-index: 29;
    height: 18px;
}

.nav-menu__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--sb-muted);
    background: transparent;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-menu__item--mega:hover .nav-menu__trigger,
.nav-menu__item--mega:focus-within .nav-menu__trigger,
.nav-menu__item--mega.is-open .nav-menu__trigger {
    color: var(--sb-blue-700);
}

.nav-menu .sub-menu,
.nav-menu__content {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    z-index: 30;
    width: min(640px, calc(100vw - 32px));
    margin: 0;
    padding: 12px;
    border: 1px solid rgba(185, 202, 219, 0.82);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 54px rgba(8, 42, 77, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -8px);
    transition: opacity 160ms ease, transform 160ms ease;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu,
.nav-menu li.is-open > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-menu__mega-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu .sub-menu .nav-menu__mega-link {
    display: block;
    min-height: 92px;
    padding: 14px;
    border-radius: var(--sb-radius-sm);
    color: var(--sb-blue-900);
    line-height: 1.25;
    text-transform: none;
    white-space: normal;
    transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.site-header.site-header--overlay:not(.is-scrolled) .nav-menu .sub-menu .nav-menu__mega-link {
    color: var(--sb-blue-900);
    text-shadow: none;
}

.site-header.site-header--overlay:not(.is-scrolled) .nav-menu .sub-menu .nav-menu__mega-link:hover {
    color: var(--sb-blue-700);
}

.nav-menu .sub-menu .nav-menu__mega-link:hover {
    color: var(--sb-blue-700);
    background: var(--sb-ice);
    transform: translateY(-1px);
}

.nav-menu__mega-link strong {
    display: block;
    margin-bottom: 5px;
    color: inherit;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1.15;
}

.nav-menu__mega-link em {
    display: -webkit-box;
    overflow: hidden;
    color: var(--sb-muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 650;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.site-header.site-header--overlay:not(.is-scrolled) .nav-menu .sub-menu .nav-menu__mega-link em {
    color: var(--sb-muted);
    text-shadow: none;
}

.header-actions {
    gap: 10px;
}

.mobile-toggle {
    position: relative;
    z-index: 130;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(18, 104, 179, 0.28);
    border-radius: var(--sb-radius-sm);
    background: var(--sb-blue-700);
    box-shadow: 0 10px 24px rgba(8, 42, 77, 0.16);
    pointer-events: auto;
}

.mobile-toggle span {
    display: block;
    flex: 0 0 auto;
    width: 20px;
    height: 2px;
    margin: 0;
    border-radius: 999px;
    background: var(--sb-white);
}

.mobile-menu,
.mobile-backdrop {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.mobile-menu {
    z-index: 140;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 88vw);
    padding: 22px;
    background: var(--sb-white);
    box-shadow: var(--sb-shadow-strong);
    transform: translateX(100%);
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-backdrop {
    z-index: 110;
    inset: 0;
    background: rgba(14, 23, 38, 0.42);
}

.mobile-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    color: var(--sb-blue-900);
    font-family: var(--sb-font-display);
    font-weight: 800;
}

.mobile-menu__close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
    background: var(--sb-white);
}

.mobile-nav .nav-menu {
    display: grid;
    gap: 0;
    margin-bottom: 22px;
}

.mobile-nav .nav-menu a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--sb-line);
}

.mobile-nav .nav-menu__item--mega::after {
    display: none;
}

.mobile-nav .nav-menu .sub-menu {
    position: static;
    width: auto;
    min-width: 0;
    max-height: 0;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 180ms ease, opacity 160ms ease, padding 160ms ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.mobile-nav .nav-menu li.is-open > .sub-menu {
    max-height: 520px;
    padding: 8px 0 6px 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
}

.mobile-nav .nav-menu__trigger {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--sb-line);
    color: var(--sb-blue-900);
    text-align: left;
}

.mobile-nav .nav-menu__mega-list {
    grid-template-columns: 1fr;
}

.mobile-nav .nav-menu .sub-menu .nav-menu__mega-link {
    min-height: 0;
    padding: 10px 0;
    color: var(--sb-muted);
    background: transparent;
}

.mobile-nav .nav-menu__mega-link em {
    display: block;
    -webkit-line-clamp: unset;
}

.mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 10px 12px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
}

.mobile-search svg {
    width: 18px;
    color: var(--sb-blue-700);
}

.mobile-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
}

.hero {
    position: relative;
    min-height: min(720px, calc(100svh - 58px));
    overflow: hidden;
    color: var(--sb-white);
    background:
        linear-gradient(120deg, rgba(8, 42, 77, 0.98) 0%, rgba(11, 63, 119, 0.95) 48%, rgba(243, 247, 251, 0.2) 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px),
        var(--sb-blue-900);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -12vw -32% 48%;
    height: 84%;
    background: rgba(255, 255, 255, 0.14);
    transform: skewX(-14deg);
}

.hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    min-height: inherit;
    padding-top: 72px;
    padding-bottom: 42px;
}

.hero__copy {
    width: min(690px, 100%);
}

.hero .eyebrow {
    color: rgba(255, 255, 255, 0.82);
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--sb-font-display);
    font-size: clamp(2.42rem, 6vw, 5.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.94;
}

.hero p {
    max-width: 610px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1rem, 1.6vw, 1.18rem);
    line-height: 1.68;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero__actions .button--secondary {
    color: var(--sb-white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
}

.hero__media {
    position: absolute;
    z-index: 1;
    right: max(20px, calc((100vw - var(--sb-container)) / 2));
    bottom: 92px;
    width: min(48vw, 640px);
    height: 430px;
    pointer-events: none;
}

.hero__media img {
    position: absolute;
    width: 78%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 40px rgba(0, 0, 0, 0.24));
}

.hero__media img:first-child {
    right: 12%;
    bottom: 0;
    transform: rotate(-3deg);
}

.hero__media img:last-child {
    right: -8%;
    top: 4%;
    width: 58%;
    opacity: 0.92;
    transform: rotate(6deg);
}

.hero__search-panel {
    width: min(780px, 100%);
    margin-top: 42px;
    padding: 14px;
    color: var(--sb-text);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: var(--sb-radius);
    box-shadow: var(--sb-shadow-strong);
}

.search-panel label {
    display: block;
    margin: 0 0 8px;
    color: var(--sb-blue-900);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-panel__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
}

.search-panel__row svg {
    width: 20px;
    color: var(--sb-blue-700);
}

.search-panel input {
    width: 100%;
    min-width: 0;
    height: 46px;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--sb-text);
    font-weight: 700;
}

.hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.hero__metrics span {
    display: grid;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
    background: var(--sb-ice);
    color: var(--sb-muted);
    font-size: 0.78rem;
    font-weight: 700;
}

.hero__metrics strong {
    color: var(--sb-blue-900);
    font-family: var(--sb-font-display);
    font-size: 1.42rem;
}

.service-strip {
    background: var(--sb-white);
    border-bottom: 1px solid var(--sb-line);
}

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

.service-strip__inner > div {
    display: flex;
    align-items: center;
    min-height: 90px;
    gap: 12px;
    padding: 18px 20px;
    border-left: 1px solid var(--sb-line);
    color: var(--sb-blue-900);
    font-weight: 800;
}

.service-strip__inner > div:last-child {
    border-right: 1px solid var(--sb-line);
}

.service-strip svg {
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    color: var(--sb-blue-600);
}

.section {
    padding: clamp(64px, 8vw, 104px) 0;
}

.section--catalog,
.section--product-preview {
    background: var(--sb-white);
}

.section--workbench {
    padding-top: clamp(32px, 4vw, 52px);
    padding-bottom: clamp(32px, 4vw, 52px);
    background:
        linear-gradient(180deg, var(--sb-ice) 0%, #ffffff 100%);
}

.section--trust {
    color: var(--sb-white);
    background:
        linear-gradient(135deg, rgba(17, 28, 43, 0.98), rgba(8, 42, 77, 0.95)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 30px);
}

.section-heading {
    margin-bottom: 34px;
}

.section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.46fr);
    align-items: end;
    gap: 28px;
}

.section-heading h2,
.product-preview h2,
.trust-copy h2,
.request-panel h2,
.page-hero h1 {
    margin: 0;
    color: var(--sb-blue-900);
    font-family: var(--sb-font-display);
    font-size: clamp(2rem, 4vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: 0;
}

.section-heading p,
.product-preview p,
.trust-copy p,
.request-panel p {
    margin: 0;
    color: var(--sb-muted);
    font-size: 1rem;
    line-height: 1.68;
}

.section--trust .eyebrow,
.section--trust h2,
.section--trust p {
    color: var(--sb-white);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-card:hover {
    border-color: var(--sb-blue-600);
    box-shadow: var(--sb-shadow);
    transform: translateY(-2px);
}

.category-card__image {
    display: block;
    height: 254px;
    padding: 16px 18px 0;
    background:
        linear-gradient(135deg, rgba(var(--sb-ak-rgb), 0.18) 0 16%, transparent 16%),
        var(--sb-ice);
}

.category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.category-card__body {
    display: grid;
    gap: 18px;
    padding: 22px;
}

.category-card__count {
    color: var(--sb-blue-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-card h3,
.product-card h3,
.filter-panel h3,
.trust-steps h3 {
    margin: 8px 0 0;
    color: var(--sb-blue-900);
    font-size: 1.12rem;
    line-height: 1.24;
}

.category-card p,
.product-card p,
.trust-steps p {
    margin: 10px 0 0;
    color: var(--sb-muted);
    line-height: 1.55;
}

.tag-row,
.spec-row {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.tag-row span,
.spec-row span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    color: var(--sb-blue-800);
    background: var(--sb-ice);
    font-size: 0.76rem;
    font-weight: 800;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.filter-panel,
.product-area__bar,
.request-panel,
.content-wrap {
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: var(--sb-shadow);
}

.filter-panel {
    position: sticky;
    top: 88px;
    align-self: start;
    z-index: 10;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 16px;
    scrollbar-width: none;
}

.filter-panel::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.filter-panel__head,
.product-area__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.filter-panel__head {
    margin-bottom: 16px;
}

.filter-panel h3 {
    margin: 0;
}

.filter-panel__head button,
.filter-panel__head a {
    border: 0;
    color: var(--sb-blue-700);
    background: transparent;
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
}

.filter-group + .filter-group,
.filter-group + .catalog-filter-form__submit {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--sb-line);
}

.filter-group h4,
.filter-group summary {
    margin: 0 0 9px;
    color: var(--sb-blue-900);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
}

.filter-group summary {
    cursor: pointer;
    list-style: none;
}

.filter-group summary::-webkit-details-marker {
    display: none;
}

.filter-options {
    display: grid;
    gap: 6px;
}

.filter-options button {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 0;
    border: 0;
    color: var(--sb-muted);
    background: transparent;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.filter-options button span {
    width: 17px;
    height: 17px;
    border: 1px solid var(--sb-line-strong);
    border-radius: 4px;
    background: var(--sb-white);
}

.filter-options button.is-active span {
    border-color: var(--sb-blue-700);
    background:
        linear-gradient(135deg, transparent 0 38%, var(--sb-white) 38% 50%, transparent 50%),
        var(--sb-blue-700);
}

.filter-options--checks {
    max-height: 178px;
    overflow: auto;
    padding-right: 4px;
    scrollbar-width: none;
}

.filter-options--checks::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.filter-options--checks label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    min-height: 0;
    padding: 3px 0;
    color: var(--sb-muted);
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.25;
    overflow-wrap: anywhere;
    cursor: pointer;
}

.filter-options--checks input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.filter-options--checks label span {
    width: 15px;
    height: 15px;
    margin-top: 1px;
    flex: 0 0 auto;
    border: 1px solid var(--sb-line-strong);
    border-radius: 4px;
    background: var(--sb-white);
}

.filter-options--checks input:checked + span {
    border-color: var(--sb-blue-700);
    background:
        linear-gradient(135deg, transparent 0 38%, var(--sb-white) 38% 50%, transparent 50%),
        var(--sb-blue-700);
}

.catalog-filter-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
    min-height: 42px;
    padding: 0 16px;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.section--workbench.is-loading .catalog-layout {
    opacity: 0.58;
    pointer-events: none;
    transition: opacity 160ms ease;
}

.catalog-empty-note,
.catalog-empty {
    color: var(--sb-muted);
}

.catalog-empty {
    padding: 28px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: var(--sb-shadow);
}

.product-area {
    min-width: 0;
}

.product-area__bar {
    min-height: 72px;
    grid-column: 1 / -1;
    margin-bottom: 0;
    padding: 14px 18px;
}

.product-area__summary {
    min-width: 150px;
}

.product-area__bar strong {
    display: block;
    color: var(--sb-blue-900);
}

.product-area__bar span {
    color: var(--sb-muted);
    font-size: 0.85rem;
}

.product-area__bar label,
.catalog-toolbar__sort label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--sb-muted);
    font-size: 0.85rem;
    font-weight: 800;
}

.product-area__bar select,
.catalog-toolbar__sort select {
    appearance: none;
    -webkit-appearance: none;
    min-height: 44px;
    border: 1px solid #c8d9ea;
    border-radius: 8px;
    color: var(--sb-blue-900);
    background:
        linear-gradient(45deg, transparent 50%, var(--sb-blue-700) 50%) calc(100% - 18px) 50% / 6px 6px no-repeat,
        linear-gradient(135deg, var(--sb-blue-700) 50%, transparent 50%) calc(100% - 13px) 50% / 6px 6px no-repeat,
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72), 0 8px 20px rgba(8, 42, 77, 0.06);
    font-weight: 800;
    cursor: pointer;
    transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease, transform 220ms ease;
}

.product-area__bar select:hover,
.catalog-toolbar__sort select:hover {
    border-color: rgba(13, 74, 136, 0.42);
    box-shadow: 0 12px 26px rgba(8, 42, 77, 0.1);
    transform: translateY(-1px);
}

.product-area__bar select:focus,
.catalog-toolbar__sort select:focus {
    border-color: var(--sb-blue-700);
    outline: none;
    box-shadow: 0 0 0 3px rgba(13, 74, 136, 0.14), 0 12px 28px rgba(8, 42, 77, 0.1);
}

.product-area__bar select option,
.catalog-toolbar__sort select option {
    color: var(--sb-blue-900);
    background: #ffffff;
    font-weight: 700;
}

.product-area__bar {
    display: grid;
    grid-template-columns: minmax(150px, 0.36fr) minmax(320px, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 16px;
}

.catalog-toolbar__search,
.catalog-toolbar__sort {
    min-width: 0;
}

.catalog-toolbar__search .screen-reader-text {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.catalog-toolbar__search-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 5px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
    background: var(--sb-ice);
}

.catalog-toolbar__search-row svg {
    width: 18px;
    height: 18px;
    margin-left: 8px;
    color: var(--sb-muted);
}

.catalog-toolbar__search-row input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--sb-blue-900);
    background: transparent;
    font: inherit;
    font-weight: 700;
}

.catalog-toolbar__search-row input::placeholder {
    color: var(--sb-muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 20px;
    align-items: stretch;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: 0 10px 24px rgba(13, 54, 96, 0.06);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-card:hover {
    border-color: rgba(17, 89, 156, 0.28);
    box-shadow: 0 18px 34px rgba(13, 54, 96, 0.12);
    transform: translateY(-2px);
}

.product-card__image {
    display: grid;
    place-items: center;
    height: 330px;
    min-height: 0;
    padding: 20px;
    border-bottom: 1px solid var(--sb-line);
    background:
        linear-gradient(135deg, rgba(var(--sb-ak-rgb), 0.12) 0 18%, transparent 18%),
        var(--sb-ice);
}

.product-card__image--placeholder span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: var(--sb-radius);
    color: var(--sb-white);
    background: linear-gradient(135deg, var(--sb-blue-700), #6fa8d1);
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    max-height: 296px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    gap: 14px;
    padding: 18px;
}

.product-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    color: var(--sb-muted);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-card__meta span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__meta span:last-child {
    flex: 0 0 auto;
    color: var(--sb-green);
}

.product-card h3 {
    display: -webkit-box;
    min-height: 2.55em;
    overflow: hidden;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.28;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.spec-row--pairs {
    display: grid;
    gap: 8px;
}

.spec-row--pairs span {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__actions {
    display: grid;
    grid-template-columns: minmax(112px, 0.8fr) minmax(154px, 1.2fr);
    align-items: center;
    margin-top: auto;
    gap: 10px;
}

.product-card__actions .button {
    width: 100%;
    min-width: 0;
    padding: 7px 10px;
    white-space: normal;
}

.product-card__actions .button__label {
    max-width: 100%;
}

.product-card__actions [data-cart-add] {
    gap: 7px;
    font-size: 0.82rem;
}

.product-card__actions [data-cart-add] svg,
.product-card__actions [data-cart-add] img {
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 26px;
    padding: 14px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: var(--sb-shadow);
}

.catalog-pagination__pages {
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-pagination a,
.catalog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    min-height: 40px;
    padding: 0 12px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
    color: var(--sb-blue-800);
    background: var(--sb-white);
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
}

.catalog-pagination a:hover,
.catalog-pagination .is-active {
    color: var(--sb-white);
    border-color: var(--sb-blue-800);
    background: var(--sb-blue-800);
}

.catalog-pagination .is-disabled {
    color: var(--sb-muted);
    background: var(--sb-ice);
    opacity: 0.55;
}

.catalog-pagination__dots {
    min-width: 24px;
    border-color: transparent;
    background: transparent;
}

.section--workbench > .container {
    max-width: min(1760px, 100%);
}

.catalog-tabs {
    gap: 10px;
    margin: -30px 0 18px;
    padding: 2px 0 10px;
}

.catalog-tabs a {
    gap: 10px;
    min-height: 46px;
    padding: 0 16px;
    border-color: rgba(185, 202, 219, 0.82);
    box-shadow: 0 12px 24px rgba(8, 42, 77, 0.06);
}

.catalog-tabs a span {
    white-space: nowrap;
}

.catalog-tabs a em {
    display: inline-grid;
    place-items: center;
    min-width: 28px;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    color: var(--sb-blue-800);
    background: var(--sb-ice);
    font-style: normal;
    font-size: 0.75rem;
    font-weight: 900;
}

.catalog-tabs a:hover em,
.catalog-tabs a.is-active em {
    color: var(--sb-blue-900);
    background: var(--sb-white);
}

.catalog-layout {
    grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
    gap: 18px 22px;
}

.product-area__bar {
    min-height: 96px;
    padding: 18px;
    border-color: rgba(185, 202, 219, 0.72);
    background:
        linear-gradient(135deg, rgba(18, 104, 179, 0.08), rgba(255, 255, 255, 0) 36%),
        var(--sb-white);
    box-shadow: 0 20px 50px rgba(8, 42, 77, 0.1);
}

.product-area__kicker {
    display: block;
    margin-bottom: 4px;
    color: var(--sb-blue-700);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-area__bar strong {
    font-size: 1.35rem;
    line-height: 1;
}

.catalog-toolbar__search-row {
    min-height: 54px;
    padding: 6px;
    border-radius: 8px;
    background: #f7fafc;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.catalog-toolbar__search-row:focus-within {
    border-color: rgba(18, 104, 179, 0.42);
    box-shadow: 0 0 0 4px rgba(18, 104, 179, 0.1);
}

.catalog-toolbar__search-row input {
    font-size: 0.96rem;
}

.catalog-toolbar__sort label {
    justify-content: flex-end;
    gap: 12px;
}

.catalog-toolbar__sort select {
    min-height: 44px;
    min-width: 220px;
    padding: 0 42px 0 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.catalog-active {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    margin-top: -4px;
    padding: 12px 14px;
    border: 1px solid rgba(185, 202, 219, 0.7);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 30px rgba(8, 42, 77, 0.07);
}

.catalog-active > span {
    color: var(--sb-muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.catalog-active__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-width: 0;
}

.catalog-active__chips a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 32px;
    padding: 0 10px 0 12px;
    border-radius: 999px;
    color: var(--sb-blue-900);
    background: var(--sb-ice);
    font-size: 0.8rem;
    font-weight: 800;
}

.catalog-active__chips svg {
    width: 14px;
    height: 14px;
    color: var(--sb-blue-700);
}

.catalog-active__reset {
    color: var(--sb-blue-700);
    font-size: 0.82rem;
    font-weight: 900;
    white-space: nowrap;
}

.filter-panel {
    top: 90px;
    max-height: calc(100vh - 108px);
    padding: 0;
    border-color: rgba(185, 202, 219, 0.72);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 20px 48px rgba(8, 42, 77, 0.11);
}

.catalog-filter-form {
    display: grid;
    gap: 0;
}

.filter-panel__head {
    position: sticky;
    top: 0;
    z-index: 2;
    margin: 0;
    padding: 16px;
    border-bottom: 1px solid var(--sb-line);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
}

.filter-panel__head span {
    display: block;
    margin-bottom: 2px;
    color: var(--sb-blue-700);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter-panel h3 {
    font-size: 1.1rem;
}

.catalog-category-pick {
    display: grid;
    gap: 6px;
    padding: 14px;
}

.catalog-category-pick strong {
    display: flex;
    align-items: center;
    min-height: 38px;
    margin-top: 8px;
    padding: 0 10px;
    border-radius: 8px;
    color: var(--sb-blue-900);
    background: linear-gradient(135deg, rgba(18, 104, 179, 0.1), rgba(18, 104, 179, 0.02));
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.18;
}

.catalog-category-pick strong:first-child {
    margin-top: 0;
}

.catalog-category-pick a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 34px 9px 14px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: #465160;
    background: #ffffff;
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1.25;
    transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.catalog-category-pick a::after {
    content: "›";
    position: absolute;
    top: 50%;
    right: 13px;
    color: var(--sb-blue-700);
    font-size: 1.25rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(-50%) translateX(-4px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.catalog-category-pick a:hover {
    color: var(--sb-blue-900);
    border-color: rgba(18, 104, 179, 0.22);
    background: #f5f8fc;
    box-shadow: 0 10px 22px rgba(8, 42, 77, 0.08);
    transform: translateX(3px);
}

.catalog-category-pick a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

    .catalog-category-pick a.is-parent {
        min-height: 38px;
        margin-top: 8px;
        padding-left: 10px;
        color: var(--sb-blue-900);
    background: linear-gradient(135deg, rgba(18, 104, 179, 0.1), rgba(18, 104, 179, 0.02));
    font-size: 0.86rem;
    font-weight: 900;
}

.catalog-category-pick a.is-parent:first-child {
    margin-top: 0;
}

.filter-price {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid var(--sb-line);
}

.filter-price--temp {
    border-top: 1px solid var(--sb-line);
}

.filter-group--temp {
    background: rgba(255, 255, 255, 0.68);
}

.filter-price__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.filter-price__head strong {
    color: var(--sb-blue-900);
    font-size: 0.86rem;
}

.filter-price__head span {
    color: var(--sb-muted);
    font-size: 0.76rem;
    font-weight: 800;
}

.filter-price__inputs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.filter-price__inputs label {
    display: grid;
    gap: 5px;
}

.filter-price__inputs label span {
    color: var(--sb-muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.filter-price__inputs input {
    width: 100%;
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    color: var(--sb-blue-900);
    background: var(--sb-ice);
    font-weight: 800;
    outline: 0;
}

.filter-price__inputs input:focus {
    border-color: var(--sb-blue-600);
    box-shadow: 0 0 0 3px rgba(18, 104, 179, 0.1);
}

.filter-group {
    padding: 14px 16px;
}

.filter-group + .filter-group,
.filter-group + .catalog-filter-form__submit {
    margin-top: 0;
    padding-top: 14px;
}

.filter-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    font-size: 0.88rem;
}

.filter-group summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--sb-blue-700);
    border-bottom: 2px solid var(--sb-blue-700);
    transform: rotate(45deg) translateY(-2px);
    transition: transform 160ms ease;
}

.filter-group[open] summary::after {
    transform: rotate(225deg) translateY(-2px);
}

.filter-group summary em {
    margin-left: auto;
    color: var(--sb-muted);
    font-style: normal;
    font-size: 0.74rem;
}

.filter-group__search {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 36px;
    margin-top: 10px;
    padding: 0 10px;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    background: var(--sb-ice);
}

.filter-group__search svg {
    width: 15px;
    height: 15px;
    color: var(--sb-muted);
}

.filter-group__search input {
    min-width: 0;
    border: 0;
    outline: 0;
    color: var(--sb-blue-900);
    background: transparent;
    font-size: 0.8rem;
    font-weight: 700;
}

.filter-options--checks {
    max-height: 218px;
    margin-top: 10px;
    padding-right: 2px;
}

.filter-check {
    display: grid !important;
    grid-template-columns: 16px minmax(0, 1fr) auto;
    align-items: start;
    gap: 8px;
    min-height: 30px !important;
    padding: 5px 0 !important;
}

.filter-check.is-hidden {
    display: none !important;
}

.filter-check__box {
    width: 16px !important;
    height: 16px !important;
    margin-top: 1px !important;
}

.filter-check__text {
    min-width: 0;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    border: 0 !important;
    color: var(--sb-blue-900);
    background: transparent !important;
    font-size: 0.8rem;
    font-weight: 750;
    line-height: 1.25;
}

.filter-check small {
    color: var(--sb-muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.catalog-filter-form__submit {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin: 0;
    min-height: 48px;
    border-radius: 0 0 var(--sb-radius) var(--sb-radius);
}

.product-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
    gap: 18px;
}

.product-card {
    border-color: rgba(185, 202, 219, 0.74);
    box-shadow: 0 14px 32px rgba(8, 42, 77, 0.08);
}

.product-card:hover {
    border-color: rgba(18, 104, 179, 0.42);
    box-shadow: 0 26px 56px rgba(8, 42, 77, 0.15);
    transform: translateY(-3px);
}

.product-card__image {
    height: 350px;
    background:
        radial-gradient(circle at 50% 42%, rgba(18, 104, 179, 0.1), transparent 42%),
        #f4f8fb;
}

.product-card__body {
    gap: 13px;
    padding: 18px 18px 20px;
}

.product-card__meta span:first-child {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 999px;
    color: var(--sb-blue-800);
    background: var(--sb-ice);
}

.product-card__meta span:last-child {
    font-size: 0.92rem;
}

.product-card h3 {
    min-height: 2.65em;
    color: var(--sb-blue-900);
    font-size: 1.08rem;
}

.spec-row--pairs {
    gap: 7px;
}

.spec-row--pairs span {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
    gap: 8px;
    min-height: 34px;
    padding: 7px 9px;
    border-radius: 8px;
    white-space: normal;
}

.spec-row--pairs b {
    min-width: 0;
    overflow: hidden;
    color: var(--sb-muted);
    font-weight: 800;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card__actions .button {
    min-height: 44px;
}

.product-card__actions svg {
    width: 16px;
    height: 16px;
}

.section--workbench {
    position: relative;
}

.section--workbench.is-loading {
    cursor: progress;
}

.section--workbench.is-loading::after {
    content: "Обновляем каталог";
    position: fixed;
    z-index: 90;
    left: 50%;
    bottom: 26px;
    padding: 12px 16px;
    border: 1px solid rgba(185, 202, 219, 0.82);
    border-radius: 999px;
    color: var(--sb-blue-900);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 38px rgba(8, 42, 77, 0.16);
    font-size: 0.86rem;
    font-weight: 900;
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
}

.product-preview {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
    gap: clamp(30px, 5vw, 64px);
    align-items: center;
}

.product-single-price {
    display: grid;
    gap: 12px;
    justify-items: start;
    padding: 22px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--sb-shadow);
}

.product-single-price span {
    color: var(--sb-muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.product-single-price strong {
    color: var(--sb-blue-900);
    font-size: 2rem;
    font-weight: 900;
}

.product-single-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    gap: 24px;
}

.product-single-card,
.product-single-specs {
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: var(--sb-shadow);
}

.product-single-card {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 28px;
}

.product-single-card img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.product-single-placeholder {
    display: grid;
    place-items: center;
    gap: 14px;
    width: min(100%, 320px);
    min-height: 220px;
    padding: 28px;
    border-radius: var(--sb-radius);
    color: var(--sb-blue-900);
    background: rgba(255, 255, 255, 0.68);
    text-align: center;
}

.product-single-placeholder span {
    display: grid;
    place-items: center;
    width: 128px;
    height: 128px;
    border-radius: var(--sb-radius);
    color: var(--sb-white);
    background: linear-gradient(135deg, var(--sb-blue-700), #6fa8d1);
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-single-placeholder p {
    margin: 0;
    color: var(--sb-muted);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: none;
}

.product-single-specs {
    padding: 28px;
}

.product-single-specs h2 {
    margin: 0 0 18px;
    color: var(--sb-blue-900);
}

.product-single-specs dl {
    display: grid;
    margin: 0;
    border-top: 1px solid var(--sb-line);
}

.product-single-specs dl div {
    display: grid;
    grid-template-columns: minmax(180px, 0.48fr) minmax(0, 1fr);
    gap: 18px;
    padding: 13px 0;
    border-bottom: 1px solid var(--sb-line);
}

.product-single-specs dt {
    color: var(--sb-muted);
    font-weight: 800;
}

.product-single-specs dd {
    margin: 0;
    color: var(--sb-blue-900);
    font-weight: 800;
}

.product-detail-hero {
    padding: clamp(42px, 6vw, 86px) 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(14, 82, 148, 0.13), transparent 34%),
        linear-gradient(135deg, #f8fbff 0%, #eef5fb 52%, #ffffff 100%);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(420px, 0.95fr) minmax(0, 1fr);
    gap: clamp(28px, 4.5vw, 72px);
    align-items: start;
}

.product-detail__media,
.product-detail__summary,
.product-detail__request {
    border: 1px solid rgba(178, 201, 222, 0.78);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 22px 52px rgba(8, 42, 77, 0.12);
}

.product-detail__media {
    padding: clamp(18px, 2vw, 28px);
    border-radius: 28px;
}

.product-detail__image {
    display: grid;
    place-items: center;
    min-height: clamp(360px, 35vw, 560px);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(12, 70, 126, 0.08), rgba(255, 255, 255, 0.92)),
        #eef5fb;
    overflow: hidden;
}

.product-detail__image img {
    width: min(100%, 680px);
    max-height: 520px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.45s ease, opacity 0.25s ease;
}

.product-detail__image:hover img {
    transform: scale(1.035);
}

.product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.product-detail__thumbs button {
    display: grid;
    place-items: center;
    height: 112px;
    padding: 10px;
    border: 1px solid rgba(178, 201, 222, 0.82);
    border-radius: 18px;
    background: #f7fbff;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.product-detail__thumbs button:hover {
    border-color: var(--sb-blue-700);
    box-shadow: 0 14px 28px rgba(8, 42, 77, 0.12);
    transform: translateY(-2px);
}

.product-detail__thumbs img {
    width: 92%;
    height: 82%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-detail__summary {
    display: grid;
    gap: 24px;
    min-width: 0;
    max-width: 100%;
    padding: clamp(26px, 4vw, 54px);
    border-radius: 28px;
    overflow: hidden;
}

.product-detail__summary h1 {
    max-width: 920px;
    margin: 0;
    color: var(--sb-blue-950);
    font-size: clamp(1.4rem, 2.35vw, 2.7rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.product-detail__summary p {
    max-width: 680px;
    margin: 0;
    color: var(--sb-muted);
    font-size: 1.08rem;
}

.product-detail__description {
    display: grid;
    gap: 14px;
}

.product-detail__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-width: 0;
}

.product-detail__facts div {
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(178, 201, 222, 0.7);
    border-radius: 18px;
    background: #f4f8fc;
}

.product-detail__facts span,
.product-detail__buy span,
.product-detail__request span {
    display: block;
    color: var(--sb-muted);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-detail__facts strong {
    display: block;
    margin-top: 6px;
    color: var(--sb-blue-900);
    font-size: 1rem;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.product-detail__buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #eef5fb, #ffffff);
}

.product-detail__buy strong {
    display: block;
    margin-top: 2px;
    color: var(--sb-green, #078f55);
    font-size: clamp(1.5rem, 2.6vw, 2.35rem);
    font-weight: 950;
}

.product-detail__buy .button,
.product-detail__buy .button svg,
.product-detail__buy .button__label {
    color: var(--sb-white);
}

.product-detail__buy .button__label {
    display: inline;
    font-size: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.product-detail-section {
    background: #f4f8fc;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
    gap: 24px;
    align-items: start;
}

.product-detail-grid .product-single-specs {
    padding: clamp(22px, 3vw, 36px);
    border-radius: 24px;
}

.product-detail-grid .product-single-specs dl div {
    grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
    padding: 16px 0;
}

.product-detail__request {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 16px;
    padding: 26px;
    border-radius: 24px;
}

.product-detail__request h2 {
    margin: 0;
    color: var(--sb-blue-950);
    font-size: 1.7rem;
}

.product-detail__request p,
.product-detail__request-text {
    margin: 0;
    color: var(--sb-muted);
}

.product-detail__request-text {
    display: grid;
    gap: 10px;
}

.button--full {
    width: 100%;
    justify-content: center;
}

.product-preview__gallery {
    min-width: 0;
}

.product-preview__main {
    display: grid;
    place-items: center;
    min-height: 460px;
    padding: 28px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background:
        linear-gradient(135deg, rgba(18, 104, 179, 0.12) 0 24%, transparent 24%),
        var(--sb-ice);
}

.product-preview__main img {
    width: min(560px, 100%);
    max-height: 410px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.product-preview__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.product-preview__thumbs button {
    display: grid;
    place-items: center;
    height: 96px;
    padding: 8px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
    background: var(--sb-white);
}

.product-preview__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.spec-table {
    display: grid;
    margin: 26px 0;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    overflow: hidden;
}

.spec-table div {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
}

.spec-table div + div {
    border-top: 1px solid var(--sb-line);
}

.spec-table dt,
.spec-table dd {
    margin: 0;
    padding: 14px 16px;
}

.spec-table dt {
    color: var(--sb-muted);
    background: var(--sb-ice);
    font-weight: 800;
}

.spec-table dd {
    color: var(--sb-blue-900);
    font-weight: 800;
}

.product-preview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
    gap: clamp(32px, 6vw, 80px);
    align-items: center;
}

.trust-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.trust-steps article {
    min-height: 230px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.07);
}

.trust-steps span {
    color: var(--sb-amber);
    font-family: var(--sb-font-display);
    font-size: 2rem;
    font-weight: 800;
}

.trust-steps h3 {
    color: var(--sb-white);
}

.trust-steps p {
    color: rgba(255, 255, 255, 0.76);
}

.section--request {
    background: var(--sb-ice);
}

.request-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
    padding: clamp(24px, 5vw, 44px);
}

.request-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.request-form label {
    display: grid;
    gap: 8px;
    color: var(--sb-blue-900);
    font-size: 0.86rem;
    font-weight: 800;
}

.request-form__wide,
.request-form button,
.request-form p {
    grid-column: 1 / -1;
}

.request-form input,
.request-form textarea {
    width: 100%;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
    color: var(--sb-text);
    background: var(--sb-white);
    outline: 0;
}

.request-form input {
    height: 48px;
    padding: 0 14px;
}

.request-form textarea {
    resize: vertical;
    min-height: 120px;
    padding: 13px 14px;
}

.request-form input:focus,
.request-form textarea:focus {
    border-color: var(--sb-blue-600);
    box-shadow: 0 0 0 3px rgba(18, 104, 179, 0.12);
}

.request-form p {
    margin: -2px 0 0;
    color: var(--sb-muted-2);
    font-size: 0.78rem;
    line-height: 1.45;
}

.site-footer {
    color: rgba(255, 255, 255, 0.78);
    background: var(--sb-footer);
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(150px, 1fr)) minmax(190px, 0.9fr);
    gap: 34px;
    padding-top: 54px;
    padding-bottom: 38px;
}

.site-brand--footer .brand-copy strong,
.site-brand--footer .brand-copy span {
    color: var(--sb-white);
}

.footer-brand p {
    max-width: 290px;
    margin: 18px 0 0;
    line-height: 1.62;
}

.footer-social {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.footer-social a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--sb-radius-sm);
}

.footer-social a:hover {
    color: var(--sb-white);
    background: var(--sb-blue-600);
}

.footer-social img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-column h2 {
    margin: 0 0 14px;
    color: var(--sb-white);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a,
.footer-column span {
    display: block;
    line-height: 1.42;
}

.footer-column a:hover,
.footer-mini-menu a:hover {
    color: var(--sb-white);
}

.footer-contacts {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-phone {
    color: var(--sb-white);
    font-size: 1.18rem;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 20px;
    padding-bottom: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
}

.footer-madeby {
    flex: 0 0 auto;
    display: inline-grid;
    align-items: start;
    justify-items: center;
    gap: 6px;
    width: clamp(96px, 1.7vw, 118px);
    overflow: hidden;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.footer-madeby span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.footer-madeby--grid {
    position: absolute;
    right: 0;
    bottom: 38px;
    margin-top: 0;
}

.footer-madeby img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 0;
}

.footer-mini-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.form-consent {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 9px;
    margin: 0;
    color: var(--sb-muted);
    font-size: 0.76rem;
    line-height: 1.45;
}

.form-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--sb-blue-700);
}

.form-consent a {
    color: var(--sb-blue-700);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mobile-menu__consent {
    margin-top: 10px;
}

.contacts-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
    gap: 24px;
    align-items: start;
}

.contacts-page__info,
.contacts-page__form {
    display: grid;
    gap: 16px;
    padding: clamp(24px, 4vw, 40px);
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: var(--sb-shadow);
}

.contacts-page__info h2,
.contacts-page__form h2 {
    margin: 0;
    color: var(--sb-blue-900);
}

.contacts-page__info a {
    color: var(--sb-blue-900);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 900;
}

.contacts-page__info span {
    color: var(--sb-muted);
    font-weight: 900;
}

.contacts-page__info p {
    margin: 0;
    color: var(--sb-muted);
}

.contacts-page__form label {
    display: grid;
    gap: 8px;
    color: var(--sb-blue-900);
    font-size: 0.9rem;
    font-weight: 900;
}

.contacts-page__form input,
.contacts-page__form textarea {
    width: 100%;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    color: var(--sb-text);
    background: var(--sb-ice);
    outline: 0;
}

.contacts-page__form input {
    height: 48px;
    padding: 0 14px;
}

.contacts-page__form textarea {
    min-height: 130px;
    padding: 14px;
    resize: vertical;
}

.contacts-page__form .form-consent,
.quote-cart__form .form-consent {
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    color: var(--sb-muted);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1.45;
}

.contacts-page__form .form-consent input,
.quote-cart__form .form-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    padding: 0;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    z-index: 140;
    right: 18px;
    bottom: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    width: min(1120px, calc(100vw - 36px));
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: var(--sb-shadow-strong);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-banner.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cookie-banner strong {
    flex: 0 0 auto;
    color: var(--sb-blue-900);
    font-size: 1rem;
    line-height: 1.2;
    white-space: nowrap;
}

.cookie-banner > div:first-child {
    min-width: 0;
}

.cookie-banner p {
    min-width: 0;
    max-width: none;
    margin: 0;
    color: var(--sb-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    overflow: visible;
    overflow-wrap: normal;
    text-overflow: clip;
    white-space: normal;
}

.cookie-banner p a {
    color: var(--sb-blue-700);
    font-weight: 800;
    white-space: normal;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    justify-self: end;
    flex: 0 0 auto;
    min-width: 0;
}

.cookie-banner__actions .button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 24px;
    font-size: 0.86rem;
}

.page-hero {
    padding: 64px 0;
    color: var(--sb-white);
    background: var(--sb-blue-900);
}

.page-hero--catalog {
    background:
        linear-gradient(135deg, rgba(8, 42, 77, 0.98), rgba(17, 89, 156, 0.92)),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px);
}

.page-hero--catalog .container {
    max-width: min(1660px, 100%);
}

.page-hero--catalog .page-hero__grid {
    grid-template-columns: minmax(0, 1180px);
    align-items: start;
    justify-content: center;
    text-align: center;
}

.page-hero--catalog h1 {
    max-width: 1120px;
    margin-right: auto;
    margin-left: auto;
}

.page-hero--catalog p {
    max-width: 720px;
}

.page-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.72fr);
    align-items: end;
    gap: 32px;
}

.page-hero h1 {
    color: var(--sb-white);
}

.page-hero p {
    max-width: 640px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.04rem;
    line-height: 1.65;
}

.search-panel--page {
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--sb-shadow);
}

.quote-cart {
    position: fixed;
    inset: 0;
    z-index: 220;
    pointer-events: none;
}

.quote-cart.is-open {
    pointer-events: auto;
}

.quote-cart__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 52, 0.42);
    opacity: 0;
    transition: opacity 180ms ease;
}

.quote-cart.is-open .quote-cart__backdrop {
    opacity: 1;
}

.quote-cart__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: min(520px, 100vw);
    height: 100%;
    padding: 20px;
    background: var(--sb-white);
    box-shadow: -24px 0 60px rgba(8, 24, 52, 0.22);
    transform: translateX(104%);
    transition: transform 220ms ease;
}

.quote-cart.is-open .quote-cart__panel {
    transform: translateX(0);
}

.quote-cart__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--sb-line);
}

.quote-cart__head span {
    color: var(--sb-blue-700);
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-cart__head h2 {
    margin: 4px 0 0;
    color: var(--sb-blue-900);
    font-size: 1.7rem;
    line-height: 1;
}

.quote-cart__head button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    color: var(--sb-blue-900);
    background: var(--sb-white);
}

.quote-cart__items {
    display: grid;
    gap: 10px;
    overflow: auto;
    max-height: 36vh;
    padding: 16px 2px;
}

.quote-cart__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    background: var(--sb-ice);
}

.quote-cart__item strong {
    color: var(--sb-blue-900);
    font-size: 0.92rem;
    line-height: 1.3;
}

.quote-cart__item span {
    display: block;
    margin-top: 5px;
    color: var(--sb-green);
    font-size: 0.82rem;
    font-weight: 900;
}

.quote-cart__item button {
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 8px;
    color: var(--sb-muted);
    background: var(--sb-white);
}

.quote-cart__empty {
    margin: 16px 0;
    padding: 18px;
    border: 1px dashed var(--sb-line-strong);
    border-radius: 8px;
    color: var(--sb-muted);
    background: var(--sb-ice);
}

.quote-cart__empty strong {
    display: block;
    color: var(--sb-blue-900);
    margin-bottom: 6px;
}

.quote-cart__empty p {
    margin: 0;
    line-height: 1.5;
}

.quote-cart__form {
    display: grid;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--sb-line);
}

.quote-cart__form label {
    display: grid;
    gap: 7px;
    color: var(--sb-blue-900);
    font-size: 0.84rem;
    font-weight: 900;
}

.quote-cart__form input,
.quote-cart__form textarea {
    width: 100%;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    color: var(--sb-text);
    background: var(--sb-white);
    outline: 0;
}

.quote-cart__form input {
    height: 44px;
    padding: 0 12px;
}

.quote-cart__form textarea {
    min-height: 88px;
    resize: vertical;
    padding: 12px;
}

.quote-cart__form input:focus,
.quote-cart__form textarea:focus {
    border-color: var(--sb-blue-600);
    box-shadow: 0 0 0 3px rgba(18, 104, 179, 0.1);
}

.quote-cart__form p {
    margin: 0;
    color: var(--sb-muted);
    font-size: 0.78rem;
    line-height: 1.45;
}

.quote-success-modal {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: grid;
    place-items: center;
    padding: 20px;
    pointer-events: none;
}

.quote-success-modal.is-open {
    pointer-events: auto;
}

.quote-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 24, 52, 0.48);
    opacity: 0;
    transition: opacity 180ms ease;
}

.quote-success-modal.is-open .quote-success-modal__backdrop {
    opacity: 1;
}

.quote-success-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    padding: 30px;
    border: 1px solid rgba(18, 104, 179, 0.18);
    border-radius: 12px;
    background: var(--sb-white);
    box-shadow: 0 28px 70px rgba(8, 24, 52, 0.28);
    text-align: center;
    transform: translateY(14px) scale(0.98);
    opacity: 0;
    transition: transform 220ms ease, opacity 220ms ease;
}

.quote-success-modal.is-open .quote-success-modal__dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.quote-success-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    color: var(--sb-blue-900);
    background: var(--sb-white);
}

.quote-success-modal__icon {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--sb-green), #28b673);
    box-shadow: 0 18px 38px rgba(10, 154, 91, 0.24);
}

.quote-success-modal__dialog span {
    color: var(--sb-blue-700);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.quote-success-modal__dialog h2 {
    margin: 8px 0 12px;
    color: var(--sb-blue-900);
    font-size: clamp(1.55rem, 4vw, 2.15rem);
    line-height: 1.08;
}

.quote-success-modal__dialog p {
    margin: 0 0 22px;
    color: var(--sb-muted);
    line-height: 1.55;
}

.catalog-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin: -28px 0 22px;
    padding: 2px 0 8px;
}

.catalog-tabs a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--sb-line);
    border-radius: 999px;
    color: var(--sb-blue-800);
    background: var(--sb-white);
    font-size: 0.86rem;
    font-weight: 800;
}

.catalog-tabs a:hover {
    color: var(--sb-white);
    background: var(--sb-blue-800);
    border-color: var(--sb-blue-800);
}

.catalog-tabs a.is-active {
    color: var(--sb-white);
    background: var(--sb-blue-800);
    border-color: var(--sb-blue-800);
    box-shadow: 0 12px 24px rgba(17, 89, 156, 0.2);
}

.content-wrap {
    padding: clamp(22px, 4vw, 42px);
}

.content-entry + .content-entry {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--sb-line);
}

.content-entry h2 {
    margin: 0 0 10px;
    color: var(--sb-blue-900);
}

.entry-content {
    color: var(--sb-muted);
    line-height: 1.7;
}

@media (max-width: 1180px) {
    .site-nav,
    .header-cta {
        display: none;
    }

    .cookie-banner {
        left: 18px;
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .cookie-banner p,
    .cookie-banner p a {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .mobile-toggle {
        display: inline-flex;
    }

    .hero__media {
        width: min(54vw, 540px);
        opacity: 0.7;
    }

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

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    }

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

    .footer-madeby--grid {
        position: static;
        justify-self: start;
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .topbar__left {
        display: none;
    }

    .topbar__inner {
        justify-content: center;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        padding-top: 58px;
        padding-bottom: 34px;
    }

    .hero__media {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 250px;
        margin: 24px auto 0;
    }

    .hero__media img:first-child {
        left: 2%;
        right: auto;
        width: 74%;
    }

    .hero__media img:last-child {
        right: 2%;
        width: 46%;
    }

    .service-strip__inner,
    .section-heading--split,
    .product-preview,
    .product-detail,
    .product-single-layout,
    .product-detail-grid,
    .contacts-page__grid,
    .trust-grid,
    .request-panel,
    .page-hero__grid {
        grid-template-columns: 1fr;
    }

    .service-strip__inner {
        gap: 0;
    }

    .service-strip__inner > div {
        min-height: 72px;
        border-right: 1px solid var(--sb-line);
        border-bottom: 1px solid var(--sb-line);
    }

    .trust-steps {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
        max-height: none;
    }
}

@media (max-width: 680px) {
    .topbar__right {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
    }

    .topbar__right a:first-child {
        display: none;
    }

    .mainbar__inner {
        min-height: 68px;
        gap: 12px;
    }

    .site-brand {
        min-width: 0;
    }

    .brand-copy span {
        max-width: 150px;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 13vw, 3.6rem);
    }

    .hero__actions,
    .product-preview__actions {
        display: grid;
    }

    .product-card__actions {
        grid-template-columns: 1fr;
    }

    .hero__metrics,
    .service-strip__inner,
    .category-grid,
    .request-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero__search-panel {
        padding: 12px;
    }

    .search-panel__row {
        grid-template-columns: auto 1fr;
    }

    .search-panel__row button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .category-card__image {
        height: 220px;
    }

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

    .product-card__image {
        height: 290px;
    }

    .catalog-pagination {
        flex-wrap: wrap;
    }

    .catalog-pagination__pages {
        order: 3;
        justify-content: center;
        width: 100%;
    }

    .catalog-active {
        grid-template-columns: 1fr;
    }

    .catalog-active__reset {
        justify-self: start;
    }

    .filter-price__inputs {
        grid-template-columns: 1fr;
    }

    .spec-row--pairs span {
        grid-template-columns: 1fr;
    }

    .product-area__bar {
        align-items: flex-start;
        grid-template-columns: 1fr;
    }

    .product-area__bar label,
    .product-area__bar select,
    .catalog-toolbar__search,
    .catalog-toolbar__sort {
        width: 100%;
    }

    .catalog-toolbar__search-row {
        grid-template-columns: auto minmax(0, 1fr);
        min-height: 54px;
        padding: 6px 7px;
        border-color: rgba(13, 74, 136, 0.34);
        background: #ffffff;
        box-shadow: inset 0 0 0 1px rgba(13, 74, 136, 0.08), 0 10px 24px rgba(8, 42, 77, 0.08);
    }

    .catalog-toolbar__search-row svg {
        color: var(--sb-blue-700);
    }

    .catalog-toolbar__search-row input {
        font-size: 0.95rem;
        font-weight: 800;
    }

    .catalog-toolbar__search-row input::placeholder {
        color: rgba(93, 113, 132, 0.54);
        opacity: 1;
    }

    .catalog-toolbar__search-row:focus-within {
        border-color: var(--sb-blue-700);
        box-shadow: 0 0 0 3px rgba(13, 74, 136, 0.12), 0 12px 28px rgba(8, 42, 77, 0.1);
    }

    .catalog-toolbar__search-row button {
        grid-column: 1 / -1;
        min-height: 42px;
        width: 100%;
    }

    .product-preview__main {
        min-height: 310px;
        padding: 18px;
    }

    .product-detail-hero {
        padding: 28px 0 42px;
    }

    .product-detail {
        gap: 18px;
    }

    .product-detail__media,
    .product-detail__summary,
    .product-detail-grid .product-single-specs,
    .product-detail__request {
        border-radius: 20px;
    }

    .product-detail__image {
        min-height: 300px;
        border-radius: 16px;
    }

    .product-detail__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-detail__thumbs button {
        height: 82px;
        border-radius: 14px;
    }

    .product-detail__summary {
        padding: 22px;
    }

    .product-detail__facts,
    .product-detail__buy {
        grid-template-columns: 1fr;
    }

    .product-detail__buy {
        align-items: stretch;
        flex-direction: column;
    }

    .product-detail-grid .product-single-specs dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .product-detail__request {
        position: static;
        padding: 22px;
    }

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

    .spec-table div {
        grid-template-columns: 1fr;
    }

    .product-single-specs dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .request-panel {
        padding: 22px;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
        align-items: stretch;
        gap: 12px;
    }

    .cookie-banner > div:first-child,
    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner p,
    .cookie-banner p a {
        max-width: none;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
    }

    .cookie-banner__actions {
        justify-self: stretch;
    }

    .cookie-banner__actions .button {
        width: 100%;
    }
}

/* Reference-style homepage based on the supplied screenshot. */
.site-header {
    background: var(--sb-white);
    border-bottom: 1px solid #edf1f5;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.site-header--overlay {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 24, 52, 0.08);
    border-bottom-color: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease;
}

.site-header.site-header--overlay .mainbar__inner,
.site-header.site-header--overlay .brand-mark,
.site-header.site-header--overlay .brand-copy strong,
.site-header.site-header--overlay .header-cta {
    transition: min-height 220ms ease, width 220ms ease, height 220ms ease, font-size 220ms ease, padding 220ms ease;
}

.site-header.site-header--overlay:not(.is-scrolled) .brand-copy strong,
.site-header.site-header--overlay:not(.is-scrolled) .brand-copy span,
.site-header.site-header--overlay:not(.is-scrolled) .nav-menu a,
.site-header.site-header--overlay:not(.is-scrolled) .nav-menu__trigger,
.site-header.site-header--overlay:not(.is-scrolled) .header-contacts,
.site-header.site-header--overlay:not(.is-scrolled) .header-contacts a:last-child {
    color: var(--sb-white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.site-header.site-header--overlay:not(.is-scrolled) .mobile-toggle {
    border-color: rgba(255, 255, 255, 0.42);
    background: var(--sb-blue-700);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.site-header.site-header--overlay:not(.is-scrolled) .mobile-toggle span {
    background: var(--sb-white);
}

.site-header.site-header--overlay.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: #edf1f5;
    box-shadow: 0 12px 34px rgba(8, 24, 52, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.site-header.site-header--overlay.is-scrolled .mainbar__inner {
    min-height: 52px;
}

.site-header.site-header--overlay.is-scrolled .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 0.74rem;
}

.site-header.site-header--overlay.is-scrolled .brand-copy strong {
    font-size: 0.98rem;
}

.site-header.site-header--overlay.is-scrolled .brand-copy span {
    font-size: 0.5rem;
}

.site-header.is-scrolled .site-brand {
    gap: 8px;
    padding: 5px 8px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.site-header.site-header--overlay.is-scrolled .header-cta {
    min-height: 34px;
    padding: 0 14px;
}

.mainbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 24px;
}

.mainbar .container {
    max-width: min(1760px, 100%);
    overflow-x: clip;
}

.site-brand {
    flex: 0 0 auto;
    min-width: 0;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 10px 26px rgba(8, 42, 77, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.site-header.site-header--overlay:not(.is-scrolled) .site-brand {
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 34px rgba(8, 24, 52, 0.18);
}

.site-header.site-header--overlay:not(.is-scrolled) .brand-copy strong {
    color: #10263b;
    text-shadow: none;
}

.site-header.site-header--overlay:not(.is-scrolled) .brand-copy span {
    color: var(--sb-blue-700);
    text-shadow: none;
}

.brand-mark {
    width: 54px;
    height: 54px;
    color: var(--sb-white);
    background:
        linear-gradient(135deg, var(--sb-blue-600) 0 34%, transparent 34%),
        #4d555d;
    font-size: 1.06rem;
    letter-spacing: -0.03em;
}

.brand-copy strong {
    color: #4d555d;
    font-size: 1.48rem;
    font-weight: 900;
    letter-spacing: -0.04em;
}

.brand-copy span {
    color: var(--sb-blue-700);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.site-nav {
    flex: 1 1 auto;
    min-width: 0;
    margin-left: 0;
}

.nav-menu {
    justify-content: center;
    gap: clamp(14px, 1.55vw, 30px);
    min-width: 0;
}

.nav-menu a {
    color: #4f5962;
    display: block;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.header-actions {
    flex: 0 0 auto;
    gap: 14px;
    min-width: 0;
}

.header-contacts {
    display: grid;
    min-width: 0;
    gap: 2px;
    color: #4f5962;
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.25;
    text-align: right;
    white-space: nowrap;
}

.header-contacts a:last-child {
    color: #3f474f;
    font-size: 0.94rem;
    font-weight: 900;
}

.header-cta {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 0;
    color: var(--sb-white);
    background: var(--sb-blue-700);
    box-shadow: none;
    font-size: 0.74rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.reference-home {
    background: var(--sb-white);
    overflow: visible;
}

.reference-hero {
    --hero-bg-x: center;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    display: flex;
    align-items: center;
    min-height: clamp(430px, 42vw, 560px);
    padding: clamp(72px, 7vw, 98px) 0 clamp(44px, 5vw, 66px);
    max-height: none;
    overflow: hidden;
    background: #eef3f8;
}

.reference-hero::before,
.reference-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -13%;
    right: 0;
    bottom: -13%;
    left: 0;
    background-image: var(--hero-banner);
    background-position: var(--hero-bg-x) center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.04);
    will-change: transform, opacity, filter;
}

.reference-hero::before {
    background-image: var(--hero-banner);
}

.reference-hero::after {
    background-image: var(--hero-next-banner);
    opacity: 0;
    pointer-events: none;
}

.reference-hero.is-switching::before {
    animation: heroPageOut 860ms cubic-bezier(0.22, 0.78, 0.22, 1) both;
}

.reference-hero.is-switching::after {
    animation: heroPageIn 860ms cubic-bezier(0.22, 0.78, 0.22, 1) both;
}

.reference-hero.is-switching.is-reverse::before {
    animation-name: heroPageOutReverse;
}

.reference-hero.is-switching.is-reverse::after {
    animation-name: heroPageInReverse;
}

@keyframes heroPageOut {
    0% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1.04);
    }
    100% {
        opacity: 0.18;
        filter: blur(8px);
        transform: translateX(-5.5%) scale(1.08);
    }
}

@keyframes heroPageIn {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateX(5.5%) scale(1.08);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1.04);
    }
}

@keyframes heroPageOutReverse {
    0% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1.04);
    }
    100% {
        opacity: 0.18;
        filter: blur(8px);
        transform: translateX(5.5%) scale(1.08);
    }
}

@keyframes heroPageInReverse {
    0% {
        opacity: 0;
        filter: blur(10px);
        transform: translateX(-5.5%) scale(1.08);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0) scale(1.04);
    }
}

.reference-hero__content {
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    width: min(820px, calc(100vw - 48px));
    min-height: 0;
    margin: 0 auto 0 max(24px, calc((100vw - 1320px) / 2));
    padding: clamp(28px, 3.5vw, 46px) clamp(28px, 3.8vw, 50px);
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px) saturate(112%);
    -webkit-backdrop-filter: blur(18px) saturate(112%);
    box-shadow: 0 24px 58px rgba(8, 42, 77, 0.14);
    color: var(--sb-blue-900);
}

.reference-hero__content::before {
    content: none;
}

.reference-hero__content .eyebrow {
    margin-bottom: 14px;
    color: var(--sb-blue-700);
}

.reference-hero__content h1 {
    max-width: none;
    margin: 0 0 16px;
    font-size: clamp(2rem, 3.35vw, 3.45rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.reference-hero__content p {
    max-width: 660px;
    margin: 0;
    color: var(--sb-muted);
    font-size: clamp(0.98rem, 1.22vw, 1.14rem);
    line-height: 1.48;
}

.reference-hero__intro {
    display: grid;
    gap: 10px;
}

.reference-hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    min-height: 500px;
    padding-top: 32px;
    padding-bottom: 32px;
    text-align: center;
}

.reference-hero__badge {
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    margin-bottom: -36px;
    border-radius: 999px;
    color: var(--sb-white);
    background: var(--sb-blue-600);
    box-shadow: 0 12px 30px rgba(18, 104, 179, 0.26);
    font-family: var(--sb-font-display);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    text-transform: lowercase;
}

.reference-hero__title {
    display: grid;
    gap: 2px;
    color: #5b6168;
    font-family: var(--sb-font-display);
    font-size: clamp(3rem, 7vw, 6.4rem);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 0;
}

.reference-hero__title strong {
    color: var(--sb-blue-700);
    font-size: 0.58em;
}

.reference-hero__visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.reference-hero__product {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 18px 24px rgba(16, 24, 40, 0.12));
    mix-blend-mode: multiply;
}

.reference-hero__product--left {
    left: 5vw;
    bottom: 18px;
    width: min(34vw, 520px);
    transform: rotate(-5deg);
}

.reference-hero__product--right {
    right: 3vw;
    bottom: 18px;
    width: min(34vw, 520px);
    transform: rotate(4deg);
}

.hero-arrow,
.news-arrow {
    position: absolute;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 54px;
    height: 74px;
    border: 0;
    color: rgba(79, 89, 98, 0.52);
    background: transparent;
}

.hero-arrow svg,
.news-arrow svg {
    width: 42px;
    height: 42px;
    stroke-width: 1.4;
}

.hero-arrow--prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.hero-arrow--next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-dots {
    display: flex;
    gap: 8px;
    margin-top: 34px;
}

.slider-dots span {
    width: 14px;
    height: 14px;
    border: 3px solid var(--sb-white);
    border-radius: 999px;
    box-shadow: 0 0 0 1px rgba(11, 63, 119, 0.12);
}

.slider-dots .is-active {
    border-color: var(--sb-blue-600);
    background: var(--sb-white);
}

.reference-search {
    position: relative;
    z-index: 3;
    margin-top: -54px;
    padding: 12px 0;
    border-radius: 24px 24px 0 0;
    background: #f1f3f5;
    box-shadow: 0 -24px 54px rgba(8, 24, 52, 0.18);
}

.reference-search__form {
    display: grid;
    grid-template-columns: minmax(240px, 520px) 160px;
    justify-content: center;
    gap: 12px;
}

.reference-search__form input,
.reference-search__form button {
    height: 42px;
    border-radius: 0;
}

.reference-search__form input {
    border: 1px solid #b8c0c8;
    padding: 0 16px;
    color: #4f5962;
    background: var(--sb-white);
}

.reference-search__form button {
    border: 0;
    color: var(--sb-white);
    background: var(--sb-blue-700);
    font-weight: 800;
}

.reference-partners {
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding: 34px 0 28px;
    background: var(--sb-white);
}

.reference-partners__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.reference-partners__viewport::before,
.reference-partners__viewport::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: clamp(42px, 8vw, 140px);
    pointer-events: none;
}

.reference-partners__viewport::before {
    left: 0;
    background: linear-gradient(90deg, var(--sb-white), rgba(255, 255, 255, 0));
}

.reference-partners__viewport::after {
    right: 0;
    background: linear-gradient(270deg, var(--sb-white), rgba(255, 255, 255, 0));
}

.reference-partners__track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 18px;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.partner-logo {
    --partner-logo-max-height: 68px;
    --partner-logo-max-width: 86%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    width: clamp(190px, 18vw, 240px);
    height: 168px;
    padding: 12px;
    border: 1px solid rgba(185, 202, 219, 0.76);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 32px rgba(8, 42, 77, 0.08);
    text-decoration: none;
}

.partner-logo__media,
.partner-logo__title {
    width: 100%;
    background: #ffffff;
}

.partner-logo__media {
    display: grid;
    place-items: center;
    height: 94px;
    padding: 8px 10px;
    overflow: hidden;
}

.partner-logo img {
    flex: 0 0 auto;
    width: auto;
    height: auto;
    max-width: var(--partner-logo-max-width);
    max-height: var(--partner-logo-max-height);
    display: block;
    object-fit: contain;
}

.partner-logo--image {
    padding: 12px;
    overflow: hidden;
}

.partner-logo__title {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 4px 8px;
    overflow: hidden;
    color: var(--sb-muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

.reference-section {
    padding: 54px 0;
}

.reference-title {
    margin: 0 0 54px;
    color: #4f5962;
    font-family: var(--sb-font-body);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 900;
    letter-spacing: 0.01em;
    line-height: 1.1;
    text-align: center;
}

.reference-catalog {
    position: relative;
    z-index: 3;
    --equipment-radius: 18px;
    --equipment-accent: #1e4fa8;
    --equipment-accent-2: #6fa8d1;
    --equipment-border: rgba(255, 255, 255, 0.28);
    --equipment-shadow: 0 16px 34px rgba(30, 79, 168, 0.16);
    scrollbar-color: rgba(30, 79, 168, 0.82) rgba(30, 79, 168, 0.12);
    background:
        radial-gradient(circle at 14% 0%, rgba(30, 79, 168, 0.16), transparent 34%),
        radial-gradient(circle at 88% 16%, rgba(111, 168, 209, 0.18), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f3f8fd 48%, #edf4fb 100%);
    border-top: 1px solid rgba(30, 79, 168, 0.12);
    border-bottom: 1px solid rgba(30, 79, 168, 0.12);
}

.reference-catalog .reference-title {
    margin-bottom: 32px;
    color: var(--sb-blue-700);
    text-shadow: 0 12px 28px rgba(30, 79, 168, 0.14);
}

.reference-catalog .container {
    max-width: 1600px;
}

.reference-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.reference-category-card {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 0;
    border-radius: var(--equipment-radius);
    background: linear-gradient(165deg, rgba(9, 22, 34, 0.36), rgba(7, 16, 26, 0.5));
    box-shadow: 0 10px 24px rgba(3, 8, 14, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reference-category-card:hover {
    box-shadow: var(--equipment-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transform: translateY(-6px);
}

.reference-category-card__link {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    min-height: inherit;
    overflow: hidden;
    padding: clamp(14px, 2vw, 24px);
    border: 1px solid var(--equipment-border);
    border-radius: inherit;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(165deg, rgba(9, 22, 34, 0.36), rgba(7, 16, 26, 0.5));
    backdrop-filter: blur(6px) saturate(118%);
    -webkit-backdrop-filter: blur(6px) saturate(118%);
}

.reference-category-card__link::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(2, 8, 15, 0.16) 0%, rgba(2, 8, 14, 0.78) 100%);
    transition: background 0.25s ease;
}

.reference-category-card:hover .reference-category-card__link::after {
    background: linear-gradient(180deg, rgba(2, 8, 15, 0.06) 0%, rgba(2, 8, 14, 0.68) 100%);
}

.reference-category-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    min-height: 0;
    padding: 0;
    background: #081834;
}

.reference-category-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
    transition: transform 0.45s ease, filter 0.45s ease;
}

.reference-category-card:hover .reference-category-card__image img {
    filter: saturate(1.16) contrast(1.12);
    transform: scale(1.08);
}

.reference-category-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    min-height: 0;
    margin-top: auto;
    padding: 14px 0 0;
    border-top: 0;
    background: transparent;
    color: #ffffff;
}

.reference-category-card h2 {
    min-width: 0;
    margin: 0;
    color: inherit;
    font-size: clamp(1.08rem, 1.5vw, 1.34rem);
    font-weight: 900;
    line-height: 1.13;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.reference-category-card__more {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    gap: 6px;
    min-height: 32px;
    padding: 6px 14px;
    border: 1px solid rgba(111, 168, 209, 0.5);
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(110deg, var(--equipment-accent), var(--equipment-accent-2));
    box-shadow: 0 6px 16px rgba(30, 79, 168, 0.35);
    font-size: 0.78rem;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition:
        opacity 0.28s ease,
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.28s ease;
}

.reference-category-card:hover .reference-category-card__more {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.reference-category-card__more:hover {
    box-shadow: 0 8px 22px rgba(30, 79, 168, 0.5);
}

.reference-category-card__more svg {
    width: 16px;
    height: 16px;
}

@media (hover: none) {
    .reference-category-card__more {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }
}

.reference-category-more {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.reference-category-more__button {
    min-width: 178px;
    border-color: rgba(111, 168, 209, 0.5);
    border-radius: 999px;
    background: linear-gradient(110deg, var(--equipment-accent), var(--equipment-accent-2));
    box-shadow: 0 10px 24px rgba(30, 79, 168, 0.35);
}

.reference-category-more__button:hover {
    box-shadow: 0 14px 30px rgba(30, 79, 168, 0.46);
}

.home-section-head {
    max-width: 760px;
    margin: 0 0 30px;
}

.home-section-head--wide {
    max-width: 920px;
}

.home-section-head .eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--sb-blue-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-section-head h2 {
    margin: 0;
    color: var(--sb-blue-900);
    font-size: clamp(1.85rem, 3vw, 3rem);
    font-weight: 900;
    line-height: 1.06;
}

.home-advantages {
    background: var(--sb-white);
}

.home-advantages__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.home-advantage {
    position: relative;
    display: grid;
    align-content: start;
    gap: 14px;
    min-height: 260px;
    padding: 24px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 14px 34px rgba(8, 42, 77, 0.08);
    overflow: hidden;
}

.home-advantage__icon {
    position: absolute;
    top: 12px;
    right: 18px;
    z-index: 0;
    color: rgba(18, 104, 179, 0.09);
    font-family: var(--sb-font-display);
    font-size: clamp(5.8rem, 7vw, 7.8rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.82;
    pointer-events: none;
    user-select: none;
}

.home-advantage h3,
.home-seo-text__grid h3 {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--sb-blue-900);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1.2;
}

.home-advantage p,
.home-seo-text__grid p,
.home-faq__list p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--sb-muted);
    font-size: 0.96rem;
    line-height: 1.62;
}

.home-seo-text__grid p + p,
.home-faq__list p + p {
    margin-top: 10px;
}

.home-seo-text {
    background:
        linear-gradient(180deg, #f8fbff 0%, #eef5fb 100%);
    border-top: 1px solid rgba(8, 42, 77, 0.08);
    border-bottom: 1px solid rgba(8, 42, 77, 0.08);
}

.home-seo-text__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.home-seo-text__grid article {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 220px;
    padding: 24px;
    border: 1px solid rgba(8, 42, 77, 0.1);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.72);
}

.home-faq {
    background: var(--sb-white);
}

.home-faq__layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
    gap: clamp(24px, 5vw, 74px);
    align-items: start;
}

.home-faq__list {
    border-top: 1px solid var(--sb-line);
}

.home-faq__list details {
    border-bottom: 1px solid var(--sb-line);
    background: var(--sb-white);
}

.home-faq__list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 72px;
    padding: 20px 0;
    color: var(--sb-blue-900);
    font-weight: 900;
    line-height: 1.28;
    cursor: pointer;
    list-style: none;
}

.home-faq__list summary::-webkit-details-marker {
    display: none;
}

.home-faq__list summary::after {
    content: "+";
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--sb-line);
    border-radius: 50%;
    color: var(--sb-blue-700);
    font-size: 1.3rem;
    font-weight: 700;
}

.home-faq__list details[open] summary::after {
    content: "-";
}

.home-faq__list p {
    max-width: 860px;
    padding: 0 48px 22px 0;
}

.process-rays {
    position: relative;
    z-index: 3;
    overflow: hidden;
    padding-top: 38px;
    padding-bottom: 42px;
    color: #eaf2ff;
    background:
        radial-gradient(circle at top, rgba(8, 24, 52, 0.9), rgba(6, 12, 28, 0.96)),
        linear-gradient(120deg, rgba(15, 32, 62, 0.95), rgba(6, 12, 24, 0.95));
}

.process-rays::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.08;
    pointer-events: none;
}

.process-rays .section-head {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.process-rays .section-head h2 {
    margin: 10px 0 0;
    color: #ffffff;
    font-size: clamp(1.42rem, 2.8vw, 2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    text-shadow: 0 4px 18px rgba(46, 140, 255, 0.45);
}

.process-rays .section-head .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.process-rays__grid {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
}

.process-rays__rail {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(78, 243, 216, 0.2);
    transform: translateX(-50%);
}

.process-rays__glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(126, 200, 255, 0.3), rgba(78, 243, 216, 0.5));
    box-shadow: 0 0 24px rgba(78, 243, 216, 0.35);
}

.process-rays__step {
    position: relative;
    display: grid;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    opacity: 0;
    transform: translateY(24px) scale(0.98);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.process-rays__step.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.process-rays__step--left .process-rays__bubble {
    grid-column: 1;
    justify-self: end;
}

.process-rays__step--right .process-rays__bubble {
    grid-column: 2;
    justify-self: start;
}

.process-rays__bubble {
    position: relative;
    display: flex;
    align-items: center;
    width: min(500px, 100%);
    min-height: 104px;
    padding: 16px 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    background: rgba(18, 30, 54, 0.88);
    box-shadow: 0 18px 40px rgba(8, 18, 36, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.process-rays__bubble:hover {
    border-color: rgba(126, 200, 255, 0.38);
    box-shadow: 0 22px 46px rgba(8, 18, 36, 0.55);
    transform: translateY(-2px);
}

.process-rays__bubble::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(126, 200, 255, 0.6), rgba(78, 243, 216, 0.8));
    opacity: 0.7;
    transform: translateY(-50%);
}

.process-rays__step--left .process-rays__bubble::after {
    right: -100%;
}

.process-rays__step--right .process-rays__bubble::after {
    left: -100%;
}

.process-rays__content {
    display: grid;
    align-items: center;
    grid-template-columns: 58px 1fr;
    gap: 14px;
}

.process-rays__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(126, 200, 255, 0.35);
    border-radius: 14px;
    color: #eaf2ff;
    background: rgba(126, 200, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(126, 200, 255, 0.2);
    font-size: 1.32rem;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(78, 243, 216, 0.35);
}

.process-rays__text h3 {
    margin: 0 0 5px;
    color: #eaf2ff;
    font-size: 1.08rem;
    font-weight: 800;
}

.process-rays__text p {
    margin: 0;
    color: rgba(231, 238, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.42;
}

.process-rays__cta-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    color: #f8fbff;
    background: linear-gradient(135deg, rgba(30, 79, 168, 0.96), rgba(111, 168, 209, 0.96));
    box-shadow: 0 16px 34px rgba(17, 46, 92, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    font-size: clamp(0.96rem, 2vw, 1.18rem);
    font-weight: 900;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.process-rays__cta-link:hover {
    filter: brightness(1.05);
    box-shadow: 0 20px 40px rgba(17, 46, 92, 0.42), inset 0 0 0 1px rgba(255, 255, 255, 0.24);
    transform: translateY(-1px);
}

@media (max-width: 920px) {
    .process-rays__step {
        grid-template-columns: 1fr;
    }

    .process-rays__rail {
        left: 18px;
        transform: none;
    }

    .process-rays__bubble {
        width: auto;
        margin-left: 32px;
        min-height: 96px;
        padding: 14px 18px;
    }

    .process-rays__bubble::after {
        display: none;
    }

    .process-rays__step--left .process-rays__bubble,
    .process-rays__step--right .process-rays__bubble {
        grid-column: 1;
        justify-self: stretch;
    }
}

@media (max-width: 640px) {
    .process-rays__content {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .process-rays__num {
        width: 52px;
        height: 52px;
        font-size: 1.18rem;
    }
}

.reference-more {
    display: inline-flex;
    justify-self: center;
    margin-top: 8px;
    color: #9a9fa4;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: underline;
}

.reference-news {
    position: relative;
    z-index: 3;
    padding: clamp(58px, 7vw, 96px) 0;
    overflow: hidden;
    color: #12202d;
    background:
        linear-gradient(135deg, rgba(30, 79, 168, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(225deg, rgba(111, 168, 209, 0.16) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 48%, #ffffff 100%);
}

.reference-news::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(30, 79, 168, 0.12) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 79, 168, 0.1) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.34) 58%, transparent 100%);
}

.reference-news .container {
    position: relative;
    z-index: 1;
}

.reference-news .reference-title {
    margin-bottom: clamp(28px, 4vw, 44px);
    color: var(--sb-blue-700);
    text-shadow: 0 14px 32px rgba(30, 79, 168, 0.14);
}

.reference-news-magazine-shell {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 22px;
    width: min(100%, 1180px);
    margin: 0 auto;
    padding: 0 68px;
    box-sizing: border-box;
}

.reference-news-magazine-shell::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 104px;
    bottom: -18px;
    left: 104px;
    height: 84px;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(8, 24, 52, 0.22) 48%, transparent 100%);
    filter: blur(28px);
    opacity: 0.62;
}

.reference-news-book {
    position: relative;
    z-index: 1;
    width: min(100%, 1040px);
    height: 660px;
    filter: drop-shadow(0 26px 46px rgba(8, 24, 52, 0.2));
}

.reference-news-book:not(.is-ready) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    height: auto;
}

.reference-news-page {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    padding: clamp(28px, 4vw, 46px);
    color: #12202d;
    background:
        linear-gradient(90deg, rgba(18, 32, 45, 0.06) 0, transparent 18px),
        #fbfaf5;
    box-shadow: inset 0 0 30px rgba(8, 24, 52, 0.1);
}

.reference-news-page h3 {
    margin: 0 0 18px;
    color: inherit;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: 0;
}

.reference-news-page p {
    margin: 0;
    color: #425160;
    font-size: 1rem;
    line-height: 1.55;
}

.reference-news-page__kicker,
.reference-news-page__cover-copy > span {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--sb-blue-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.reference-news-page--cover {
    display: grid;
    min-height: 100%;
    padding: 0;
    color: #ffffff;
    background: #09172a;
}

.reference-news-page--cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.08) contrast(1.08);
}

.reference-news-page--cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 24, 52, 0.08) 0%, rgba(8, 24, 52, 0.9) 100%),
        linear-gradient(90deg, rgba(8, 24, 52, 0.8) 0%, rgba(8, 24, 52, 0.12) 66%);
}

.reference-news-page__cover-copy {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(32px, 4vw, 48px);
}

.reference-news-page__cover-copy > span {
    color: rgba(255, 255, 255, 0.78);
}

.reference-news-page__cover-copy h3 {
    max-width: 430px;
    color: #ffffff;
}

.reference-news-page__cover-copy p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.reference-news-page--digest {
    display: flex;
    height: 100%;
    min-height: 100%;
    flex-direction: column;
    padding: clamp(22px, 3vw, 34px);
}

.reference-news-page--digest .reference-news-page__kicker {
    margin-bottom: 10px;
}

.reference-news-page--digest h3 {
    margin-bottom: 12px;
    font-size: clamp(1.42rem, 2.2vw, 2rem);
    line-height: 1.06;
}

.reference-news-page__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.reference-news-page--digest .reference-news-page__grid {
    flex: 1 1 auto;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
    min-height: 0;
}

.reference-news-page__card {
    display: flex;
    min-height: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(18, 32, 45, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
}

.reference-news-page__card img {
    display: block;
    width: 100%;
    height: 118px;
    object-fit: cover;
}

.reference-news-page--digest .reference-news-page__card img {
    flex: 0 0 52%;
    height: auto;
    min-height: 0;
}

.reference-news-page__card time {
    display: block;
    margin: 12px 12px 6px;
    color: var(--sb-blue-700);
    font-size: 0.78rem;
    font-weight: 900;
}

.reference-news-page--digest .reference-news-page__card time {
    margin: 9px 10px 5px;
    font-size: 0.72rem;
}

.reference-news-page__card h4 {
    margin: 0 12px 14px;
    color: #344454;
    font-size: 0.95rem;
    font-weight: 900;
    line-height: 1.25;
}

.reference-news-page--digest .reference-news-page__card h4 {
    display: -webkit-box;
    margin: 0 10px 12px;
    overflow: hidden;
    font-size: 0.82rem;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.reference-news-page--feature img {
    display: block;
    width: 100%;
    height: 290px;
    margin: 22px 0 20px;
    object-fit: cover;
    border-radius: 8px;
}

.reference-news-page--cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
    background:
        radial-gradient(circle at 80% 20%, rgba(111, 168, 209, 0.42), transparent 30%),
        linear-gradient(135deg, #0b1b31 0%, #1e4fa8 100%);
}

.reference-news-page--cta .reference-news-page__kicker,
.reference-news-page--cta h3,
.reference-news-page--cta p {
    color: #ffffff;
}

.reference-news-page--cta p {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.78);
}

.reference-news-page__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 46px;
    margin-top: 28px;
    padding: 0 22px;
    border-radius: 6px;
    color: var(--sb-blue-700);
    background: #ffffff;
    font-weight: 900;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.reference-news-page__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.reference-news-controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.reference-news-controls button {
    position: absolute;
    top: 50%;
    display: grid;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 78px;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(30, 79, 168, 0.16);
    border-radius: 999px;
    color: var(--sb-blue-700);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92)),
        #ffffff;
    box-shadow: 0 18px 38px rgba(8, 24, 52, 0.16);
    font: inherit;
    cursor: pointer;
    pointer-events: auto;
    transform: translateY(-50%);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
    backdrop-filter: blur(12px);
}

.reference-news-controls button::before {
    content: "";
    position: absolute;
    inset: -35% -90%;
    background: linear-gradient(110deg, transparent 36%, rgba(255, 255, 255, 0.75) 50%, transparent 64%);
    opacity: 0;
    transform: translateX(-36%);
    transition: opacity 180ms ease, transform 520ms ease;
}

.reference-news-controls button[data-news-prev] {
    left: 0;
}

.reference-news-controls button[data-news-next] {
    right: 0;
}

.reference-news-controls button:hover {
    transform: translateY(-50%) scale(1.06);
    color: #ffffff;
    border-color: rgba(30, 79, 168, 0.38);
    background:
        linear-gradient(180deg, rgba(68, 123, 196, 0.98), rgba(30, 79, 168, 0.98)),
        var(--sb-blue-700);
    box-shadow: 0 22px 44px rgba(30, 79, 168, 0.28);
}

.reference-news-controls button:hover::before {
    opacity: 1;
    transform: translateX(34%);
}

.reference-news-controls svg {
    position: relative;
    z-index: 1;
    width: 30px;
    height: 30px;
    stroke-width: 1.8;
    transition: transform 180ms ease;
}

.reference-news-controls button[data-news-prev]:hover svg {
    transform: translateX(-3px);
}

.reference-news-controls button[data-news-next]:hover svg {
    transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
    .reference-news-controls button::before {
        transition: none;
    }

    .about-bg-text {
        opacity: 1;
        animation: none;
    }
}

.about-cinematic {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 120px) var(--sb-pad);
    color: #12202d;
    background:
        linear-gradient(135deg, rgba(30, 79, 168, 0.12) 0%, rgba(255, 255, 255, 0) 34%),
        linear-gradient(225deg, rgba(111, 168, 209, 0.16) 0%, rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 48%, #ffffff 100%);
}

.about-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(30, 79, 168, 0.12) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 79, 168, 0.1) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.34) 58%, transparent 100%);
}

.about-bg-text {
    position: absolute;
    top: 18px;
    left: 50%;
    color: rgba(var(--sb-ak-rgb), 0.14);
    width: max-content;
    max-width: calc(100% - 32px);
    font-size: clamp(4.8rem, 12vw, 11rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    text-shadow: 0 18px 42px rgba(var(--sb-ak-rgb), 0.12);
    text-transform: uppercase;
    transform: translateX(-50%);
    animation: aboutBrandReveal 1200ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
    -webkit-text-stroke: 1px rgba(var(--sb-ak-rgb), 0.2);
    white-space: nowrap;
}

@keyframes aboutBrandReveal {
    0% {
        opacity: 0;
        filter: blur(18px);
        letter-spacing: 0.16em;
        transform: translateX(-50%) translateY(26px) scale(0.92);
    }

    58% {
        opacity: 0.9;
        filter: blur(0);
        letter-spacing: 0.03em;
        transform: translateX(-50%) translateY(-4px) scale(1.03);
    }

    100% {
        opacity: 1;
        filter: blur(0);
        letter-spacing: 0;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

.about-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.95fr) minmax(240px, 0.78fr);
    align-items: center;
    gap: clamp(24px, 3vw, 34px);
    width: min(100%, 1220px);
    margin: 0 auto;
}

.about-label {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--sb-blue-700);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.about-left .about-label,
.about-left h2,
.about-left p,
.about-left .about-link {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 720ms cubic-bezier(0.16, 1, 0.3, 1), transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-left.is-visible .about-label,
.about-left.is-visible h2,
.about-left.is-visible p,
.about-left.is-visible .about-link {
    opacity: 1;
    transform: translateY(0);
}

.about-left.is-visible .about-label {
    transition-delay: 80ms;
}

.about-left.is-visible h2 {
    transition-delay: 200ms;
}

.about-left.is-visible p {
    transition-delay: 340ms;
}

.about-left.is-visible .about-link {
    transition-delay: 480ms;
}

.about-left h2 {
    max-width: 680px;
    margin: 0 0 24px;
    color: var(--sb-blue-900);
    font-size: clamp(1.9rem, 3.25vw, 3.35rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.06;
    overflow-wrap: anywhere;
}

.about-left p {
    max-width: 540px;
    margin: 0 0 32px;
    color: #425160;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.7;
}

.about-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--sb-blue-700), #4da3ff);
    box-shadow: 0 16px 34px rgba(29, 95, 174, 0.3);
    font-weight: 900;
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.about-link:hover {
    filter: brightness(1.05);
    transform: translateY(-3px);
    box-shadow: 0 20px 42px rgba(29, 95, 174, 0.38);
}

.about-center {
    position: relative;
    height: clamp(380px, 40vw, 560px);
    overflow: hidden;
    border: 1px solid rgba(30, 79, 168, 0.14);
    border-radius: 8px;
    box-shadow: 0 30px 68px rgba(8, 24, 52, 0.18);
}

.about-center::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 28%, rgba(13, 17, 24, 0.68) 100%);
    pointer-events: none;
}

.about-center img {
    width: 100%;
    height: 115%;
    object-fit: cover;
    transform: scale(1.04) translateY(-7%);
    animation: aboutSlowMove 9s ease-in-out infinite alternate;
}

.about-right {
    display: grid;
    gap: 16px;
}

.stat-card {
    padding: 22px;
    border: 1px solid rgba(var(--sb-ak-rgb), 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 34px rgba(8, 24, 52, 0.08);
    backdrop-filter: blur(14px);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.stat-card:hover {
    border-color: rgba(var(--sb-ak-rgb), 0.34);
    background: rgba(255, 255, 255, 0.94);
    transform: translateX(-6px);
}

.stat-card b {
    display: block;
    margin-bottom: 4px;
    color: var(--sb-ak);
    font-size: clamp(2rem, 3.2vw, 2.65rem);
    font-weight: 900;
    line-height: 1;
}

.stat-card span {
    color: #50616d;
    font-weight: 700;
    line-height: 1.35;
}

.stat-card--accent {
    border-color: transparent;
    background: linear-gradient(135deg, var(--sb-blue-800), var(--sb-ak));
    box-shadow: 0 18px 38px rgba(var(--sb-ak-rgb), 0.28);
}

.stat-card--accent b,
.stat-card--accent span {
    color: #ffffff;
}

.stat-card--accent:hover {
    background: linear-gradient(135deg, var(--sb-blue-800), var(--sb-ak));
}

.about-reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.about-center.about-reveal {
    transform: translateY(34px) scale(0.96);
}

.stat-card.about-reveal {
    transform: translateX(28px) translateY(18px);
}

.about-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.stat-card.is-visible b {
    animation: aboutNumberPop 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes aboutSlowMove {
    from {
        transform: scale(1.04) translateY(-7%);
    }

    to {
        transform: scale(1.12) translateY(-2%);
    }
}

@keyframes aboutNumberPop {
    0% {
        transform: translateY(6px) scale(0.96);
    }

    62% {
        transform: translateY(-1px) scale(1.02);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

.reference-text {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 8vw, 108px) 0;
    background:
        radial-gradient(circle at 8% 0%, rgba(30, 79, 168, 0.12), transparent 32%),
        linear-gradient(180deg, #f5f9fd 0%, #ffffff 100%);
}

.reference-text::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(30, 79, 168, 0.08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(30, 79, 168, 0.06) 1px, transparent 1px);
    background-size: 68px 68px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 78%);
}

.reference-text .container {
    position: relative;
    z-index: 1;
    max-width: 1220px;
}

.reference-text__head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
    margin-bottom: 34px;
}

.reference-text__head span {
    grid-column: 1 / -1;
    color: var(--sb-blue-700);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.reference-text__head h2 {
    max-width: 620px;
    margin: 0;
    color: var(--sb-blue-900);
    font-size: clamp(2rem, 3.25vw, 3rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.reference-text__head p {
    max-width: 560px;
    margin: 0;
    color: #425160;
    font-size: clamp(1rem, 1.35vw, 1.12rem);
    line-height: 1.65;
}

.reference-text__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.reference-text__grid article {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(30, 79, 168, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(8, 24, 52, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.reference-text__grid article::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -42px;
    width: 112px;
    height: 112px;
    border-radius: 999px;
    background: rgba(30, 79, 168, 0.08);
}

.reference-text__grid article:hover {
    border-color: rgba(30, 79, 168, 0.24);
    box-shadow: 0 18px 42px rgba(8, 24, 52, 0.12);
    transform: translateY(-4px);
}

.reference-text__grid span {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--sb-blue-700);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.reference-text__grid h3 {
    margin: 0 0 12px;
    color: var(--sb-blue-900);
    font-size: 1.18rem;
    font-weight: 900;
    line-height: 1.15;
}

.reference-text__grid p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #50616d;
    font-size: 0.95rem;
    line-height: 1.55;
}

.reference-hero__slides {
    position: relative;
    z-index: 2;
    width: min(820px, calc(100vw - 48px));
    margin: 0 auto 0 max(24px, calc((100vw - 1320px) / 2));
}

.company-hero {
    background:
        linear-gradient(135deg, rgba(18, 104, 179, 0.16), rgba(255, 255, 255, 0) 44%),
        linear-gradient(180deg, #f4f8fc 0%, #e8f0f7 100%);
}

.reference-hero__slides .reference-hero__content {
    position: absolute;
    inset: 0;
    width: 100%;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 320ms ease, transform 320ms ease;
}

.reference-hero__slides .reference-hero__content.is-active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.company-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.company-hero__actions .button {
    min-width: 166px;
}

.company-home {
    background: var(--sb-white);
}

.company-equipment {
    background:
        linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.company-equipment__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.company-equipment-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(8, 42, 77, 0.1);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: 0 14px 34px rgba(8, 42, 77, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.company-equipment-card:hover {
    border-color: rgba(18, 104, 179, 0.26);
    box-shadow: 0 20px 46px rgba(8, 42, 77, 0.12);
    transform: translateY(-3px);
}

.company-equipment-card a,
.company-equipment-card__body {
    display: grid;
}

.company-equipment-card__image {
    display: grid;
    place-items: center;
    height: 230px;
    padding: 20px;
    border-bottom: 1px solid var(--sb-line);
    background:
        linear-gradient(135deg, rgba(var(--sb-ak-rgb), 0.12) 0 18%, transparent 18%),
        var(--sb-ice);
}

.company-equipment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.company-equipment-card__body {
    gap: 12px;
    padding: 22px;
}

.company-equipment-card h3,
.company-consultation__copy h2,
.company-procurement__card h3 {
    margin: 0;
    color: var(--sb-blue-900);
    font-weight: 900;
    line-height: 1.12;
}

.company-equipment-card h3 {
    font-size: 1.18rem;
}

.company-equipment-card p,
.company-procurement__card p,
.company-consultation__copy p {
    margin: 0;
    color: var(--sb-muted);
    line-height: 1.62;
}

.company-equipment-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sb-blue-700);
    font-size: 0.86rem;
    font-weight: 900;
}

.company-equipment-card__more svg {
    width: 16px;
    height: 16px;
}

.company-about__wrap {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr) minmax(230px, 0.72fr);
}

.company-procurement {
    position: relative;
    overflow: hidden;
    color: var(--sb-blue-900);
    background:
        linear-gradient(135deg, rgba(18, 104, 179, 0.1), rgba(255, 255, 255, 0) 42%),
        linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    border-top: 1px solid rgba(185, 202, 219, 0.62);
    border-bottom: 1px solid rgba(185, 202, 219, 0.62);
}

.company-procurement::before {
    content: "44 223";
    position: absolute;
    top: 50%;
    right: max(24px, 7vw);
    color: rgba(18, 104, 179, 0.055);
    font-family: var(--sb-font-display);
    font-size: clamp(7rem, 17vw, 17rem);
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
    transform: translateY(-50%);
}

.company-procurement h2 {
    color: var(--sb-blue-900);
}

.company-procurement .eyebrow {
    color: var(--sb-blue-700);
}

.company-procurement__grid {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: center;
    gap: clamp(22px, 3vw, 34px);
    text-align: center;
}

.company-procurement .home-section-head {
    align-items: center;
    max-width: 760px;
    text-align: center;
}

.company-procurement__card {
    display: grid;
    justify-items: center;
    gap: 16px;
    width: min(760px, 100%);
    padding: clamp(22px, 3.2vw, 34px);
    border: 1px solid rgba(185, 202, 219, 0.78);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 18px 48px rgba(8, 42, 77, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.company-procurement__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.company-procurement__badges span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 999px;
    color: var(--sb-blue-900);
    background: var(--sb-ice);
    font-size: 0.86rem;
    font-weight: 950;
}

.company-procurement__card p {
    color: var(--sb-muted);
    font-size: 1.02rem;
}

.company-procurement__card .button {
    justify-self: center;
    margin-top: 4px;
}

.company-partners {
    padding-top: clamp(52px, 7vw, 82px);
}

.partner-logo--text {
    color: var(--sb-blue-900);
    background:
        linear-gradient(135deg, rgba(18, 104, 179, 0.07), rgba(255, 255, 255, 0.92)),
        #ffffff;
    font-size: 0.82rem;
    font-weight: 900;
    line-height: 1.22;
    overflow-wrap: anywhere;
    text-align: center;
    text-transform: uppercase;
}

.partner-logo--text span {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.company-consultation {
    background:
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    border-top: 1px solid rgba(8, 42, 77, 0.08);
}

.company-consultation__grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 0.72fr);
    gap: clamp(24px, 5vw, 74px);
    align-items: start;
}

.company-consultation__copy {
    display: grid;
    gap: 18px;
    max-width: 620px;
}

.company-consultation__copy h2 {
    font-size: clamp(1.9rem, 3vw, 3rem);
}

.company-consultation__contacts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-consultation__contacts a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius-sm);
    color: var(--sb-blue-800);
    background: var(--sb-white);
    font-weight: 900;
}

.contacts-page__form > p:not(.form-consent):not(.lead-form__status) {
    margin: -4px 0 6px;
    color: var(--sb-muted);
    line-height: 1.55;
}

.lead-form__status {
    min-height: 20px;
    margin: 0;
    color: var(--sb-blue-700);
    font-size: 0.9rem;
    font-weight: 800;
}

[data-lead-submit]:disabled {
    opacity: 0.68;
    cursor: progress;
    transform: none;
}

.procurement-hero {
    background:
        linear-gradient(135deg, rgba(8, 42, 77, 0.96), rgba(18, 104, 179, 0.86)),
        var(--sb-blue-900);
}

.procurement-hero--has-banner {
    background:
        linear-gradient(135deg, rgba(8, 42, 77, 0.92), rgba(18, 104, 179, 0.72)),
        var(--procurement-hero-banner) center / cover no-repeat,
        var(--sb-blue-900);
}

.procurement-hero .eyebrow,
.procurement-hero h1,
.procurement-hero p {
    color: var(--sb-white);
}

.procurement-hero__grid {
    display: grid;
    justify-items: center;
    gap: clamp(24px, 4vw, 42px);
    text-align: center;
}

.procurement-hero p {
    max-width: 780px;
    margin: 18px auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.62;
}

.procurement-contact-card {
    display: grid;
    justify-items: center;
    gap: 10px;
    width: min(420px, 100%);
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.1);
    color: var(--sb-white);
    text-align: center;
}

.procurement-contact-card span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.procurement-contact-card a {
    overflow-wrap: anywhere;
    font-size: 1.12rem;
    font-weight: 900;
}

.procurement-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.procurement-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.procurement-stats article {
    display: grid;
    gap: 10px;
    min-height: 160px;
    align-content: start;
    padding: 22px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: var(--sb-white);
    box-shadow: 0 14px 34px rgba(8, 42, 77, 0.08);
}

.procurement-stats strong {
    color: var(--sb-ak);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 900;
    line-height: 1;
}

.procurement-stats span {
    color: var(--sb-muted);
    font-weight: 750;
    line-height: 1.35;
}

.procurement-copy {
    max-width: 960px;
    margin: 34px auto 0;
    padding: clamp(24px, 4vw, 34px);
    border: 1px solid rgba(8, 42, 77, 0.1);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.78);
    text-align: center;
}

.procurement-copy h2,
.procurement-platform-list h2 {
    margin: 0 0 16px;
    color: var(--sb-blue-900);
    font-size: clamp(1.45rem, 2.3vw, 2.1rem);
    font-weight: 900;
    line-height: 1.1;
}

.procurement-copy p {
    margin: 0;
    color: var(--sb-muted);
    line-height: 1.68;
}

.procurement-copy p + p {
    margin-top: 12px;
}

.procurement-copy .button {
    margin-top: 22px;
}

.procurement-platforms {
    background: var(--sb-white);
}

.procurement-platforms__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.procurement-platform-list {
    height: 100%;
    padding: clamp(22px, 3vw, 30px);
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 34px rgba(8, 42, 77, 0.07);
}

.procurement-platform-list ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.procurement-platform-list li {
    display: grid;
    gap: 5px;
    padding: 12px 0;
    border-top: 1px solid var(--sb-line);
}

.procurement-platform-list li:first-child {
    border-top: 0;
}

.procurement-platform-list span {
    color: var(--sb-blue-900);
    font-weight: 850;
    line-height: 1.3;
}

.procurement-platform-list a {
    color: var(--sb-ak);
    font-size: 0.9rem;
    font-weight: 800;
    overflow-wrap: anywhere;
}

.procurement-platform-list a:hover {
    color: var(--sb-blue-800);
}

.site-nav .nav-menu > li > a {
    max-width: 190px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

.site-nav .nav-menu > li > .nav-menu__trigger {
    display: flex;
    align-items: center;
    min-height: 1em;
    max-width: 190px;
    line-height: 1.15;
    text-align: center;
    white-space: normal;
}

@media (max-width: 1360px) {
    .mainbar__inner {
        gap: 18px;
    }

    .brand-mark {
        width: 48px;
        height: 48px;
        font-size: 0.96rem;
    }

    .brand-copy strong {
        font-size: 1.26rem;
    }

    .brand-copy span {
        font-size: 0.58rem;
    }

    .nav-menu {
        gap: 16px;
    }

    .nav-menu a {
        font-size: 0.76rem;
    }

    .header-contacts {
        font-size: 0.68rem;
    }

    .header-contacts a:last-child {
        font-size: 0.84rem;
    }

    .header-cta {
        min-height: 36px;
        padding: 0 13px;
        font-size: 0.68rem;
    }
}

@media (max-width: 1180px) {
    .mainbar__inner {
        gap: 14px;
    }

    .header-cta {
        display: none;
    }

    .header-contacts {
        display: grid;
        gap: 1px;
        font-size: 0.62rem;
        line-height: 1.15;
        text-align: right;
    }

    .header-contacts a:last-child {
        font-size: 0.78rem;
    }

    .site-nav {
        display: none;
    }

    .reference-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-category-card {
        min-height: 390px;
    }

    .reference-news-book {
        width: min(100%, 940px);
        height: 620px;
    }

    .company-equipment__grid,
    .company-about__wrap {
        grid-template-columns: 1fr;
    }

    .company-procurement__grid,
    .company-consultation__grid,
    .procurement-hero__grid,
    .procurement-platforms__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .procurement-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .mainbar__inner {
        min-height: 74px;
        gap: 14px;
    }

    .site-brand {
        min-width: 0;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        font-size: 0.95rem;
    }

    .brand-copy strong {
        font-size: 1.18rem;
    }

    .brand-copy span {
        max-width: 165px;
    }

    .reference-hero {
        height: clamp(260px, calc(46vw - 40px), 400px);
        min-height: 0;
    }

    .reference-hero__inner {
        min-height: 420px;
    }

    .reference-hero__product--left {
        left: -10vw;
        width: 58vw;
    }

    .reference-hero__product--right {
        right: -16vw;
        width: 58vw;
    }

    .reference-search__form,
    .about-wrap {
        grid-template-columns: 1fr;
    }

    .about-right {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-partners__track {
        gap: 12px;
        animation-duration: 26s;
    }

    .partner-logo {
        --partner-logo-max-height: 56px;
        --partner-logo-max-width: 84%;
        width: 150px;
        height: 150px;
    }

    .partner-logo__media {
        height: 78px;
        padding: 7px 8px;
    }

    .partner-logo__title {
        min-height: 40px;
        padding: 4px 7px;
    }

    .reference-category-grid {
        grid-template-columns: 1fr;
    }

    .reference-text__head,
    .reference-text__grid {
        grid-template-columns: 1fr;
    }

    .reference-news-magazine-shell {
        padding: 0 54px;
    }

    .reference-news-book {
        height: 600px;
    }

    .reference-news-book:not(.is-ready) {
        grid-template-columns: 1fr;
    }

    .reference-news-page--feature img {
        height: 220px;
    }
}

@media (max-width: 520px) {
    .reference-hero {
        --hero-bg-x: 33%;
        aspect-ratio: 1.25 / 1;
        height: 280px;
        min-height: 0;
    }

    .reference-hero__badge {
        width: 86px;
        height: 86px;
        margin-bottom: -20px;
        font-size: 1.85rem;
    }

    .reference-category-grid,
    .about-right {
        grid-template-columns: 1fr;
    }

    .about-cinematic {
        padding: 72px var(--sb-pad);
    }

    .about-bg-text {
        top: 34px;
        font-size: clamp(3.6rem, 18vw, 5.8rem);
    }

    .about-center {
        height: 320px;
    }

    .stat-card {
        padding: 18px;
    }

    .reference-category-card {
        min-height: 360px;
    }

    .reference-category-card__content {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        padding: 0;
    }

    .reference-text {
        padding: 62px 0;
    }

    .reference-text__head {
        margin-bottom: 24px;
    }

    .reference-text__grid article {
        min-height: 0;
        padding: 20px;
    }

    .reference-news {
        padding: 48px 0 56px;
    }

    .reference-news-magazine-shell {
        padding: 0 42px;
    }

    .reference-news-book {
        width: 100%;
        height: 560px;
    }

    .reference-news-page {
        padding: 22px;
    }

    .reference-news-page h3 {
        font-size: 1.42rem;
        line-height: 1.08;
    }

    .reference-news-page p {
        font-size: 0.9rem;
    }

    .reference-news-page__cover-copy {
        padding: 24px;
    }

    .reference-news-page__grid {
        gap: 10px;
        margin-top: 14px;
    }

    .reference-news-page--digest .reference-news-page__grid {
        gap: 8px;
        margin-top: 10px;
    }

    .reference-news-page__card img {
        height: 76px;
    }

    .reference-news-page--digest .reference-news-page__card img {
        flex-basis: 46%;
        height: auto;
    }

    .reference-news-page__card time {
        margin: 8px 8px 5px;
        font-size: 0.66rem;
    }

    .reference-news-page__card h4 {
        margin: 0 8px 10px;
        font-size: 0.74rem;
        line-height: 1.18;
    }

    .reference-news-page--feature img {
        height: 170px;
        margin: 16px 0;
    }

    .reference-news-controls button {
        width: 40px;
        height: 58px;
    }

    .reference-news-controls svg {
        width: 24px;
        height: 24px;
    }

    .hero-arrow {
        display: none;
    }
}

/* Tablet and mobile polish for the catalog-first layout. */
html,
body {
    max-width: 100%;
    overflow-x: clip;
}

@media (max-width: 1100px) {
    .section--workbench {
        padding-top: 26px;
    }

    .section--workbench > .container {
        max-width: 100%;
    }

    .catalog-layout,
    .product-detail,
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel {
        position: static;
        max-height: none;
        overflow: visible;
    }

    .catalog-filter-form__submit,
    .filter-panel__head {
        position: static;
    }

    .catalog-category-pick {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
        padding: 16px;
    }

    .catalog-category-pick strong,
    .catalog-category-pick a.is-parent {
        grid-column: 1 / -1;
        justify-content: space-between;
        min-height: 44px;
        margin: 12px 0 2px;
        padding: 0 14px;
        border: 1px solid rgba(var(--sb-ak-rgb), 0.18);
        border-radius: var(--sb-radius);
        color: var(--sb-blue-900);
        background:
            linear-gradient(135deg, rgba(var(--sb-ak-rgb), 0.12), rgba(255, 255, 255, 0.92)),
            var(--sb-ice);
        box-shadow: inset 4px 0 0 var(--sb-ak);
        font-size: 0.9rem;
        font-weight: 950;
        text-align: left;
    }

    .catalog-category-pick strong:first-child,
    .catalog-category-pick a.is-parent:first-child {
        margin-top: 0;
    }

    .catalog-category-pick a.is-parent:hover {
        transform: none;
    }

    .catalog-category-pick a.is-parent::after {
        content: none;
    }

    .catalog-category-pick a:not(.is-parent) {
        align-items: center;
        min-height: 46px;
        padding: 10px 34px 10px 14px;
        border-color: rgba(185, 202, 219, 0.7);
        background: rgba(255, 255, 255, 0.78);
        font-size: 0.86rem;
    }

    .catalog-category-pick a:not(.is-parent)::after {
        opacity: 0.75;
        transform: translateY(-50%) translateX(0);
    }

    .product-area__bar {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 1.15fr);
    }

    .product-area__summary {
        min-width: 0;
    }

    .catalog-toolbar__sort {
        grid-column: 1 / -1;
        justify-self: end;
    }

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

    .home-advantages__grid,
    .home-seo-text__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-faq__layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-detail__media,
    .product-detail__summary {
        width: 100%;
    }

    .product-detail__image {
        min-height: 420px;
    }

    .product-detail__request {
        position: static;
    }

    .contacts-page__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .mainbar__inner {
        min-height: 66px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .site-header.site-header--overlay.is-scrolled .mainbar__inner {
        min-height: 48px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .site-brand {
        max-width: calc(100vw - 164px);
        padding: 6px 8px;
        gap: 8px;
    }

    .site-header.site-header--overlay.is-scrolled .site-brand {
        max-width: calc(100vw - 76px);
        padding: 4px 7px;
        gap: 6px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 0.8rem;
    }

    .site-header.site-header--overlay.is-scrolled .brand-mark {
        width: 30px;
        height: 30px;
        font-size: 0.66rem;
    }

    .brand-copy strong {
        font-size: 0.92rem;
        letter-spacing: 0;
    }

    .site-header.site-header--overlay.is-scrolled .brand-copy strong {
        font-size: 0.84rem;
    }

    .brand-copy span {
        max-width: 150px;
        font-size: 0.49rem;
    }

    .site-header.site-header--overlay.is-scrolled .brand-copy span {
        max-width: 112px;
        font-size: 0.44rem;
    }

    .header-actions {
        flex: 0 0 auto;
        gap: 8px;
    }

    .header-contacts {
        display: grid;
        max-width: 146px;
        font-size: 0.66rem;
        line-height: 1.12;
        white-space: normal;
    }

    .header-contacts a {
        overflow-wrap: anywhere;
    }

    .header-contacts a:last-child {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .reference-hero {
        height: auto;
        min-height: 340px;
        aspect-ratio: auto;
        align-items: center;
        padding: 78px 0 30px;
    }

    .reference-hero__content {
        width: min(620px, calc(100% - 28px));
        min-height: 0;
        margin: 0 auto;
        padding: 22px 20px 20px;
    }

    .reference-hero__content::before {
        content: none;
    }

    .reference-hero__content h1,
    .page-hero h1,
    .page-hero--catalog h1 {
        font-size: clamp(1.75rem, 6.5vw, 2.6rem);
        line-height: 1.06;
    }

    .reference-hero__content p,
    .page-hero p {
        font-size: 0.94rem;
    }

    .product-area__bar {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 14px;
        gap: 12px;
    }

    .catalog-toolbar__sort {
        justify-self: stretch;
    }

    .catalog-toolbar__sort label {
        justify-content: space-between;
        width: 100%;
    }

    .catalog-toolbar__sort select {
        min-width: 200px;
        padding-right: 42px;
    }

    .catalog-active {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .catalog-active__reset {
        justify-self: start;
    }

    .product-card__image {
        height: 260px;
    }

    .product-card__body {
        padding: 16px;
    }

    .product-card__actions {
        gap: 8px;
    }

    .product-card__actions [data-cart-add] {
        padding-right: 8px;
        padding-left: 8px;
        font-size: 0.78rem;
    }

    .product-detail-hero {
        padding: 24px 0 34px;
    }

    .product-detail {
        gap: 16px;
    }

    .product-detail__media,
    .product-detail__summary,
    .product-detail-grid .product-single-specs,
    .product-detail__request,
    .contacts-page__info,
    .contacts-page__form {
        border-radius: 18px;
    }

    .product-detail__image {
        min-height: 330px;
    }

    .product-detail__summary {
        gap: 18px;
        padding: 22px;
    }

    .product-detail__summary h1 {
        font-size: clamp(1.55rem, 6vw, 2.35rem);
    }

    .product-detail__facts {
        grid-template-columns: 1fr;
    }

    .product-detail__buy {
        align-items: stretch;
        flex-direction: column;
    }

    .product-detail-grid .product-single-specs dl div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

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

@media (max-width: 560px) {
    :root {
        --sb-pad: 14px;
    }

    .section {
        padding: 34px 0;
    }

    .site-header.site-header--overlay:not(.is-scrolled) .site-brand,
    .site-brand {
        max-width: calc(100vw - 138px);
        box-shadow: 0 8px 20px rgba(8, 24, 52, 0.12);
    }

    .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 8px;
    }

    .brand-copy strong {
        font-size: 0.86rem;
    }

    .brand-copy span {
        max-width: 118px;
        font-size: 0.45rem;
    }

    .site-header.site-header--overlay.is-scrolled .brand-mark {
        width: 28px;
        height: 28px;
        font-size: 0.62rem;
    }

    .site-header.site-header--overlay.is-scrolled .brand-copy strong {
        font-size: 0.78rem;
    }

    .site-header.site-header--overlay.is-scrolled .brand-copy span {
        display: none;
    }

    .header-contacts {
        max-width: 136px;
        font-size: 0.6rem;
    }

    .header-contacts a:last-child {
        font-size: 0.74rem;
    }

    .mobile-menu {
        width: min(360px, calc(100vw - 18px));
        padding: 18px;
    }

    .reference-hero {
        min-height: 300px;
        padding: 72px 0 24px;
        background-position: center right;
    }

    .reference-hero__content {
        width: calc(100% - 32px);
        padding: 18px 16px 16px;
        border-radius: 8px;
        text-align: left;
    }

    .reference-hero__slides {
        width: min(620px, calc(100% - 28px));
        margin: 0 auto;
    }

    .reference-hero__slides .reference-hero__content {
        width: 100%;
    }

    .company-hero__actions {
        margin-top: 16px;
    }

    .company-hero__actions .button {
        flex: 1 1 100%;
        min-width: 0;
    }

    .reference-hero__content::before {
        content: none;
    }

    .reference-hero__content h1,
    .page-hero h1,
    .page-hero--catalog h1 {
        font-size: clamp(1.42rem, 6.8vw, 1.9rem);
        line-height: 1.08;
    }

    .reference-hero__content p {
        max-width: 24rem;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .procurement-stats {
        grid-template-columns: 1fr;
    }

    .procurement-contact-card,
    .procurement-copy,
    .procurement-platform-list {
        padding: 18px;
    }

    .page-hero,
    .page-hero--catalog {
        padding: 82px 0 34px;
    }

    .catalog-category-pick {
        grid-template-columns: 1fr;
        gap: 3px;
        padding: 10px;
    }

    .catalog-category-pick a {
        align-items: center;
        justify-content: center;
        min-height: 34px;
        padding: 4px 28px 4px 10px;
        font-size: 0.82rem;
        line-height: 1.12;
        text-align: center;
    }

    .catalog-category-pick strong {
        justify-content: center;
        min-height: 30px;
        margin-top: 3px;
        padding: 3px 10px;
        text-align: center;
    }

    .catalog-category-pick strong:first-child {
        margin-top: 0;
    }

    .filter-panel__head,
    .filter-price,
    .filter-group {
        padding-right: 12px;
        padding-left: 12px;
    }

    .filter-price__inputs {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-section-head {
        margin-bottom: 20px;
    }

    .home-advantages__grid,
    .home-seo-text__grid {
        grid-template-columns: 1fr;
    }

    .home-advantage,
    .home-seo-text__grid article {
        min-height: 0;
        padding: 18px;
    }

    .home-faq__list summary {
        min-height: 62px;
        padding: 16px 0;
        font-size: 0.94rem;
    }

    .home-faq__list p {
        padding-right: 0;
        padding-bottom: 18px;
        font-size: 0.9rem;
    }

    .product-card {
        border-radius: 14px;
    }

    .product-card__image {
        height: 210px;
        padding: 10px;
        overflow: hidden;
    }

    .product-card__image img {
        width: 100%;
        height: 100%;
        max-height: 188px;
        object-fit: contain;
    }

    .product-card h3 {
        min-height: 0;
        font-size: 1rem;
        -webkit-line-clamp: 3;
    }

    .spec-row--pairs span {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        white-space: normal;
    }

    .product-card__actions {
        grid-template-columns: 1fr;
    }

    .catalog-pagination {
        gap: 8px;
        padding: 10px;
    }

    .catalog-pagination a,
    .catalog-pagination span {
        min-width: 36px;
        min-height: 36px;
        padding: 0 10px;
    }

    .product-detail__media {
        padding: 12px;
    }

    .product-detail__image {
        min-height: 260px;
        border-radius: 14px;
    }

    .product-detail__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .product-detail__thumbs button {
        height: 72px;
        padding: 6px;
        border-radius: 12px;
    }

    .product-detail__summary {
        padding: 18px;
    }

    .product-detail__summary h1 {
        font-size: clamp(1.35rem, 7vw, 2rem);
    }

    .product-detail__summary p {
        font-size: 0.96rem;
    }

    .product-detail__facts div,
    .product-detail__buy,
    .product-detail__request,
    .product-detail-grid .product-single-specs {
        padding: 16px;
    }

    .product-detail__buy strong {
        font-size: 1.55rem;
    }

    .quote-cart__panel {
        width: 100vw;
        padding: 16px;
    }

    .quote-cart__items {
        max-height: 28vh;
    }

    .quote-cart__head h2 {
        font-size: 1.42rem;
    }

    .contacts-page__info,
    .contacts-page__form {
        padding: 20px;
    }

    .footer-bottom {
        gap: 12px;
    }
}

/* Consolidated tablet and mobile adaptation for the current АртКарс layout. */
@media (max-width: 1024px) {
    .container {
        width: min(100% - 36px, var(--sb-container));
    }

    .site-header {
        overflow: visible;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        max-width: 430px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mobile-nav .nav-menu {
        align-content: start;
    }

    .mobile-nav .nav-menu > li > a,
    .mobile-nav .nav-menu > li > .nav-menu__trigger {
        width: 100%;
        max-width: none;
        justify-content: space-between;
        min-height: 48px;
        padding: 12px 0;
        color: var(--sb-blue-900);
        font-size: 0.9rem;
        line-height: 1.2;
        text-align: left;
    }

    .mobile-nav .nav-menu .sub-menu {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mobile-nav .nav-menu .sub-menu a {
        min-height: 44px;
        padding: 10px 0;
    }

    .reference-hero,
    .company-hero {
        min-height: 500px;
        padding: 92px 0 52px;
    }

    .reference-hero::before,
    .reference-hero::after {
        background-position: var(--hero-bg-x, center) center;
    }

    .reference-hero__slides,
    .reference-hero__content {
        width: min(720px, calc(100% - 40px));
    }

    .reference-hero__content {
        margin: 0 auto;
    }

    .company-hero__actions {
        flex-wrap: wrap;
    }

    .about-wrap,
    .company-about__wrap {
        grid-template-columns: minmax(0, 1fr);
        align-items: stretch;
    }

    .about-left,
    .about-center,
    .about-right {
        min-width: 0;
    }

    .about-center {
        order: 3;
        height: min(440px, 54vw);
    }

    .about-right {
        order: 2;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-procurement__grid,
    .company-consultation__grid,
    .procurement-hero__grid,
    .procurement-platforms__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-procurement .home-section-head,
    .company-consultation__copy,
    .procurement-copy {
        max-width: 760px;
        margin-right: auto;
        margin-left: auto;
        text-align: center;
    }

    .company-consultation__contacts {
        justify-content: center;
    }

    .procurement-stats,
    .home-advantages__grid,
    .home-seo-text__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reference-partners__viewport {
        margin-top: 8px;
    }

    .partner-logo {
        width: 168px;
        height: 152px;
    }

    .contacts-page__grid,
    .footer-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-madeby--grid {
        justify-self: start;
    }
}

@media (max-width: 768px) {
    :root {
        --sb-pad: 18px;
    }

    body {
        min-width: 0;
    }

    .container {
        width: min(100% - 28px, var(--sb-container));
    }

    .section,
    .reference-section,
    .home-advantages,
    .company-consultation,
    .procurement-section,
    .procurement-platforms {
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .mainbar__inner {
        min-height: 64px;
        gap: 8px;
    }

    .site-brand {
        max-width: calc(100vw - 92px);
        min-width: 0;
        padding: 0;
        box-shadow: none;
    }

    .brand-copy {
        min-width: 0;
    }

    .brand-copy strong,
    .brand-copy span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-contacts {
        display: none;
    }

    .mobile-toggle {
        width: 42px;
        height: 42px;
    }

    .mobile-menu {
        width: min(390px, calc(100vw - 20px));
        padding: 18px;
    }

    .mobile-menu .button {
        margin-top: auto;
    }

    .eyebrow {
        gap: 7px;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .eyebrow::before {
        width: 22px;
    }

    .reference-hero,
    .company-hero,
    .page-hero,
    .page-hero--catalog {
        min-height: auto;
        padding: 86px 0 38px;
    }

    .reference-hero::before,
    .reference-hero::after {
        opacity: 0.9;
        transform: scale(1.02);
    }

    .reference-hero__slides,
    .reference-hero__content {
        width: calc(100% - 28px);
    }

    .reference-hero__content {
        padding: 20px 18px;
        backdrop-filter: blur(12px) saturate(108%);
        -webkit-backdrop-filter: blur(12px) saturate(108%);
    }

    .reference-hero__content h1,
    .page-hero h1,
    .page-hero--catalog h1,
    .about-left h2,
    .home-section-head h2,
    .company-consultation__copy h2,
    .procurement-copy h2,
    .procurement-platform-list h2 {
        font-size: clamp(1.5rem, 7vw, 2.15rem);
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .reference-hero__content p,
    .reference-hero__intro p,
    .page-hero p,
    .about-left p,
    .procurement-copy p,
    .company-procurement__card p,
    .company-consultation__copy p {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .hero-arrow {
        width: 42px;
        height: 42px;
    }

    .hero-arrow--prev {
        left: 10px;
    }

    .hero-arrow--next {
        right: 10px;
    }

    .company-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .company-hero__actions .button {
        width: 100%;
    }

    .about-cinematic {
        padding-top: 74px;
        padding-bottom: 52px;
    }

    .about-bg-text {
        top: 30px;
        max-width: calc(100% - 20px);
        font-size: clamp(3.4rem, 17vw, 6.6rem);
    }

    .about-left {
        text-align: left;
    }

    .about-center {
        height: 340px;
    }

    .about-right,
    .procurement-stats,
    .home-advantages__grid,
    .home-seo-text__grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .stat-card,
    .home-advantage,
    .home-seo-text__grid article,
    .company-procurement__card,
    .procurement-contact-card,
    .procurement-copy,
    .procurement-platform-list,
    .contacts-page__info,
    .contacts-page__form,
    .company-consultation__form {
        border-radius: var(--sb-radius);
        padding: 20px;
    }

    .home-advantage {
        min-height: 0;
    }

    .home-advantage__icon {
        font-size: clamp(4.2rem, 24vw, 7rem);
    }

    .company-procurement__badges {
        justify-content: center;
    }

    .procurement-platform-list li {
        gap: 4px;
    }

    .procurement-platform-list span,
    .procurement-platform-list a {
        overflow-wrap: anywhere;
    }

    .reference-partners__track {
        gap: 10px;
    }

    .partner-logo {
        --partner-logo-max-height: 54px;
        --partner-logo-max-width: 84%;
        width: 142px;
        height: 142px;
    }

    .partner-logo__media {
        height: 72px;
        padding: 6px 7px;
    }

    .partner-logo__title {
        min-height: 36px;
        padding: 3px 6px;
        font-size: 0.64rem;
    }

    .partner-logo--text span {
        font-size: 0.66rem;
        line-height: 1.12;
    }

    .contacts-page__form input,
    .contacts-page__form textarea,
    .quote-cart__form input,
    .quote-cart__form textarea {
        min-width: 0;
        width: 100%;
    }

    .form-consent {
        align-items: flex-start;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .button,
    .header-cta,
    .catalog-filter-form__submit {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    :root {
        --sb-pad: 14px;
    }

    .container {
        width: min(100% - 24px, var(--sb-container));
    }

    .section,
    .reference-section,
    .home-advantages,
    .company-consultation,
    .procurement-section,
    .procurement-platforms {
        padding-top: 38px;
        padding-bottom: 38px;
    }

    .mainbar__inner {
        min-height: 60px;
    }

    .brand-mark {
        width: 34px;
        height: 34px;
    }

    .brand-copy strong {
        max-width: 150px;
        font-size: 0.84rem;
    }

    .brand-copy span {
        max-width: 150px;
        font-size: 0.42rem;
    }

    .mobile-menu {
        right: 8px;
        width: calc(100vw - 16px);
        padding: 16px;
        border-radius: 0 0 8px 8px;
    }

    .reference-hero,
    .company-hero,
    .page-hero,
    .page-hero--catalog {
        padding: 74px 0 28px;
    }

    .reference-hero__content {
        width: calc(100% - 24px);
        padding: 18px 16px;
    }

    .reference-hero__content h1,
    .page-hero h1,
    .page-hero--catalog h1 {
        font-size: clamp(1.38rem, 8vw, 1.85rem);
    }

    .reference-hero__content p,
    .reference-hero__intro p,
    .page-hero p {
        font-size: 0.86rem;
    }

    .hero-arrow {
        top: auto;
        bottom: 10px;
        width: 38px;
        height: 38px;
        transform: none;
    }

    .hero-arrow:hover {
        transform: none;
    }

    .hero-arrow--prev {
        left: 14px;
    }

    .hero-arrow--next {
        right: 14px;
    }

    .about-cinematic {
        padding-top: 66px;
    }

    .about-bg-text {
        top: 28px;
        font-size: clamp(3rem, 18vw, 4.8rem);
    }

    .about-center {
        height: 280px;
    }

    .stat-card b,
    .procurement-stats strong {
        font-size: clamp(1.85rem, 12vw, 2.55rem);
    }

    .company-procurement__badges {
        display: grid;
        grid-template-columns: 1fr;
    }

    .company-procurement__badges span {
        width: 100%;
        justify-content: center;
    }

    .procurement-copy .button,
    .company-procurement__card .button,
    .company-consultation__form .button,
    .contacts-page__form .button {
        width: 100%;
    }

    .procurement-platform-list {
        padding: 18px 16px;
    }

    .reference-partners__viewport {
        padding: 4px 0;
    }

    .partner-logo {
        --partner-logo-max-height: 48px;
        --partner-logo-max-width: 82%;
        width: 124px;
        height: 132px;
    }

    .partner-logo__media {
        height: 66px;
        padding: 5px 6px;
    }

    .partner-logo__title {
        min-height: 34px;
        font-size: 0.58rem;
    }

    .footer-grid,
    .footer-bottom {
        text-align: left;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 1280px) and (min-width: 769px) {
    .about-cinematic.company-about {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .company-about .about-bg-text {
        top: 18px;
        color: rgba(var(--sb-ak-rgb), 0.09);
        font-size: clamp(4.8rem, 10vw, 8.2rem);
        text-shadow: 0 14px 34px rgba(var(--sb-ak-rgb), 0.08);
        -webkit-text-stroke-color: rgba(var(--sb-ak-rgb), 0.14);
    }

    .about-wrap.company-about__wrap {
        grid-template-columns: minmax(0, 1fr) minmax(260px, 330px);
        align-items: start;
        gap: 24px;
        width: min(100%, 1120px);
    }

    .company-about__wrap .about-left {
        min-width: 0;
    }

    .company-about__wrap .about-left h2 {
        max-width: 620px;
        margin-bottom: 18px;
        font-size: clamp(2.05rem, 3.9vw, 2.8rem);
    }

    .company-about__wrap .about-left p {
        max-width: none;
        margin-bottom: 18px;
        font-size: 0.98rem;
        line-height: 1.58;
    }

    .company-about__wrap .about-center {
        display: none;
    }

    .company-about__wrap .about-right {
        grid-template-columns: 1fr;
        gap: 12px;
        min-width: 0;
    }

    .company-about__wrap .stat-card {
        padding: 18px;
    }

    .company-about__wrap .stat-card:hover {
        transform: translateY(-2px);
    }

    .company-about__wrap .stat-card b {
        font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    }

    .company-about__wrap .stat-card span {
        font-size: 0.92rem;
    }
}
