    /* ========== 1. Base / Layout ========== */
    * {
        -webkit-tap-highlight-color: transparent;
        tap-highlight-color: transparent;
    }

    /* Salesmen-only fallback color for iOS rubber-band area. */
    html:has(main.salesmen),
    body:has(main.salesmen),
    body:has(main.salesmen) .page-container,
    body:has(main.salesmen) .wrapper {
        background-color: #000;
    }

    main {
        margin: 0;
        padding: 0;
        border: 0;
        background-color: #000;
        font-family: Poppins;
        color: #FFF;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        overflow-x: hidden;
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .salesmen {
        --salesmen-ease-organic: cubic-bezier(0.22, 1, 0.36, 1);
        --salesmen-dur-fast: 0.35s;
        --salesmen-dur-mid: 0.6s;
        --salesmen-dur-slow: 1.2s;
    }

    /* Отключаем стандартную вспышку/подсветку при тапе (iOS Safari, Android Chrome) */
    .salesmen,
    .salesmen * {
        -webkit-tap-highlight-color: transparent;
    }

    .container {
        padding-inline: 1rem;
    }

    @media (min-width: 768px) {
        .container {
            padding-inline: 2.5rem;
        }
    }

    @media (min-width: 1200px) {
        .container {
            padding-inline: 3.5rem;
        }
    }

    .salesmen__project-title {
        max-width: 855px;
    }

    .salesmen__project-title,
    .salesmen__features-title,
    .salesmen__difference-title,
    .salesmen__faq-title,
    .salesmen__contact-title {
        font-size: 65px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        margin: 0;
        margin-left: 215px;
        margin-bottom: 60px;
    }

    .padding-top {
        padding-top: 30px;
    }

    .padding-bottom {
        padding-bottom: 80px;
    }


    @media (max-width: 1024px) {
        .padding-top {
            padding-top: 40px;
        }

        .padding-bottom {
            padding-bottom: 40px;
        }
    }

    @media (max-width: 768px) {
        .padding-top {
            padding-top: 25px;
        }


        .padding-bottom {
            padding-bottom: 25px;
        }
    }

    .contact-link-icon {
        display: none;
    }


    @media (min-width: 1024px) {
        .salesmen__features-item:hover {
            background-color: #81A0C4;
        }

        .salesmen__features-item:hover .salesmen__features-num {
            color: #000;
        }

        .salesmen__features-item:hover .salesmen__features-heading {
            color: #000;
        }

        .salesmen__features-item:hover .salesmen__features-desc {
            color: #000;
        }

        .salesmen__footer a:hover {
            color: #FFFFFF;
            opacity: 1;
        }
    }



    /* ========== 2. Hero ========== */
    .salesmen__hero {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: visible;
    }

    .salesmen__hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 65vw;
        height: calc(100% + 400px);
        background-image: url('../img/salesmen/ hero-backgaround.jpg');
        background-repeat: no-repeat;
        background-position: right top;
        background-size: cover;
        pointer-events: none;
        z-index: 0;
    }

    .salesmen__hero::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: calc(100% - 500px);
        height: calc(100% + 400px);
        background: linear-gradient(90deg,
                rgba(0, 0, 0, 1) 0%,
                rgba(0, 0, 0, 1) 54%,
                rgba(0, 0, 0, 0) 100%);
        mix-blend-mode: multiply;
        pointer-events: none;
        z-index: 1;
    }

    .salesmen__hero>.container {
        width: 100%;
        display: flex;
        align-items: center;
        z-index: 2;
    }

    .salesmen__hero-wrapper {
        max-width: 615px;
    }

    .salesmen__hero-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 24px;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
    }

    .salesmen__hero-top-right {
        display: flex;
        align-items: center;
        gap: 24px;
    }

    .salesmen__hero-menu {
        position: absolute;
        top: 90px;
        right: 1.5rem;
        z-index: 3;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: transparent;
        border: none;
        padding: 0;
        width: 40px;
        cursor: pointer;
    }

    @media (min-width: 768px) {
        .salesmen__hero-menu {
            right: clamp(2.5rem, calc((100% - 1596px) / 2 + 2.5rem), 9999px);
        }
    }

    @media (min-width: 1200px) {
        .salesmen__hero-menu {
            right: clamp(3.5rem, calc((100% - 1596px) / 2 + 3.5rem), 9999px);
        }
    }

    .salesmen__hero-menu span {
        display: block;
        width: 11px;
        height: 11px;
        background: #fff;
        margin-bottom: 11px;
    }

    .salesmen__hero-menu span:last-child {
        margin-bottom: 0;
    }

    @media (max-width: 990px) {
        .salesmen__hero-menu {
            touch-action: manipulation;
            user-select: none;
            -webkit-user-select: none;
            top: 66px;
        }
    }

    @media (max-width: 768px) {

        .salesmen__hero-menu span {
            width: 5px;
            height: 5px;
            margin-bottom: 5px;
        }
    }

    .salesmen__hero-title h1 {
        font-size: 45px;
        font-style: normal;
        font-weight: 300;
        line-height: 130%;
        padding: 0;
        padding-top: 35px;
        padding-bottom: calc(94px + 14px);
        margin: 0;
        color: #fff !important;
        text-transform: none !important;
    }

    /* ========== 3. Buttons / CTA ========== */
    .salesmen__hero-button-link {
        background: #1a1a1a;
        border-radius: 999px;
        padding: 14px 32px;
        min-height: 48px;
        touch-action: manipulation;
        color: #ffffff;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        cursor: pointer;
        border: none;
        position: relative;
        text-decoration: none;
    }

    .salesmen__hero-button-link::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 999px;
        padding: 1px;
        background: linear-gradient(135deg,
                rgba(255, 255, 255, 0.5) 0%,
                rgba(255, 255, 255, 0.03) 40%,
                rgba(255, 255, 255, 0.03) 60%,
                rgba(255, 255, 255, 0.25) 100%);
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: destination-out;
        mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        pointer-events: none;
    }

    /* ========== 4. Project section ========== */
    .salesmen__project {
        position: relative;
        z-index: 3;
        background-color: transparent;
    }

    /* ========== 5. Slider (Swiper + card) ========== */
    .portfolio-block__slider {
        margin-top: 24px;
        margin-bottom: 24px;
        overflow: visible;
        width: 100%;
    }

    .portfolio-block__slider .swiper {
        width: 100%;
        height: auto !important;
        overflow: visible;
        box-sizing: border-box;
    }

    .portfolio-block__slider .swiper-wrapper {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
        height: auto !important;
        overflow: visible;
        box-sizing: border-box;
    }

    .portfolio-swiper {
        width: 100%;
        overflow: visible;
        -webkit-overflow-scrolling: touch;
    }

    /* Фикс Safari: слайды не сжимаются/не растягиваются, ширина задаётся Swiper — блоки в ряд как в Chrome */
    .portfolio-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        align-self: flex-start;
        height: auto !important;
        min-width: 0;
        flex: 0 0 auto;
        box-sizing: border-box;
    }

    .portfolio-block__slide {
        width: 100%;
        max-width: 735px;
        aspect-ratio: 735 / 433;
        border-radius: 8px;
        border: 1px solid #3B3B3B;
        background: #121515;
        padding: 14px;
        box-sizing: border-box;
        overflow: hidden;
        flex-shrink: 0;
        align-self: flex-start;
        height: auto !important;
    }

    .portfolio-swiper .swiper-slide.swiper-slide-active .portfolio-block__slide,
    .portfolio-block__slide--video:hover,
    .portfolio-block__slide--video.is-playing {
        cursor: url('../img/development/cursor.svg') 24 25, pointer;
    }

    .portfolio-block__slide img {
        display: block;
        max-width: 100%;
        max-height: 100%;
        width: 100%;
        height: 100%;
        border-radius: 6px;
        object-fit: contain;
        cursor: url('../img/development/cursor.svg') 24 25, auto !important;
    }

    .portfolio-block__slide--video {
        position: relative;
        cursor: pointer;
    }

    .portfolio-block__slide-video-wrap {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
        border-radius: 6px;
        background: #000;
    }

    .portfolio-block__slide-video-wrap .portfolio-block__slide-poster,
    .portfolio-block__slide-video-wrap .portfolio-block__slide-video-preview {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity var(--salesmen-dur-fast) var(--salesmen-ease-organic);
    }

    .portfolio-block__slide-video-wrap .portfolio-block__slide-video-preview {
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--salesmen-dur-fast) var(--salesmen-ease-organic);
    }

    .portfolio-block__slide--video.is-playing .portfolio-block__slide-poster {
        opacity: 0;
        pointer-events: none;
    }

    .portfolio-block__slide--video.is-playing .portfolio-block__slide-video-preview {
        opacity: 1;
        pointer-events: none;
    }

    .portfolio-block__slide-video-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .portfolio-block__slider .swiper-button-prev,
    .portfolio-block__slider .swiper-button-next {
        display: none;
    }

    @media (max-width: 768px) {
        .portfolio-swiper .swiper-wrapper {
            display: block !important;
            transform: none !important;
        }

        .portfolio-swiper .swiper-slide {
            width: 100% !important;
            margin-bottom: 20px;
        }

        .portfolio-swiper .swiper-slide:last-child {
            margin-bottom: 0;
        }
    }

    /* ========== 6. Lightbox ========== */
    .salesmen-lightbox {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--salesmen-dur-fast) var(--salesmen-ease-organic);
    }

    .salesmen-lightbox--open {
        opacity: 1;
        pointer-events: auto;
    }

    .salesmen-lightbox__img {
        width: min(1200px, 95vw);
        height: auto;
        max-height: 95vh;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        opacity: 0;
        transform: scale(0.97);
        transition: opacity var(--salesmen-dur-fast) var(--salesmen-ease-organic), transform var(--salesmen-dur-fast) var(--salesmen-ease-organic);
    }

    .salesmen-lightbox--open .salesmen-lightbox__img {
        opacity: 1;
        transform: scale(1);
    }

    .salesmen-lightbox__video-wrap {
        max-width: min(1200px, 95vw);
        max-height: 95vh;
    }

    .salesmen-lightbox__video {
        width: 100%;
        height: auto;
        max-height: 95vh;
        border-radius: 8px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    }

    /* ========== 7. Key Features ========== */
    .salesmen__features {
        position: relative;
        z-index: 3;
    }

    .salesmen__features-list {
        list-style: none;
        margin: 0;
        padding: 0;
        max-width: 1450px;
    }

    .salesmen__features-item {
        display: grid;
        grid-template-columns: 60px minmax(0, 2.3fr) minmax(0, 3fr);
        gap: 16px 40px;
        padding: 24px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        border-left: 12px solid transparent;
        border-right: 12px solid transparent;
        cursor: default;
        background-color: transparent;
        transition: background-color 0.75s var(--salesmen-ease-organic), border-radius 0.75s var(--salesmen-ease-organic);
        border-radius: 20px;
        align-items: center;
        min-height: 104px;
    }

    .salesmen__features-item:last-child {
        border-bottom: none;
    }

    .salesmen__features-num {
        color: #FFF;
        text-align: center;
        font-family: Poppins;
        font-size: 50px;
        font-style: normal;
        font-weight: 100;
        line-height: 120%;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0.5;
        height: 100%;
        width: 100%;
        transition: color 0.6s var(--salesmen-ease-organic), opacity 0.6s var(--salesmen-ease-organic);
    }


    .salesmen__features-content {
        display: contents;
    }

    .salesmen__features-heading {
        margin: 0;
        color: #FFF;
        font-family: Poppins;
        font-size: 45px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        max-width: 500px;
        transition: color 0.6s var(--salesmen-ease-organic);
    }

    .salesmen__features-desc {
        margin: 0;
        color: #FFF;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 130%;
        max-width: 576px;
        transition: color 0.6s var(--salesmen-ease-organic), opacity 0.6s var(--salesmen-ease-organic);
    }

    /* ========== 8. Difference section ========== */
    .salesmen__difference {
        position: relative;
        z-index: 3;
    }

    .salesmen__difference-card {
        margin-top: 24px;
        padding: 35px;
        padding-left: clamp(24px, 7.5vw, 141px);
        border-radius: 20px;
        background: #1B1B1B;
        display: flex;
        justify-content: space-between;
    }

    .salesmen__difference-points {
        list-style: none;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 40px;
    }

    .salesmen__difference-item {
        display: flex;
        align-items: center;
        gap: 23px;
        color: #FFF;
        font-size: 20px;
        font-family: Poppins;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        max-width: 410px;
        opacity: 0.5;
        transition: color var(--salesmen-dur-slow) var(--salesmen-ease-organic), opacity var(--salesmen-dur-slow) var(--salesmen-ease-organic);
    }

    .salesmen__difference-item.is-revealed {
        color: #81A0C4;
        opacity: 1;
    }

    .salesmen__difference-icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .salesmen__difference-icon svg {
        width: 28px;
        height: 28px;
        display: block;
    }

    .salesmen__difference-icon path {
        stroke: rgba(255, 255, 255, 0.5);
        transition: stroke var(--salesmen-dur-slow) var(--salesmen-ease-organic), stroke-width var(--salesmen-dur-slow) var(--salesmen-ease-organic);
    }

    .salesmen__difference-item.is-revealed .salesmen__difference-icon path {
        stroke: #81A0C4;
        stroke-width: 1;
    }

    .salesmen__difference-text {
        display: block;
        transform-origin: left center;
        transform: scaleX(0.96);
        letter-spacing: 0.01em;
        transition: transform 1.8s var(--salesmen-ease-organic), letter-spacing 1.8s var(--salesmen-ease-organic);
    }

    .salesmen__difference-item.is-revealed .salesmen__difference-text {
        transform: scaleX(1);
        letter-spacing: 0;
    }


    /* Медиа Difference: макс. 884×515 (как на 1900+), при меньшей ширине — масштаб по aspect-ratio 884/515 */
    .salesmen__difference-media {
        background: #121515;
        border-radius: 8px;
        box-sizing: border-box;
        flex: 1 1 auto;
        min-width: 0;
        max-width: min(920px, 100%);
        width: 100%;
        align-self: flex-start;
    }

    .salesmen__difference-media:not(.salesmen__difference-media--video) {
        padding: 18px;
    }

    .salesmen__difference-media:not(.salesmen__difference-media--video) img {
        box-sizing: border-box;
        display: block;
        border-radius: 8px;
        border: 1px solid #3B3B3B;
        width: 100%;
        aspect-ratio: 884 / 515;
        max-height: 515px;
        height: auto;
        object-fit: cover;
        cursor: url('../img/development/cursor.svg') 24 25, auto;
    }

    .salesmen__difference-media--video {
        position: relative;
        cursor: url('../img/development/cursor.svg') 24 25, pointer;
        padding: 18px;
        box-sizing: border-box;
    }

    .salesmen__difference-media--video:hover,
    .salesmen__difference-media--video.is-playing {
        cursor: url('../img/development/cursor.svg') 24 25, pointer;
    }

    .salesmen__difference-media-video-wrap {
        position: relative;
        width: 100%;
        max-width: 884px;
        aspect-ratio: 884 / 515;
        max-height: 515px;
        border-radius: 8px;
        border: 1px solid #3B3B3B;
        overflow: hidden;
        background: #000;
    }

    .salesmen__difference-media-video-wrap .salesmen__difference-media-poster,
    .salesmen__difference-media-video-wrap .salesmen__difference-media-video-preview {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        padding: 0 !important;
        border: none !important;
    }

    .salesmen__difference-media-video-wrap .salesmen__difference-media-video-preview {
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--salesmen-dur-fast) var(--salesmen-ease-organic);
    }

    .salesmen__difference-media--video.is-playing .salesmen__difference-media-poster {
        opacity: 0;
        pointer-events: none;
    }

    .salesmen__difference-media--video.is-playing .salesmen__difference-media-video-preview {
        opacity: 1;
        pointer-events: none;
    }

    @media (max-width: 1100px) {
        .salesmen__difference-card {
            grid-template-columns: 1fr;
        }

        .salesmen__difference-item {
            font-size: 20px;
        }
    }

    /* ========== 9. FAQ section ========== */
    .salesmen__faq {
        position: relative;
        z-index: 3;
    }

    .salesmen__faq-card {
        border-radius: 20px;
        background: #1B1B1B;
        padding: 26px 56px;
    }

    .salesmen__faq-list {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .salesmen__faq-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .salesmen__faq-item:first-child {
        border-top: none;
    }

    .salesmen__faq-question {
        width: 100%;
        border: none;
        background: transparent;
        min-height: 44px;
        touch-action: manipulation;
        display: flex;
        align-items: center;
        gap: 20px;
        padding: 22px 0;
        cursor: pointer;
        text-align: left;
    }

    .salesmen__faq-question-text {
        color: #FFF;
        font-family: Poppins;
        font-size: 30px;
        font-style: normal;
        font-weight: 275;
        line-height: 160%;
        opacity: 0.5;
        transition: color var(--salesmen-dur-mid) var(--salesmen-ease-organic), font-weight var(--salesmen-dur-mid) var(--salesmen-ease-organic);
    }

    .salesmen__faq-icon {
        width: 24px;
        height: 24px;
        flex: 0 0 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding-right: 3px;
    }

    .salesmen__faq-icon svg {
        width: 25px;
        height: 25px;
        display: block;
        overflow: visible;
    }

    .salesmen__faq-icon path {
        opacity: 0.5;
        stroke: #FFF;
        transition: stroke var(--salesmen-dur-mid) var(--salesmen-ease-organic), stroke-width var(--salesmen-dur-mid) var(--salesmen-ease-organic), transform var(--salesmen-dur-mid) var(--salesmen-ease-organic);
        transform-origin: center;
        transform-box: fill-box;
    }

    .salesmen__faq-item.is-open .salesmen__faq-question-text {
        color: #81A0C4;
        font-weight: 500;
        opacity: 1;
    }

    .salesmen__faq-item.is-open .salesmen__faq-icon path {
        stroke: #81A0C4;
        stroke-width: 1;
        transform: rotate(90deg);
        opacity: 1;

    }

    .salesmen__faq-answer-wrap {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--salesmen-dur-mid) var(--salesmen-ease-organic);
    }

    .salesmen__faq-answer {
        margin: 0;
        padding: 0 0 24px 45px;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 300;
        opacity: 0.7;
        line-height: 160%;
    }

    @media (max-width: 1100px) {
        .salesmen__faq-card {
            padding: 20px 24px;
        }

        .salesmen__faq-question-text {
            font-size: 24px;
        }

        .salesmen__faq-answer {
            font-size: 18px;
            padding-left: 45px;
        }

        .salesmen__contact-fields {
            gap: 30px;
        }
    }

    /* ========== 10. Contact section ========== */
    .salesmen__contact {
        position: relative;
        z-index: 3;
    }

    .salesmen__contact-card {
        border-radius: 20px;
        display: grid;
        grid-template-columns: minmax(260px, 533px) minmax(360px, 1fr) minmax(200px, 260px);
        gap: 53px;
        align-items: start;
    }

    .salesmen__contact-image {
        border-radius: 20px;
        overflow: hidden;
    }

    .salesmen__contact-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .salesmen__contact-note {
        color: #81A0C4;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        max-width: 443px;
        margin: 0;
        padding: 0;
        padding-bottom: 30px;
    }

    /* CF7-style: один блок ответа (успех/ошибка) */
    .salesmen__contact-response {
        margin: 0 0 22px 0;
        padding: 11px 15px;
        border-radius: 12px;
        font-family: Poppins;
        font-size: 15px;
        line-height: 1.4;
        display: none;
    }

    .salesmen__contact-response.salesmen__contact-response--success {
        display: block;
        background: rgba(129, 160, 196, 0.2);
        color: #81A0C4;
        border: 1px solid rgba(129, 160, 196, 0.4);
    }

    .salesmen__contact-response.salesmen__contact-response--error {
        display: block;
        background: rgba(200, 80, 80, 0.15);
        color: #faa;
        border: 1px solid rgba(200, 80, 80, 0.4);
    }

    .salesmen__contact-success {
        display: none;
        margin: 0;
        padding-left: 56px;
    }

    .salesmen__contact-form--success .salesmen__contact-form-inner {
        display: none !important;
    }

    .salesmen__contact-form--success .salesmen__contact-success {
        display: block;
    }

    .salesmen__contact-success-title {
        color: #FFF;
        font-family: Poppins;
        font-size: 45px;
        font-style: normal;
        font-weight: 500;
        line-height: 130%;
        max-width: 382px;
        padding-bottom: 52px;
        position: relative;
    }

    .salesmen__contact-success-title::before {
        position: absolute;
        top: 15px;
        left: -56px;
        content: '';
        width: 29px;
        height: 29px;
        flex-shrink: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='29' height='29' viewBox='0 0 29 29' fill='none'%3E%3Cpath d='M10.3481 13.0258L14.537 17.2258M28.5 3.37425L14.537 17.3742M14.463 0.5C6.75144 0.5 0.5 6.76801 0.5 14.5C0.5 22.232 6.75144 28.5 14.463 28.5C22.1745 28.5 28.4259 22.232 28.4259 14.5' stroke='white'/%3E%3C/svg%3E") no-repeat center;
        background-size: contain;
    }

    .salesmen__contact-success-note {
        color: #81A0C4;
        font-family: Poppins;
        font-size: 20px;
        font-weight: 400;
        line-height: 32px;
        max-width: 382px;
        margin: 0;
        padding: 0;
    }

    .salesmen__contact-submit-wrap {
        position: relative;
        display: block;
        width: 100%;
        max-width: 384px;
    }

    .salesmen__contact-submit-wrap .salesmen__contact-spinner {
        display: none;
        position: absolute;
        left: 50%;
        top: calc(50% + 3px);
        width: 28px;
        height: 28px;
        transform: translate(-50%, -50%);
        border: 3px solid rgba(255, 255, 255, 0.35);
        border-top-color: #fff;
        border-radius: 50%;
        animation: salesmen-spin 0.8s linear infinite;
        z-index: 5;
        pointer-events: none;
    }

    .salesmen__contact-form.is-sending .salesmen__contact-submit-wrap .salesmen__contact-spinner {
        display: block;
    }

    .salesmen__contact-form.is-sending .salesmen__contact-submit {
        color: transparent !important;
        pointer-events: none;
        z-index: 0;
    }

    .salesmen__contact-form.is-sending .salesmen__contact-submit::before {
        opacity: 0.3;
    }

    @keyframes salesmen-spin {
        from {
            transform: translate(-50%, -50%) rotate(0deg);
        }

        to {
            transform: translate(-50%, -50%) rotate(360deg);
        }
    }

    .salesmen__contact-fields {
        display: flex;
        flex-direction: column;
        gap: 22px;
        max-width: 100%;

    }

    .salesmen__contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
    }

    .salesmen__contact-input,
    .salesmen__contact-textarea {
        font-family: Poppins;
        border-radius: 12px !important;
        border: 1px solid rgba(113, 113, 113, 0.5);
        background: #1B1B1B;
        padding: 11px 14.94px 11px 15px;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        color: #FFF;
        margin-top: 0;
        user-select: text;
        -webkit-user-select: text;
    }

    .salesmen__contact-input:focus-visible,
    .salesmen__contact-textarea:focus-visible {
        outline: none;
        border-color: #81A0C4;
        box-shadow: 0 0 0 1px #81A0C4;
    }

    .salesmen__contact-input::placeholder,
    .salesmen__contact-textarea::placeholder {
        font-family: Poppins;
        color: #717171;
        font-size: 17.9px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        opacity: 0.7;
    }

    .salesmen__contact-textarea {
        min-height: 110px;
        resize: none;
    }

    .salesmen__contact-file {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        touch-action: manipulation;
        background: #81A0C4;
        color: #000;
        font-family: Poppins;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        padding: 14px 23px;
        border-radius: 999px;
        width: fit-content;
        cursor: pointer;
        border: 2px solid transparent;
    }

    .salesmen__contact-file input {
        display: none;
    }

    .salesmen__contact-file-wrap {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-top: calc(84px - 22px);
        padding-bottom: 22px;
    }

    /* Имя файла: до 1120px высота не резервируется — при выборе файла блок растёт, кнопка Submit уезжает вниз. */
    .salesmen__contact-file-name {
        display: block;
        box-sizing: border-box;
        width: 100%;
        max-width: 384px;
        font-family: Poppins;
        font-size: 16px;
        line-height: 1.45;
        min-height: 0;
        color: rgba(255, 255, 255, 0.8);
        font-style: normal;
        font-weight: 400;
    }

    @media (min-width: 1121px) {
        .salesmen__contact-file-name {
            min-height: calc(1.45 * 1em);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    }

    /* 8px только когда есть название файла; пока span пустой — отступа между кнопкой и строкой нет */
    .salesmen__contact-file-name:not(:empty) {
        margin-top: 8px;
    }

    .salesmen__contact-file-name:not(:empty)::before {
        content: '✓ ';
        color: #81A0C4;
    }

    .salesmen__contact-submit {
        margin-top: 8px;
        width: 100%;
        max-width: 384px;
        touch-action: manipulation;
    }

    .salesmen__contact-file-wrap.salesmen__contact-file-wrap--error .salesmen__contact-file {
        background: rgba(180, 60, 60, 0.95);
        color: #fff;
        border-color: #b44;
    }

    .salesmen__contact-info {
        display: flex;
        flex-direction: column;
        gap: 41px;
    }

    .salesmen__contact-info-title {
        color: #81A0C4;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        margin: 0 0 13px 0;
    }

    .salesmen__contact-info-value {
        color: #FFF;
        font-family: Poppins;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
        margin: 0;
        padding: 0;
    }

    @media (max-width: 1374px) {
        .salesmen__contact-card {
            grid-template-columns: 1fr 1fr;
            grid-template-rows: auto auto;
        }

        .salesmen__contact-image {
            grid-column: 1;
            grid-row: 1;
        }

        .salesmen__contact-form {
            grid-column: 2;
            grid-row: 1;
        }

        .salesmen__contact-info {
            grid-column: 1 / -1;
            grid-row: 2;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 24px 40px;
            margin-top: 8px;
        }

        .salesmen__contact-info>div {
            min-width: 0;
        }
    }

    @media (max-width: 1120px) {
        .salesmen__contact-card {
            grid-template-columns: 1fr;
            grid-template-rows: auto auto auto;
        }

        .salesmen__contact-form {
            grid-column: 1;
            grid-row: 1;
            order: 1;
        }

        .salesmen__contact-info {
            grid-column: 1;
            grid-row: 2;
            order: 2;
            flex-direction: column;
            justify-content: flex-start;
        }

        .salesmen__contact-image {
            grid-column: 1;
            grid-row: 3;
            order: 3;
        }

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

        .salesmen__contact-image {
            border-radius: 40px;
        }

        .salesmen__contact-file-wrap {
            padding-top: 0px;
            padding-bottom: 0px;
        }

        .salesmen__contact-submit {
            margin-top: 0;
        }

    }

    @media (max-width: 1099px) {
        .salesmen__contact-file {
            margin-top: 0;
        }
    }

    @media (max-width: 640px) {
        .salesmen__contact-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ========== Scroll to top button ========== */
    .salesmen__scroll-top {
        position: fixed;
        right: max(40px, env(safe-area-inset-right));
        bottom: max(40px, env(safe-area-inset-bottom));
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: none;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        padding: 0;
        z-index: 50;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: background var(--salesmen-dur-fast) var(--salesmen-ease-organic), border-color var(--salesmen-dur-fast) var(--salesmen-ease-organic), transform var(--salesmen-dur-fast) var(--salesmen-ease-organic), opacity var(--salesmen-dur-fast) var(--salesmen-ease-organic), visibility var(--salesmen-dur-fast) var(--salesmen-ease-organic);
        opacity: 0;
        visibility: hidden;
    }

    .salesmen__scroll-top svg {
        width: 80px;
        height: 80px;
        display: block;
    }

    @media (max-width: 640px) {
        .salesmen__scroll-top {
            right: max(18px, env(safe-area-inset-right));
            bottom: max(24px, env(safe-area-inset-bottom));
            width: 64px;
            height: 64px;
        }
    }

    /* ========== Footer ========== */
    .salesmen__footer {
        position: relative;
        padding-top: calc(87px - 40px);
        padding-bottom: 87px;
        font-family: "Cera Pro", "CeraPro", sans-serif;
    }

    .salesmen__footer-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    .salesmen__footer-center {
        flex: 0 0 auto;
    }

    .salesmen__footer-right {
        margin-left: auto;
    }

    .salesmen__footer-links {
        display: flex;
        gap: 32px;
    }

    .salesmen__footer a,
    .salesmen__footer-copy {
        font-family: "Cera Pro", "CeraPro", sans-serif;
        text-decoration: none;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        color: #fff;
        opacity: 0.7;
    }


    @media (max-width: 1023px) {
        .salesmen__footer {
            background: #000;
        }

        .salesmen__footer-row {
            flex-wrap: wrap;
            gap: 24px 40px;
        }

        .salesmen__footer-right {
            order: 1;
            width: 100%;
            margin-left: 0;
        }

        .salesmen__footer-links {
            display: flex;
            align-items: center;
            width: 100%;
            gap: 32px;
        }

        .salesmen__footer-links a:nth-child(2) {
            margin-left: auto;
        }

        .salesmen__footer-copy {
            order: 2;
        }

        .salesmen__footer-center {
            order: 3;
            margin-left: auto;
        }
    }


    @media (max-width: 1570px) {
        .salesmen__difference-card {
            padding-left: 50px;
            gap: 20px;
        }

        .salesmen__hero::after {
            width: calc(100% - 400px);
        }
    }


    @media (max-width: 1440px) {
        .salesmen__difference-card {
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .salesmen__difference-points {
            padding-top: 40px;
            order: 2;
        }

        .salesmen__difference-item {
            max-width: 100%;
        }

        .salesmen__difference-media--video {
            margin: auto;
        }

    }

    @media (max-width: 1024px) {
        .salesmen__hero-top {
            font-size: 18px;
        }

        .salesmen__hero-title h1 {
            font-size: 35px;
        }

        .salesmen__hero-wrapper {
            max-width: 500px;
        }

        .salesmen__hero-logo img {
            max-width: 100%;
        }

        .salesmen__hero::before {
            width: 65vw;
            height: calc(100% + 200px);

        }

        .salesmen__hero::after {
            width: calc(100% - 300px);
            height: calc(100% + 200px);
        }

        .salesmen__hero-button-link {
            font-size: 18px;
        }

        .salesmen__hero-title h1 {
            padding-bottom: calc(74px + 14px);
        }

        .salesmen__project-title,
        .salesmen__features-title,
        .salesmen__difference-title,
        .salesmen__faq-title,
        .salesmen__contact-title {
            font-size: 45px;
            margin: 0;
            margin-left: 115px;
            margin-bottom: 40px;
        }

        .salesmen__features-item {
            grid-template-columns: 72px 1fr;
            grid-template-rows: auto auto;
            gap: 18px 36px;
            padding: 26px 0;
            min-height: 0;
            align-items: center;
            padding-left: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.52);
            border-radius: 0;
            border-left: none;
            border-right: none;
        }

        .salesmen__features-item:last-child {
            border-bottom: none;
        }

        .salesmen__features-num {
            grid-column: 1;
            grid-row: 1;
            align-self: center;
            font-size: 70px;
            opacity: 1;
            height: auto;
        }

        .salesmen__features-content {
            display: contents;
        }

        .salesmen__features-heading {
            grid-column: 2;
            grid-row: 1;
            align-self: center;
            font-size: clamp(24px, 5vw, 36px);
            max-width: none;
        }

        .salesmen__features-desc {
            grid-column: 2;
            grid-row: 2;
            font-size: 16px;
            max-width: none;
        }

        .salesmen__features-item:first-child {
            padding-top: 0;
        }

        .salesmen__hero::before {
            background-position: center top;
        }

    }

    @media (max-width: 768px) {
        .salesmen__hero-top {
            font-size: 12px;
        }

        .salesmen__hero-title h1 {
            font-size: 20px;
        }

        .salesmen__hero-wrapper {
            max-width: 308px;
        }

        .salesmen__hero-top-left {
            position: absolute;
            top: 75px;
            left: 1.5rem;
        }

        .salesmen__hero-top-right {
            max-width: 66px;
            margin-left: 97px;
            line-height: 120%;
        }

        .salesmen__hero-button-link {
            font-size: 12px;
            padding: 5px 23px;
        }

        .salesmen__contact-fields .salesmen__hero-button-link {
            font-size: 20px;
            padding: 7px 0px;
        }

        .salesmen__contact-file {
            font-size: 12px;
            padding: 7px 18px;
        }

        .salesmen__hero-title h1 {
            padding-bottom: calc(59px + 5px);
            padding-top: 17px;

        }

        .salesmen__project-title,
        .salesmen__features-title,
        .salesmen__difference-title,
        .salesmen__faq-title,
        .salesmen__contact-title {
            font-size: 30px;
            margin: 0;
            margin-left: 12px;
            margin-bottom: 38px;
        }

        .portfolio-block__slide {
            padding: 7px;
        }


        .salesmen__hero::before {
            width: 65vw;
            height: calc(100% + 10px);
        }

        .salesmen__hero::after {
            width: calc(100% - 200px);
            height: calc(100% + 10px);
        }

        .salesmen__difference-points {
            padding-top: 30px;
            order: 2;
        }

        .salesmen__difference-item {
            font-size: 12px;
        }

        .salesmen__difference-icon svg {
            width: 20px;
            height: 20px;
        }

        .salesmen__difference-points {
            gap: 22px;
            max-width: 300px;
        }

        .salesmen__difference-card {
            padding: 13px 13px 40px 13px;
        }

        .salesmen__difference-media:not(.salesmen__difference-media--video) {
            padding: 6px;
           
        }

        .salesmen__difference-media--video {
            padding: 6px;
        }

        .salesmen__faq-question-text {
            font-size: 25px;
        }

        .salesmen__faq-answer {
            font-size: 12px;
        }

        .salesmen__faq-card {
            padding-left: 12px;
            padding-right: 12px;
            padding-top: 28px;
            padding-bottom: 32px;
        }

        .salesmen__faq-icon svg {
            width: 20px;
            height: 20px;
        }

        .salesmen__faq-question {
            align-items: flex-start;
        }

        .salesmen__faq-question {
            gap: 16px;
        }

        .salesmen__contact-card {
            gap: 24px;
        }

        .salesmen__contact-info-title {
            margin: 0;
        }

        .salesmen__features-item {
            padding-left: 0;
            margin-left: 12px;
            margin-right: 12px;
        }

        .salesmen__contact-image {
            border-radius: 10px;
        }

        .salesmen__footer a,
        .salesmen__footer-copy {
            font-size: 10px;
        }

        .salesmen__footer {
            position: relative;
            padding-top: 55px;
            padding-bottom: 642px;
        }

        .salesmen__contact-note {
            margin-left: 12px;
        }

        .salesmen__contact-success-note {
            max-width: 213px;
            margin-left: 12px;
            font-size: 12px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
        }

        .salesmen__contact-success-title {
            font-size: 25px;
            padding-bottom: 25px;
            max-width: 213px;
            margin-left: 12px;
            padding-bottom: 20px;
        }

        .salesmen__contact-info{
            margin-left: 40px;
        }

        .salesmen__contact-success{
            margin-left: 40px;
        }
    }

    @media (max-width: 600px) {
        .salesmen__hero::before {
            width: 65vw;
            height: calc(100% + 10px);
            background-position: center top;
        }

        .salesmen__hero::after {
            width: calc(100% - 100px);
            height: calc(100% + 10px);
        }

        .salesmen__features-desc {
            font-size: 12px;
        }

        .salesmen__contact-file {
            padding: 0px 18px;
        }

        .salesmen__footer{
            padding-bottom: 40px;
            padding-top: 40px;
        }
    }

    @media (max-width: 500px) {
        .salesmen__features-num {
            font-size: 50px;
        }

        .salesmen__features-item {
            grid-template-columns: 50px 1fr;
            border-left: 0px solid transparent;
            border-right: 0px solid transparent;
        }

        .salesmen__contact-fields .salesmen__hero-button-link {
            width: 100%;
            max-width: 100%;
        }
    }

    @media (max-width: 400px) {
        .salesmen__features-item {
            padding-left: 5px;
            gap: 16px 20px;
        }
    }
