.hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 100svh;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(79, 138, 61, 0.12) 0%, transparent 42%),
        linear-gradient(135deg, #f8faf5 0%, #eef4e8 45%, #e4eddc 100%);
}

/* Плавные линии */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='800' height='600' viewBox='0 0 800 600' fill='none'%3E%3Cpath d='M-40 120 C 120 40 240 200 400 120 S 680 40 840 120' stroke='%234F8A3D' stroke-opacity='0.08' stroke-width='1.5'/%3E%3Cpath d='M-40 220 C 160 140 280 300 440 220 S 700 140 840 220' stroke='%234F8A3D' stroke-opacity='0.06' stroke-width='1.5'/%3E%3Cpath d='M-40 320 C 100 240 260 400 420 320 S 660 240 840 320' stroke='%23356024' stroke-opacity='0.07' stroke-width='1.5'/%3E%3Cpath d='M-40 420 C 140 340 300 500 460 420 S 720 340 840 420' stroke='%234F8A3D' stroke-opacity='0.05' stroke-width='1.5'/%3E%3Cpath d='M-40 520 C 120 440 240 600 400 520 S 680 440 840 520' stroke='%23356024' stroke-opacity='0.06' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

/* Переход к белому фону страницы */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.35) 55%, var(--white) 100%);
}

/* Левая колонка — изображение на всю высоту */
.hero__media {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    overflow: hidden;
    border-radius: 0 128px 128px 0;
}

.hero__logo {
    position: absolute;
    top: clamp(28px, 4vw, 52px);
    left: clamp(24px, 4vw, 56px);
    z-index: 2;
}

.hero__logo-img {
    display: block;
    width: auto;
    height: clamp(83px, 10.4vw, 125px);
}

.hero__slider {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 100svh;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.4s ease-in-out;
}

.hero__slide.is-active {
    opacity: 1;
}

/* Правая колонка — текст */
.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: stretch;
    min-height: 100svh;
    padding: clamp(120px, 15vw, 216px) clamp(28px, 4vw, 64px) clamp(40px, 5vw, 72px);
    background: transparent;
}

.hero__content-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 520px;
    min-height: 100%;
}

.hero__eyebrow {
    font-size: clamp(0.78rem, 1.1vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero__title {
    margin-top: 20px;
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--ink);
    max-width: 100%;
}

.hero__title-accent {
    color: var(--green);
}

.hero__lead-wrap {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 20px);
    max-width: 100%;
}

.hero__lead-logo {
    flex: none;
    width: clamp(56px, 7vw, 72px);
    height: auto;
}

.hero__lead {
    margin-top: 0;
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.65;
    color: var(--muted);
    max-width: none;
}

.hero__cta {
    margin-top: 22px;
    width: 100%;
    max-width: 100%;
    min-height: 64px;
    justify-content: space-between;
    padding: 22px 32px;
    font-size: clamp(1.05rem, 1.4vw, 1.3rem);
    background: var(--green-dark);
}

.hero__cta:hover {
    background: var(--green);
}

.hero__cta-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

@media (prefers-reduced-motion: reduce) {
    .hero__slide {
        transition: none;
    }
}

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

    .hero__media {
        min-height: 52vh;
        border-radius: 0 0 64px 64px;
    }

    .hero__logo {
        top: 50%;
        left: 50%;
        width: 88%;
        max-width: 420px;
        transform: translate(-50%, -50%);
    }

    .hero__logo-img {
        width: 100%;
        height: auto;
    }

    .hero__slide {
        min-height: 52vh;
    }

    .hero__content {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .hero__content-inner {
        min-height: auto;
    }

    .hero__lead-wrap {
        margin-top: 32px;
    }

    .hero__lead {
        line-height: 1.2;
    }

    .hero__title {
        max-width: none;
    }

    .hero__cta {
        width: calc(100vw - 32px);
        max-width: none;
        margin-left: calc(50% - 50vw + 16px);
        min-height: 68px;
        padding: 24px 28px;
        font-size: 1.2rem;
    }
}

@media (max-width: 560px) {
    .hero__media {
        min-height: 44vh;
        border-radius: 0 0 40px 40px;
    }

    .hero__slide {
        min-height: 44vh;
    }

    .hero__title {
        font-size: 1.75rem;
    }
}
