* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #f3f0e8;
}

/* ===== HERO SECTION ===== */

.hero {
    padding: 24px 0;
}

.hero__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 50px 40px 0 100px;

    display: grid;

    /* 2 колонки: текст + изображение */
    grid-template-columns: 1fr 1.3fr;

    /* раскладка по сетке */
    grid-template-areas:
        "content image"
        "bottom  image";

    column-gap: 60px;
    row-gap: 40px;

    align-items: center;
}

/* ===== LEFT CONTENT ===== */

.hero__content {
    font-family: "AV Fontimer-SemiBold", sans-serif;
    letter-spacing: 0.02em;

    grid-area: content;
    max-width: 600px;
}

.hero__title {
    font-size: 70px;
    line-height: 1.1;
    color: #202020;
    margin-bottom: 40px;
}

.hero__title span {
    color: #138a36;
}

.hero__subtitle {
    color: #138a36;
    font-size: 30px;
    font-weight: 500;
}

/* ===== IMAGE ===== */

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.hero__image {
    position: relative;
    grid-area: image;
    max-width: 1920px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.hero__image .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;

    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero__image .slide.is-active {
    opacity: 1;
}

/* ===== BOTTOM CONTROLS ===== */

.hero__bottom {
    grid-area: bottom;

    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-top: 80px;
}

.hero__controls {
    display: flex;
    gap: 12px;
}

.hero__btn {
    width: 54px;
    height: 54px;

    border: 1px solid #cfcfcf;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;

    font-size: 28px;
    transition: 0.3s;
}

.hero__btn:hover {
    background-color: #138a36;
    color: white;
    border-color: #138a36;
}

.hero__counter {
    color: #666;
    font-size: 25px;
}

/* ===== ANIMATION ===== */

.fade-in-section {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== DESKTOP COMPACT ===== */

@media (max-width: 1600px) {

    /* ---------- HERO ---------- */
    .hero__container {
        padding: 40px 32px 0 60px;
        column-gap: 40px;
        row-gap: 30px;
    }

    .hero__title {
        font-size: 62px;
        margin-bottom: 30px;
    }

    .hero__subtitle {
        font-size: 26px;
    }

    .hero__bottom {
        margin-top: 50px;
    }
}

/* ===== TABLET ===== */

@media (max-width: 1240px) {

    .hero__container {
        grid-template-columns: 1fr;

        grid-template-areas:
            "content"
            "image"
            "bottom";

        row-gap: 30px;
        padding: 16px 30px 0 16px;
    }

    .hero__content {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
    }

    .hero__image {
        max-width: 100%;
    }

    .hero__bottom {
        margin-top: 0;
    }

    .hero__title {
        font-size: 60px;
    }

    .hero__subtitle {
        font-size: 24px;
    }
}

/* ===== MOBILE ===== */

@media (max-width: 480px) {

    .hero__container {
        /*padding: 0 16px;*/
        row-gap: 20px;
    }

    .hero__title {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero__subtitle {
        font-size: 24px;
    }

    .hero__btn {
        width: 42px;
        height: 42px;
        font-size: 22px;
    }

    .hero__counter {
        font-size: 14px;
    }

    .hero__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== ABOUT ===== */

.about {
    padding: 80px 0;
}

.about__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 700px 1fr;
    gap: 150px;
    align-items: start;
}

.about__image {
    border-radius: 16px;
    overflow: hidden;
}

.about__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about__content {
    display: flex;
    flex-direction: column;
    align-content: center;
    gap: 40px;
}

.about__title {
    font-family: "AV Fontimer-SemiBold", sans-serif;
    margin-top: 60px;
    font-size: 200px;
    line-height: 1;
    /*font-weight: 700;*/
    margin-bottom: 24px;
}

.about__description {
    font-family: "Manrope-Medium", sans-serif;
    max-width: 900px;
    font-size: 36px;
    line-height: 1.4;
    color: #333;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    min-height: 180px;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.stat-card__label {
    font-family: "Manrope-Regular", sans-serif;
    font-size: 24px;
    color: rgba(0, 0, 0, .7);
}

.white-text {
    color: white;
}

.stat-card__value {
    font-family: "AV Fontimer-SemiBold", sans-serif;
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    text-align: right;
}

.stat-card--green {
    background: #068b19;
    color: #ffffff8a;
}

.stat-card--light-green {
    position: relative;
    background: #a8d6a6;
}

.stat-card--beige {
    background: #b8a38e;
}

.stat-card--brown {
    background: #64351f;
    color: #ffffff8a;
}

.stat-card__button {
    position: absolute;
    left: 20px;
    bottom: 20px;
    font-size: 20px;

    margin-top: auto;
    width: fit-content;
    border: none;
    border-radius: 999px;
    padding: 20px 25px;
    background: #068b19;
    color: #fff;
    cursor: pointer;

    /* Анимации */
    transition: all 0.3s ease;
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(6, 139, 25, 0.3);
}

/* Анимация при наведении */
.stat-card__button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(6, 139, 25, 0.5);
    background: #07a11e;
}

/* ADAPTATION */

/* ===== DESKTOP COMPACT ===== */

@media (max-width: 1600px) {

    /* ---------- ABOUT ---------- */

    .about{
        padding:60px 0;
    }

    .about__container{
        grid-template-columns:600px 1fr;
        gap:90px;
        padding:0 32px;
    }

    .about__title{
        font-size:160px;
        margin-top:40px;
        color: #2B2926;
    }

    .about__description{
        font-size:30px;

    }

    .stat-card{
        min-height:160px;
    }

    .stat-card__value{
        font-size:90px;
    }
    stat-card__value_black{
    color: #2B2926;
    }
}

/* TABLET */

@media (max-width: 1240px) {

    .about__container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "image"
            "stats";
        gap: 30px;
        padding: 0 16px;
    }

    .about__content {
        display: contents;
    }

    .about__text {
        grid-area: text;
    }

    .about__title {
        margin-top: auto;
        font-size: 110px;
        margin-bottom: 20px;
    }

    .about__image {
        grid-area: image;
        width: 70%;
    }

    .about__image img {
        height: 100%;
    }

    .about__description {
        font-size: 24px;
        max-width: 100%;
    }

    .about__stats {
        grid-area: stats;
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card__value {
        font-size: 70px;
    }

    .stat-card__button {
        font-size: 18px;
        padding: 12px 20px;
    }

    .stat-card__label {
        font-size: 18px;
    }

    .stat-card {
        min-height: 160px;
    }
}

/* MOBILE */

@media (max-width: 480px) {

    .about {
        padding: 50px 0;
    }

    .about__container {
        /*padding: 0 16px;*/
        gap: 25px;
    }

    .about__title {
        font-size: 60px;
    }

    .about__description {
        font-size: 24px;
    }

    .about__stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 140px;
        padding: 16px;
    }

    .stat-card__value {
        font-size: 70px;
    }

    .stat-card__label {
        font-size: 18px;
    }
}

/* ===== DIRECTOR ===== */

.director {
    padding: 80px 0;
}

.director__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0;

    position: relative;
    background-color: black;
}

