:root {
    --color-bg: #ffffff;
    --color-muted: #f6f3ef;
    --color-text: #1e242c;
    --color-soft: #5b616b;
    --color-primary: #ff5a0a;
    --color-primary-dark: #e54800;
    --color-accent: #ff7a1a;
    --color-border: #e8e4de;
    --shadow: 0 18px 55px rgba(51, 42, 31, .12);
    --radius: 8px;
    --container: 1640px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--color-text);
    background: #f6f2ed;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.55;
}

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

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

a:hover {
    color: var(--color-primary);
}

h1, h2, h3 {
    margin: 0 0 16px;
    line-height: 1.12;
}

h1 {
    font-size: clamp(38px, 7vw, 82px);
    letter-spacing: 0;
}

h2 {
    font-size: clamp(28px, 4vw, 46px);
}

h3 {
    font-size: 20px;
}

p {
    margin: 0 0 18px;
}

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

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
    width: auto;
    height: auto;
    clip: auto;
    z-index: 20;
    padding: 10px 14px;
    background: #fff;
    color: #000;
}

.site-header {
    position: sticky;
    top: 16px;
    z-index: 10;
    padding: 22px 0 0;
    background: transparent;
}

.site-header__inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0 30px;
    border: 1px solid rgba(255,255,255,.72);
    border-radius: 14px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 14px 44px rgba(45, 35, 25, .09);
    backdrop-filter: blur(16px);
}

.logo {
    display: inline-grid;
    gap: 0;
    font-weight: 800;
    line-height: .9;
    letter-spacing: 0;
    color: var(--color-text);
}

.logo__mark {
    width: auto;
    height: auto;
    color: var(--color-primary);
    background: transparent;
    font-size: 31px;
}

.logo__text {
    font-size: 29px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-left: auto;
    font-size: 18px;
    font-weight: 500;
}

.site-nav > a:first-child {
    color: var(--color-primary);
    font-weight: 700;
}

.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    min-width: 210px;
    display: none;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
}

.nav-dropdown a:hover {
    background: #fff3eb;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    display: block;
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 34px;
}

.header-phone {
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--color-text);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 15px 28px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: .2s ease;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    box-shadow: 0 16px 28px rgba(255, 90, 10, .24);
}

.button-primary:hover {
    color: #fff;
    background: var(--color-primary-dark);
}

.button-secondary {
    color: var(--color-primary);
    background: #fff;
    border-color: var(--color-primary);
}

.button-ghost {
    color: var(--color-text);
    background: rgba(255,255,255,.78);
    border-color: rgba(232, 228, 222, .85);
}

.button-small {
    min-height: 52px;
    padding: 12px 24px;
    font-size: 16px;
}

.eyebrow {
    margin-bottom: 10px;
    color: var(--color-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.hero {
    position: relative;
    margin-top: -110px;
    padding: 142px 0 34px;
    min-height: 710px;
    overflow: hidden;
    background: #f8f4ee url("/assets/images/general/hero-bg.webp") center right / cover no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.08) 38%, rgba(255,255,255,0) 68%);
    pointer-events: none;
}

.hero::after {
    content: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
    min-height: 535px;
    display: flex;
    align-items: center;
}

.page-hero__grid,
.split,
.product-layout,
.contact-panel,
.contact-page,
.price-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: center;
}

.hero__content {
    max-width: 650px;
    padding-top: 36px;
}

.hero__badge {
    display: inline-flex;
    margin: 0 0 26px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--color-primary);
    background: #fff0e6;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero__content h1 {
    margin-bottom: 22px;
    font-size: clamp(48px, 4.7vw, 76px);
    font-weight: 800;
    letter-spacing: 0;
}

.hero__content h1 span {
    display: block;
    color: var(--color-primary);
}

.hero__lead {
    max-width: 510px;
    margin-bottom: 26px;
    color: #4f555e;
    font-size: clamp(18px, 1.35vw, 23px);
    line-height: 1.45;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 26px;
}

.hero__catalog {
    min-width: 288px;
    justify-content: center;
    font-size: 18px;
}

.hero__catalog span {
    margin-left: 14px;
    font-size: 28px;
    line-height: 0;
}

.hero__download {
    min-width: 270px;
    gap: 14px;
    color: #2d343d;
    font-size: 18px;
    box-shadow: 0 14px 28px rgba(48, 39, 29, .08);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: 640px;
    margin-top: 28px;
    border: 1px solid rgba(222, 218, 212, .9);
    border-radius: 16px;
    background: rgba(255,255,255,.84);
    box-shadow: 0 18px 44px rgba(48, 39, 29, .1);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.hero-feature {
    min-height: 112px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 15px 12px;
    text-align: center;
    font-size: 15px;
    line-height: 1.25;
}

.hero-feature + .hero-feature {
    border-left: 1px solid rgba(222, 218, 212, .82);
}

.hero-feature__icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    color: var(--color-primary);
    font-size: 34px;
    line-height: 1;
}

.rounded-media {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.section {
    padding: 72px 0;
}

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

.section-head {
    max-width: 760px;
    margin-bottom: 32px;
}

.section-head p {
    color: var(--color-soft);
}

.category-grid,
.feature-grid,
.product-grid,
.content-grid,
.product-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.category-card,
.feature,
.content-card,
.article-card,
.product-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
}

.category-card {
    min-height: 250px;
    display: grid;
    place-items: center;
    padding: 26px;
    overflow: hidden;
    font-size: 26px;
    font-weight: 800;
    text-align: center;
}

.category-card img {
    height: 170px;
    object-fit: contain;
    margin-bottom: 16px;
}

.feature,
.content-card,
.article-card {
    padding: 26px;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card__media {
    min-height: 260px;
    display: grid;
    place-items: center;
    padding: 20px;
    background: #f8fbff;
}

.product-card__media img {
    max-height: 230px;
    object-fit: contain;
}

.product-card__body {
    padding: 22px;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
}

.product-card__body h3 {
    min-height: 46px;
}

.product-card__price,
.product-price {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 800;
}

.product-card__meta,
.product-facts,
.spec-list {
    width: 100%;
    margin: 0 0 18px;
}

.product-card__meta div,
.product-facts div,
.spec-list div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--color-border);
}

