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

@font-face {
    font-family: Bebas;
    src: url("../fonts/Bebas-Neue-Cyrillic.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #f5f5f5;
    --color-panel: #ffffff;
    --color-soft: #ebebeb;
    --color-text: #000000;
    --color-muted: #4f4f4f;
    --color-yellow: #dedd26;
    --color-line: #d9d9d9;
    --container: 1160px;
    --header-height: 82px;
    --radius: 5px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: var(--color-bg);
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.45;
}

body.is-locked {
    overflow: hidden;
}

.site-toast {
    position: fixed;
    z-index: 120;
    right: 22px;
    bottom: 22px;
    display: none;
    max-width: 320px;
    padding: 14px 16px;
    border-radius: var(--radius);
    color: #fff;
    background: #000;
    font-size: 14px;
    line-height: 1.35;
}

.site-toast.is-open {
    display: block;
}

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

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

button,
input {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    z-index: 60;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 188px 213px minmax(0, 1fr) 200px;
    align-items: center;
    gap: 24px;
    width: 100%;
    height: var(--header-height);
    padding: 0 calc((100vw - min(var(--container), calc(100vw - 120px))) / 2);
    background: transparent;
    transition: background-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.site-header.is-scrolled {
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.brand {
    display: block;
    min-width: 188px;
    height: auto;
    padding: 0;
    background: transparent;
}

.brand img {
    width: 188px;
    height: auto;
}

.brand-slogan {
    display: block;
    width: 213px;
    line-height: 0;
}

.brand-slogan img {
    width: 213px;
    height: auto;
}

.site-header.is-scrolled .brand-slogan {
    filter: invert(1);
}

.desktop-nav {
    display: flex;
    justify-content: flex-end;
    gap: 0;
    padding-right: 35px;
    color: #fff;
    font-size: 14px;
}

.desktop-nav a {
    display: inline-block;
}

.desktop-nav a:nth-child(1) {
    width: 75px;
}

.desktop-nav a:nth-child(2) {
    width: 102px;
}

.desktop-nav a:nth-child(3) {
    width: 53px;
}

.desktop-nav a:nth-child(4) {
    width: 83px;
}

.site-header.is-scrolled .desktop-nav {
    color: #000;
}

.desktop-nav a {
    transition: opacity .2s ease;
}

.desktop-nav a:hover {
    opacity: .58;
}

.phone-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 42px;
    border: 0;
    background: #fff;
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

.header-contact {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.work-hours {
    display: block;
    color: var(--color-muted);
    font-size: 13px;
    line-height: 1.2;
}

.site-header .work-hours {
    color: #fff;
}

.site-header.is-scrolled .work-hours {
    color: var(--color-muted);
}

.site-header.is-scrolled .phone-button {
    background: #000;
    color: #fff;
}

.icon-button,
.menu-close,
.modal__close {
    display: inline-grid;
    place-items: center;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
}

.site-header.is-scrolled .menu-toggle span {
    background: #000;
}

.mobile-menu {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: min(380px, 100vw);
    height: 100vh;
    padding: 34px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .28s ease;
}

.mobile-menu.is-open {
    transform: translateX(0);
}

.mobile-menu a {
    font-size: 26px;
    font-weight: 700;
}

.mobile-menu__phone {
    display: grid;
    gap: 4px;
}

.mobile-menu__phone span {
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
}

.menu-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border: 1px solid #000;
    text-transform: uppercase;
}

.site-main {
    padding-top: 0;
}

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: #111;
}

.hero__media {
    position: absolute;
    inset: 0;
}

.hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(90deg, rgba(0, 0, 0, .58) 0%, rgba(0, 0, 0, .2) 47%, rgba(0, 0, 0, .34) 100%);
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 760px) 435px;
    gap: 36px;
    align-items: end;
    min-height: 690px;
    padding: 0 0 56px;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--color-muted);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    max-width: 900px;
    font-weight: 700;
    line-height: .98;
    letter-spacing: 0;
}

h1 {
    margin-bottom: 24px;
    color: #fff;
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: clamp(52px, 5.4vw, 76px);
    font-weight: 700;
    line-height: .94;
    text-transform: uppercase;
}

h1 span {
    display: inline-block;
    padding: 0 8px 2px;
    color: #000;
    background: var(--color-yellow);
    white-space: nowrap;
}

h2 {
    margin-bottom: 24px;
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 46px);
    text-transform: uppercase;
}

h3 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.1;
}

.hero__copy {
    max-width: 760px;
}

.hero__benefits {
    align-self: end;
    margin-bottom: 4px;
}

.hero__actions,
.section-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero__actions {
    align-items: center;
}

.hero__actions .button {
    min-width: 260px;
}

.hero__actions p {
    max-width: 185px;
    margin: 0 0 0 2px;
    color: #fff;
    font-size: 15px;
    line-height: 1.2;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .18s ease, color .18s ease;
}

.button:hover {
    background: #000;
    color: var(--color-yellow);
}

.button--yellow {
    background: var(--color-yellow);
}