/* ===== IMAGE ===== */

.director__image-wrapper {
    width: 100%;
    height: 1000px;
    background-color: black;
    overflow: hidden;
    position: relative;
}

.director__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 100%;
    display: block;
}

/* ===== INFO LEFT ===== */

.director__info {
    position: absolute;
    left: 30px;
    bottom: 50px;

    color: white;
}

.director__title {
    font-family: "AV Fontimer-SemiBold", sans-serif;
    font-size: 94px;
    font-weight: 700;
    line-height: 0.95;

    width: 700px; /* ВАЖНО: не max-width */
    display: block;

    margin-bottom: 12px;

    white-space: normal;
    word-break: break-word;
}

.director__name {
    font-family: "Manrope-Medium", sans-serif;
    font-size: 36px;
}

/* ===== QUOTE ===== */

.director__quote {
    position: absolute;
    right: 90px;
    top: 80%;
    transform: translateY(-50%);

    max-width: 900px;
    color: rgba(255, 255, 255, 1);
}

.director__text {
    font-family: "Manrope-Regular", sans-serif;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 24px;
}

/* ===== BIO BUTTON ===== */

.director__bio-btn {
    display: inline-block;

    padding: 12px 28px;
    border-radius: 999px;

    background: #4E2B1F;
    color: white;
    font-size: 20px;

    transition: 0.3s ease;
    text-decoration: none;
}

.director__bio-btn:hover {
    background: #824835;
    transform: translateY(-2px);
}

/* ===== CONTACT BUTTON ===== */