dt {
    color: var(--color-soft);
}

dd {
    margin: 0;
    font-weight: 700;
    text-align: right;
}

.product-card .button {
    margin-top: auto;
}

.page-hero {
    padding: 54px 0;
    background: linear-gradient(135deg, #eaf5ff, #fff);
}

.page-hero p {
    max-width: 760px;
    color: var(--color-soft);
}

.page-hero--catalog img {
    max-height: 260px;
    object-fit: contain;
    justify-self: center;
}

.breadcrumbs {
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumbs ol {
    width: min(100% - 32px, var(--container));
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 auto;
    padding: 12px 0;
    list-style: none;
    color: var(--color-soft);
    font-size: 14px;
}

.breadcrumbs li + li::before {
    content: "/";
    margin-right: 8px;
    color: #9aa7b6;
}

.product-gallery__main {
    display: grid;
    place-items: center;
    min-height: 420px;
    padding: 28px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
}

.product-gallery__main img {
    max-height: 380px;
    object-fit: contain;
}

.product-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.product-gallery__thumbs button {
    width: 82px;
    height: 82px;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
}

.product-gallery__thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-summary {
    align-self: start;
}

.product-info-grid article {
    padding: 24px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--color-border);
}

.clean-list {
    margin: 0;
    padding-left: 20px;
}

.clean-list li {
    margin-bottom: 10px;
}

.contact-panel,
.price-panel {
    padding: 32px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow);
}

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

.contact-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 12px 14px;
    font: inherit;
}

.hp-field {
    display: none;
}

.text-link {
    color: var(--color-primary);
    font-weight: 800;
}

.content-card--wide {
    grid-column: 1 / -1;
}

.article-list {
    display: grid;
    gap: 18px;
}

.article-card__date {
    color: var(--color-soft);
    font-size: 14px;
}

.site-footer {
    padding: 54px 0 22px;
    color: #dbeafe;
    background: #102033;
}

.site-footer h2 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.site-footer a:hover {
    color: #fff;
}

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

.logo--footer {
    color: #fff;
    margin-bottom: 14px;
}

.footer-menu,
.footer-contacts {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-menu li,
.footer-contacts li {
    margin-bottom: 10px;
}

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

.socials a {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--radius);
}

.site-footer__bottom {
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.18);
}

.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    box-shadow: var(--shadow);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media (min-width: 700px) {
    .category-grid,
    .feature-grid,
    .product-info-grid,
    .content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .site-footer__grid,
    .contact-page,
    .price-panel {
        grid-template-columns: 1.1fr .8fr .8fr;
    }

    .price-panel {
        grid-template-columns: 1fr auto;
    }
}

@media (min-width: 980px) {
    .split,
    .product-layout,
    .contact-panel,
    .page-hero__grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 1080px) {
    .site-header {
        top: 0;
        padding-top: 12px;
    }

    .site-header__inner {
        min-height: 72px;
        padding: 0 18px;
    }

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: 90px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 16px 16px;
        background: #fff;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-item {
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        display: block;
        min-width: 0;
        margin: 4px 0 8px;
        padding: 0 0 0 16px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site-header__actions {
        display: none;
    }

    .hero {
        margin-top: -84px;
        padding-top: 132px;
        min-height: auto;
        background-position: 58% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.58) 48%, rgba(255,255,255,.1) 100%);
    }

    .hero__inner {
        min-height: 560px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, var(--container));
    }

    .site-nav {
        top: 84px;
    }

    .hero {
        margin-top: -84px;
        padding: 124px 0 24px;
        background-position: 64% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,.95) 0%, rgba(255,255,255,.82) 58%, rgba(255,255,255,.28) 100%);
    }

    .hero__inner {
        min-height: 560px;
    }

    .section {
        padding: 48px 0;
    }

    .page-hero {
        padding: 38px 0;
    }

    .hero__content h1 {
        font-size: 40px;
    }

    .hero__lead {
        font-size: 18px;
    }

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

    .hero-feature {
        min-height: 124px;
        font-size: 15px;
    }

    .hero-feature:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(222, 218, 212, .82);
    }

    .hero-feature:nth-child(4) {
        border-top: 1px solid rgba(222, 218, 212, .82);
    }

    .hero__actions {
        display: grid;
    }

    .hero__catalog,
    .hero__download {
        min-width: 0;
        width: 100%;
    }

    .category-card {
        min-height: 210px;
    }

    .product-gallery__main {
        min-height: 300px;
    }

    .contact-panel {
        padding: 22px;
    }
}

/* Homepage redesign based on the provided full-page reference. */
:root {
    --container: 1368px;
    --color-primary: #ff5a0a;
    --color-primary-dark: #df4800;
    --color-muted: #f7f7f7;
    --color-text: #171b21;
    --color-soft: #5e6570;
}

body {
    background: #fff;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid #ececec;
    backdrop-filter: blur(12px);
}

.site-header__inner {
    min-height: 82px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.logo {
    line-height: .9;
}

.logo__mark {
    font-size: 25px;
}

.logo__text {
    font-size: 25px;
}

.site-nav {
    gap: 38px;
    margin-left: 72px;
    margin-right: auto;
    font-size: 15px;
    font-weight: 700;
}

.site-nav > a:first-child {
    color: var(--color-text);
}

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

.site-header__actions {
    gap: 26px;
}

.header-phone {
    font-size: 16px;
    font-weight: 800;
}

.button {
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 15px;
}

.button-primary {
    background: var(--color-primary);
    box-shadow: none;
}

.button-primary:hover {
    background: var(--color-primary-dark);
}

.button-small {
    min-height: 44px;
    padding: 12px 24px;
}

.button-outline {
    color: var(--color-primary);
    background: #fff;
    border: 1px solid var(--color-primary);
}

.button-outline:hover {
    color: #fff;
    background: var(--color-primary);
}

.button-ghost {
    color: #242a32;
    background: rgba(255,255,255,.88);
    border: 1px solid #d7d7d7;
    box-shadow: none;
}

.hero {
    margin: 0;
    min-height: 560px;
    padding: 76px 0 52px;
    background: #fbf7f2 url("/assets/images/general/hero-bg.webp") right center / cover no-repeat;
}

.hero::before {
    background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.6) 36%, rgba(255,255,255,0) 68%);
}

