.fp-hero {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
}

.fp-hero__slider {
    width: 100%;
    overflow: hidden;
}

.fp-hero__wrapper {
    width: 100%;
}

.fp-hero__slide {
    min-height: 760px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 22%, rgba(64, 185, 60, 0.28), transparent 28%),
        radial-gradient(circle at 62% 48%, rgba(182, 226, 66, 0.14), transparent 24%),
        linear-gradient(135deg, #308B0B 0%, #2D7012 58%, #215510 100%);
}

.fp-hero__slide::before {
    content: "";
    position: absolute;
    inset: 96px 230px 36px auto;
    width: 510px;
    border-radius: 110px 110px 36px 36px;
    border: 3px solid rgba(255, 255, 255, 0.12);
    transform: rotate(-3deg);
    pointer-events: none;
    z-index: 1;
}

.fp-hero__slide::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 94px;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 1;
}

.fp-hero__inner {
    max-width: 1312px;
    min-height: 760px;
    margin: 0 auto;
    padding: 42px 40px 0;
    display: grid;
    grid-template-columns: 470px minmax(520px, 1fr);
    align-items: center;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.fp-hero__content {
    max-width: 470px;
    position: relative;
    z-index: 3;
}

.fp-hero__title {
    margin: 0;
    font-family: var(--font-montserratalt, MontserratAlternates), sans-serif;
    font-weight: 700;
    font-size: 88px;
    line-height: 0.92;
    letter-spacing: -0.05em;
    color: #FFFFFF;
}

.fp-hero__text {
    margin-top: 30px;
    max-width: 430px;
    min-height: 96px;
    padding: 22px 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    font-family: var(--font-montserrat, Montserrat), sans-serif;
    font-weight: 500;
    font-size: 19px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.92);
}

.fp-hero__actions {
    margin-top: 28px;
}

.fp-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 195px;
    min-height: 64px;
    padding: 0 30px;
    border-radius: 999px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 18px 44px rgba(19, 49, 10, 0.18);
    backdrop-filter: blur(10px);
    font-family: var(--font-montserrat, Montserrat), sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1;
    color: #FFFFFF;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.fp-hero__button:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 22px 48px rgba(19, 49, 10, 0.24);
}

.fp-hero__button-arrow {
    font-size: 20px;
    line-height: 1;
}

.fp-hero__media {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    min-height: 760px;
    z-index: 2;
}

.fp-hero__media-card {
    position: relative;
    width: 100%;
    max-width: 690px;
    height: 760px;
    overflow: visible;
}

.fp-hero__media-card::before {
    content: "";
    position: absolute;
    right: 44px;
    top: 112px;
    width: 455px;
    height: 455px;
    border-radius: 50%;
    background: #B6E242;
    z-index: 1;
}

.fp-hero__media-card::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 44px;
    width: 505px;
    height: 565px;
    border-radius: 120px 120px 36px 36px;
    border: 3px solid rgba(255, 255, 255, 0.14);
    transform: rotate(-3deg);
    z-index: 0;
}

.fp-hero__image {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 690px;
    max-width: none;
    height: auto;
    object-fit: contain;
    z-index: 2;
}

.fp-hero__nav {
    position: absolute;
    top: 50%;
    width: 66px;
    height: 66px;
    margin-top: -33px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 5;
    transition: transform 0.2s ease, background 0.2s ease;
}

.fp-hero__nav:hover {
    transform: scale(1.04);
    background: rgba(255, 255, 255, 0.22);
}

.fp-hero__nav::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    margin-top: -7px;
    margin-left: -5px;
    border-top: 2px solid #FFFFFF;
    border-right: 2px solid #FFFFFF;
}

.fp-hero__nav--prev {
    left: 28px;
}

.fp-hero__nav--prev::before {
    transform: rotate(-135deg);
}

.fp-hero__nav--next {
    right: 28px;
}

.fp-hero__nav--next::before {
    transform: rotate(45deg);
}

@media (max-width: 1400px) {
    .fp-hero__inner {
        padding-left: 32px;
        padding-right: 32px;
        grid-template-columns: 430px minmax(460px, 1fr);
    }

    .fp-hero__title {
        font-size: 74px;
    }

    .fp-hero__image {
        width: 610px;
    }

    .fp-hero__media-card {
        height: 700px;
    }
}

@media (max-width: 1180px) {
    .fp-hero__slide,
    .fp-hero__inner,
    .fp-hero__media {
        min-height: auto;
    }

    .fp-hero__slide::before,
    .fp-hero__slide::after {
        display: none;
    }

    .fp-hero__inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .fp-hero__content {
        max-width: 560px;
    }

    .fp-hero__media {
        justify-content: center;
    }

    .fp-hero__media-card {
        max-width: 640px;
        width: 100%;
        height: 600px;
    }

    .fp-hero__media-card::before {
        right: 50%;
        transform: translateX(50%);
        top: 120px;
        width: 420px;
        height: 420px;
    }

    .fp-hero__media-card::after {
        right: 50%;
        transform: translateX(50%) rotate(-3deg);
        top: 48px;
    }

    .fp-hero__image {
        right: 50%;
        transform: translateX(50%);
        width: 560px;
    }
}

@media (max-width: 767px) {
    .fp-hero__slide {
        min-height: auto;
    }

    .fp-hero__inner {
        padding: 28px 20px 24px;
    }

    .fp-hero__title {
        font-size: 46px;
        line-height: 0.98;
    }

    .fp-hero__text {
        margin-top: 20px;
        min-height: 0;
        padding: 16px 18px;
        font-size: 16px;
        line-height: 1.4;
        border-radius: 22px;
    }

    .fp-hero__actions {
        margin-top: 20px;
    }

    .fp-hero__button {
        min-width: 170px;
        min-height: 54px;
        padding: 0 22px;
        font-size: 16px;
    }

    .fp-hero__media-card {
        height: 420px;
    }

    .fp-hero__media-card::before {
        width: 290px;
        height: 290px;
        top: 100px;
    }

    .fp-hero__media-card::after {
        width: 320px;
        height: 360px;
        top: 52px;
        border-radius: 70px 70px 28px 28px;
    }

    .fp-hero__image {
        width: 360px;
    }

    .fp-hero__nav {
        width: 52px;
        height: 52px;
        margin-top: -26px;
    }

    .fp-hero__nav--prev {
        left: 10px;
    }

    .fp-hero__nav--next {
        right: 10px;
    }
}