    /* === СТРАНИЦА КОНТАКТЫ — СТИЛЬ ГЛАВНОЙ СТРАНИЦЫ === */

    .npk-contacts {
        font-family: 'Inter', sans-serif;
        max-width: var(--bardnwn-container);
        margin: 0 auto;
        padding: 0 20px;
        color: #2C2C2C;
    }

    /* === HERO СЕКЦИЯ === */

    .npk-contacts__hero {
        text-align: center;
        padding: 80px 0 60px;
        background: linear-gradient(135deg, rgba(67, 81, 159, 0.03) 0%, rgba(232, 64, 43, 0.03) 100%);
        border-radius: 20px;
        margin: 40px 0;
    }

    .npk-contacts__hero-title {
        font-size: 48px;
        font-weight: 800;
        color: #2C2C2C;
        margin: 0 0 16px 0;
        letter-spacing: -0.5px;
    }

    .npk-contacts__hero-subtitle {
        font-size: 18px;
        color: #666666;
        margin: 0;
        line-height: 1.6;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    /* === ГЛАВНЫЕ КАРТОЧКИ КОНТАКТОВ === */

    .npk-contacts__main {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 80px;
    }

    .npk-contact-card {
        background: #ffffff;
        border: 1px solid rgba(67, 81, 159, 0.1);
        border-radius: 16px;
        padding: 40px 32px;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .npk-contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--ast-global-color-0) 0%, var(--ast-global-color-1) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .npk-contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(67, 81, 159, 0.12);
        border-color: rgba(67, 81, 159, 0.2);
    }

    .npk-contact-card:hover::before {
        transform: scaleX(1);
    }

    .npk-contact-card__icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, var(--ast-global-color-1) 0%, #2d3a7a 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 24px;
        font-size: 32px;
        box-shadow: 0 8px 20px rgba(67, 81, 159, 0.25);
    }

    .npk-contact-card__label {
        font-size: 13px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #666666;
        margin-bottom: 12px;
    }

    .npk-contact-card__value {
        font-size: 22px;
        font-weight: 700;
        color: #2C2C2C;
        text-decoration: none;
        display: block;
        margin-bottom: 8px;
        transition: color 0.2s ease;
    }

    .npk-contact-card__value:hover {
        color: var(--ast-global-color-1);
    }

    .npk-contact-card__desc {
        font-size: 14px;
        color: #666666;
        line-height: 1.5;
        margin: 0;
    }

    /* === СЕКЦИЯ ОТДЕЛОВ === */

    .npk-contacts__departments {
        margin-bottom: 80px;
    }

    .npk-contacts__section-title {
        font-size: 32px;
        font-weight: 700;
        color: #2C2C2C;
        text-align: center;
        margin: 0 0 12px 0;
    }

    .npk-contacts__section-subtitle {
        font-size: 16px;
        color: #666666;
        text-align: center;
        margin: 0 0 48px 0;
    }

    .npk-contacts__departments-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .npk-department-card {
        background: #ffffff;
        border: 1px solid rgba(67, 81, 159, 0.1);
        border-radius: 16px;
        padding: 32px;
        transition: all 0.3s ease;
        position: relative;
    }

    .npk-department-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 28px rgba(67, 81, 159, 0.1);
        border-color: rgba(67, 81, 159, 0.2);
    }

    .npk-department-card__header {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
    }

    .npk-department-card__icon {
        width: 56px;
        height: 56px;
        background: rgba(67, 81, 159, 0.08);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .npk-department-card:hover .npk-department-card__icon {
        background: var(--ast-global-color-1);
        transform: scale(1.05);
    }

    .npk-department-card__title {
        font-size: 20px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0;
    }

    .npk-department-card__desc {
        font-size: 14px;
        color: #666666;
        line-height: 1.6;
        margin: 0 0 20px 0;
    }

    .npk-department-card__contacts {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .npk-department-card__contact {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 15px;
        font-weight: 600;
        color: var(--ast-global-color-1);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .npk-department-card__contact:hover {
        color: var(--ast-global-color-0);
    }

    /* Цветовые акценты для разных отделов */
    .npk-department-card--sales {
        border-left: 4px solid var(--ast-global-color-1);
    }

    .npk-department-card--support {
        border-left: 4px solid #28a745;
    }

    .npk-department-card--marketing {
        border-left: 4px solid #f5a623;
    }

    .npk-department-card--procurement {
        border-left: 4px solid #6f42c1;
    }

    /* === ФОРМА ОБРАТНОЙ СВЯЗИ === */

    .npk-contacts__form-section {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }

    .npk-contact-form {
        background: #ffffff;
        border: 1px solid rgba(67, 81, 159, 0.1);
        border-radius: 20px;
        padding: 48px;
        position: relative;
        overflow: hidden;
    }

    .npk-contact-form::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--ast-global-color-0) 0%, var(--ast-global-color-1) 100%);
    }

    .npk-contact-form__title {
        font-size: 28px;
        font-weight: 700;
        color: #2C2C2C;
        margin: 0 0 8px 0;
    }

    .npk-contact-form__subtitle {
        font-size: 16px;
        color: #666666;
        margin: 0 0 32px 0;
    }

    .npk-contact-form__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 20px;
    }

    .npk-contact-form__field {
        display: flex;
        flex-direction: column;
    }

    .npk-contact-form__field--full {
        grid-column: 1 / -1;
    }

    .npk-contact-form__label {
        font-size: 14px;
        font-weight: 500;
        color: #2C2C2C;
        margin-bottom: 8px;
    }

    .npk-contact-form__label span {
        color: var(--ast-global-color-0);
    }

    .npk-contact-form__input,
    .npk-contact-form__select,
    .npk-contact-form__textarea {
        width: 100%;
        padding: 14px 16px;
        background: #f8fafc;
        border: 1.5px solid #e2e8f0;
        border-radius: 10px;
        font-family: inherit;
        font-size: 15px;
        color: #2C2C2C;
        transition: all 0.2s ease;
    }

    .npk-contact-form__input:focus,
    .npk-contact-form__select:focus,
    .npk-contact-form__textarea:focus {
        outline: none;
        border-color: var(--ast-global-color-1);
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(67, 81, 159, 0.1);
    }

    .npk-contact-form__textarea {
        min-height: 120px;
        resize: vertical;
    }

    .npk-contact-form__consent {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin: 24px 0;
        cursor: pointer;
    }

    .npk-contact-form__checkbox {
        position: relative;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .npk-contact-form__checkbox input {
        position: absolute;
        opacity: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
        margin: 0;
        z-index: 2;
    }

    .npk-contact-form__checkbox-mark {
        position: absolute;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        background: #ffffff;
        border: 1.5px solid #cbd5e1;
        border-radius: 5px;
        transition: all 0.2s ease;
    }

    .npk-contact-form__checkbox input:checked ~ .npk-contact-form__checkbox-mark {
        background: var(--ast-global-color-1);
        border-color: var(--ast-global-color-1);
    }

    .npk-contact-form__checkbox-mark::after {
        content: '';
        position: absolute;
        left: 6px;
        top: 2px;
        width: 5px;
        height: 10px;
        border: solid #ffffff;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
        display: none;
    }

    .npk-contact-form__checkbox input:checked ~ .npk-contact-form__checkbox-mark::after {
        display: block;
    }

    .npk-contact-form__consent-text {
        font-size: 13px;
        color: #666666;
        line-height: 1.5;
    }

    .npk-contact-form__consent-text a {
        color: var(--ast-global-color-1);
        text-decoration: none;
        border-bottom: 1px dashed var(--ast-global-color-1);
    }

    .npk-contact-form__submit {
        width: 100%;
        padding: 16px 32px;
        background: linear-gradient(135deg, var(--ast-global-color-0) 0%, #d13825 100%);
        color: #ffffff;
        border: none;
        border-radius: 10px;
        font-family: inherit;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(232, 64, 43, 0.25);
    }

    .npk-contact-form__submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(232, 64, 43, 0.35);
    }

    /* === БЫСТРАЯ СВЯЗЬ === */

    .npk-quick-contact {
        background: linear-gradient(135deg, #1a2b44 0%, #2d3a7a 100%);
        border-radius: 20px;
        padding: 40px;
        color: #ffffff;
    }

    .npk-quick-contact__title {
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 28px 0;
        color:#fff;
    }

    .npk-quick-contact__item {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .npk-quick-contact__icon {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .npk-quick-contact__label {
        font-size: 12px;
        color: #8ca3bd;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 4px;
    }

    .npk-quick-contact__value {
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        text-decoration: none;
        display: block;
    }

    .npk-quick-contact__value:hover {
        color: var(--ast-global-color-0);
    }

    .npk-quick-contact__divider {
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 24px 0;
    }

    /* === КАРТА === */

    .npk-contacts__map {
        margin-bottom: 80px;
    }

    .npk-contacts__map-title {
        font-size: 32px;
        font-weight: 700;
        color: #2C2C2C;
        text-align: center;
        margin: 0 0 12px 0;
    }

    .npk-contacts__map-subtitle {
        font-size: 16px;
        color: #666666;
        text-align: center;
        margin: 0 0 32px 0;
    }

    .npk-contacts__map-wrapper {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    .npk-contacts__map-wrapper iframe {
        display: block;
        width: 100%;
        height: 500px;
    }

    /* === РЕКВИЗИТЫ === */

    .npk-contacts__requisites {
        margin-bottom: 80px;
    }

    .npk-contacts__requisites-title {
        font-size: 32px;
        font-weight: 700;
        color: #2C2C2C;
        text-align: center;
        margin: 0 0 12px 0;
    }

    .npk-contacts__requisites-subtitle {
        font-size: 16px;
        color: #666666;
        text-align: center;
        margin: 0 0 32px 0;
    }

    .npk-requisites {
        max-width: 900px;
        margin: 0 auto;
    }

    .npk-requisites__group {
        background: #ffffff;
        border: 1px solid rgba(67, 81, 159, 0.1);
        border-radius: 12px;
        margin-bottom: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .npk-requisites__group:hover {
        border-color: rgba(67, 81, 159, 0.2);
        box-shadow: 0 4px 16px rgba(67, 81, 159, 0.08);
    }

    .npk-requisites__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        cursor: pointer;
        user-select: none;
        transition: background 0.2s ease;
    }

    .npk-requisites__header:hover {
        background: #f8fafc;
    }

    .npk-requisites__title {
        font-size: 17px;
        font-weight: 600;
        color: #2C2C2C;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .npk-requisites__icon {
        font-size: 20px;
    }

    .npk-requisites__arrow {
        font-size: 14px;
        color: #666666;
        transition: transform 0.3s ease;
    }

    .npk-requisites__group.active .npk-requisites__arrow {
        transform: rotate(180deg);
    }

    .npk-requisites__content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .npk-requisites__group.active .npk-requisites__content {
        max-height: 600px;
    }

    .npk-requisites__body {
        padding: 0 24px 24px;
    }

    .npk-requisites__row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 12px 0;
        border-bottom: 1px solid #f0f3f7;
        gap: 20px;
    }

    .npk-requisites__row:last-child {
        border-bottom: none;
    }

    .npk-requisites__label {
        font-size: 14px;
        color: #666666;
        flex-shrink: 0;
        min-width: 200px;
    }

    .npk-requisites__value {
        font-size: 15px;
        font-weight: 500;
        color: #2C2C2C;
        text-align: right;
    }

    .npk-requisites__copy {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-left: 10px;
        padding: 4px 10px;
        background: rgba(67, 81, 159, 0.08);
        color: var(--ast-global-color-1);
        border-radius: 6px;
        font-size: 12px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        transition: all 0.2s ease;
    }

    .npk-requisites__copy:hover {
        background: var(--ast-global-color-1);
        color: #ffffff;
    }

    /* === АДАПТИВНОСТЬ === */

    @media (max-width: 1024px) {
        .npk-contacts__hero-title {
            font-size: 36px;
        }

        .npk-contacts__main {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .npk-contacts__departments-grid {
            grid-template-columns: 1fr;
        }

        .npk-contacts__form-section {
            grid-template-columns: 1fr;
        }

        .npk-contact-form {
            padding: 32px;
        }
    }

    @media (max-width: 768px) {
        .npk-contacts__hero {
            padding: 48px 20px;
            margin: 20px 0;
        }

        .npk-contacts__hero-title {
            font-size: 28px;
        }

        .npk-contacts__hero-subtitle {
            font-size: 16px;
        }

        .npk-contacts__section-title,
        .npk-contacts__map-title,
        .npk-contacts__requisites-title {
            font-size: 24px;
        }

        .npk-contact-card {
            padding: 32px 24px;
        }

        .npk-contact-card__value {
            font-size: 18px;
        }

        .npk-department-card {
            padding: 24px;
        }

        .npk-contact-form {
            padding: 24px;
        }

        .npk-contact-form__grid {
            grid-template-columns: 1fr;
        }

        .npk-quick-contact {
            padding: 28px;
        }

        .npk-contacts__map-wrapper iframe {
            height: 350px;
        }

        .npk-requisites__row {
            flex-direction: column;
            gap: 8px;
        }

        .npk-requisites__value {
            text-align: left;
        }
    }