.hero__inner {
    min-height: 440px;
    align-items: center;
}

.hero__content {
    max-width: 570px;
    padding-top: 0;
}

.hero__badge {
    margin-bottom: 26px;
    padding: 7px 15px;
    border-radius: 999px;
    color: var(--color-primary);
    background: #fff2ec;
    font-size: 12px;
    font-weight: 800;
}

.hero__content h1 {
    margin-bottom: 22px;
    font-size: clamp(42px, 4.8vw, 66px);
    font-weight: 900;
    line-height: 1.03;
}

.hero__content h1 span {
    color: var(--color-primary);
}

.hero__lead {
    max-width: 500px;
    margin-bottom: 24px;
    color: #4b5159;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.42;
}

.hero-features {
    max-width: 615px;
    margin-top: 0;
    border-color: #dedede;
    border-radius: 8px;
    background: rgba(255,255,255,.82);
    box-shadow: 0 12px 34px rgba(22, 22, 22, .08);
}

.hero-feature {
    min-height: 124px;
    padding: 18px 12px;
    color: #191d23;
    font-size: 14px;
    font-weight: 800;
}

.hero-feature__icon {
    color: var(--color-primary);
    font-size: 32px;
}

.hero__actions {
    gap: 24px;
    margin-top: 24px;
}

.hero__catalog {
    min-width: 230px;
}

.hero__download {
    min-width: 210px;
}

.home-catalog,
.home-custom,
.home-contract,
.home-logistics,
.home-request {
    padding: 54px 0 0;
}

.home-section-head {
    margin-bottom: 22px;
}

.home-section-head--row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.home-section-head h2,
.custom-panel h2,
.contract-card h2,
.logistics-panel h2,
.request-panel h2 {
    margin: 0 0 12px;
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 900;
}

.home-section-head p,
.custom-panel p,
.contract-card p,
.logistics-panel p,
.request-panel p {
    max-width: 470px;
    color: var(--color-soft);
    font-weight: 600;
}

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

.home-category-card {
    min-height: 395px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #dedede;
    border-radius: 10px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(30, 34, 39, .12);
}

.home-category-card__image {
    height: 230px;
    display: grid;
    place-items: center;
    padding: 18px;
    background: linear-gradient(135deg, #eee9e2, #fafafa);
}

.home-category-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-category-card strong {
    padding: 18px 18px 0;
    font-size: 20px;
    line-height: 1.1;
}

.home-category-card > span:not(.home-category-card__image) {
    padding: 10px 18px 0;
    color: #4f5660;
    font-weight: 600;
}

.home-category-card em {
    margin-top: auto;
    padding: 18px;
    color: var(--color-primary);
    font-style: normal;
    font-weight: 900;
}

.custom-panel,
.contract-grid,
.logistics-panel,
.request-panel {
    overflow: hidden;
    border-radius: 10px;
    background: #f8f8f8;
}

.custom-panel {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 390px;
}

.custom-panel__content,
.contract-card,
.logistics-panel__content,
.request-panel__info {
    padding: 46px 40px;
}

.check-list {
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    margin-bottom: 17px;
    padding-left: 32px;
    color: #343a42;
    font-weight: 700;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    font-size: 13px;
}

.custom-panel__visual {
    position: relative;
    min-height: 390px;
    background: linear-gradient(135deg, #ffffff, #ece6de);
}

.custom-img {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 18px 22px rgba(36, 28, 22, .16));
}

.custom-img--one {
    right: 310px;
    bottom: 60px;
    width: 190px;
}

.custom-img--two {
    right: 170px;
    bottom: 72px;
    width: 155px;
}

.custom-img--three {
    right: 470px;
    bottom: 44px;
    width: 92px;
}

.brand-can {
    position: absolute;
    right: 48px;
    bottom: 62px;
    width: 150px;
    height: 210px;
    display: grid;
    place-items: center;
    border-radius: 18px 18px 12px 12px;
    color: #111;
    background: linear-gradient(145deg, #fefefe, #d7d7d7);
    box-shadow: 0 18px 36px rgba(0,0,0,.16);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    text-align: center;
}

.color-fan {
    position: absolute;
    left: 90px;
    right: 90px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

.color-fan span {
    height: 22px;
    border: 2px solid #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.contract-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    background: #fafafa;
}

.contract-grid > img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.contract-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #fff, #f6f6f6);
}

.contract-card .button {
    align-self: flex-start;
}

.logistics-panel {
    display: grid;
    grid-template-columns: 34% 66%;
    min-height: 470px;
    background: linear-gradient(135deg, #fff, #f6fbff);
}

.logistics-panel h2 span {
    display: block;
    color: var(--color-primary);
}

.logistics-points {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.logistics-points div {
    padding: 14px 16px;
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    background: rgba(255,255,255,.84);
}

.logistics-points strong,
.logistics-points span {
    display: block;
}

.logistics-points span {
    margin-top: 4px;
    color: #606872;
}

.logistics-map {
    position: relative;
    min-height: 470px;
    background:
        radial-gradient(circle at 64% 53%, rgba(255,90,10,.12) 0 5px, transparent 6px),
        linear-gradient(135deg, rgba(255,255,255,.2), rgba(217,233,244,.58));
}

.logistics-map::before {
    content: "";
    position: absolute;
    inset: 50px 34px 88px 28px;
    border-radius: 45% 38% 42% 36%;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(210,220,228,.8);
    box-shadow: inset 0 0 45px rgba(160,184,202,.18);
}

.map-city {
    position: absolute;
    z-index: 2;
    padding: 4px 8px;
    color: #2a3037;
    font-size: 13px;
    font-weight: 800;
}

.map-city::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--color-primary);
}

.map-city--almaty { right: 188px; bottom: 142px; font-size: 20px; }
.map-city--astana { right: 292px; top: 150px; }
.map-city--aktobe { left: 210px; top: 205px; }
.map-city--shymkent { left: 330px; bottom: 110px; }

.map-line {
    position: absolute;
    z-index: 1;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--color-primary) 0 6px, transparent 6px 12px);
    transform-origin: right center;
    opacity: .72;
}

