

/* Start:/bitrix/templates/lcon_clean/css/pages/buyer.css?178749853616916*/
/*
 * Страница «Покупателю».
 * Секции, которых нет на лендинге: этапы-таймлайн, доставка/монтаж,
 * схемы финансирования, гарантия, документы, FAQ.
 * Хедер, hero-обёртка, CTA и футер переиспользуются из общих стилей.
 */

/* region Заголовок секции по центру с подписью */
.section__head--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.section__sub {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.36px;
    color: var(--color-text-secondary);
}

/* endregion */

/* region Этапы сотрудничества (таймлайн) */
.coop {
    max-width: 904px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.coop__row {
    display: grid;
    grid-template-columns: 360px 18px 1fr;
    grid-template-areas: "title conn text";
    column-gap: 32px;
    min-height: 84px;
}

.coop__title {
    grid-area: title;
    padding-top: 6px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    text-align: right;
    color: var(--color-text);
}

.coop__conn {
    grid-area: conn;
    position: relative;
    display: flex;
    justify-content: center;
}

.coop__conn::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1.5px;
    transform: translateX(-50%);
    background: var(--color-stroke);
}

.coop__row:first-child .coop__conn::before {
    top: 14px;
}

.coop__row:last-child .coop__conn::before {
    bottom: auto;
    height: 14px;
}

.coop__dot {
    position: relative;
    z-index: 1;
    margin-top: 7px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--color-bg);
    border: 1px solid var(--color-stroke);
}

.coop__dot::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--color-accent);
}

.coop__text {
    grid-area: text;
    padding-top: 8px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.16px;
    color: rgba(51, 51, 51, .8);
}

/* endregion */

/* region Доставка / Монтаж */
.delivery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: stretch;
}

.delivery__card {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 48px;
    min-height: 440px;
    padding: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--color-white);
}

/* Фон-фото — реальный <img> вместо background-image (правки №2/№3). */
.delivery__card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Затемняющий градиент поверх фото, но под текстом. */
.delivery__card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .2) 100%);
}

.delivery__card--tall {
    min-height: 640px;
}
.delivery__title {
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--color-white);
}

.delivery__text {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0.4px;
    color: var(--color-white);
}

.delivery__right {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: 16px;
}

.after {
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 24px;
    padding: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    color: var(--color-white);
    background: linear-gradient(83.94deg, #00334A 22.04%, rgba(0, 62, 87, 0.8) 85.83%);
}

.after__wm {
    position: absolute;
    left: 3px;
    bottom: 0;
    z-index: -1;
    width: 96%;
    opacity: .12;
    filter: brightness(0) invert(1);
}

.after__title {
    font-size: 32px;
    font-weight: 600;
    color: var(--color-white);
}

.after__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.4px;
}

.after__list li {
    position: relative;
    padding-left: 30px;
}

.after__list li::before {
    content: "";
    position: absolute;
    left: 9px;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-white);
}

/* endregion */

/* region Схемы финансирования */
.finance {
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.finance__tabs {
    display: flex;
    padding-top: 8px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.finance__tab {
    flex: 1;
    padding: 16px 24px;
    font-family: inherit;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.36px;
    color: var(--color-text-secondary);
    text-align: center;
    white-space: nowrap;
    background: none;
    border: none;
    border-bottom: 1px solid var(--color-stroke);
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease;
}

.finance__tab:hover {
    color: var(--color-text);
}

.finance__tab.is-active {
    color: var(--color-text);
    font-weight: 600;
    border-bottom: 2px solid var(--color-accent);
}

.finance__body {
    display: none;
    grid-template-columns: 1fr 835px;
    gap: 48px;
    align-items: center;
    width: 100%;
    min-height: 700px;
    padding: 48px 32px 32px;
}

.finance__body.is-active {
    display: grid;
}

.finance__steps {
    display: flex;
    flex-direction: column;
}

.finance__step {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 16px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: background .15s ease;
}

.finance__step:hover {
    background: var(--color-bg);
}

.finance__step--active,
.finance__step--active:hover {
    background: rgba(221, 2, 0, .05);
}

.finance__n {
    flex: none;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-bg);
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.32px;
}

.finance__step--active .finance__n {
    background: var(--color-accent);
    color: var(--color-white);
}

.finance__step-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.finance__step p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0.4px;
    color: var(--color-text);
}

