

/* Start:/bitrix/templates/r52/components/bitrix/catalog.element/services/style.css?178646193723585*/
/* Блок 1 — Первый экран (service-hero-v2) */
.service-hero-v2 {
    --hero-text: #172a3a;
    --hero-muted: #566775;
    --hero-primary: #174d73;
    --hero-primary-hover: #103d5d;
    --hero-accent: #b69355;
    --hero-background: #f5f6f7;

    position: relative;
    min-height: 660px;
    overflow: hidden;
    color: var(--hero-text);
    background: var(--hero-background);
}

.service-hero-v2::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.99) 42%,
        rgba(255, 255, 255, 0.95) 52%,
        rgba(255, 255, 255, 0.72) 61%,
        rgba(255, 255, 255, 0.12) 76%,
        rgba(255, 255, 255, 0) 100%
    );
}

.service-hero-v2__image {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
}

.service-hero-v2__container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    min-height: 660px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 56px 0;
}

.service-hero-v2__content {
    width: 54%;
    max-width: 650px;
}

.service-hero-v2__title {
    margin: 0 0 22px;
    color: var(--hero-text);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.12;
}

.service-hero-v2__description {
    max-width: 630px;
    margin: 0 0 24px;
    color: var(--hero-muted);
    font-size: 18px;
    line-height: 1.55;
}

.service-hero-v2__description p {
    margin: 0 0 10px;
}

.service-hero-v2__description p:last-child {
    margin-bottom: 0;
}

.service-hero-v2__advantages {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 22px;
    max-width: 630px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.service-hero-v2__advantages li {
    position: relative;
    min-height: 28px;
    padding-left: 34px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.service-hero-v2__advantages li::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--hero-accent);
    font-size: 14px;
    font-weight: 700;
}

.service-hero-v2__actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.service-hero-v2__button {
    display: inline-flex;
    min-height: 52px;
    padding: 14px 26px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #ffffff;
    background: var(--hero-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.service-hero-v2__button:hover,
.service-hero-v2__button:focus {
    color: #ffffff;
    background: var(--hero-primary-hover);
    text-decoration: none;
    transform: translateY(-1px);
}

.service-hero-v2__contact {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.service-hero-v2__contact-label {
    color: var(--hero-muted);
    font-size: 13px;
    line-height: 1.3;
}

.service-hero-v2__phone {
    color: var(--hero-text);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    text-decoration: none;
}

.service-hero-v2__phone:hover,
.service-hero-v2__phone:focus {
    color: var(--hero-primary);
    text-decoration: none;
}

.service-hero-v2__note {
    margin: 14px 0 0;
    color: var(--hero-muted);
    font-size: 13px;
    line-height: 1.4;
}

/* На планшетах и мобильных изображение полностью скрывается. */
@media (max-width: 991px) {
    .service-hero-v2 {
        min-height: auto;
        background: var(--hero-background);
    }

    .service-hero-v2::before,
    .service-hero-v2__image {
        display: none;
    }

    .service-hero-v2__container {
        min-height: auto;
        padding: 42px 0;
    }

    .service-hero-v2__content {
        width: 100%;
        max-width: none;
    }

    .service-hero-v2__title {
        max-width: 760px;
        font-size: 25px;
    }

    .service-hero-v2__description,
    .service-hero-v2__advantages {
        max-width: 760px;
    }
}

@media (max-width: 600px) {
    .service-hero-v2__container {
        width: min(100% - 24px, 1180px);
        padding: 30px 0 34px;
    }

    .service-hero-v2__title {
        margin-bottom: 18px;
        font-size: 25px;
        line-height: 1.16;
    }

    .service-hero-v2__description {
        font-size: 16px;
    }

    .service-hero-v2__advantages {
        grid-template-columns: 1fr;
        gap: 11px;
        margin-bottom: 24px;
    }

    .service-hero-v2__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 16px;
    }

    .service-hero-v2__button {
        width: 100%;
        text-align: center;
    }

    .service-hero-v2__contact {
        align-items: center;
        text-align: center;
    }

    .service-hero-v2__note {
        text-align: center;
    }
}

/* Блок 2 — Кому подходит услуга (service-audience) */
.service-audience {
    --audience-text: #172a3a;
    --audience-muted: #566775;
    --audience-primary: #174d73;
    --audience-background: #ffffff;
    --audience-card-background: #f5f7f9;
    --audience-border: #e1e7eb;

    padding: 76px 0 82px;
    color: var(--audience-text);
    background: var(--audience-background);
}

.service-audience__container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.service-audience__heading {
    max-width: 800px;
    margin: 0 auto 38px;
    text-align: center;
}

.service-audience__title {
    margin: 0 0 14px;
    color: var(--audience-text);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
}

.service-audience__intro {
    margin: 0;
    color: var(--audience-muted);
    font-size: 18px;
    line-height: 1.6;
    text-align: left !important;
}

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

.service-audience__card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 100%;
    flex-direction: column;
    padding: 30px 24px 28px;
    border: 1px solid var(--audience-border);
    border-radius: 14px;
    background: var(--audience-card-background);
    box-shadow: 0 8px 24px rgba(23, 42, 58, 0.06);
    overflow: hidden;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.service-audience__card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--audience-primary);
}