.map-line--one { width: 280px; right: 220px; bottom: 162px; transform: rotate(-24deg); }
.map-line--two { width: 410px; right: 220px; bottom: 162px; transform: rotate(8deg); }
.map-line--three { width: 250px; right: 220px; bottom: 162px; transform: rotate(34deg); }

.truck-card {
    position: absolute;
    right: 54px;
    bottom: 48px;
    width: 230px;
    height: 110px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: linear-gradient(90deg, #d8d8d8 0 28%, #fff 28%);
    box-shadow: 0 18px 35px rgba(43, 50, 58, .18);
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 900;
    line-height: .9;
}

.truck-card span {
    color: #20252b;
}

.home-request {
    padding-bottom: 18px;
}

.request-panel {
    display: grid;
    grid-template-columns: 34% 66%;
    padding: 16px;
    background: #f5f6f7;
}

.request-panel__info {
    padding: 24px 30px;
}

.request-contacts {
    display: grid;
    gap: 12px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    color: #303741;
    font-weight: 700;
}

.request-contacts li {
    padding-left: 24px;
}

.request-form {
    display: grid;
    gap: 12px;
    padding: 0;
}

.request-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.request-form input,
.request-form textarea {
    width: 100%;
    border: 1px solid #dfe3e7;
    border-radius: 6px;
    padding: 14px 16px;
    font: inherit;
    background: #fff;
}

.request-form textarea {
    resize: vertical;
}

.request-form .button {
    width: 100%;
}

.orange-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    overflow: hidden;
    border-radius: 6px;
    color: #fff;
    background: var(--color-primary);
}

.orange-cta p {
    max-width: 650px;
    margin: 0;
    padding: 24px 60px;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
}

.orange-socials {
    display: grid;
    grid-auto-flow: column;
}

.orange-socials a {
    min-width: 170px;
    display: grid;
    place-items: center;
    padding: 20px 28px;
    border-left: 1px solid rgba(255,255,255,.44);
    color: #fff;
    font-weight: 900;
}

.site-footer {
    padding: 34px 0 26px;
    background: linear-gradient(135deg, #101a23, #172530);
}

.site-footer__grid {
    grid-template-columns: 1.5fr .7fr .8fr 1.1fr;
}

.site-footer__grid > div:first-child {
    max-width: 330px;
}

.site-footer h2 {
    color: #fff;
}

.site-footer__bottom {
    margin-top: 22px;
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 22px;
        margin-left: 36px;
    }

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

    .custom-panel,
    .contract-grid,
    .logistics-panel,
    .request-panel {
        grid-template-columns: 1fr;
    }

    .logistics-map {
        min-height: 430px;
    }
}

@media (max-width: 1080px) {
    .site-header__inner {
        min-height: 72px;
    }

    .site-nav {
        top: 72px;
        margin: 0;
        padding: 12px 24px 18px;
    }

    .site-nav a {
        border-bottom: 1px solid var(--color-border);
    }

    .hero {
        margin: 0;
        padding: 64px 0 44px;
        background-position: 62% center;
    }

    .hero__inner {
        min-height: 500px;
    }
}

@media (max-width: 760px) {
    .hero {
        background-position: 68% center;
    }

    .hero::before {
        background: linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 62%, rgba(255,255,255,.38) 100%);
    }

    .hero__content h1 {
        font-size: 40px;
    }

    .hero-features,
    .home-category-grid,
    .request-form__row,
    .orange-cta,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .hero-feature + .hero-feature,
    .hero-feature:nth-child(3),
    .hero-feature:nth-child(4) {
        border-left: 0;
        border-top: 1px solid rgba(222, 218, 212, .82);
    }

    .hero__actions,
    .home-section-head--row {
        display: grid;
    }

    .hero__catalog,
    .hero__download {
        width: 100%;
        min-width: 0;
    }

    .custom-panel__content,
    .contract-card,
    .logistics-panel__content,
    .request-panel__info {
        padding: 28px 22px;
    }

    .custom-panel__visual {
        min-height: 340px;
    }

    .custom-img--one { right: 150px; width: 145px; }
    .custom-img--two { right: 72px; width: 118px; }
    .custom-img--three { right: 250px; width: 76px; }
    .brand-can { right: 18px; width: 104px; height: 158px; font-size: 18px; }

    .logistics-map {
        display: none;
    }

    .orange-cta p {
        padding: 22px;
        font-size: 18px;
    }

    .orange-socials {
        grid-auto-flow: row;
    }

    .orange-socials a {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.44);
    }
}

/* Final refinements: separate advantages strip, SVG icons and mobile grids. */
.icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-phone .icon {
    color: var(--color-primary);
    width: 18px;
    height: 18px;
}

.hero {
    padding-bottom: 72px;
}

.home-advantages {
    position: relative;
    z-index: 2;
    margin-top: -48px;
    padding-bottom: 36px;
}

.advantages-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    padding: 12px;
    border: 1px solid rgba(229,229,229,.9);
    border-radius: 12px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 45px rgba(24, 28, 34, .1);
    backdrop-filter: blur(10px);
}

.advantage-card {
    min-height: 108px;
    display: grid;
    place-items: center;
    gap: 10px;
    padding: 18px 12px;
    border-radius: 8px;
    color: #181d24;
    text-align: center;
    background: linear-gradient(180deg, #fff, #fbfbfb);
    animation: advantageIn .7s ease both, advantageFloat 4.5s ease-in-out infinite;
    animation-delay: var(--delay), calc(var(--delay) + .7s);
}

.advantage-card__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: var(--color-primary);
    background: #fff2ec;
}

.advantage-card__icon .icon {
    width: 30px;
    height: 30px;
}

.advantage-card strong {
    max-width: 150px;
    font-size: 15px;
    line-height: 1.2;
}

@keyframes advantageIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes advantageFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.logistics-points div {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 18px;
}

.logistics-points div::before {
    content: none;
}

.logistics-points .icon {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    color: var(--color-primary);
}

.request-contacts li,
.footer-contacts li,
.socials a,
.orange-socials a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.request-contacts li {
    padding-left: 0;
}

.request-contacts .icon,
.footer-contacts .icon {
    color: var(--color-primary);
}