.finance__step--active p {
    font-weight: 600;
}

.finance__note {
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: 0.32px;
    color: var(--color-text-secondary);
}

.finance__scheme {
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance__scheme svg {
    width: 100%;
    max-width: 460px;
    height: auto;
}

/* region Схема (вёрстка вместо картинки) */
.scheme-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.scheme {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.scheme svg {
    width: inherit;
    height: auto;
    min-height: 135px;
}

.scheme__arrow .coloring {
    color: #cbcbcb;
    transition: color .15s ease;
}

.scheme__arrow--active .coloring {
    color: var(--color-accent);
}

.scheme__num-bg {
    fill: #cbcbcb;
    stroke: var(--color-white);
    stroke-width: 3px;
    transition: fill .15s ease;
}

.scheme__num-text {
    fill: var(--color-white);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    text-anchor: middle;
    dominant-baseline: central;
}

.scheme__arrow--active .scheme__arrow-line {
    stroke: var(--color-accent);
}

.scheme__arrow--active .scheme__arrow-head {
    fill: var(--color-accent);
}

.scheme__arrow--active .scheme__num-bg {
    fill: var(--color-accent);
    stroke: var(--color-white);
}

/* endregion */
/* endregion */

/* region Гарантия */
.warranty {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 1fr 471px;
    gap: 88px;
    align-items: end;
    padding: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-dark);
    color: var(--color-white);
}

.warranty__wm {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    width: 624px;
    max-width: 60%;
    opacity: .06;
    filter: brightness(0) invert(1);
}

.warranty__main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.warranty__title {
    font-size: clamp(28px, 3.4vw, 48px);
    font-weight: 600;
    line-height: 1.05;
    color: var(--color-white);
}

.warranty__desc {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, .75);
}

.warranty__side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.warranty__side-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-white);
}

.warranty__incl {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.36px;
    color: rgba(255, 255, 255, .75);
}

.warranty__incl li {
    position: relative;
    padding-left: 27px;
}

.warranty__incl li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 9px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .75);
}

/* endregion */

/* region Документы */
.documents__head {
    display: flex;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
}

.documents__head .section__title {
    flex: 1;
}

.documents__nav {
    display: flex;
    gap: 8px;
}

.documents__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    background: var(--color-white);
    border: 1px solid var(--color-stroke);
    color: var(--color-text);
    cursor: pointer;
    transition: background .15s ease, opacity .15s ease;
}

.documents__nav-btn:hover {
    background: var(--color-bg);
}

.documents__nav-btn.swiper-button-disabled {
    opacity: .4;
    pointer-events: none;
}

.documents__slider {
    overflow: hidden;
}