.button--glass {
    border-color: #fff;
    background: rgba(0, 0, 0, .12);
    color: #fff;
}

.button--ghost-dark {
    background: transparent;
}

.button--small {
    min-height: 44px;
    padding: 0 20px;
    font-size: 13px;
}

.benefit-stack {
    display: grid;
    gap: 9px;
    margin-bottom: 0;
}

.benefit-stack span {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 78px;
    padding: 0 18px;
    background: rgba(12, 12, 12, .94);
    color: #fff;
    font-size: 19px;
    line-height: 1.2;
}

.benefit-stack i {
    position: relative;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    background: var(--color-yellow);
    color: #000;
    font-style: normal;
    font-weight: 800;
}

.benefit-stack i::before,
.benefit-stack i::after {
    position: absolute;
    content: "";
}

.benefit-icon--sample::before {
    inset: 14px 13px 12px;
    border: 2px solid #000;
}

.benefit-icon--sample::after {
    top: 12px;
    left: 19px;
    width: 12px;
    height: 10px;
    border: 2px solid #000;
    border-top: 0;
}

.benefit-icon--quality::before {
    inset: 14px;
    border: 2px solid #000;
}

.benefit-icon--quality::after {
    left: 15px;
    top: 22px;
    width: 20px;
    height: 10px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    transform: rotate(-45deg);
}

.benefit-icon--select::before {
    left: 13px;
    top: 13px;
    width: 24px;
    height: 24px;
    border: 2px solid #000;
}

.benefit-icon--select::after {
    left: 24px;
    top: 8px;
    width: 2px;
    height: 35px;
    background: #000;
    box-shadow: -9px 9px 0 #000, 9px 9px 0 #000;
}

.benefit-icon--service::before {
    left: 13px;
    top: 13px;
    width: 24px;
    height: 24px;
    border: 3px solid #000;
    border-radius: 50%;
}

.benefit-icon--service::after {
    left: 22px;
    top: 22px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #000;
}

.section {
    padding: 100px 0;
    background: #fff;
}

.assortment-section {
    padding-top: 56px;
}

.assortment-section .section-head {
    margin-bottom: 28px;
}

.section--plain {
    min-height: 60vh;
}

.section--plain h1 {
    color: #000;
}

.section--muted {
    background: var(--color-bg);
}

.section--dark {
    background: #0f0f0f;
    color: #fff;
}

.section--contacts {
    background: var(--color-bg);
}

.section-head {
    margin-bottom: 46px;
}

.section-head--center {
    text-align: center;
}

.section-head--center h2 {
    margin-right: auto;
    margin-left: auto;
}

.section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
}

.section-head--split p {
    max-width: 500px;
    color: var(--color-muted);
}

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

.solution-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 28px;
    border-radius: var(--radius);
    background: var(--color-soft);
    transition: transform .2s ease, background .2s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
}

.solution-card--accent {
    min-height: 250px;
    background: var(--color-soft);
    color: #000;
}

.solution-card p {
    margin-bottom: 0;
    color: inherit;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.filter-tabs button {
    height: 38px;
    padding: 0 18px;
    border: 1px solid #000;
    border-radius: 40px;
    background: transparent;
    cursor: pointer;
}

.filter-tabs button.is-active {
    background: #000;
    color: #fff;
}

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

.product-card {
    overflow: hidden;
    border-radius: var(--radius);
    background: #fff;
}

.product-card[hidden] {
    display: none;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-card__body {
    display: flex;
    min-height: 255px;
    flex-direction: column;
    padding: 18px;
}

.product-card__body h3 {
    font-size: 19px;
}

.product-card__body p {
    color: var(--color-muted);
    font-size: 14px;
}

.price-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: auto 0 16px;
}

.price-line span {
    color: #777;
    text-decoration: line-through;
}

.price-line strong {
    font-size: 22px;
}

.about-grid,
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-grid > img {
    width: 100%;
    border-radius: var(--radius);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 38px;
}

.stats strong {
    display: flex;
    min-height: 115px;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    background: var(--color-bg);
    font-size: 34px;
    line-height: 1;
}

.stats span {
    margin-top: 10px;
    color: var(--color-muted);
    font-size: 13px;
    font-weight: 500;
}

.material-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.material-grid article {
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: var(--radius);
    background: #1b1b1b;
}

.material-grid p {
    color: #cfcfcf;
}

.case-strip {
    display: grid;
    grid-template-columns: 1.1fr .9fr 1fr;
    gap: 20px;
}

.case-strip img {
    width: 100%;
    height: 360px;
    border-radius: var(--radius);
    object-fit: cover;
}

.blog-grid article {
    min-height: 260px;
    padding: 28px;
    border-radius: var(--radius);
    background: #fff;
}

.blog-grid span {
    display: block;
    margin-bottom: 50px;
    color: var(--color-muted);
    font-size: 14px;
}

.calculator-cta {
    background: #fff;
}

.calculator-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    padding: 46px;
    border-radius: var(--radius);
    background: var(--color-soft);
}