.orange-socials .icon,
.socials .icon {
    width: 28px;
    height: 28px;
}

.home-request {
    padding-bottom: 34px;
}

.home-orange-cta {
    padding-bottom: 34px;
}

.orange-cta {
    margin-bottom: 0;
}

.floating-whatsapp {
    position: fixed;
    right: 28px;
    bottom: 122px;
    z-index: 31;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 50%;
    color: #fff;
    background: #25d366;
    box-shadow: 0 16px 36px rgba(37, 211, 102, .35);
    transition: transform .2s ease;
}

.floating-whatsapp .icon {
    width: 31px;
    height: 31px;
}

.floating-whatsapp:hover {
    color: #fff;
    transform: translateY(-2px);
}

.floating-ngk {
    bottom: 32px;
}

.scroll-top {
    right: 34px;
    bottom: 194px;
}

@media (max-width: 760px) {
    .home-advantages {
        margin-top: -28px;
        padding-bottom: 28px;
    }

    .advantages-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 10px;
    }

    .advantage-card {
        min-height: 120px;
        padding: 16px 10px;
    }

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

    .home-category-card {
        min-height: 310px;
    }

    .home-category-card__image {
        height: 150px;
        padding: 12px;
    }

    .home-category-card strong {
        padding: 14px 12px 0;
        font-size: 17px;
    }

    .home-category-card > span:not(.home-category-card__image) {
        padding: 8px 12px 0;
        font-size: 13px;
    }

    .home-category-card em {
        padding: 12px;
        font-size: 13px;
    }

    .home-request {
        padding-bottom: 28px;
    }

    .home-orange-cta {
        padding-bottom: 28px;
    }

    .floating-whatsapp {
        right: 20px;
        bottom: 96px;
        width: 52px;
        height: 52px;
    }

    .floating-ngk {
        bottom: 18px;
    }

    .scroll-top {
        right: 26px;
        bottom: 160px;
    }
}

/* Section backgrounds supplied by the owner. */
.custom-panel {
    min-height: 420px;
    background: #f8f8f8;
}

.custom-panel__content {
    position: relative;
    z-index: 1;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 76%, rgba(255,255,255,.35) 100%);
}

.custom-panel__visual {
    min-height: 420px;
    background: url("/assets/images/general/customization-bg.webp") center / cover no-repeat;
}

.logistics-panel {
    position: relative;
    display: block;
    min-height: 520px;
    background: #f7f9fb url("/assets/images/general/logistics-bg.webp") center / cover no-repeat;
}

.logistics-panel__content {
    position: relative;
    z-index: 1;
    width: min(420px, 45%);
    min-height: 520px;
    padding: 44px 36px;
    background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 74%, rgba(255,255,255,0) 100%);
}

.logistics-map {
    display: none;
}

.logistics-points {
    gap: 0;
    max-width: 330px;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,.7);
}

.logistics-points div {
    min-height: 92px;
    padding: 18px 18px 18px 72px;
    border-left: 0;
    border-bottom: 1px solid #ececec;
    border-radius: 0;
    background: transparent;
}

.logistics-points div:last-child {
    border-bottom: 0;
}

.logistics-points div::before {
    content: "";
    position: absolute;
}

.logistics-points div {
    position: relative;
}

.logistics-points div:nth-child(1)::before,
.logistics-points div:nth-child(2)::before,
.logistics-points div:nth-child(3)::before {
    left: 20px;
    top: 24px;
    width: 34px;
    height: 34px;
    border: 2px solid var(--color-primary);
    border-radius: 8px;
}

.logistics-points div:nth-child(2)::before {
    border-radius: 50%;
}

.logistics-points div:nth-child(3)::before {
    border-radius: 4px;
}

.floating-ngk {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    border: 2px solid rgba(255,255,255,.95);
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #ff7a1a);
    box-shadow: 0 18px 45px rgba(255, 90, 10, .35);
    font-weight: 900;
    line-height: .92;
    text-align: center;
}

.floating-ngk span,
.floating-ngk strong {
    display: block;
}

.floating-ngk strong {
    color: #1d252d;
}

.floating-ngk:hover {
    color: #fff;
    transform: translateY(-2px);
}

.scroll-top {
    right: 42px;
    bottom: 116px;
    z-index: 29;
}

@media (max-width: 1180px) {
    .logistics-panel__content {
        width: min(470px, 56%);
    }
}

@media (max-width: 760px) {
    .custom-panel__content {
        background: rgba(255,255,255,.94);
    }

    .custom-panel__visual {
        min-height: 300px;
    }

    .logistics-panel {
        min-height: auto;
        background-position: 60% center;
    }

    .logistics-panel::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.82);
    }

    .logistics-panel__content {
        width: 100%;
        min-height: auto;
        padding: 28px 22px;
        background: transparent;
    }

    .floating-ngk {
        width: 70px;
        height: 70px;
        right: 14px;
        bottom: 14px;
        font-size: 13px;
    }

    .scroll-top {
        right: 26px;
        bottom: 92px;
    }
}

/* Final homepage adjustments. */
.home-advantages,
.floating-ngk {
    display: none !important;
}

.home-catalog {
    padding-top: 72px;
}

.home-category-card {
    min-height: 0;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    padding: 14px;
    overflow: hidden;
    background: #fff;
}

.home-category-card__image {
    width: 100%;
    height: 230px;
    margin: 0 0 18px;
    padding: 16px;
    border-radius: 8px;
    background: #f3f0ec;
    overflow: hidden;
}

.home-category-card__image img {
    width: 92%;
    height: 92%;
    object-fit: contain;
}

.home-category-card strong {
    padding: 0;
    min-height: 58px;
    font-size: 20px;
    line-height: 1.18;
    color: var(--color-dark);
}

.home-category-card > span:not(.home-category-card__image):not(.home-category-card__cta),
.home-category-card em {
    display: none !important;
}

