

/* Start:/bitrix/templates/new.ilsn/components/bitrix/news.list/how_we_work/style.css?17817019666610*/

.work-process {
    --accent: #ff497c;
    --dark: #061a3a;
    --text: #52627a;
    --border: #dbe8f6;
    --shadow: 0 18px 20px rgba(18, 48, 87, .08);
    --gap: 20px;

    position: relative;
    padding: 35px 0;
    padding-bottom: 70px;
    overflow: hidden;
}

.work-process,
.work-process * {
    box-sizing: border-box;
}

.work-process::before,
.work-process::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background-image: radial-gradient(#c7daf1 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: .7;
    pointer-events: none;
	z-index: 0;
}

.work-process::before {
    left: 7%;
    top: 0;
}

.work-process::after {
    right: 8%;
    bottom: 8px;
}

.work-process__container {
    padding: 0;
}

/* ===== цифры + стрелки ===== */

.work-process__numbers {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
    margin-bottom: -16px;
}

.work-process__number-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.work-process__number {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--border);
    box-shadow: 0 12px 28px rgba(17, 43, 78, .08);
    color: var(--accent);
    font-size: 30px;
    line-height: 1;
    font-weight: 800;
}

/* пунктир между кружками */
.work-process__number-wrap:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% + 27px);
    width: calc(100% + var(--gap) - 81px);
    border-top: 3px dashed var(--accent);
    transform: translateY(-50%);
    z-index: 1;
}

/* стрелка справа у каждого пунктира */
.work-process__number-wrap:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    left: calc(150% + var(--gap) - 54px);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 12px solid var(--accent);
    z-index: 2;
}

/* ===== карточки ===== */

.work-process__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap);
}

.work-process-card {
	display: flex;
	flex-direction: column;
    position: relative;
    min-width: 0;
    min-height: 340px;
    padding: 54px 8px 34px;
    border-radius: 22px;
    background: #fff;
    border: 2px solid var(--border);
    /* box-shadow: var(--shadow); */
    text-align: center;
	z-index: 1;
}

.work-process-card__mobile-number {
    display: none;
}

.work-process-card__icon {
    display: block;
    width: 145px;
    height: 145px;
    object-fit: contain;
    margin: 0 auto 20px;
}

.work-process-card__title {
    margin: 0 0 auto;
    color: var(--dark);
    /* font-size: clamp(22px, 1.8vw, 28px); */
    font-size: clamp(12px, 1vw, 28px);
    line-height: 1.18;
    font-weight: 600;
    overflow-wrap: break-word;
}

.work-process-card__text {
    color: var(--text);
    /* font-size: clamp(16px, 1.2vw, 20px); */
    font-size: clamp(12px, 0.5vw, 20px);
	font-weight: 500;
    line-height: 1.35;
}

.work-process-card__bar {
    position: absolute;
    left: 50%;
    bottom: 24px;
    width: 70px;
    height: 4px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateX(-50%);
}

/* ===== адаптив ===== */

/* Когда 4 карточки становятся слишком узкими — делаем 2x2 */
@media (max-width: 1050px) {
    .work-process {
        padding: 35px 0;
        padding-bottom: 70px;
    }

    .work-process__numbers {
        display: none;
    }

    .work-process__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .work-process-card {
        min-height: 320px;
        padding: 28px 22px 34px;
    }

    .work-process-card__mobile-number {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 58px;
        height: 58px;
        margin: 0 auto 14px;
        border-radius: 50%;
        background: #fff;
        border: 2px solid var(--border);
        box-shadow: 0 10px 22px rgba(17, 43, 78, .07);
        color: var(--accent);
        font-size: 22px;
        line-height: 1;
        font-weight: 800;
    }

    .work-process-card__icon {
        width: 100px;
        height: 100px;
        margin-bottom: 16px;
    }
}