.contact-list {
    display: grid;
    gap: 18px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.contact-list__item {
    position: relative;
    min-height: 42px;
    padding-left: 58px;
    font-size: 18px;
    line-height: 1.28;
}

.contact-list__item::before,
.contact-list__item::after {
    position: absolute;
    content: "";
}

.contact-list__item::before {
    top: 0;
    left: 0;
    width: 42px;
    height: 42px;
    background: var(--color-yellow);
}

.contact-list__item--pin::after {
    top: 10px;
    left: 14px;
    width: 12px;
    height: 16px;
    border: 3px solid #000;
    border-radius: 12px 12px 12px 0;
    transform: rotate(-45deg);
}

.contact-list__item--phone::after {
    top: 12px;
    left: 14px;
    width: 15px;
    height: 15px;
    border: 3px solid #000;
    border-top-color: transparent;
    border-right-color: transparent;
    border-radius: 0 0 0 12px;
    transform: rotate(-18deg);
}

.contact-list__item--mail::after {
    top: 13px;
    left: 11px;
    width: 20px;
    height: 14px;
    border: 3px solid #000;
}

.route-map {
    position: relative;
    display: grid;
    min-height: 410px;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--color-yellow);
}

.route-map__canvas {
    position: relative;
    min-height: 410px;
    background:
        radial-gradient(circle at 18% 24%, rgba(255,255,255,.22) 0 2px, transparent 3px),
        radial-gradient(circle at 78% 62%, rgba(0,0,0,.1) 0 2px, transparent 3px),
        linear-gradient(135deg, rgba(0,0,0,.08) 0 1px, transparent 1px),
        linear-gradient(45deg, rgba(255,255,255,.2) 0 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 36px 36px, 48px 48px;
}

.route-map__canvas::before {
    position: absolute;
    right: -18px;
    bottom: -22px;
    width: 45%;
    height: 64%;
    border-radius: 48px 0 0 0;
    background:
        linear-gradient(90deg, transparent 0 24%, rgba(255,255,255,.9) 24% 29%, transparent 29%),
        linear-gradient(#fff, #fff);
    box-shadow: -16px -18px 0 rgba(0, 0, 0, .1);
    content: "";
    opacity: .9;
}

.route-map__road {
    position: absolute;
    display: block;
    height: 18px;
    border: 2px solid rgba(0,0,0,.26);
    border-right: 0;
    border-left: 0;
    transform-origin: left center;
}

.route-map__road--one {
    top: 42%;
    left: -10%;
    width: 78%;
    transform: rotate(-17deg);
}

.route-map__road--two {
    top: 65%;
    left: 12%;
    width: 78%;
    transform: rotate(13deg);
}

.route-map__road--three {
    top: 18%;
    left: 22%;
    width: 52%;
    transform: rotate(35deg);
}

.route-map__label {
    position: absolute;
    z-index: 2;
    color: #000;
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: 46px;
    line-height: 1;
}

.route-map__label--city {
    left: 12%;
    bottom: 28%;
}

.route-map__pin {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: 3px;
    min-width: 184px;
    padding: 12px 14px 12px 42px;
    background: #000;
    color: #fff;
    font-size: 13px;
    line-height: 1.15;
}

.route-map__pin i {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 17px;
    height: 17px;
    border: 4px solid var(--color-yellow);
    border-radius: 999px;
    background: #000;
}

.route-map__pin strong {
    color: var(--color-yellow);
    font-size: 16px;
    text-transform: uppercase;
}

.route-map__pin small {
    color: #f3f3f3;
}

.route-map__pin--office {
    top: 22%;
    left: 10%;
}

.route-map__pin--factory {
    right: 10%;
    bottom: 14%;
}

.route-map__side {
    position: absolute;
    right: 26px;
    top: 26px;
    z-index: 3;
    display: grid;
    gap: 3px;
    padding: 16px 18px;
    background: #fff;
    color: #000;
}

.route-map__side strong {
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: 34px;
    line-height: .9;
}

.site-footer {
    padding: 38px 0 30px;
    background: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 390px 260px minmax(320px, 1fr);
    column-gap: 80px;
    row-gap: 18px;
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.brand--footer {
    align-self: start;
}

.footer-company {
    grid-column: 1;
    margin: 6px 0 0;
    align-self: end;
    font-size: 20px;
    line-height: 1.25;
}

.footer-nav {
    display: grid;
    gap: 11px;
    font-size: 18px;
}

.footer-grid > .button {
    width: 350px;
    min-height: 54px;
    align-self: start;
    justify-self: end;
}

.footer-meta {
    grid-column: 3;
    display: flex;
    justify-content: flex-end;
    align-items: start;
    gap: 30px;
    color: var(--color-muted);
}

.footer-meta a {
    color: #000;
    font-size: 20px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.cart-total-line {
    color: #000;
    font-weight: 700;
}

.telegram-float,
.cart-float,
.callback-float {
    position: fixed;
    z-index: 70;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

.telegram-float {
    left: 24px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    background: #229ed9;
    color: #fff;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-float {
    top: 106px;
    right: 24px;
    width: 70px;
    height: 70px;
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
}

.cart-float:not(.is-active) {
    display: none;
}

.callback-float {
    right: 24px;
    bottom: 24px;
    min-width: 240px;
    height: 54px;
    padding: 0 22px;
    border: 1px solid #000;
    border-radius: 0;
    background: var(--color-yellow);
    color: #000;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
}

.home .callback-float,
.home-export-body .callback-float {
    top: 98px;
    right: calc((100vw - min(var(--container), calc(100vw - 120px))) / 2);
    bottom: auto;
}

.cart-float__icon {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.cart-float__count {
    position: absolute;
    top: -2px;
    right: -2px;
    display: grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: #ff4a4a;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.modal {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .62);
}

.modal.is-open {
    display: flex;
}

.modal__panel {
    position: relative;
    width: min(520px, 100%);
    padding: 42px;
    border-radius: var(--radius);
    background: #fff;
}

.modal__panel .work-hours {
    margin: -8px 0 18px;
    color: #000;
    text-align: center;
}

.modal__panel--wide {
    width: min(760px, 100%);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 34px;
    border: 1px solid #000;
}

.form-stack {
    display: grid;
    gap: 14px;
}

.form-stack label {
    display: grid;
    gap: 7px;
    color: var(--color-muted);
    font-size: 14px;
}

.form-stack input[type="text"],
.form-stack input[type="tel"],
.form-stack input[type="email"],
.form-stack input[type="number"] {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
}

.check {
    display: flex !important;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px !important;
}

.cart-items {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.cart-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 12px;
    background: var(--color-bg);
}

.cart-row__controls {
    display: inline-flex;
    gap: 6px;
}

.cart-row button {
    width: 30px;
    height: 30px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
}

.cart-summary {
    margin: 16px 0 22px;
    font-size: 18px;
}

.page-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #111;
}

.page-hero__media {
    position: absolute;
    inset: 0;
}

.page-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(0, 0, 0, .5);
}

.page-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 720px) 330px;
    gap: 70px;
    align-items: end;
    min-height: 650px;
    padding: 0 0 72px;
}

.page-hero__copy h1 {
    margin-bottom: 22px;
}

.page-hero__copy p {
    max-width: 520px;
    margin-bottom: 0;
    color: #fff;
    font-size: 19px;
    line-height: 1.35;
}

.page-hero__panel {
    display: grid;
    gap: 16px;
    min-height: 230px;
    align-content: start;
    padding: 28px;
    background: rgba(0, 0, 0, .92);
    color: #fff;
}

.page-hero__panel strong {
    color: var(--color-yellow);
    font-size: 26px;
    line-height: 1.08;
    text-transform: uppercase;
}

.page-hero__panel p {
    margin-bottom: 0;
    color: #e6e6e6;
}

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

.catalog-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    display: grid;
    gap: 24px;
    padding: 28px;
    background: #fff;
}

.catalog-sidebar h2 {
    margin-bottom: 0;
    font-size: 36px;
}

.filter-tabs--vertical {
    display: grid;
    justify-content: stretch;
}

.filter-tabs--vertical button {
    width: 100%;
    border-radius: 0;
    text-align: left;
}

.stock-grid,
.article-grid,
.construction-grid,
.reason-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card--stock .product-card__body {
    min-height: 245px;
}

.service-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: 46px;
    background: var(--color-soft);
}