/* ===== АНИМАЦИЯ ПУЛЬСАЦИИ (только прозрачность) ===== */
@keyframes pulse-border {
    0%, 100% {
        opacity: 0; /* Бордер исчезает */
    }
    50% {
        opacity: 0.4; /* Бордер появляется */
    }
}

.director__contact-btn {
    font-family: "Manrope-Medium", sans-serif;
    position: absolute;
    right: 30px;
    bottom: 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 144px;
    height: 144px;

    border-radius: 50%;
    border: none;
    /*border: 8px solid rgba(217, 217, 217, 0);*/

    background: rgba(217, 217, 217, 0.4);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 16px;
    line-height: 1.3;
    text-decoration: none;
    text-align: center;

    cursor: pointer;
    transition: 0.3s ease;

    white-space: nowrap;
}

.director__contact-btn:before {
    content: '';
    position: absolute;
    top: -7px;
    left: -7px;
    right: -7px;
    bottom: -7px;

    border-radius: 50%;
    border: 8px solid rgba(217, 217, 217, 0.8);

    /* Добавляем box-shadow чтобы скрыть зазор */
    box-shadow: 0 0 0 1px rgba(217, 217, 217, 0.4);

    animation: pulse-border 4s ease-in-out infinite;
    pointer-events: none; /* Чтобы клики проходили сквозь */
}

.director__contact-btn:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

/* ADAPTATION */

/* ===== DESKTOP COMPACT ===== */

@media (max-width: 1600px) {

    /* ---------- DIRECTOR ---------- */

    .director__image-wrapper{
        height:780px;
    }

    .director__title{
        width:560px;
        font-size:72px;
    }

    .director__name{
        font-size:30px;
    }

    .director__quote{
        right:60px;
        max-width:720px;
    }

    .director__text{
        font-size:21px;
    }
}

/* TABLET */

@media (max-width: 1240px) {

    .director {
        padding: 60px 0;
    }

    .director__image-wrapper {
        width: 100%;
        height: 900px;
    }

    .director__image {
        object-fit: cover;
        object-position: 10% center;
        transform: scale(1.3)  translateY(-100px);
    }

    .director__info {
        left: 40px;
        bottom: 700px;
        top: auto;
    }

    .director__title {
        width: auto;
        font-size: 60px;
        line-height: .95;
    }

    .director__name {
        margin-top: 18px;
        font-size: 24px;
    }

    .director__quote {
        left: 40px;
        right: auto;
        bottom: 60px;
        top: auto;

        transform: none;
        max-width: 575px;
    }

    .director__text {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 28px;
    }

    .director__bio-btn {
        font-size: 18px;
        padding: 14px 28px;
    }

    .director__contact-btn {
        right: 32px;
        bottom: 32px;

        width: 144px;
        height: 144px;

        font-size: 16px;
    }
}

/* MOBILE */

@media (max-width: 480px) {

    .director {
        padding: 30px 0;
    }

    .director__image-wrapper {
        height: 800px;

    }

.director__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 10% center;
    transform: scale(1.34) translateY(-100px);
}

    .director__info {
        left: 18px;
        right: 18px;
        bottom:650px;
        top: auto;
    }

    .director__title {
        width: auto;
        font-size: 40px;
        line-height: .92;
        margin-bottom: 14px;
    }

    .director__name {
        font-size: 24px;
    }

    .director__quote {
        left: 18px;
        right: 18px;
        bottom: 140px;
        top: auto;

        max-width: none;
    }

    .director__text {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 20px;
    }

    /* Кнопки */
    .director__bio-btn {
        position: absolute;
        bottom: -100px;

        padding: 18px 40px;
        font-size: 18px;
    }

    .director__contact-btn {

        right: 18px;
        bottom: 14px;

        font-size: 16px;
    }
}

/* Mobile mini */

@media (max-width: 380px) {

    .director__image-wrapper {
        height: 700px;
    }

    .director__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 10% center;
        transform: scale(1.5) translateY(-117px);
    }

    .director__title {
        font-size: 34px;
    }
    .director__info {
       left: 18px;
       right: 18px;
       bottom:575px;
       top: auto;
    }

    .director__name {
        font-size: 20px;
    }

    .director__text {
        font-size: 16px;
        margin-bottom: 10px;
    }


    .director__bio-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .director__contact-btn {
        width: 120px;
        height: 120px;
        font-size: 14px;
    }
}

/* ===== SLOGAN ===== */

.slogan {
    padding: 100px 0 60px;
}