/* Мобилка — вертикальный список */
@media (max-width: 620px) {
    .work-process::before,
    .work-process::after {
        display: none;
    }

    .work-process__container {
        padding: 0 0px;
    }

    .work-process__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .work-process-card {
        display: grid;
        grid-template-columns: 58px 82px 1fr;
        grid-template-areas:
            "num icon title"
            "num icon text";
        align-items: center;
        column-gap: 14px;
        min-height: auto;
        padding: 18px;
        text-align: left;
        border-radius: 18px;
    }

    .work-process-card__mobile-number {
        grid-area: num;
        margin: 0;
    }

    .work-process-card__icon {
        grid-area: icon;
        width: 82px;
        height: 82px;
        margin: 0;
    }

    .work-process-card__title {
        grid-area: title;
        margin: 0 0 6px;
        font-size: 17px;
        line-height: 1.15;
    }

    .work-process-card__text {
        grid-area: text;
        font-size: 15px;
        line-height: 1.3;
    }

    .work-process-card__bar {
        display: none;
    }
}

@media (max-width: 420px) {
    .work-process-card {
        grid-template-columns: 50px 64px 1fr;
        column-gap: 12px;
        padding: 16px;
    }

    .work-process-card__mobile-number {
        width: 50px;
        height: 50px;
        font-size: 19px;
    }

    .work-process-card__icon {
        width: 64px;
        height: 64px;
    }

    .work-process-card__title {
        font-size: 14px;
    }

    .work-process-card__text {
        font-size: 12px;
    }
}

/* End */


/* Start:/bitrix/templates/new.ilsn/components/bitrix/news.list/our_principles/style.css?1781698635272*/
.audit-block__title {
    text-align: center;
    margin-bottom: 35px;
}
.post ul {
    margin-bottom: initial !important;
    margin-top: initial !important;
}
@media (max-width: 767px) {
    .audit-list__item {
        align-items: center !important;
    }
}
/* End */


/* Start:/bitrix/templates/new.ilsn/components/bitrix/news.list/zhkh/style.css?17817015266870*/
.jkh-honey {
    --accent: #ff497c;
    --dark: #061a3a;
    --border: #dbe8f6;
    --soft: #f4f8ff;
    --hex-w: 196px;
    --hex-gap: 100px;
    --hex-shape: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);

    position: relative;
    padding: 70px 0;
    overflow: hidden;
}

.jkh-honey,
.jkh-honey * {
    box-sizing: border-box;
}

.jkh-honey__container {
    padding: 0;
}

.jkh-honey__row {
    display: flex;
    justify-content: center;
    gap: var(--hex-gap);
}

.jkh-honey__row--top {
    margin-bottom: -36px;
}

.jkh-honey__row--bottom {
    margin-top: -36px;
}

.jkh-hex {
    position: relative;
    width: var(--hex-w);
    aspect-ratio: 1.12 / 1;
    /* filter: drop-shadow(0 16px 30px rgba(18, 48, 87, .09)); */
    transition: transform .25s ease, filter .25s ease;
}

.jkh-hex::before,
.jkh-hex::after {
    content: "";
    position: absolute;
    clip-path: var(--hex-shape);
}

.jkh-hex::before {
    inset: 0;
    background: var(--border);
}

.jkh-hex::after {
    inset: 2px;
    background: #fff;
}

.jkh-hex--hub::after {
    background: linear-gradient(180deg, #fff 0%, #f7faff 100%);
}

/* .jkh-hex:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 20px 38px rgba(18, 48, 87, .14));
}

.jkh-hex:hover::before {
    background: var(--accent);
} */

.jkh-hex__content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.jkh-hex__icon {
    display: block;
    width: 82px;
    height: 82px;
    object-fit: contain;
    margin-bottom: 10px;
}

.jkh-hex__icon--hub {
    width: 108px;
    height: 108px;
    margin-bottom: 6px;
}

.jkh-hex__title {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.15;
    font-weight: 500;
    max-width: 80%;
}
.jkh-honey__title {
    margin-bottom: 35px;
    color: #333333;
    text-align: center;
}
.jkh-hex--hub .jkh-hex__title {
    color: var(--accent);
    font-weight: 600;
    font-size: 24px;
}

/* ===== заголовок секции ===== */

.jkh-honey__heading {
    margin: 0 0 32px;
    text-align: center;
    color: var(--dark);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    line-height: 1.15;
}

/* ===== grid-обёртка для SVG-слоя ===== */

.jkh-honey__grid {
    position: relative;
}

/* ===== SVG-оверлей с пунктирными линиями ===== */

.jkh-honey__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
    z-index: 0;
}

