    /* === ПЕРВЫЙ ЭКРАН (HERO SECTION) === */

    .npk-hero {
        background-color: #ffffff;
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }

    .npk-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(67, 81, 159, 0.04) 0%, rgba(67, 81, 159, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .npk-hero__container {
        max-width: var(--bardnwn-container);
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        gap: 60px;
        position: relative;
        z-index: 1;
    }

    .npk-hero__content {
        flex: 1;
        max-width: 620px;
    }

    .npk-hero__title {
        font-size: 52px;
        font-weight: 800;
        line-height: 1.15;
        color: #2C2C2C;
        margin: 0 0 24px 0;
        letter-spacing: -0.5px;
    }

    .npk-hero__title span {
        color: var(--ast-global-color-1);
    }

    .npk-hero__subtitle {
        font-size: 19px;
        line-height: 1.6;
        color: #666666;
        margin: 0 0 40px 0;
        font-weight: 400;
    }

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

    .npk-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
        border: 2px solid transparent;
        text-align: center;
    }

    .npk-btn--primary {
        background-color: var(--ast-global-color-0);
        color: #ffffff;
        border-color: var(--ast-global-color-0);
        box-shadow: 0 4px 6px rgba(232, 64, 43, 0.15);
    }

    .npk-btn--primary:hover {
        background-color: #d13825;
        border-color: #d13825;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(232, 64, 43, 0.25);
    }

    .npk-btn--secondary {
        background-color: transparent;
        color: var(--ast-global-color-1);
        border-color: var(--ast-global-color-1);
    }

    .npk-btn--secondary:hover {
        background-color: var(--ast-global-color-1);
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(67, 81, 159, 0.25);
    }

    .npk-hero__visual {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .npk-hero__image-wrapper {

        background: linear-gradient(135deg, rgba(67, 81, 159, 0.05) 0%, rgba(232, 64, 43, 0.05) 100%);
        border-radius: 24px;

        border: 1px solid rgba(67, 81, 159, 0.1);
		    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    }

.npk-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

   /* .npk-hero__image-wrapper::before {
        content: '';
        position: absolute;
        top: 15%;
        left: 15%;
        width: 70%;
        height: 70%;
        border: 2px dashed var(--ast-global-color-1);
        border-radius: 16px;
        opacity: 0.2;
    }
    
    .npk-hero__image-wrapper::after {
        content: 'МЕСТО ДЛЯ ИЗОБРАЖЕНИЯ';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--ast-global-color-1);
        font-weight: 600;
        font-size: 14px;
        letter-spacing: 1.5px;
        opacity: 0.4;
        text-align: center;
    }*/

    @media (max-width: 992px) {
        .npk-hero {
            padding: 60px 0;
        }
        .npk-hero__container {
            flex-direction: column;
            text-align: center;
            gap: 40px;
        }
        .npk-hero__content {
            max-width: 100%;
        }
        .npk-hero__title {
            font-size: 40px;
        }
        .npk-hero__subtitle {
            font-size: 17px;
        }
        .npk-hero__buttons {
            justify-content: center;
        }
        .npk-hero__visual {
            order: -1;
        }
        .npk-hero__image-wrapper {
            max-width: 350px;
        }
    }

    @media (max-width: 576px) {
        .npk-hero {
            padding: 40px 0;
        }
        .npk-hero__title {
            font-size: 32px;
        }
        .npk-hero__subtitle {
            font-size: 16px;
            margin-bottom: 30px;
        }
        .npk-hero__buttons {
            flex-direction: column;
            width: 100%;
        }
        .npk-btn {
            width: 100%;
            padding: 14px 24px;
        }
    }

    /* === БЛОК «КЛЮЧЕВЫЕ НАПРАВЛЕНИЯ» === */

    .npk-directions {
        background-color: #F8F9FA;
        padding: 100px 0;
    }

    .npk-directions__container {
        max-width: var(--bardnwn-container);
        margin: 0 auto;
        padding: 0 20px;
    }

    .npk-directions__header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 60px;
    }

    .npk-directions__label {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--ast-global-color-0);
        margin-bottom: 16px;
    }

    .npk-directions__title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        color: #2C2C2C;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
    }

    .npk-directions__subtitle {
        font-size: 18px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

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

    .npk-direction-card {
        background-color: #ffffff;
        border: 1px solid rgba(67, 81, 159, 0.12);
        border-radius: 16px;
        padding: 40px 32px;
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .npk-direction-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--ast-global-color-1);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s ease;
    }

    .npk-direction-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(67, 81, 159, 0.12);
        border-color: rgba(67, 81, 159, 0.25);
    }

    .npk-direction-card:hover::before {
        transform: scaleX(1);
    }

    .npk-direction-card__icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
        background-color: rgba(67, 81, 159, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 28px;
        transition: all 0.35s ease;
    }

    .npk-direction-card__icon svg {
        width: 32px;
        height: 32px;
        stroke: var(--ast-global-color-1);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.35s ease;
    }

    .npk-direction-card:hover .npk-direction-card__icon {
        background-color: var(--ast-global-color-1);
    }

    .npk-direction-card:hover .npk-direction-card__icon svg {
        stroke: #ffffff;
    }

    .npk-direction-card__title {
        font-size: 22px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 16px 0;
        line-height: 1.3;
    }

    .npk-direction-card__text {
        font-size: 15px;
        line-height: 1.65;
        color: #666666;
        margin: 0 0 28px 0;
        flex-grow: 1;
    }

    .npk-direction-card__list {
        list-style: none;
        padding: 0;
        margin: 0 0 32px 0;
    }

    .npk-direction-card__list li {
        font-size: 14px;
        color: #2C2C2C;
        padding: 6px 0 6px 24px;
        position: relative;
    }

    .npk-direction-card__list li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 14px;
        width: 12px;
        height: 2px;
        background-color: var(--ast-global-color-0);
    }

    .npk-direction-card__link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        font-weight: 600;
        color: var(--ast-global-color-1);
        text-decoration: none;
        margin-top: auto;
        transition: all 0.3s ease;
    }

    .npk-direction-card__link svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        transition: transform 0.3s ease;
    }

    .npk-direction-card__link:hover {
        color: var(--ast-global-color-0);
    }

    .npk-direction-card__link:hover svg {
        transform: translateX(5px);
    }

    @media (max-width: 992px) {
        .npk-directions {
            padding: 70px 0;
        }
        .npk-directions__title {
            font-size: 34px;
        }
        .npk-directions__grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .npk-direction-card:nth-child(3) {
            grid-column: 1 / -1;
        }
    }

    @media (max-width: 576px) {
        .npk-directions {
            padding: 50px 0;
        }
        .npk-directions__header {
            margin-bottom: 40px;
        }
        .npk-directions__title {
            font-size: 28px;
        }
        .npk-directions__subtitle {
            font-size: 16px;
        }
        .npk-directions__grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        .npk-direction-card {
            padding: 32px 24px;
        }
        .npk-direction-card:nth-child(3) {
            grid-column: auto;
        }
    }

    /* === БЛОК «ЭКРАНИРОВАННЫЕ РЕШЕНИЯ» === */

    .npk-screening {
        background-color: #ffffff;
        padding: 100px 0;
    }

    .npk-screening__container {
        max-width: var(--bardnwn-container);
        margin: 0 auto;
        padding: 0 20px;
    }

    .npk-screening__header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 70px;
    }

    .npk-screening__label {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--ast-global-color-0);
        margin-bottom: 16px;
    }

    .npk-screening__title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        color: #2C2C2C;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
    }

    .npk-screening__subtitle {
        font-size: 18px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    .npk-screening__items {
        display: flex;
        flex-direction: column;
        gap: 60px;
    }

    .npk-screening-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        background: linear-gradient(135deg, rgba(67, 81, 159, 0.02) 0%, rgba(232, 64, 43, 0.02) 100%);
        border-radius: 20px;
        padding: 40px;
        border: 1px solid rgba(67, 81, 159, 0.08);
        transition: all 0.3s ease;
    }

    .npk-screening-item:hover {
        border-color: rgba(67, 81, 159, 0.2);
        box-shadow: 0 10px 30px rgba(67, 81, 159, 0.08);
    }

    .npk-screening-item:nth-child(even) {
        direction: rtl;
    }

    .npk-screening-item:nth-child(even) > * {
        direction: ltr;
    }

    .npk-screening-item__image {
        width: 100%;

        background: linear-gradient(135deg, rgba(67, 81, 159, 0.08) 0%, rgba(232, 64, 43, 0.08) 100%);
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(67, 81, 159, 0.1);
    }

   /* .npk-screening-item__image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        height: 60%;
        border: 2px dashed var(--ast-global-color-1);
        border-radius: 12px;
        opacity: 0.15;
    }

    .npk-screening-item__image::after {
        content: attr(data-label);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--ast-global-color-1);
        font-weight: 600;
        font-size: 13px;
        letter-spacing: 1.5px;
        opacity: 0.3;
        text-align: center;
        padding: 0 20px;
    }*/

    .npk-screening-item__content {
        display: flex;
        flex-direction: column;
    }

    .npk-screening-item__badge {
        display: inline-block;
        background-color: rgba(67, 81, 159, 0.1);
        color: var(--ast-global-color-1);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 20px;
        margin-bottom: 20px;
        align-self: flex-start;
    }

    .npk-screening-item__title {
        font-size: 28px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 16px 0;
        line-height: 1.3;
    }

    .npk-screening-item__text {
        font-size: 16px;
        line-height: 1.7;
        color: #666666;
        margin: 0 0 24px 0;
    }

    .npk-screening-item__features {
        list-style: none;
        padding: 0;
        margin: 0 0 28px 0;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .npk-screening-item__features li {
        font-size: 14px;
        color: #2C2C2C;
        padding-left: 24px;
        position: relative;
        line-height: 1.5;
    }

    .npk-screening-item__features li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 14px;
        height: 14px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2343519F' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
    }

    .npk-screening-item__btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: var(--ast-global-color-0);
        color: #ffffff;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 600;
        transition: all 0.3s ease;
        align-self: flex-start;
        border: 2px solid var(--ast-global-color-0);
    }

    .npk-screening-item__btn:hover {
        background-color: transparent;
        color: var(--ast-global-color-0);
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(232, 64, 43, 0.2);
    }

    .npk-screening-item__btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        transition: transform 0.3s ease;
    }

    .npk-screening-item__btn:hover svg {
        transform: translateX(4px);
    }

    .npk-screening__cta {
        margin-top: 70px;
        background: linear-gradient(135deg, var(--ast-global-color-1) 0%, #2d3a7a 100%);
        border-radius: 20px;
        padding: 50px;
        text-align: center;
        color: #ffffff;
    }

    .npk-screening__cta-title {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 16px 0;
        line-height: 1.3;
    }

    .npk-screening__cta-text {
        font-size: 17px;
        line-height: 1.6;
        margin: 0 0 30px 0;
        opacity: 0.9;
    }

    .npk-screening__cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ffffff;
        color: var(--ast-global-color-1);
        padding: 16px 36px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid #ffffff;
    }

    .npk-screening__cta-btn:hover {
        background-color: transparent;
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 992px) {
        .npk-screening {
            padding: 70px 0;
        }
        .npk-screening__header {
            margin-bottom: 50px;
        }
        .npk-screening__title {
            font-size: 34px;
        }
        .npk-screening__items {
            gap: 40px;
        }
        .npk-screening-item {
            grid-template-columns: 1fr;
            gap: 30px;
            padding: 30px;
        }
        .npk-screening-item:nth-child(even) {
            direction: ltr;
        }
        .npk-screening-item__features {
            grid-template-columns: 1fr;
        }
        .npk-screening__cta {
            padding: 40px 30px;
        }
        .npk-screening__cta-title {
            font-size: 26px;
        }
    }

    @media (max-width: 576px) {
        .npk-screening {
            padding: 50px 0;
        }
        .npk-screening__header {
            margin-bottom: 40px;
        }
        .npk-screening__title {
            font-size: 28px;
        }
        .npk-screening__subtitle {
            font-size: 16px;
        }
        .npk-screening-item {
            padding: 24px;
        }
        .npk-screening-item__title {
            font-size: 22px;
        }
        .npk-screening-item__text {
            font-size: 15px;
        }
        .npk-screening__cta {
            padding: 30px 20px;
        }
        .npk-screening__cta-title {
            font-size: 22px;
        }
        .npk-screening__cta-text {
            font-size: 15px;
        }
    }

    /* === БЛОК «ХИТЫ / ПОПУЛЯРНЫЕ РЕШЕНИЯ» === */

    .npk-hits {
        background-color: #F8F9FA;
        padding: 100px 0;
        overflow: hidden;
    }

    .npk-hits__container {
        max-width: var(--bardnwn-container);
        margin: 0 auto;
        padding: 0 20px;
    }

    .npk-hits__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 50px;
        gap: 30px;
        flex-wrap: wrap;
    }

    .npk-hits__header-content {
        max-width: 680px;
    }

    .npk-hits__label {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--ast-global-color-0);
        margin-bottom: 16px;
    }

    .npk-hits__title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        color: #2C2C2C;
        margin: 0 0 16px 0;
        letter-spacing: -0.5px;
    }

    .npk-hits__subtitle {
        font-size: 17px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    .npk-hits__nav {
        display: flex;
        gap: 12px;
        flex-shrink: 0;
    }

    .npk-hits__nav-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background-color: #ffffff;
        border: 1px solid rgba(67, 81, 159, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .npk-hits__nav-btn:hover {
        background-color: var(--ast-global-color-1);
        border-color: var(--ast-global-color-1);
    }

    .npk-hits__nav-btn:hover svg {
        stroke: #ffffff;
    }

    .npk-hits__nav-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
    }

    .npk-hits__nav-btn svg {
        width: 20px;
        height: 20px;
        stroke: var(--ast-global-color-1);
        fill: none;
        stroke-width: 2;
        transition: stroke 0.3s ease;
    }

    .npk-hits__carousel {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        padding-bottom: 20px;
        margin: 0 -20px;
        padding-left: 20px;
        padding-right: 20px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .npk-hits__carousel::-webkit-scrollbar {
        display: none;
    }

    .npk-hit-card {
        flex: 0 0 calc(25% - 18px);
        min-width: 280px;
        background-color: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        scroll-snap-align: start;
        border: 1px solid rgba(67, 81, 159, 0.1);
        transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: flex;
        flex-direction: column;
    }

    .npk-hit-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 32px rgba(67, 81, 159, 0.12);
        border-color: rgba(67, 81, 159, 0.25);
    }

    .npk-hit-card__image {
        width: 100%;
        aspect-ratio: 4 / 3;
        background: linear-gradient(135deg, rgba(67, 81, 159, 0.08) 0%, rgba(232, 64, 43, 0.08) 100%);
        position: relative;
        overflow: hidden;
    }

    .npk-hit-card__image::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50%;
        height: 50%;
        border: 2px dashed var(--ast-global-color-1);
        border-radius: 8px;
        opacity: 0.15;
    }

    .npk-hit-card__image::after {
        content: attr(data-label);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--ast-global-color-1);
        font-weight: 600;
        font-size: 11px;
        letter-spacing: 1.5px;
        opacity: 0.3;
        text-align: center;
        padding: 0 15px;
    }

    .npk-hit-card__badge {
        position: absolute;
        top: 16px;
        left: 16px;
        background-color: var(--ast-global-color-0);
        color: #ffffff;
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.8px;
        text-transform: uppercase;
        padding: 6px 12px;
        border-radius: 6px;
        z-index: 2;
    }

    .npk-hit-card__content {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .npk-hit-card__title {
        font-size: 18px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 12px 0;
        line-height: 1.3;
    }

    .npk-hit-card__text {
        font-size: 14px;
        line-height: 1.6;
        color: #666666;
        margin: 0 0 20px 0;
        flex-grow: 1;
    }

    .npk-hit-card__specs {
        list-style: none;
        padding: 0;
        margin: 0 0 24px 0;
        border-top: 1px solid rgba(67, 81, 159, 0.1);
        padding-top: 16px;
    }

    .npk-hit-card__specs li {
        display: flex;
        justify-content: space-between;
        font-size: 13px;
        padding: 6px 0;
        gap: 12px;
    }

    .npk-hit-card__specs li span:first-child {
        color: #666666;
    }

    .npk-hit-card__specs li span:last-child {
        color: #2C2C2C;
        font-weight: 600;
        text-align: right;
    }

    .npk-hit-card__btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        background-color: transparent;
        color: var(--ast-global-color-1);
        border: 1.5px solid var(--ast-global-color-1);
        padding: 12px 20px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    .npk-hit-card__btn:hover {
        background-color: var(--ast-global-color-1);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 6px 12px rgba(67, 81, 159, 0.2);
    }

    .npk-hit-card__btn svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        transition: transform 0.3s ease;
    }

    .npk-hit-card__btn:hover svg {
        transform: translateX(3px);
    }

    .npk-hits__footer {
        text-align: center;
        margin-top: 50px;
    }

    .npk-hits__footer-text {
        font-size: 16px;
        color: #666666;
        margin: 0 0 20px 0;
    }

    .npk-hits__footer-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--ast-global-color-0);
        font-size: 15px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .npk-hits__footer-link:hover {
        gap: 12px;
    }

    .npk-hits__footer-link svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

    @media (max-width: 1200px) {
        .npk-hit-card {
            flex: 0 0 calc(33.333% - 16px);
        }
    }

    @media (max-width: 992px) {
        .npk-hits {
            padding: 70px 0;
        }
        .npk-hits__title {
            font-size: 34px;
        }
        .npk-hit-card {
            flex: 0 0 calc(50% - 12px);
            min-width: 260px;
        }
    }

    @media (max-width: 576px) {
        .npk-hits {
            padding: 50px 0;
        }
        .npk-hits__header {
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        .npk-hits__title {
            font-size: 28px;
        }
        .npk-hits__subtitle {
            font-size: 15px;
        }
        .npk-hits__nav-btn {
            width: 44px;
            height: 44px;
        }
        .npk-hit-card {
            flex: 0 0 85%;
            min-width: 0;
        }
        .npk-hit-card__content {
            padding: 20px;
        }
        .npk-hit-card__title {
            font-size: 17px;
        }
    }

    /* === БЛОК «СОБСТВЕННОЕ ПРОИЗВОДСТВО МЕБЕЛИ» === */

    .npk-furniture {
        background-color: #ffffff;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .npk-furniture::before {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(232, 64, 43, 0.03) 0%, rgba(232, 64, 43, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .npk-furniture__container {
        max-width: var(--bardnwn-container);
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .npk-furniture__header {
        text-align: center;
        max-width: 800px;
        margin: 0 auto 70px;
    }

    .npk-furniture__label {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--ast-global-color-0);
        margin-bottom: 16px;
    }

    .npk-furniture__title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        color: #2C2C2C;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
    }

    .npk-furniture__subtitle {
        font-size: 18px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    .npk-furniture__main {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        margin-bottom: 70px;
    }

    .npk-furniture__content {
        display: flex;
        flex-direction: column;
    }

    .npk-furniture__intro {
        font-size: 17px;
        line-height: 1.7;
        color: #2C2C2C;
        margin: 0 0 32px 0;
    }

    .npk-furniture__advantages {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .npk-furniture__advantage {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .npk-furniture__advantage-icon {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        border-radius: 12px;
        background: linear-gradient(135deg, rgba(67, 81, 159, 0.1) 0%, rgba(67, 81, 159, 0.05) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .npk-furniture__advantage:hover .npk-furniture__advantage-icon {
        background: var(--ast-global-color-1);
        transform: scale(1.05);
    }

    .npk-furniture__advantage-icon svg {
        width: 28px;
        height: 28px;
        stroke: var(--ast-global-color-1);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.3s ease;
    }

    .npk-furniture__advantage:hover .npk-furniture__advantage-icon svg {
        stroke: #ffffff;
    }

    .npk-furniture__advantage-content {
        flex: 1;
    }

    .npk-furniture__advantage-title {
        font-size: 18px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 8px 0;
        line-height: 1.3;
    }

    .npk-furniture__advantage-text {
        font-size: 15px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    .npk-furniture__gallery {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .npk-furniture__gallery-item {
        aspect-ratio: 1;
        background: linear-gradient(135deg, rgba(67, 81, 159, 0.08) 0%, rgba(232, 64, 43, 0.08) 100%);
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(67, 81, 159, 0.1);
        transition: all 0.3s ease;
    }

    .npk-furniture__gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 25px rgba(67, 81, 159, 0.15);
        border-color: rgba(67, 81, 159, 0.25);
    }

    /*.npk-furniture__gallery-item::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 60%;
        height: 60%;
        border: 2px dashed var(--ast-global-color-1);
        border-radius: 8px;
        opacity: 0.15;
    }*/

    .npk-furniture__gallery-item::after {
        content: attr(data-label);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--ast-global-color-1);
        font-weight: 600;
        font-size: 11px;
        letter-spacing: 1.2px;
        opacity: 0.3;
        text-align: center;
        padding: 0 12px;
    }

    .npk-furniture__gallery-item:first-child {
        grid-column: 1 / -1;
    }

    .npk-furniture__steps {
        background: linear-gradient(135deg, rgba(67, 81, 159, 0.03) 0%, rgba(232, 64, 43, 0.03) 100%);
        border-radius: 20px;
        padding: 50px;
        margin-bottom: 70px;
        border: 1px solid rgba(67, 81, 159, 0.08);
    }

    .npk-furniture__steps-title {
        font-size: 28px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 40px 0;
        text-align: center;
    }

    .npk-furniture__steps-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }

    .npk-furniture__step {
        text-align: center;
        position: relative;
    }

    .npk-furniture__step-number {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--ast-global-color-1);
        color: #ffffff;
        font-size: 24px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        position: relative;
        z-index: 1;
    }

    .npk-furniture__step-title {
        font-size: 16px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    .npk-furniture__step-text {
        font-size: 14px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    .npk-furniture__cta {
        background: linear-gradient(135deg, var(--ast-global-color-1) 0%, #2d3a7a 100%);
        border-radius: 20px;
        padding: 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: center;
        color: #ffffff;
    }

    .npk-furniture__cta-content {
        display: flex;
        flex-direction: column;
    }

    .npk-furniture__cta-title {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 16px 0;
        line-height: 1.3;
    }

    .npk-furniture__cta-text {
        font-size: 16px;
        line-height: 1.6;
        margin: 0;
        opacity: 0.9;
    }

    .npk-furniture__form {
        background: #ffffff;
        border-radius: 16px;
        padding: 36px;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .npk-furniture__form-title {
        font-size: 20px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 8px 0;
        text-align: center;
    }

    .npk-furniture__form-input {
        width: 100%;
        padding: 14px 18px;
        border: 1.5px solid rgba(67, 81, 159, 0.2);
        border-radius: 8px;
        font-size: 15px;
        color: #2C2C2C;
        transition: all 0.3s ease;
        background: #ffffff;
    }

    .npk-furniture__form-input:focus {
        outline: none;
        border-color: var(--ast-global-color-1);
        box-shadow: 0 0 0 3px rgba(67, 81, 159, 0.1);
    }

    .npk-furniture__form-textarea {
        width: 100%;
        padding: 14px 18px;
        border: 1.5px solid rgba(67, 81, 159, 0.2);
        border-radius: 8px;
        font-size: 15px;
        color: #2C2C2C;
        transition: all 0.3s ease;
        background: #ffffff;
        resize: vertical;
        min-height: 100px;
        font-family: inherit;
    }

    .npk-furniture__form-textarea:focus {
        outline: none;
        border-color: var(--ast-global-color-1);
        box-shadow: 0 0 0 3px rgba(67, 81, 159, 0.1);
    }

    .npk-furniture__form-btn {
        width: 100%;
        padding: 16px;
        background: var(--ast-global-color-0);
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 8px;
    }

    .npk-furniture__form-btn:hover {
        background: #d13825;
        transform: translateY(-2px);
        box-shadow: 0 8px 16px rgba(232, 64, 43, 0.3);
    }

    .npk-furniture__form-note {
        font-size: 12px;
        color: #999999;
        text-align: center;
        margin: 0;
        line-height: 1.5;
    }

    @media (max-width: 992px) {
        .npk-furniture {
            padding: 70px 0;
        }
        .npk-furniture__header {
            margin-bottom: 50px;
        }
        .npk-furniture__title {
            font-size: 34px;
        }
        .npk-furniture__main {
            grid-template-columns: 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .npk-furniture__steps {
            padding: 40px 30px;
            margin-bottom: 50px;
        }
        .npk-furniture__steps-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px 20px;
        }
        .npk-furniture__cta {
            grid-template-columns: 1fr;
            padding: 40px 30px;
            gap: 30px;
        }
    }

    @media (max-width: 576px) {
        .npk-furniture {
            padding: 50px 0;
        }
        .npk-furniture__header {
            margin-bottom: 40px;
        }
        .npk-furniture__title {
            font-size: 28px;
        }
        .npk-furniture__subtitle {
            font-size: 16px;
        }
        .npk-furniture__gallery {
            grid-template-columns: 1fr;
        }
        .npk-furniture__gallery-item:first-child {
            grid-column: auto;
        }
        .npk-furniture__steps {
            padding: 30px 20px;
            margin-bottom: 40px;
        }
        .npk-furniture__steps-title {
            font-size: 22px;
            margin-bottom: 30px;
        }
        .npk-furniture__steps-grid {
            grid-template-columns: 1fr;
            gap: 24px;
        }
        .npk-furniture__cta {
            padding: 30px 20px;
        }
        .npk-furniture__cta-title {
            font-size: 24px;
        }
        .npk-furniture__form {
            padding: 24px;
        }
    }

    /* === БЛОК «ПОЧЕМУ НПК ЗНАМЯ» === */

    .npk-trust {
        background-color: #F8F9FA;
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .npk-trust::before {
        content: '';
        position: absolute;
        top: -20%;
        right: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(67, 81, 159, 0.04) 0%, rgba(67, 81, 159, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .npk-trust::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(232, 64, 43, 0.04) 0%, rgba(232, 64, 43, 0) 70%);
        border-radius: 50%;
        z-index: 0;
    }

    .npk-trust__container {
        max-width: var(--bardnwn-container);
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    .npk-trust__header {
        text-align: center;
        max-width: 780px;
        margin: 0 auto 70px;
    }

    .npk-trust__label {
        display: inline-block;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--ast-global-color-0);
        margin-bottom: 16px;
    }

    .npk-trust__title {
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
        color: #2C2C2C;
        margin: 0 0 20px 0;
        letter-spacing: -0.5px;
    }

    .npk-trust__subtitle {
        font-size: 18px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    .npk-trust__stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-bottom: 80px;
    }

    .npk-trust__stat {
        text-align: center;
        padding: 32px 20px;
        background: #ffffff;
        border-radius: 16px;
        border: 1px solid rgba(67, 81, 159, 0.1);
        transition: all 0.3s ease;
    }

    .npk-trust__stat:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(67, 81, 159, 0.1);
        border-color: rgba(67, 81, 159, 0.2);
    }

    .npk-trust__stat-number {
        font-size: 56px;
        font-weight: 800;
        color: var(--ast-global-color-1);
        line-height: 1;
        margin: 0 0 12px 0;
        letter-spacing: -1px;
    }

    .npk-trust__stat-label {
        font-size: 15px;
        line-height: 1.5;
        color: #666666;
        margin: 0;
    }

    .npk-trust__advantages {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        margin-bottom: 70px;
    }

    .npk-trust__advantage {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        display: flex;
        gap: 24px;
        align-items: flex-start;
        border: 1px solid rgba(67, 81, 159, 0.1);
        transition: all 0.3s ease;
    }

    .npk-trust__advantage:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 20px rgba(67, 81, 159, 0.1);
        border-color: rgba(67, 81, 159, 0.2);
    }

    .npk-trust__advantage-icon {
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(67, 81, 159, 0.1) 0%, rgba(67, 81, 159, 0.05) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .npk-trust__advantage:hover .npk-trust__advantage-icon {
        background: var(--ast-global-color-1);
        transform: scale(1.05);
    }

    .npk-trust__advantage-icon svg {
        width: 32px;
        height: 32px;
        stroke: var(--ast-global-color-1);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: stroke 0.3s ease;
    }

    .npk-trust__advantage:hover .npk-trust__advantage-icon svg {
        stroke: #ffffff;
    }

    .npk-trust__advantage-content {
        flex: 1;
    }

    .npk-trust__advantage-title {
        font-size: 20px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 10px 0;
        line-height: 1.3;
    }

    .npk-trust__advantage-text {
        font-size: 15px;
        line-height: 1.6;
        color: #666666;
        margin: 0;
    }

    .npk-trust__cta {
        background: linear-gradient(135deg, var(--ast-global-color-1) 0%, #2d3a7a 100%);
        border-radius: 20px;
        padding: 60px;
        text-align: center;
        color: #ffffff;
    }

    .npk-trust__cta-title {
        font-size: 32px;
        font-weight: 700;
        margin: 0 0 16px 0;
        line-height: 1.3;
    }

    .npk-trust__cta-text {
        font-size: 17px;
        line-height: 1.6;
        margin: 0 0 32px 0;
        opacity: 0.9;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .npk-trust__cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .npk-trust__cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 36px;
        border-radius: 8px;
        text-decoration: none;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .npk-trust__cta-btn--primary {
        background-color: var(--ast-global-color-0);
        color: #ffffff;
        border-color: var(--ast-global-color-0);
    }

    .npk-trust__cta-btn--primary:hover {
        background-color: #d13825;
        border-color: #d13825;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(232, 64, 43, 0.3);
    }

    .npk-trust__cta-btn--secondary {
        background-color: transparent;
        color: #ffffff;
        border-color: #ffffff;
    }

    .npk-trust__cta-btn--secondary:hover {
        background-color: #ffffff;
        color: var(--ast-global-color-1);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    }

    .npk-trust__cta-btn svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
    }

    @media (max-width: 992px) {
        .npk-trust {
            padding: 70px 0;
        }
        .npk-trust__header {
            margin-bottom: 50px;
        }
        .npk-trust__title {
            font-size: 34px;
        }
        .npk-trust__stats {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 60px;
        }
        .npk-trust__stat-number {
            font-size: 44px;
        }
        .npk-trust__advantages {
            grid-template-columns: 1fr;
            margin-bottom: 50px;
        }
        .npk-trust__cta {
            padding: 40px 30px;
        }
        .npk-trust__cta-title {
            font-size: 26px;
        }
    }

    @media (max-width: 576px) {
        .npk-trust {
            padding: 50px 0;
        }
        .npk-trust__header {
            margin-bottom: 40px;
        }
        .npk-trust__title {
            font-size: 28px;
        }
        .npk-trust__subtitle {
            font-size: 16px;
        }
        .npk-trust__stats {
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 50px;
        }
        .npk-trust__stat {
            padding: 24px 16px;
        }
        .npk-trust__stat-number {
            font-size: 40px;
        }
        .npk-trust__advantage {
            flex-direction: column;
            padding: 24px;
            gap: 16px;
        }
        .npk-trust__advantage-title {
            font-size: 18px;
        }
        .npk-trust__advantage-text {
            font-size: 14px;
        }
        .npk-trust__cta {
            padding: 30px 20px;
        }
        .npk-trust__cta-title {
            font-size: 22px;
        }
        .npk-trust__cta-text {
            font-size: 15px;
            margin-bottom: 24px;
        }
        .npk-trust__cta-buttons {
            flex-direction: column;
        }
        .npk-trust__cta-btn {
            width: 100%;
            justify-content: center;
            padding: 14px 24px;
        }
    }
    
    
.npk-screening__cta .npk-screening__cta-title,
.npk-furniture__cta .npk-furniture__cta-title,
.npk-trust__cta .npk-trust__cta-title {
    color: #ffffff !important;
}