.service-band h2 {
    margin-bottom: 0;
}

.service-band--dark {
    background: transparent;
    color: #fff;
}

.calc-work__grid,
.custom-process,
.blog-intro {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 64px;
    align-items: center;
}

.calc-work__grid > img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.step-list {
    display: grid;
    gap: 12px;
}

.step-list article {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    min-height: 84px;
    align-items: center;
    padding: 18px 22px;
    background: var(--color-bg);
}

.step-list span {
    color: var(--color-yellow);
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.step-list p {
    margin-bottom: 0;
}

.step-list--large article {
    min-height: 96px;
}

.quiz-card {
    padding: 46px;
    background: #fff;
}

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

.request-form fieldset {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 22px;
    border: 1px solid var(--color-line);
}

.request-form legend {
    padding: 0 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.request-form input,
.request-form select,
.request-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 15px;
    border: 1px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
}

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

.request-form__wide {
    grid-column: 1 / -1;
}

.blog-intro {
    align-items: start;
}

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

.reason-grid article,
.construction-grid article,
.article-grid article {
    min-height: 210px;
    padding: 28px;
    background: #fff;
}

.construction-grid article {
    background: #fff;
}

.overview-grid,
.feature-grid,
.value-grid {
    display: grid;
    gap: 20px;
}

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

.overview-card,
.feature-card,
.value-card {
    display: flex;
    min-height: 292px;
    flex-direction: column;
    padding: 30px;
    border-radius: var(--radius);
    background: #fff;
}

.overview-card--accent {
    background: var(--color-yellow);
}

.overview-card h3,
.feature-card h3,
.value-card h3 {
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: 31px;
    line-height: 1.05;
    text-transform: uppercase;
}

.overview-card p,
.feature-card p,
.value-card p {
    color: var(--color-muted);
}

.overview-card ul,
.feature-card ul {
    display: grid;
    gap: 7px;
    margin: 10px 0 24px;
    padding: 0;
    list-style: none;
}

.overview-card li,
.feature-card li {
    position: relative;
    padding-left: 18px;
}

.overview-card li::before,
.feature-card li::before {
    position: absolute;
    left: 0;
    content: "/";
    font-weight: 800;
}

.overview-card .button,
.feature-card .button {
    align-self: flex-start;
    margin-top: auto;
}

.feature-grid {
    grid-template-columns: repeat(3, 1fr);
}

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

.value-card {
    min-height: 240px;
    border: 1px solid var(--color-line);
}

.text-column {
    display: grid;
    gap: 16px;
}

.text-column p {
    margin-bottom: 0;
}

.wide-copy {
    max-width: 760px;
}

.cta-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 36px;
    align-items: center;
    padding: 44px;
    border-radius: var(--radius);
    background: #000;
    color: #fff;
}