.slogan__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.slogan__title {
    font-family: "AV Fontimer-SemiBold", sans-serif;
    font-size: 180px;
    font-weight: 700;
    line-height: 0.95;

    color: #222;

    text-align: start;
}

.slogan__title span {
    color: #11872f;
}

.slogan__arrow {
    margin-top: 40px;

    font-size: 72px;
    color: #11872f;

    line-height: 1;

    cursor: pointer;

    transition: transform .3s ease;
}

.slogan__green {
    color: #11872f;
}

.slogan__arrow:hover {
    transform: translateY(8px);
}

/* ADAPTATION */

@media (max-width: 1600px) {

    /* ---------- SLOGAN ---------- */

    .slogan__title{
        font-size:140px;
    }

}

/* TABLES */

@media (max-width: 1240px) {

    .slogan {
        padding: 80px 0 50px;
    }

    .slogan__container {
        padding: 0 16px;
    }

    .slogan__title {
        font-size: 110px;
    }

    .slogan__arrow svg {
        width: 28px;
        height: 70px;
    }
}

/* MOBILE */

@media (max-width: 480px) {

    .slogan {
        padding: 60px 0 40px;
    }

    /*.slogan__container {*/
    /*    padding: 0 16px;*/
    /*}*/

    .slogan__title {
        font-size: 60px;
    }

    .slogan__arrow {
        margin-top: 24px;
    }

    .slogan__arrow svg {
        width: 20px;
        height: 50px;
    }
}

/* ===== DIRECTIONS ===== */

.directions {
    padding: 40px 0;
}

.directions__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 40px;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

.direction-card {
    position: relative;

    height: 640px;

    overflow: hidden;
    border-radius: 14px;
}

.direction-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform .5s ease;
}

.direction-card:hover img {
    transform: scale(1.05);
}

.direction-card__overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
            90deg,
            rgba(245, 243, 236, .92) 0%,
            rgba(245, 243, 236, .65) 30%,
            rgba(245, 243, 236, .15) 60%,
            rgba(245, 243, 236, 0) 100%
    );
}

.direction-card__content {
    position: absolute;

    left: 130px;
    top: 60%;

    transform: translateY(-50%);

    max-width: 1560px;

    z-index: 2;
}

.down1 {
    top: 62%;
}

.down2 {
    top: 65%;
}

.direction-card__title {
    font-family: "AV Fontimer-SemiBold", sans-serif;
    font-size: 94px;
    line-height: 0.95;
    font-weight: 700;

    color: rgba(43, 41, 38, 1);

    margin-bottom: 24px;
}

.direction-card__text {
    font-size: 24px;
    line-height: 1.5;

    color: rgba(43, 41, 38, 1);

    max-width: 780px;

    margin-bottom: 32px;
    font-weight: 600;
}

.direction-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;
    padding: 0;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);
    color: #11872f;
    text-decoration: none;

    font-size: 0;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;

    transition: width .3s ease, border-radius .3s ease, background .3s ease, box-shadow .3s ease, transform .3s ease, color .3s ease;
}

.direction-card__button::before {
    content: "";
    width: 12px;
    height: 12px;

    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 10.8995L10.8995 1M10.8995 10.8995V1H1' stroke='%23108022' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.direction-card__button:hover {
    width: 170px;
    padding: 0 26px;
    border-radius: 999px;

    background: #0f7729;
    color: #fff !important;
    font-size: 20px;

    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(17, 135, 47, .25);
}

.direction-card__button--waste:hover {
    background: #068b19;
    box-shadow: 0 10px 20px rgba(6, 139, 25, .25);
}

.direction-card__button--hospitality:hover {
    background: #64351f;
    box-shadow: 0 10px 20px rgba(100, 53, 31, .25);
}

.direction-card__button:hover::before {
    content: none;
}

.direction-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.5);

    color: #11872f;

    text-decoration: none;

    font-size: 22px;
    font-weight: 700;

    transition: all .3s ease;
}

/* ADAPTATION */

/* ===== DESKTOP COMPACT ===== */

@media (max-width: 1600px) {

    /* ---------- DIRECTIONS ---------- */

    .direction-card{
        height:560px;
    }

    .direction-card__content{
        left:70px;
        max-width:1000px;
    }

    .direction-card__title{
        font-size:72px;
    }

    .direction-card__text{
        font-size:21px;
        max-width:650px;
    }
}

