.prive-hero {
    position: relative;
    width: 100%;
    min-height: 780px;
    overflow: hidden;
    color: #fff;
    display: flex;
}

.prive-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.05) brightness(.85);
}

.prive-hero .prive-hero-text {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    padding: 80px;
    position: relative;
    z-index: 2;
    color: white;
    box-sizing: border-box;
}

.prive-title {
    font-size: 96px;
    font-weight: 600;
}

.prive-subtitle {
    font-size: 32px;
    font-weight: 400;
}

.prive-intro {
    margin-top: auto;
}

.prive-intro p {
    font-size: 24px;
    font-weight: 300;
    text-align: end;
    margin: 0;
}


.prive-hero-blackbar {
    background: #000000;
    color: #fff;
    /* width: 100%; */
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    margin-bottom: 60px;
}

.prive-hero-blackbar .prive-note {
    /* width: 100%; */
    padding: 30px 40px;
    max-width: unset;
    box-sizing: border-box;
    margin: 0;
}

.prive-hero-blackbar .prive-note p {
    text-align: left;
    font-size: 16px;
    font-weight: 200;
    color: white;
}



.prive-lab {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: "Jost", sans-serif;
    color: #111;
}


.prive-note-container {
    display: flex;
    justify-content: flex-end;
}

.left-side {
    justify-content: flex-start;
}

.prive-note {
    max-width: 70%;
    font-size: 18px;
    color: #000000;
    margin-bottom: 60px;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

.prive-steps-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.prive-steps-intro {
    padding-left: 12px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 70%;
}







/* === PRIVE Accordion === */
.prive-accordion {
    max-width: 1000px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.acc {
    margin: 18px 0;
}


.acc-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 36px;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .02em;
    font-weight: 400;
    font-size: 24px;
    font-family: "Jost", sans-serif;
    border: none;
    cursor: pointer;
}

.acc-title {
    pointer-events: none;
}

/* Шеврон (V), при открытии разворачивается вверх */
.acc-icon {
    position: relative;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    transition: transform .25s ease;
}

.acc-icon::before,
.acc-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    background: #fff;
    transform-origin: center;
}

/* рисуем "V" */
.acc-icon::before {
    transform: translate(-80%, -20%) rotate(45deg);
}

.acc-icon::after {
    transform: translate(-20%, -20%) rotate(-45deg);
}

/* при открытии шеврон переворачивается на "∧" */
.acc.open .acc-icon {
    transform: rotate(180deg);
}


/* Панель */
.acc-panel {
    background: #ffffff;
    color: #000000;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease, opacity .25s ease;
    padding: 0 22px;
    opacity: 0;
}

.acc.open .acc-panel {
    padding: 18px 22px 22px;
    max-height: 400px;
    opacity: 1;
}

.request {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.acc .request {
    padding: 0 22px;
    max-height: 0px;
}

/* закрыта */
.acc.open .request {
    padding: 18px 22px 22px;
    max-height: 300px !important;
}




.acc-panel p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
}

/* Разделитель */
.prive-sep {
    height: 1px;
    background: #1a1a1a;
    opacity: .35;
    margin: 48px 0;
}

/* Форма заявки */
.prive-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 400px;
    padding: 18px 22px 22px;
    justify-content: center;
    align-items: center;
}

.prive-form label {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    font-size: 16px;
    color: #000000;
}

.prive-form input {
    height: 32px;
    width: 300px;
    border: 1px solid #cfcfcf;
    outline: none;
    padding: 0 10px;
    background: #fff;
    font-family: inherit;
    font-size: 16px;
    transition: border-color .2s ease;
}

.prive-form input:focus {
    border-color: #000;
}

.prive-submit {
    font-family: "Jost", sans-serif;
    margin-top: 6px;
    width: 160px;
    height: 40px;
    border: none;
    background: #000;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: .02em;
}

.prive-submit:hover {
    opacity: .9;
}

/* Адаптив */
@media (max-width:767px) {

    .prive-hero {
        min-height: 500px;
    }

    .prive-hero .prive-hero-text {
        padding: 40px 20px;
    }

    .prive-title {
        font-size: 36px;
    }

    .prive-subtitle {
        font-size: 24px;
        font-weight: 400;
    }

    .prive-intro p {
        font-size: 14px;
    }

    .prive-hero-blackbar .prive-note {
        margin: 0;
        padding: 30px 20px;
    }

    .prive-hero-blackbar .prive-note p {
        text-align: left;
    }

    .prive-note {
        max-width: unset;
        font-size: 16px;
    }

    .prive-steps-intro {
        font-size: 16px;
    }

    .acc-head {
        padding: 14px 14px;
        font-size: 15px;
    }

    .acc-panel {
        padding: 0 14px;
    }

    .acc-panel p {
        font-size: 16px;
    }

    .acc.open .acc-panel {
        padding: 14px;
    }

    .prive-form {
        max-width: 100%;
        width: 100%;
    }

    .prive-form label {
        width: 100%;
    }

    .prive-form input {
        border-radius: 0px;
        width: 100%;
        box-sizing: border-box;
    }



}



@media (min-width: 768px) and (max-width: 1350px) {

    .prive-hero .prive-hero-text {
        padding: 40px;
    }

    .prive-title {
        font-size: 64px;
    }

    .prive-form input {
        border-radius: 0px;
    }


}