.jkh-honey__row {
    position: relative;
    z-index: 1;
}

.jkh-honey__line {
    stroke: var(--accent);
    stroke-width: 2.5;
    stroke-dasharray: 10 7;
    stroke-opacity: 0.42;
    fill: none;
}

.jkh-honey__dot {
    fill: var(--accent);
    opacity: 0.72;
}

/* Пульс вокруг хаба */
.jkh-honey__pulse {
    transform-box: fill-box;
    transform-origin: center;
    animation: jkh-pulse 3s ease-in-out infinite;
}

@keyframes jkh-pulse {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.7); opacity: 0; }
}

/* ===== декоративные точечные паттерны по бокам ===== */

.jkh-honey::before,
.jkh-honey::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#c7daf1 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: .6;
    pointer-events: none;
    z-index: 0;
}
.jkh-honey::before { left: 4%; }
.jkh-honey::after  { right: 4%; }

/* =====================================================
   < 1200px: карточная сетка 2 в ряд
   (соты + SVG только при ≥ 1200px)
   ===================================================== */

@media (max-width: 1199px) {

    /* Скрываем SVG и декор */
    .jkh-honey__lines  { display: none; }
    .jkh-honey::before,
    .jkh-honey::after  { display: none; }

    /* Отменяем honeycomb-перекрытие рядов */
    .jkh-honey__row--top    { margin-bottom: 0; }
    .jkh-honey__row--bottom { margin-top: 0; }

    /* Плоский flex-wrap */
    .jkh-honey__grid {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    /* Ряды прозрачны для flex */
    .jkh-honey__row { display: contents; }

    /* Хаб — первым, на всю ширину */
    .jkh-hex--hub {
        order: -1;
        width: 100%;
    }

    /* Соты-спутники — по 2 в строку */
    .jkh-hex:not(.jkh-hex--hub) {
        width: calc(50% - 6px);
    }

    /* Снимаем hex clip-path → скруглённые карточки */
    .jkh-hex {
        aspect-ratio: unset;
        /* filter: drop-shadow(0 4px 14px rgba(18, 48, 87, .08)); */
    }
    .jkh-hex::before { clip-path: none; border-radius: 18px; }
    .jkh-hex::after  { clip-path: none; border-radius: 16px; }

    .jkh-hex__content { padding: 20px 16px; height: auto; }
    .jkh-hex__icon    { width: 58px; height: 58px; margin-bottom: 10px; }
    .jkh-hex__title   { font-size: 15px; line-height: 1.25; font-weight: 600; max-width: 100%;}

    /* Хаб — иконка + название в одну строку */
    .jkh-hex--hub .jkh-hex__icon--hub {
        width: 70px;
        height: 70px;
        margin-right: 14px;
        margin-bottom: 0;
    }
    .jkh-hex--hub .jkh-hex__content {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 20px 28px;
    }
    .jkh-hex--hub .jkh-hex__title { font-size: 22px; }

    .jkh-honey__heading {
        font-size: clamp(22px, 3.5vw, 32px);
        margin-bottom: 24px;
    }
}

/* ===== мобилка ≤ 480px: карточки чуть компактнее ===== */

@media (max-width: 480px) {
    .jkh-honey__container { padding: 0 0px; }
    .jkh-honey__grid      { gap: 10px; }

    .jkh-hex:not(.jkh-hex--hub) { width: calc(50% - 5px); }

    .jkh-hex__content  { padding: 14px 10px; }
    .jkh-hex__icon     { width: 44px; height: 44px; margin-bottom: 8px; }
    .jkh-hex__title    { font-size: 12px; }

    .jkh-hex--hub .jkh-hex__icon--hub {
        width: 54px;
        height: 54px;
        margin-right: 10px;
    }
    .jkh-hex--hub .jkh-hex__content { padding: 14px 18px; }
    .jkh-hex--hub .jkh-hex__title   { font-size: 18px; }
}
/* End */
/* /bitrix/templates/new.ilsn/components/bitrix/news.list/how_we_work/style.css?17817019666610 */
/* /bitrix/templates/new.ilsn/components/bitrix/news.list/our_principles/style.css?1781698635272 */
/* /bitrix/templates/new.ilsn/components/bitrix/news.list/zhkh/style.css?17817015266870 */