/* TABLET */

@media (max-width: 1240px) {

    .directions__container {
        padding: 0 16px;
        gap: 18px;
    }

    .direction-card {
        height: 640px;
    }

    .direction-card__overlay {
        background: linear-gradient(
                90deg,
                rgba(245, 243, 236, .70) 0%,
                rgba(245, 243, 236, .40) 40%,
                rgba(245, 243, 236, .15) 70%,
                rgba(245, 243, 236, 0) 100%
        );
    }

    .direction-card__content {
        left: 28px;
        max-width: 500px;
        top: 68%;
    }

    .down1 {
        top: 70%;
    }

    .down2 {
        top: 70%;
    }

    .direction-card__title {
        font-size: 60px;
        margin-bottom: 16px;
    }

    .direction-card__text {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .direction-card__button {
        width: 52px;
        height: 52px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
    }

    .direction-card__button::before {
        width: 16px;
        height: 16px;
    }

    .direction-card__button:hover {
        width: 160px;
        padding: 0 22px;
        border-radius: 999px;
        font-size: 18px;
    }
}

/* MOBILE */

@media (max-width: 480px) {

    .directions__container {
        /*padding: 0 16px;*/
        gap: 14px;
    }

    .direction-card {
        /*height: 240px;*/
        border-radius: 12px;
    }

    /* затемнение чуть сильнее — чтобы текст читался */
    .direction-card__overlay {
        background: linear-gradient(
                90deg,
                rgba(245, 243, 236, .70) 0%,
                rgba(245, 243, 236, .40) 40%,
                rgba(245, 243, 236, .2) 70%,
                rgba(245, 243, 236, 0) 100%
        );
    }

    .direction-card__content {

        left: 16px;
        right: 16px;
        max-width: 340px;

        top: 58%;
    }

    .down1 {
        top: 65%;
    }

    .down2 {
        top: 68%;
    }

    .direction-card__title {
        font-size: 25px;
        white-space: nowrap;
        line-height: 1;
        margin-bottom: 10px;
    }

    .direction-card__title br {
        display: none;
    }

    .direction-card__text {
        /*font-size: 13px;*/
        line-height: 1.4;
        margin-bottom: 14px;
        max-width: 311px;
    }

    .direction-card__button {
        width: 46px;
        height: 46px;
        padding: 0;
        border-radius: 50%;
        font-size: 0;
    }

    .direction-card__button::before {
        width: 14px;
        height: 14px;
    }

    .direction-card__button:hover {
        width: 145px;
        padding: 0 18px;
        border-radius: 999px;
        font-size: 16px;
    }
}

/* === All companies button === */

.all-companies__button {
    display: flex;
    align-items: center;
    justify-content: center;
}

.holding-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 438px;
    height: 100px;

    padding: 0 36px;

    border: none;
    border-radius: 999px;

    background: rgba(78, 43, 31, 1);

    color: #fff;
    text-decoration: none;

    font-size: 24px;
    font-weight: 500;
    line-height: 1;

    cursor: pointer;

    transition: .25s ease;
}

.holding-btn:hover {
    background: #77402b;
    transform: translateY(-2px);
}

.holding-btn:active {
    transform: translateY(0);
}

/* === Adaptation === */

/* TABLET */

@media (max-width: 1240px) {

    .holding-btn {
        min-width: 329px;
        height: 80px;

        font-size: 18px;
        padding: 0 30px;
    }

}

/* MOBILE */

@media (max-width: 480px) {

    .holding-btn {
        max-width: 329px;

        height: 80px;

        padding: 0 20px;
    }

}

/* ===== CAREER ===== */

.career {
    padding: 40px 40px;
}

.career__container {
    position: relative;

    max-width: 1920px;
    margin: 0 auto;
    min-height: 760px;
    padding: 80px;

    border-radius: 20px;

    background: #DB6A32;

    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 60px;

    align-items: stretch;

    overflow: hidden;
}

.career__container::before {
    content: "ЛФ ХОЛДИНГ";

    position: absolute;

    top: 20px;
    right: 100px;

    font-size: 180px;
    font-weight: 700;
    font-family: "AV Fontimer-Black", sans-serif;

    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .15);

    pointer-events: none;
}

.career__container--en::before {
    content: "LF HOLDING";
}

.career__title-block {
    max-width: 880px;
}