.home-category-card__cta {
    align-self: flex-start;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 18px;
    padding: 0 18px !important;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    color: var(--color-primary);
    background: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 800;
    line-height: 1;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.home-category-card__cta::after {
    content: "→";
    margin-left: 8px;
}

.home-category-card:hover .home-category-card__cta {
    color: #fff;
    background: var(--color-primary);
    transform: translateY(-1px);
}

.logistics-points div {
    grid-template-columns: 40px minmax(0, 1fr);
    padding-left: 18px;
}

.logistics-points div::before {
    content: none !important;
    display: none !important;
}

.floating-whatsapp {
    right: 28px;
    bottom: 28px;
    z-index: 40;
    width: 64px;
    height: 64px;
    color: #fff;
    background: #25d366;
    border: 3px solid #fff;
    box-shadow: 0 18px 42px rgba(37, 211, 102, .35);
}

.floating-whatsapp:hover {
    color: #fff;
    background: #1fbd5c;
}

.scroll-top {
    right: 36px;
    bottom: 108px;
}

@media (max-width: 760px) {
    .home-catalog {
        padding-top: 44px;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .home-category-card {
        min-width: 0;
        padding: 10px;
    }

    .home-category-card__image {
        height: 142px;
        margin-bottom: 12px;
        padding: 10px;
    }

    .home-category-card strong {
        min-height: 48px;
        font-size: 16px;
    }

    .home-category-card__cta {
        min-height: 36px;
        margin-top: 12px;
        padding: 0 12px !important;
        border-radius: 7px;
        font-size: 13px;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 20px;
        width: 56px;
        height: 56px;
    }

    .scroll-top {
        right: 24px;
        bottom: 92px;
    }
}

@media (max-width: 420px) {
    html,
    body {
        overflow-x: hidden;
    }

    .home-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px;
    }

    .home-category-card__image {
        height: 112px;
        padding: 8px;
    }

    .home-category-card strong {
        min-height: 44px;
        font-size: 13px;
    }

    .home-category-card__cta {
        width: 100%;
        min-height: 34px;
        padding: 0 8px !important;
        font-size: 12px;
    }
}

/* Requested polish: hero height, dropdown catalog, product cards, SVG arrows, WhatsApp pulse. */
.nav-link--catalog {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.nav-caret {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .2s ease;
}

.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret {
    transform: rotate(180deg);
}

.nav-dropdown {
    z-index: 60;
    min-width: 245px;
    padding: 8px;
    border-radius: 10px;
    border-color: rgba(18, 26, 34, .1);
    box-shadow: 0 18px 50px rgba(18, 26, 34, .14);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    display: grid;
    gap: 2px;
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 12px;
    border-radius: 7px;
    color: var(--color-text);
    font-weight: 700;
}

.button-arrow {
    display: inline-grid;
    place-items: center;
    width: 28px;
    height: 28px;
    margin-left: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    transition: transform .2s ease, background .2s ease;
}

.button-arrow svg,
.scroll-top svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero__catalog:hover .button-arrow {
    transform: translateX(3px);
    background: rgba(255,255,255,.34);
}

.home-category-card {
    overflow: hidden;
}

.home-category-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    overflow: hidden;
}

.home-category-card__image img {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Product and category photos always sit on a clean white presentation surface. */
.product-card__media,
.category-card,
.home-category-card__image,
.page-hero--catalog img,
.product-gallery__main,
.product-gallery__thumbs button {
    background: #fff;
}

.home-category-card__cta::after {
    content: "";
    width: 16px;
    height: 16px;
    margin-left: 8px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h12M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 12h12M13 6l6 6-6 6' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.floating-whatsapp {
    position: fixed;
    display: grid;
    place-items: center;
    overflow: visible;
    animation: whatsappPulse 2.2s ease-in-out infinite;
}

.floating-whatsapp::before,
.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -7px;
    z-index: -1;
    border-radius: 50%;
    border: 1px solid rgba(37, 211, 102, .48);
    animation: whatsappRing 2.2s ease-out infinite;
}

.floating-whatsapp::after {
    animation-delay: 1.1s;
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
    display: block;
}

.scroll-top {
    display: grid;
    place-items: center;
}

.scroll-top svg {
    width: 22px;
    height: 22px;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 18px 42px rgba(37, 211, 102, .35);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 22px 54px rgba(37, 211, 102, .48);
    }
}

@keyframes whatsappRing {
    0% {
        opacity: .75;
        transform: scale(.9);
    }
    100% {
        opacity: 0;
        transform: scale(1.55);
    }
}

@media (min-width: 1081px) {
    .hero {
        min-height: calc(100vh - 82px);
        display: flex;
        align-items: center;
        padding: clamp(44px, 7vh, 78px) 0;
        background-position: center center;
        background-size: cover;
    }

    .hero__inner {
        min-height: calc(100vh - 82px - clamp(88px, 14vh, 156px));
        align-items: center;
    }

    .hero__content {
        padding-top: 0;
    }
}

@media (max-width: 1080px) {
    .site-nav .nav-item {
        width: 100%;
    }

    .nav-link--catalog {
        width: 100%;
        justify-content: space-between;
    }

    .nav-caret {
        display: none;
    }

    .nav-dropdown {
        position: static;
        display: grid;
        min-width: 0;
        margin: 0 0 8px 14px;
        padding: 0 0 0 14px;
        border: 0;
        border-left: 2px solid rgba(255, 90, 10, .22);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .nav-dropdown a {
        min-height: 36px;
        padding: 8px 0;
    }
}

@media (max-width: 760px) {
    .home-category-card__image {
        height: 150px;
    }

    .floating-whatsapp img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 420px) {
    .home-category-card__image {
        height: 118px;
    }
}

/* Header, hero and contacts refinements. */
.header-price {
    white-space: nowrap;
}

@media (min-width: 1081px) {
    :root {
        --ngk-header-height: 94px;
    }

    .site-header__inner {
        min-height: var(--ngk-header-height);
    }

    .nav-item--catalog::after {
        content: "";
        position: absolute;
        left: -18px;
        right: -18px;
        top: 100%;
        height: 18px;
        background: transparent;
    }

    .nav-dropdown {
        top: calc(100% + 6px);
    }

    .hero {
        height: calc(100vh - var(--ngk-header-height));
        min-height: 640px;
        padding: 0;
        overflow: hidden;
        background-size: auto 100%;
        background-position: right center;
    }

    .hero__inner {
        min-height: 100%;
        align-items: center;
    }
}

.contacts-hero {
    position: relative;
    overflow: hidden;
    padding: 74px 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 48%, rgba(255,246,240,.82) 100%),
        url("/assets/images/general/hero-bg.webp") right center / auto 100% no-repeat;
}