.cta-band h2 {
    margin-bottom: 0;
}

.cta-band p {
    max-width: 600px;
    margin: 14px 0 0;
    color: #d8d8d8;
}

.article-grid article {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-line);
}

.article-grid span {
    margin-bottom: 42px;
    color: var(--color-muted);
    font-size: 14px;
}

.article-grid p {
    color: var(--color-muted);
}

.article-grid a {
    margin-top: auto;
    font-weight: 800;
    text-transform: uppercase;
}

.legal-page {
    padding-top: 160px;
}

.legal-page h1 {
    color: #000;
}

.page-template-page-polica .site-header,
.error404 .site-header {
    background: #000;
}

.home-section {
    padding: 82px 0;
    background: var(--color-bg);
}

.center-title {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.reference-solutions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reference-card {
    position: relative;
    min-height: 252px;
    overflow: hidden;
    padding: 30px;
    border-radius: 5px;
    background: #ebebeb;
    color: #000;
}

.reference-card h3 {
    position: relative;
    z-index: 2;
    max-width: 470px;
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: 30px;
    line-height: 1.05;
    text-transform: uppercase;
}

.reference-card p,
.reference-card .button {
    position: relative;
    z-index: 2;
    max-width: 390px;
}

.reference-card .button {
    margin-top: 26px;
}

.reference-card img {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    max-width: 45%;
    max-height: 92%;
    object-fit: contain;
}

.reference-card--big {
    grid-row: span 2;
    min-height: 520px;
}

.reference-card--big img {
    max-width: 92%;
    max-height: 65%;
}

.stock-section {
    padding-top: 90px;
    background: #fff;
}

.stock-heading {
    margin-bottom: 38px;
}

.stock-heading h2 {
    max-width: 860px;
    margin-bottom: 12px;
}

.stock-heading p {
    max-width: 680px;
    margin-bottom: 18px;
}

.stock-heading__button {
    margin-top: 18px;
}

.reference-products {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 52px;
}

.reference-products .product-card {
    background: #fff;
}

.reference-products .product-card img {
    height: 286px;
    aspect-ratio: auto;
    border-radius: 5px;
}

.reference-products .product-card__body {
    min-height: 130px;
    padding: 14px 0 0;
}

.reference-products .product-card__body h3 {
    font-size: 18px;
    line-height: 1.15;
}

.reference-products .button--small {
    display: none;
}

.about-reference {
    background: var(--color-bg);
}

.about-reference__top {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-reference__top p {
    max-width: 480px;
}

.about-reference__top img {
    width: 100%;
    border-radius: 5px;
}

.mission-card {
    position: relative;
    display: grid;
    grid-template-columns: 330px 1fr 220px;
    gap: 34px;
    align-items: center;
    min-height: 205px;
    margin-top: 88px;
    overflow: visible;
    padding: 42px 60px;
    border-radius: 5px;
    background: var(--color-yellow);
}

.mission-card h2 {
    margin-bottom: 12px;
}

.mission-card img {
    align-self: end;
    max-height: 250px;
    object-fit: contain;
}

.stats--reference {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 60px;
}

.stats--reference strong {
    min-height: 122px;
    border: 1px solid #d4d4d4;
    border-right: 0;
    background: transparent;
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: 48px;
    text-align: center;
}

.stats--reference strong:last-child {
    border-right: 1px solid #d4d4d4;
}

.stats--reference span {
    color: #000;
    font-family: Inter, Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-transform: none;
}

.docs-section {
    padding-top: 0;
    overflow: hidden;
}

.docs-strip {
    position: relative;
    display: flex;
    gap: 28px;
    margin-top: 32px;
}

.docs-strip::after {
    position: absolute;
    z-index: 0;
    top: -30px;
    right: -180px;
    width: 560px;
    height: 462px;
    border-radius: 42px;
    background: var(--color-yellow);
    content: "";
}

.docs-strip img {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 405px;
    flex: 0 0 auto;
    object-fit: cover;
}

.materials-reference p {
    max-width: 650px;
}

.material-reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.material-reference-grid article {
    position: relative;
    min-height: 214px;
    overflow: hidden;
    border-radius: 5px;
    color: #fff;
}

.material-reference-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.material-reference-grid h3 {
    position: absolute;
    top: 20px;
    left: 20px;
    max-width: 280px;
    font: 700 22px/1.15 Inter, Arial, sans-serif;
}

.material-actions {
    display: grid;
    gap: 12px;
    align-content: end;
}

.button--dark {
    background: #000;
    color: var(--color-yellow);
}

.trust-section {
    position: relative;
    overflow: hidden;
}

.trust-section::after {
    position: absolute;
    z-index: 0;
    top: 24px;
    right: -170px;
    width: 50%;
    height: 385px;
    border-radius: 46px 0 0 46px;
    background: var(--color-yellow);
    content: "";
}

.trust-section .container {
    position: relative;
    z-index: 1;
}

.trust-strip {
    display: flex;
    gap: 20px;
    margin: 22px 0;
}

.trust-strip img {
    width: 285px;
    height: 205px;
    flex: 0 0 auto;
    border-radius: 5px;
    object-fit: cover;
    background: #fff;
}

.blog-reference {
    text-align: center;
}

.article-grid--home article {
    overflow: hidden;
    min-height: 552px;
    padding: 0 30px 30px;
    text-align: left;
}

.article-grid--home img {
    width: calc(100% + 60px);
    height: 278px;
    margin: 0 -30px 28px;
    object-fit: cover;
}

.article-grid--home h3 {
    font-size: 24px;
    line-height: 1.25;
}

.blog-reference__button {
    margin-top: 40px;
}

.calculator-card--reference {
    grid-template-columns: 410px 1fr;
    overflow: hidden;
    min-height: 296px;
    padding: 42px 40px;
}

.calculator-card--reference img {
    width: 100%;
    height: 255px;
    object-fit: contain;
}

.map-section {
    position: relative;
    min-height: 438px;
    background: url("../images/map-bg.png") center / cover no-repeat;
}

.map-section__inner {
    position: relative;
    min-height: 438px;
}

.map-card {
    position: absolute;
    top: 52px;
    left: 0;
    width: min(470px, 100%);
    padding: 34px 42px 32px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .08);
}

.map-card h2 {
    margin-bottom: 18px;
    font-size: 44px;
}

.map-card p {
    max-width: 390px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.25;
}

.map-card .contact-list {
    gap: 12px;
    margin-top: 24px;
}

.map-card .contact-list__item {
    min-height: 38px;
    padding-left: 52px;
    font-size: 15px;
}

.map-card .contact-list__item::before {
    width: 38px;
    height: 38px;
}

.map-card .contact-list__item--pin::after {
    top: 9px;
    left: 13px;
}

.map-card .contact-list__item--phone::after {
    top: 11px;
    left: 13px;
}

.map-card .contact-list__item--mail::after {
    top: 12px;
    left: 10px;
}

.map-pin {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 2px;
    padding: 10px 16px 10px 48px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .15);
    font-size: 13px;
    line-height: 1.08;
}