.career__title {
    font-family: "AV Fontimer-SemiBold", sans-serif;
    color: white;

    margin-top: 70px;
    margin-left: 100px;
    width: 800px;

    font-size: 60px;
    font-weight: 700;
    line-height: 1.05;
}

.career__content {
    position: absolute;

    right: 120px;
    top: 280px;

    width: 1200px;

    padding: 40px;

    border-radius: 20px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .15);
}

.career__text {
    font-family: "Manrope-Regular", sans-serif;
    color: white;

    font-size: 22px;
    line-height: 1.6;

    margin-bottom: 24px;
}

.career__text--secondary {
    font-family: "Manrope-Regular", sans-serif;
    margin-bottom: 40px;
}

.career__accent {
    color: #1f1f1f;
    font-weight: 700;
}

.career__form {
    display: flex;
    gap: 16px;

    margin-bottom: 25px;
}

.career__policy-text {
    font-family: "Manrope-Regular", sans-serif;
}

.career__form input {
    flex: 1;

    height: 60px;

    border: none;
    outline: none;

    border-radius: 999px;

    padding: 0 24px;

    background: rgba(255, 255, 255, .92);

    font-size: 16px;
}

.career__form input::placeholder {
    color: #666;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.career__form button {
    border: none;

    padding: 0 30px;

    border-radius: 999px;

    background: white;
    color: #6f3b24;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: all .3s ease;
}

.career__form button:hover {
    background: #f3f3f3;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.career__policy {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    color: rgba(255, 255, 255, .85);

    font-size: 13px;
    line-height: 1.5;
}

.career__policy input {
    margin-top: 4px;

    width: 16px;
    height: 16px;

    cursor: pointer;
}

.career__policy a {
    color: white;

    text-decoration: underline;
}

.career__policy a:hover {
    opacity: .8;
}

.img-zoom {
    overflow: hidden;
    border-radius: 12px;
}

.img-zoom img {
    width: 100%;
    display: block;

    border-radius: 12px;
    transition: transform .5s ease;
}

.img-zoom:hover img {
    transform: scale(1.05);
}

/* ADAPTATION */

/* ===== DESKTOP COMPACT ===== */

@media (max-width: 1600px) {

    /* ---------- CAREER ---------- */

    .career__container{
        min-height:700px;
        padding:60px;
    }

    .career__container::before{
        font-size:140px;
        right:70px;
    }

    .career__title{
        margin-left:80px;
        margin-top:50px;
        width:620px;
        font-size:50px;
    }

    .career__content{
        width:900px;
        right:60px;
        top:220px;
    }

    .career__text{
        font-size:20px;
    }
}

/* TABLET */

@media (max-width: 1240px) {

    .career {
        padding: 40px 16px;
    }

    .career__container {
        grid-template-columns: 1fr;
        gap: 30px;

        padding: 40px;
        min-height: auto;
    }

    .career__container::before {
        display: none;
    }

    /* title сверху */
    .career__title {
        margin-left: 0;
        margin-top: 0;
        width: auto;

        font-size: 40px;
    }

    /* content под ним */
    .career__content {
        position: relative;

        right: auto;
        top: auto;
        width: 100%;
        padding: 30px;
        align-self: auto;
    }

    .career__text {
        font-size: 18px;
    }

    .career__text--secondary {
        margin-bottom: 30px;
    }

    /* form становится вертикальной */
    .career__form {
        gap: 12px;
        flex: none;
        flex-direction: column;
    }

    .career__form input {
        flex: none;
        height: 60px;
        width: 100%;
    }

    .career__form button {
        width: auto;
        align-self: flex-start;
        height: 60px;
        padding: 0 26px;
    }
}

/* MOBILE */

@media (max-width: 480px) {

    /*.career {*/
    /*    padding: 40px 16px;*/
    /*}*/

    .career__container {
        padding: 24px;
        border-radius: 14px;
    }

    .career__container::before {
        display: none;
    }

    .career__title {
        margin-left: 0;
        margin-top: 0;
        width: auto;

        font-size: 40px;
    }

    .career__content {
        padding: 20px;
    }

    .career__text {
        font-size: 14px;
        line-height: 1.5;
    }

    .career__text--secondary {
        margin-bottom: 20px;
    }

    .career__form input {
        flex: none;
        height: 48px;
        font-size: 14px;
    }

    .career__form button {
        height: 48px;
        font-size: 14px;
    }

    .career__policy {
        font-size: 11px;
    }
}