.contacts-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 34px;
    align-items: center;
}

.contacts-hero h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(44px, 5vw, 74px);
    line-height: .96;
}

.contacts-hero p:not(.eyebrow) {
    max-width: 620px;
    color: #4f5660;
    font-size: 20px;
    font-weight: 650;
    line-height: 1.45;
}

.contacts-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.contacts-hero__card {
    display: grid;
    gap: 10px;
    padding: 28px;
    border: 1px solid rgba(255, 90, 10, .16);
    border-radius: 12px;
    background: rgba(255,255,255,.86);
    box-shadow: 0 22px 60px rgba(20, 28, 36, .1);
    backdrop-filter: blur(10px);
}

.contacts-hero__card strong {
    color: var(--color-dark);
    font-size: 24px;
    line-height: 1.18;
}

.contacts-hero__card span {
    color: var(--color-primary);
    font-weight: 850;
}

.contacts-section {
    padding-top: 58px;
}

.contacts-layout {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.contacts-info-card,
.contacts-form-card,
.contacts-price-panel {
    border: 1px solid rgba(18, 26, 34, .09);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 26, 34, .08);
}

.contacts-info-card,
.contacts-form-card {
    padding: 34px;
}

.contacts-info-card h2,
.contacts-form-card h2,
.contacts-price-panel h2 {
    margin-bottom: 12px;
}

.contacts-form-card > p {
    max-width: 540px;
    margin-bottom: 22px;
    color: #59616c;
    font-weight: 650;
}

.contacts-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.contacts-list__item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 16px;
    border: 1px solid #eceff2;
    border-radius: 10px;
    color: var(--color-dark);
    background: #fbfbfb;
}

.contacts-list__item span:first-child {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: var(--color-primary);
    background: #fff2ec;
}

.contacts-list__item .icon {
    width: 25px;
    height: 25px;
}

.contacts-list__item strong {
    align-self: end;
    line-height: 1.25;
}

.contacts-list__item em {
    color: #68707a;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
}

.contacts-map-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
    padding: 18px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary), #ff7a1a);
}

.contacts-map-card strong,
.contacts-map-card span {
    display: block;
}

.contacts-map-card span {
    margin-top: 4px;
    color: rgba(255,255,255,.86);
    font-weight: 650;
}

.contacts-map-card .button {
    flex: 0 0 auto;
    border-color: rgba(255,255,255,.85);
}

.contacts-form-card .contact-form {
    gap: 16px;
}

.contacts-form-card .contact-form label {
    color: var(--color-dark);
}

.contacts-form-card .contact-form input,
.contacts-form-card .contact-form textarea {
    border-radius: 8px;
    border-color: #dfe4e8;
    background: #fbfcfd;
}

.contacts-price-section {
    padding: 28px 0 62px;
}

.contacts-price-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 30px 34px;
    color: #fff;
    background: linear-gradient(135deg, #121a22, #26313b);
}

.contacts-price-panel .eyebrow {
    display: inline-flex;
    width: auto;
    justify-self: start;
    margin-bottom: 12px;
    color: #fff;
    background: rgba(255,255,255,.1);
}

.contacts-price-panel h2,
.contacts-price-panel p {
    color: #fff;
}

.contacts-price-panel p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-weight: 650;
}

@media (max-width: 1080px) {
    .contacts-hero__grid,
    .contacts-layout,
    .contacts-price-panel {
        grid-template-columns: 1fr;
    }

    .contacts-hero__card {
        max-width: 520px;
    }

    .contacts-price-panel .button {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .contacts-hero {
        padding: 46px 0;
        background-size: auto 100%;
        background-position: 70% center;
    }

    .contacts-hero h1 {
        font-size: 42px;
    }

    .contacts-hero p:not(.eyebrow) {
        font-size: 17px;
    }

    .contacts-hero__actions {
        display: grid;
    }

    .contacts-info-card,
    .contacts-form-card,
    .contacts-price-panel {
        padding: 22px;
    }

    .contacts-map-card {
        display: grid;
    }

    .contacts-map-card .button {
        width: 100%;
    }
}

/* About and individual production pages. */
.about-hero,
.custom-production-hero {
    overflow: hidden;
    padding: 74px 0;
    background: linear-gradient(135deg, #fff 0%, #fff7f2 100%);
}

.about-hero__grid,
.custom-production-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
    gap: 42px;
    align-items: center;
}

.about-hero h1,
.custom-production-hero h1 {
    max-width: 780px;
    font-size: clamp(42px, 5vw, 74px);
    line-height: .98;
}

.about-hero p:not(.eyebrow),
.custom-production-hero p:not(.eyebrow) {
    max-width: 680px;
    color: #4f5660;
    font-size: 20px;
    font-weight: 650;
    line-height: 1.45;
}

.about-hero__actions,
.contacts-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.about-hero__media,
.custom-production-hero__visual {
    min-height: 390px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(18, 26, 34, .13);
}

.about-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
}

.custom-production-hero__visual {
    background: url("/assets/images/general/customization-bg.webp") center / cover no-repeat;
}

.about-intro-grid,
.about-steps-grid,
.custom-advantages-grid,
.custom-two-column {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: start;
}

.about-story-card,
.about-stats-card,
.about-benefit-card,
.company-info-card,
.capability-card,
.custom-advantages-list article,
.custom-note-grid article,
.custom-warning,
.custom-production-panel {
    border: 1px solid rgba(18, 26, 34, .09);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 26, 34, .08);
}

.about-story-card {
    padding: 34px;
}

.about-story-card p {
    color: #4f5660;
    font-weight: 650;
}

.about-stats-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    background: #edf0f3;
}

.about-stats-card div {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 24px;
    background: #fff;
}

.about-stats-card strong {
    color: var(--color-primary);
    font-size: 34px;
    line-height: 1;
}

.about-stats-card span {
    color: #4f5660;
    font-weight: 750;
}

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

.about-benefit-card {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.about-benefit-card span,
.custom-advantages-list article > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    color: var(--color-primary);
    background: #fff2ec;
}