.map-pin::before {
    position: absolute;
    left: 10px;
    top: 50%;
    width: 27px;
    height: 27px;
    border-radius: 50% 50% 50% 0;
    background: #f04438;
    content: "";
    transform: translateY(-50%) rotate(-45deg);
}

.map-pin::after {
    position: absolute;
    left: 21px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    content: "";
    transform: translateY(-50%);
}

.map-pin strong {
    font-size: 15px;
}

.map-pin small {
    color: #4f4f4f;
}

.map-pin--office {
    right: 170px;
    top: 178px;
}

.map-pin--factory {
    right: 42px;
    bottom: 92px;
}

.home .site-footer,
.home .telegram-float,
.home-export-body .site-footer,
.home-export-body .telegram-float {
    display: none;
}

.home .site-main,
.home-export-body .site-main {
    padding-top: 0;
}

.home-export {
    overflow: hidden;
    background: #f2f2f2;
}

.live-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    background: #101010 url("../images/home-hero.png") center / cover no-repeat;
}

.live-hero::before,
.live-hero::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
}

.live-hero::before {
    height: 256px;
    background: linear-gradient(180deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,0) 100%);
}

.live-hero::after {
    top: auto;
    height: 253px;
    background: linear-gradient(0deg, rgba(0,0,0,.95) 0%, rgba(0,0,0,0) 100%);
}

.live-hero__inner {
    position: relative;
    z-index: 1;
    min-height: 720px;
}

.live-hero__copy {
    position: absolute;
    left: 0;
    top: 434px;
}