.service-audience__card:hover {
    border-color: rgba(23, 77, 115, 0.32);
    box-shadow: 0 14px 32px rgba(23, 42, 58, 0.10);
    transform: translateY(-3px);
}

.service-audience__card-title {
    margin: 0 0 14px;
    color: var(--audience-text);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.service-audience__card-text {
    margin: 0;
    color: var(--audience-muted);
    font-size: 15px;
    line-height: 1.6;
    text-align: left !important;
}

@media (max-width: 1050px) {
    .service-audience {
        padding: 64px 0 70px;
    }

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

    .service-audience__card {
        padding: 28px 26px 26px;
    }
}

@media (max-width: 650px) {
    .service-audience {
        padding: 48px 0 52px;
    }

    .service-audience__container {
        width: min(100% - 24px, 1180px);
    }

    .service-audience__heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .service-audience__title {
        font-size: 25px;
    }

    .service-audience__intro {
        font-size: 16px;
    }

    .service-audience__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-audience__card {
        padding: 24px 20px 22px;
    }

    .service-audience__card-title {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .service-audience__card-text {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* Блок 3 — Что входит в услугу (service-scope) */
.service-scope {
    --scope-text: #172a3a;
    --scope-muted: #566775;
    --scope-primary: #174d73;
    --scope-background: #f5f7f9;
    --scope-card-background: #ffffff;
    --scope-border: #dfe6eb;

    padding: 76px 0 82px;
    color: var(--scope-text);
    background: var(--scope-background);
}

.service-scope__container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.service-scope__heading {
    max-width: 820px;
    margin: 0 auto 38px;
    text-align: center;
}

.service-scope__title {
    margin: 0 0 14px;
    color: var(--scope-text);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
}

.service-scope__intro {
    margin: 0;
    color: var(--scope-muted);
    font-size: 18px;
    line-height: 1.6;
    text-align: left !important;
}

.service-scope__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-scope__item {
    min-width: 0;
    min-height: 100%;
    padding: 28px 24px;
    border: 1px solid var(--scope-border);
    border-radius: 10px;
    background: var(--scope-card-background);
    box-shadow: 0 8px 22px rgba(23, 42, 58, 0.05);
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.service-scope__item:hover {
    border-color: rgba(23, 77, 115, 0.34);
    box-shadow: 0 13px 28px rgba(23, 42, 58, 0.09);
    transform: translateY(-2px);
}

.service-scope__item-title {
    margin: 0 0 12px;
    color: var(--scope-text);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.35;
}

.service-scope__item-text {
    margin: 0;
    color: var(--scope-muted);
    font-size: 15px;
    line-height: 1.6;
    text-align: left !important;
}

@media (max-width: 1050px) {
    .service-scope {
        padding: 64px 0 70px;
    }

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

@media (max-width: 650px) {
    .service-scope {
        padding: 48px 0 52px;
    }

    .service-scope__container {
        width: min(100% - 24px, 1180px);
    }

    .service-scope__heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .service-scope__title {
        font-size: 25px;
    }

    .service-scope__intro {
        font-size: 16px;
    }

    .service-scope__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .service-scope__item {
        padding: 22px 18px;
    }

    .service-scope__item-title {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .service-scope__item-text {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* Блок 6 — Этапы работы (service-steps) */
.service-steps {
    --steps-text: #172a3a;
    --steps-muted: #566775;
    --steps-primary: #174d73;
    --steps-background: #ffffff;
    --steps-line: #cad6de;

    padding: 8px 0 52px;
    color: var(--steps-text);
    background: var(--steps-background);
}

.service-steps__container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.service-steps__heading {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.service-steps__title {
    margin: 0 0 14px;
    color: var(--steps-text);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
}

.service-steps__intro {
    margin: 0;
    color: var(--steps-muted);
    font-size: 18px;
    line-height: 1.6;
    text-align: left !important;
}

.service-steps__list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-steps__list::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 29px;
    left: 8.33%;
    right: 8.33%;
    height: 2px;
    background: var(--steps-line);
}

.service-steps__item {
    position: relative;
    z-index: 1;
    min-width: 0;
    text-align: center;
}

.service-steps__number {
    display: flex;
    width: 60px;
    height: 60px;
    margin: 0 auto 22px;
    align-items: center;
    justify-content: center;
    border: 6px solid var(--steps-background);
    border-radius: 50%;
    color: #ffffff;
    background: var(--steps-primary);
    box-shadow: 0 4px 14px rgba(23, 42, 58, 0.13);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.service-steps__item-title {
    margin: 0 0 10px;
    color: var(--steps-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.service-steps__item-text {
    margin: 0;
    color: var(--steps-muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: center !important;
}

/* Ноутбук и планшет: два ряда по три этапа */
@media (max-width: 1199px) and (min-width: 651px) {
    .service-steps {
        padding: 64px 0 70px;
    }

    .service-steps__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 42px 28px;
    }

    .service-steps__list::before {
        display: none;
    }

    .service-steps__item {
        padding: 0 12px;
    }

    .service-steps__item::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 29px;
        left: 50%;
        width: calc(100% + 28px);
        height: 2px;
        background: var(--steps-line);
    }

    .service-steps__item:nth-child(3n)::before {
        display: none;
    }
}

/* Мобильная версия: вертикальная цепочка */
@media (max-width: 650px) {
    .service-steps {
        padding: 48px 0 52px;
    }

    .service-steps__container {
        width: min(100% - 24px, 1180px);
    }

    .service-steps__heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .service-steps__title {
        font-size: 25px;
    }

    .service-steps__intro {
        font-size: 16px;
    }

    .service-steps__list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .service-steps__list::before {
        display: block;
        top: 30px;
        right: auto;
        bottom: 30px;
        left: 29px;
        width: 2px;
        height: auto;
    }

    .service-steps__item {
        display: grid;
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 18px;
        padding: 0 0 30px;
        text-align: left;
    }

    .service-steps__item:last-child {
        padding-bottom: 0;
    }

    .service-steps__number {
        margin: 0;
    }

    .service-steps__content {
        padding-top: 5px;
    }

    .service-steps__item-title {
        margin-bottom: 8px;
        font-size: 18px;
    }

    .service-steps__item-text {
        font-size: 14px;
        line-height: 1.55;
    }
}

/* Блок 7 — Преимущества компании (company-benefits) */
        .company-benefits {
            --benefits-bg: #ffffff;
            --benefits-bg-deep: #ffffff;
            --benefits-text: #172a3a;
            --benefits-muted: #566775;
            --benefits-line: #dfe6eb;
            --benefits-accent: #174d73;

            padding: 56px 0 52px;
            color: var(--benefits-text);
            background: var(--benefits-bg);
            border-top: 1px solid var(--benefits-line);
            border-bottom: 1px solid var(--benefits-line);
        }

        .company-benefits__container {
            width: min(1180px, calc(100% - 32px));
            margin: 0 auto;
        }

        .company-benefits__main {
            display: grid;
            grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.35fr);
            gap: 74px;
            align-items: start;
        }

        .company-benefits__heading {
            position: sticky;
            top: 24px;
        }

        .company-benefits__title {
            margin: 0 0 20px;
            color: var(--benefits-text);
            font-size: 25px;
            font-weight: 700;
            line-height: 1.12;
        }

        .company-benefits__intro {
            max-width: 470px;
            margin: 0;
            color: var(--benefits-muted);
            font-size: 18px;
            line-height: 1.65;
        }

        .company-benefits__list {
            margin: 0;
            padding: 0;
            border-top: 1px solid var(--benefits-line);
            list-style: none !important;
            list-style-type: none !important;
            list-style-position: outside !important;
            list-style-image: none !important;
        }

        .company-benefits__item {
            display: grid;
            grid-template-columns: minmax(190px, 0.8fr) minmax(0, 1.2fr);
            gap: 20px 28px;
            padding: 22px 0;
            border-bottom: 1px solid var(--benefits-line);
            list-style: none !important;
            list-style-type: none !important;
            list-style-position: outside !important;
            list-style-image: none !important;
            text-align: left !important;
        }

        .company-benefits__item::marker {
            content: none !important;
        }

        .company-benefits__item::before {
            content: none !important;
            display: none !important;
        }

        .company-benefits__item-title {
            margin: 0;
            color: var(--benefits-text);
            font-size: 20px;
            font-weight: 700;
            line-height: 1.35;
            text-align: left !important;
        }

        .company-benefits__item-text {
            margin: 0;
            color: var(--benefits-muted);
            font-size: 15px;
            line-height: 1.6;
            text-align: left !important;
        }

        .company-benefits__stats {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            margin-top: 36px;
            background: #f5f7f9;
            border-top: 1px solid var(--benefits-line);
            border-bottom: 1px solid var(--benefits-line);
        }

        .company-benefits__stat {
            min-width: 0;
            padding: 25px 22px 24px;
            text-align: center;
        }

        .company-benefits__stat + .company-benefits__stat {
            border-left: 1px solid var(--benefits-line);
        }

        .company-benefits__stat-value {
            display: block;
            margin-bottom: 7px;
            color: var(--benefits-accent);
            font-size: clamp(28px, 3vw, 40px);
            font-weight: 700;
            line-height: 1;
        }

        .company-benefits__stat-label {
            display: block;
            color: var(--benefits-muted);
            font-size: 14px;
            line-height: 1.45;
        }

        @media (max-width: 900px) {
            .company-benefits {
                padding: 64px 0 66px;
            }

            .company-benefits__main {
                grid-template-columns: 1fr;
                gap: 38px;
            }

            .company-benefits__heading {
                position: static;
                max-width: 760px;
            }

            .company-benefits__intro {
                max-width: 720px;
            }

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

            .company-benefits__stat:nth-child(3) {
                border-left: 0;
                border-top: 1px solid var(--benefits-line);
            }

            .company-benefits__stat:nth-child(4) {
                border-top: 1px solid var(--benefits-line);
            }
        }

        @media (max-width: 650px) {
            .company-benefits {
                padding: 48px 0 52px;
            }

            .company-benefits__container {
                width: min(100% - 24px, 1180px);
            }

            .company-benefits__main {
                gap: 30px;
            }

            .company-benefits__title {
                font-size: 25px;
            }

            .company-benefits__intro {
                font-size: 16px;
            }

            .company-benefits__item {
                grid-template-columns: 1fr;
                gap: 9px;
                padding: 21px 0 22px;
            }

            .company-benefits__item-title {
                font-size: 18px;
            }

            .company-benefits__item-text {
                font-size: 14px;
                line-height: 1.58;
            }

            .company-benefits__stats {
                margin-top: 38px;
            }

            .company-benefits__stat {
                padding: 21px 12px 20px;
            }

            .company-benefits__stat-value {
                font-size: 28px;
            }

            .company-benefits__stat-label {
                font-size: 13px;
            }
        }
/* Блок 8 — FAQ (service-faq) */
.service-faq {
    --faq-text: #172a3a;
    --faq-muted: #566775;
    --faq-primary: #174d73;
    --faq-border: #e1e7eb;
    --faq-background: #f5f7f9;

    padding: 76px 0 82px;
    color: var(--faq-text);
    background: var(--faq-background);
}

.service-faq__container {
    width: min(900px, calc(100% - 32px));
    margin: 0 auto;
}

.service-faq__title {
    margin: 0 0 32px;
    color: var(--faq-text);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.service-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-faq__item {
    padding: 4px 24px;
    border: 1px solid var(--faq-border);
    border-radius: 12px;
    background: #ffffff;
}

.service-faq__question {
    position: relative;
    padding: 20px 36px 20px 0;
    color: var(--faq-text);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    list-style: none;
}

.service-faq__question::-webkit-details-marker {
    display: none;
}

.service-faq__question::after {
    content: "+";
    position: absolute;
    top: 16px;
    right: 0;
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--faq-primary);
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.2s ease;
}

.service-faq__item[open] .service-faq__question::after {
    transform: rotate(45deg);
}

.service-faq__answer {
    padding: 0 0 22px;
    color: var(--faq-muted);
    font-size: 15px;
    line-height: 1.65;
    text-align: left !important;
}

.service-faq__answer p {
    margin: 0;
    text-align: left !important;
}

/* Отступ между блоком "Что входит в услугу" и обычным текстом описания сразу после него */
.service-scope + p {
    margin-top: 40px !important;
}

@media (max-width: 650px) {
    .service-faq {
        padding: 48px 0 52px;
    }

    .service-faq__container {
        width: min(100% - 24px, 900px);
    }

    .service-faq__title {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .service-faq__question {
        font-size: 16px;
        padding: 16px 32px 16px 0;
    }
}

/* End */
/* /bitrix/templates/r52/components/bitrix/catalog.element/services/style.css?178646193723585 */