.about-benefit-card .icon,
.custom-advantages-list .icon {
    width: 26px;
    height: 26px;
}

.about-benefit-card p {
    margin: 0;
    font-weight: 750;
}

.about-order-steps,
.custom-process-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-order-steps li,
.custom-process-list li {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 18px;
    border: 1px solid #e8edf1;
    border-radius: 10px;
    background: #fff;
}

.about-order-steps span,
.custom-process-list span,
.capability-card span,
.branding-options span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #fff;
    background: var(--color-primary);
    font-weight: 900;
}

.company-info-card {
    padding: 24px;
}

.company-info-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
}

.company-info-card dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.company-info-card dl div {
    display: grid;
    gap: 4px;
    padding-top: 12px;
    border-top: 1px solid #edf0f3;
}

.company-info-card dt {
    color: #68707a;
    font-weight: 750;
}

.company-info-card dd {
    margin: 0;
    color: var(--color-dark);
    font-weight: 900;
}

.about-final-cta,
.custom-production-cta {
    padding: 34px 0 64px;
}

.about-final-panel,
.custom-production-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 34px;
    color: #fff;
    background: linear-gradient(135deg, #121a22, #26313b);
}

.about-final-panel .eyebrow,
.custom-production-panel .eyebrow {
    color: #fff;
    background: rgba(255,255,255,.1);
}

.about-final-panel h2,
.about-final-panel p,
.custom-production-panel h2,
.custom-production-panel p {
    color: #fff;
}

.about-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.capability-card {
    padding: 28px;
}

.capability-card span {
    margin-bottom: 20px;
}

.capability-card p,
.custom-advantages-lead p,
.custom-two-column p,
.custom-warning p {
    color: #4f5660;
    font-weight: 650;
}

.custom-advantages-list {
    display: grid;
    gap: 14px;
}

.custom-advantages-list article {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
}

.custom-advantages-list h3,
.custom-advantages-list p {
    margin: 0;
}

.custom-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}

.custom-stat-row div {
    padding: 18px;
    border-radius: 10px;
    color: #fff;
    background: var(--color-primary);
}

.custom-stat-row strong,
.custom-stat-row span {
    display: block;
}

.custom-stat-row strong {
    font-size: 30px;
    line-height: 1;
}

.custom-stat-row span {
    margin-top: 8px;
    font-weight: 750;
}

.custom-two-column--reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
}

.color-palette-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 22px 0;
}

.color-palette-list span {
    padding: 10px 14px;
    border: 1px solid #ffe0d1;
    border-radius: 999px;
    color: var(--color-primary);
    background: #fff2ec;
    font-weight: 850;
}

.custom-note-grid,
.branding-options {
    display: grid;
    gap: 12px;
}

.custom-note-grid article,
.custom-warning {
    padding: 18px;
}

.custom-photo-stack {
    display: grid;
    gap: 16px;
}

.custom-photo-stack figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid #e8edf1;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(18, 26, 34, .08);
}

.custom-photo {
    min-height: 220px;
    background: #f4f0eb url("/assets/images/general/customization-bg.webp") center / cover no-repeat;
}

.custom-photo--caps,
.custom-photo--test,
.custom-photo--brand {
    background-image: url("/assets/images/general/hero-bg.webp");
}

.custom-photo--process,
.custom-photo--relief {
    background-image: url("/assets/images/general/production.webp");
}

.custom-photo-stack figcaption {
    padding: 14px 16px;
    color: #68707a;
    font-size: 14px;
    font-weight: 750;
}

.custom-warning {
    margin-top: 18px;
    border-color: rgba(255, 90, 10, .22);
    background: #fff8f3;
}

.custom-warning strong {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.branding-options article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    padding: 16px;
    border: 1px solid #e8edf1;
    border-radius: 10px;
    background: #fff;
}

.branding-options p {
    margin: 0;
}

@media (max-width: 1080px) {
    .about-hero__grid,
    .custom-production-hero__grid,
    .about-intro-grid,
    .about-steps-grid,
    .custom-advantages-grid,
    .custom-two-column,
    .custom-two-column--reverse,
    .about-final-panel,
    .custom-production-panel {
        grid-template-columns: 1fr;
    }

    .about-benefits-grid,
    .capabilities-grid,
    .company-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-final-actions,
    .custom-production-panel .button {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .about-hero,
    .custom-production-hero {
        padding: 46px 0;
    }

    .about-hero h1,
    .custom-production-hero h1 {
        font-size: 40px;
    }

    .about-hero p:not(.eyebrow),
    .custom-production-hero p:not(.eyebrow) {
        font-size: 17px;
    }

    .about-hero__actions,
    .contacts-hero__actions,
    .about-final-actions {
        display: grid;
    }

    .about-hero__media,
    .custom-production-hero__visual {
        min-height: 260px;
    }

    .about-benefits-grid,
    .capabilities-grid,
    .company-info-grid,
    .about-stats-card,
    .custom-stat-row {
        grid-template-columns: 1fr;
    }

    .about-story-card,
    .company-info-card,
    .capability-card,
    .about-final-panel,
    .custom-production-panel {
        padding: 22px;
    }

    .custom-photo {
        min-height: 180px;
    }
}
.legacy-article__layout {
    max-width: 920px;
}

.legacy-article__header {
    margin-bottom: 34px;
}

.legacy-article__header h1 {
    margin: 8px 0 16px;
}

.legacy-article__content {
    color: #293746;
    font-size: 17px;
    line-height: 1.75;
}

.legacy-article__content h2,
.legacy-article__content h3 {
    margin: 38px 0 14px;
    color: #172838;
    line-height: 1.25;
}

.legacy-article__content p,
.legacy-article__content ul,
.legacy-article__content ol,
.legacy-article__content blockquote,
.legacy-article__content table {
    margin: 0 0 20px;
}

.legacy-article__content table {
    width: 100%;
    border-collapse: collapse;
}

.legacy-article__content th,
.legacy-article__content td {
    padding: 10px;
    border: 1px solid #dbe2e8;
    text-align: left;
}

.legacy-article__content a {
    color: #1768b3;
    text-decoration: underline;
}