.live-hero h1 {
    width: 560px;
    margin: 0;
    color: #fff;
    font-family: Bebas, 'Arial Narrow', Impact, sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.live-hero h1 span {
    display: inline;
    padding: 0 7px 0 0;
    color: #000;
    background: var(--color-yellow);
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.live-hero__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 26px;
}

.live-hero__actions .button {
    width: 300px;
    min-height: 60px;
    padding: 0;
    border-color: transparent;
    font-size: 16px;
    font-weight: 500;
}

.live-hero__ghost {
    width: 240px !important;
    border: 1px solid #fff !important;
    background: transparent;
    color: #fff;
}

.live-hero__actions p {
    width: 193px;
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
}

.live-hero__benefits {
    position: absolute;
    right: 0;
    top: 348px;
    display: grid;
    gap: 6px;
    width: 305px;
}

.live-hero__benefits div {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 10px;
    align-items: center;
    height: 82px;
    padding: 0 10px 0 16px;
    background: #151515;
    color: #fff;
}

.live-hero__benefits img {
    width: 50px;
    height: 50px;
}

.live-hero__benefits span {
    font-size: 16px;
    line-height: 1.2;
}

.home-export__section {
    position: relative;
    width: 100%;
    margin: 0;
    line-height: 0;
}

.home-export__section img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
}

.home-export__link {
    position: absolute;
    z-index: 4;
    display: block;
    border: 0;
    padding: 0;
    background: transparent;
    color: transparent;
    cursor: pointer;
}

.home-export__link:focus-visible {
    outline: 2px solid var(--color-yellow);
    outline-offset: 2px;
}

.home-export__link--hero-catalog { left: 50.7%; top: 4.3%; width: 5.3%; height: 4%; }
.home-export__link--hero-about { left: 56.8%; top: 4.3%; width: 7.4%; height: 4%; }
.home-export__link--hero-blog { left: 64.8%; top: 4.3%; width: 4.6%; height: 4%; }
.home-export__link--hero-calc-nav { left: 70.1%; top: 4.3%; width: 7.2%; height: 4%; }
.home-export__link--hero-phone { left: 75.5%; top: 2.7%; width: 15.2%; height: 6.3%; }
.home-export__link--hero-calc { left: 9.7%; top: 85.8%; width: 20.6%; height: 8%; }
.home-export__link--hero-checklist { left: 31.7%; top: 85.8%; width: 17%; height: 8%; }

.home-export__link--solution-custom { left: 9.5%; top: 14.5%; width: 39.5%; height: 70%; }
.home-export__link--solution-stock { left: 50.6%; top: 14.5%; width: 39%; height: 22%; }
.home-export__link--solution-business { left: 50.6%; top: 39%; width: 39%; height: 20%; }
.home-export__link--solution-sheets { left: 9.5%; top: 64%; width: 39.5%; height: 21%; }
.home-export__link--solution-services { left: 50.6%; top: 64%; width: 39%; height: 21%; }

.home-export__link--materials-catalog { left: 63.6%; top: 73%; width: 27%; height: 8.5%; }
.home-export__link--materials-checklist { left: 63.6%; top: 83.6%; width: 27%; height: 8.5%; }
.home-export__link--blog { left: 42.3%; top: 84.6%; width: 15.5%; height: 9%; }
.home-export__link--request { left: 12.5%; top: 58.5%; width: 26%; height: 18%; }
.home-export__link--map-phone { left: 12.2%; top: 56.5%; width: 20%; height: 7%; }
.home-export__link--map-mail { left: 12.2%; top: 68.5%; width: 22%; height: 7%; }

.home-export__link--footer-main { left: 43.4%; top: 23%; width: 7%; height: 9%; }
.home-export__link--footer-catalog { left: 43.4%; top: 34%; width: 7%; height: 9%; }
.home-export__link--footer-about { left: 43.4%; top: 45%; width: 8%; height: 9%; }
.home-export__link--footer-request { left: 43.4%; top: 57%; width: 13%; height: 9%; }
.home-export__link--footer-blog { left: 43.4%; top: 69%; width: 7%; height: 9%; }
.home-export__link--footer-manager { left: 68.2%; top: 22%; width: 22%; height: 21%; }
.home-export__link--footer-policy { left: 70.6%; top: 72%; width: 21%; height: 12%; }

@media (max-width: 980px) {
    .home-export {
        min-width: 980px;
    }

    .home-export-body {
        overflow-x: auto;
    }
}

.legal-text {
    max-width: 760px;
    padding: 32px;
    background: #fff;
}