.document {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.document__img {
    width: 100%;
    aspect-ratio: 205 / 292;
    border: 1px solid var(--color-stroke);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.document__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.document__name {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    color: var(--color-text);
}

/* endregion */

/* region FAQ */
.faq {
    max-width: 1000px;
    margin: 0 auto;
}

.faq__item {
    padding: 16px 0;
    border-bottom: 1px solid var(--color-stroke);
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__q {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    color: var(--color-text);
}

.faq__q > span:first-child {
    flex: 1;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.15;
}

.faq__toggle {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    color: var(--color-text);
}

.faq__toggle .svg-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.faq__ic--minus {
    display: none !important;
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq__a p {
    padding-top: 16px;
    max-width: 920px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.16px;
    color: var(--color-text);
}

.faq__item.open .faq__q span {
    color: var(--color-accent);
}

.faq__item.open .faq__ic--plus {
    display: none !important;
}

.faq__item.open .faq__ic--minus {
    display: block !important;
}

.faq__item.open .faq__a {
    max-height: 500px;
}

/* endregion */

/* ===================================================================
   Адаптив
   =================================================================== */
@media (max-width: 1400px) {
    .finance__body {
        grid-template-columns: 1fr 560px;
    }
}

@media (max-width: 1200px) {
    .finance__tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .finance__tabs::-webkit-scrollbar {
        display: none;
    }

    .finance__tab {
        flex: none;
        min-width: 260px;
    }

    .finance__body {
        grid-template-columns: 1fr;
        gap: 32px;
        min-height: 0;
    }

    .warranty {
        grid-template-columns: 1fr;
        gap: 40px;
        align-items: start;
    }
}

@media (max-width: 991px) {
    .coop__title {
        font-size: 20px;
    }

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

    .delivery__card--tall {
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .section__sub {
        font-size: 14px;
    }

    /* Таймлайн: линия слева, заголовок и текст в столбик */
    .coop__row {
        grid-template-columns: 18px 1fr;
        grid-template-areas:
                "conn title"
                "conn text";
        column-gap: 16px;
        row-gap: 4px;
        min-height: 0;
    }

    .coop__title {
        text-align: left;
        padding-top: 2px;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.22;
    }

    .coop__text {
        font-size: 14px;
        padding-bottom: 16px;
    }

    .coop__conn::before {
        top: 0;
    }

    .coop__row:first-child .coop__conn::before {
        top: 8px;
    }

    .coop__dot {
        margin-top: 2px;
    }

    .delivery__card {
        min-height: 320px;
        padding: 24px;
        gap: 24px;
        border-radius: var(--radius-md);
    }

    .delivery__text {
        font-size: 16px;
    }

    .after {
        padding: 24px;
        border-radius: var(--radius-md);
    }

    .after__title {
        font-size: 24px;
    }

    .after__list {
        font-size: 16px;
    }

    .finance {
        border-radius: var(--radius-md);
    }

    .finance__tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .finance__tabs::-webkit-scrollbar {
        display: none;
    }

    .finance__tab {
        flex: none;
        min-width: 0;
        padding: 10px 12px;
        font-size: 13px;
        letter-spacing: 0.2px;
    }

    .finance__panels {
        touch-action: pan-y;
    }

    .finance__body {
        padding: 24px 16px;
        gap: 24px;
    }

    .finance__scheme {
        order: -1;
    }

    .finance__step {
        gap: 12px;
        padding: 10px 12px;
    }

    .finance__n {
        width: 26px;
        height: 26px;
        font-size: 14px;
    }

    .finance__step-text {
        padding-top: 2px;
    }

    .finance__step p {
        font-size: 13px;
    }

    .scheme__icon {
        width: 60px;
        height: 60px;
        border-width: 1.5px;
    }

    .scheme__icon svg {
        width: 34px;
        height: 34px;
    }

    .scheme__badge {
        width: 18px;
        height: 18px;
    }

    .scheme__label {
        top: 38px;
        width: 110px;
        gap: 1px;
    }

    .scheme__name {
        font-size: 11px;
    }

    .scheme__role {
        font-size: 9px;
    }

    .warranty {
        padding: 28px;
        border-radius: var(--radius-md);
    }

    .warranty__main {
        gap: 20px;
    }

    .warranty__desc,
    .warranty__incl {
        font-size: 16px;
    }

    .warranty__side-title {
        font-size: 20px;
    }

    .documents__head {
        gap: 16px;
        margin-bottom: 24px;
    }

    .documents__nav {
        display: none;
    }

    .documents__slider {
        margin: 0 -16px;
        padding: 0 16px;
    }

    .faq__q > span:first-child {
        font-size: 16px;
    }

    .faq__toggle {
        width: 36px;
        height: 36px;
    }
}

/* End */
/* /bitrix/templates/lcon_clean/css/pages/buyer.css?178749853616916 */