@media (max-width: 980px) {
    :root {
        --header-height: 70px;
    }

    .site-header {
        grid-template-columns: 136px minmax(0, 1fr) 70px 44px;
        gap: 14px;
        padding: 0 10px;
        background: #000;
        box-shadow: none;
    }

    .container {
        width: 300px;
    }

    .brand {
        min-width: 140px;
        height: auto;
    }

    .brand img {
        width: 136px;
    }

    .brand-slogan {
        display: none;
    }

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: grid;
    }

    .phone-button {
        width: 70px;
        height: 30px;
        padding: 0 12px;
        font-size: 0;
        background: #fff;
        color: #000;
    }

    .header-contact {
        justify-items: center;
        gap: 0;
    }

    .site-header .work-hours {
        display: none;
    }

    .phone-button::before {
        content: "";
        width: 17px;
        height: 17px;
        border: 2px solid #000;
        border-radius: 50%;
        font-size: 14px;
    }

    .hero,
    .hero__content,
    .page-hero,
    .page-hero__content {
        min-height: 790px;
    }

    .hero__media::after,
    .page-hero__media::after {
        background: rgba(0, 0, 0, .48);
    }

    .hero__content,
    .page-hero__content {
        grid-template-columns: 1fr;
        gap: 16px;
        align-content: start;
        padding: 120px 0 32px;
    }

    h1 {
        font-size: 43px;
        line-height: .96;
    }

    .hero h1 span,
    .page-hero h1 span {
        white-space: normal;
        -webkit-box-decoration-break: clone;
        box-decoration-break: clone;
    }

    h2 {
        font-size: 32px;
    }

    .hero__copy {
        display: contents;
    }

    .hero__actions {
        order: 3;
        display: grid;
        gap: 9px;
    }

    .hero__actions .button {
        width: 100%;
        min-width: 0;
    }

    .hero__actions p {
        display: none;
        margin: 0;
        text-align: center;
        font-size: 15px;
    }

    .benefit-stack {
        order: 2;
        gap: 6px;
        margin-top: 54px;
    }

    .benefit-stack span {
        min-height: 44px;
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 8px;
        padding: 0 8px;
        font-size: 15px;
    }

    .benefit-stack i {
        width: 32px;
        height: 32px;
    }

    .solution-grid,
    .reference-solutions,
    .material-reference-grid,
    .product-grid,
    .about-grid,
    .contacts-grid,
    .material-grid,
    .blog-grid,
    .catalog-layout,
    .stock-grid,
    .article-grid,
    .construction-grid,
    .overview-grid,
    .feature-grid,
    .value-grid,
    .calc-work__grid,
    .custom-process,
    .blog-intro,
    .request-form,
    .calculator-card,
    .about-reference__top,
    .mission-card,
    .service-band,
    .cta-band,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .home-section {
        padding: 58px 0;
    }

    .reference-card,
    .reference-card--big {
        min-height: 330px;
    }

    .reference-card img,
    .reference-card--big img {
        max-width: 78%;
        max-height: 54%;
    }

    .reference-products {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }

    .reference-products .product-card img {
        height: auto;
        aspect-ratio: 1;
    }

    .mission-card {
        padding: 26px;
    }

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

    .stats--reference strong:nth-child(2n) {
        border-right: 1px solid #d4d4d4;
    }

    .stats--reference strong {
        min-height: 112px;
        font-size: 40px;
    }

    .stats--reference span {
        font-size: 15px;
    }

    .docs-strip,
    .trust-strip {
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .route-map,
    .route-map__canvas {
        min-height: 460px;
    }

    .route-map__canvas::before {
        width: 64%;
        height: 46%;
    }

    .route-map__label--city {
        left: 22px;
        bottom: 170px;
        font-size: 34px;
    }

    .route-map__pin {
        min-width: 230px;
    }

    .route-map__pin--office {
        top: 76px;
        left: 20px;
    }

    .route-map__pin--factory {
        right: 20px;
        bottom: 58px;
    }

    .route-map__side {
        top: 20px;
        right: 20px;
    }

    .map-section,
    .map-section__inner {
        min-height: 650px;
    }

    .map-section {
        background-position: 61% center;
    }

    .map-card {
        position: relative;
        top: 28px;
        left: auto;
        width: 300px;
        padding: 26px 22px;
    }

    .map-card h2 {
        font-size: 34px;
    }

    .map-card p {
        font-size: 15px;
    }

    .map-pin {
        display: none;
    }

    .callback-float {
        right: 14px;
        bottom: 14px;
        min-width: 0;
        max-width: calc(100vw - 28px);
        height: 50px;
        padding: 0 16px;
        font-size: 12px;
    }

    .docs-strip img {
        width: 210px;
        height: 300px;
    }

    .page-hero__panel {
        min-height: auto;
        padding: 20px;
    }

    .page-hero__copy p {
        font-size: 16px;
    }

    .catalog-sidebar {
        position: static;
        padding: 22px;
    }

    .quiz-card,
    .service-band,
    .cta-band {
        padding: 24px;
    }

    .overview-card,
    .feature-card,
    .value-card {
        min-height: 0;
        padding: 22px;
    }

    .request-form__wide {
        grid-column: auto;
    }

    .section {
        padding: 62px 0;
    }

    .section-head--split {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 18px;
    }

    .solution-card,
    .solution-card--accent {
        min-height: 210px;
    }

    .case-strip {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .case-strip img {
        width: 280px;
        min-width: 280px;
        height: 230px;
    }

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

    .footer-grid {
        gap: 30px;
    }

    .footer-company {
        grid-column: auto;
        margin: 0;
        font-size: 16px;
    }

    .footer-meta {
        display: grid;
        grid-column: auto;
        justify-content: start;
    }

    .telegram-float {
        width: 52px;
        height: 52px;
    }

    .cart-float {
        top: 86px;
        right: 12px;
        width: 58px;
        height: 58px;
    }
}
