/* =========================================================
   HERO
   ========================================================= */

.rp-hero {
    background: var(--rp-color-white);
    padding: 62px 0 88px;
}

.rp-hero__content {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(470px, 0.92fr);
    gap: 54px;
    align-items: center;
}

.rp-hero__left,
.rp-hero__right {
    min-width: 0;
}

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

.rp-hero__title {
    max-width: 700px;
    margin: 0 0 28px;
    color: #111111;
    font-size: clamp(44px, 3.55vw, 56px);
    font-weight: 700;
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.rp-hero__text {
    max-width: 660px;
    margin: 0 0 26px;
    color: #4a4a4a;
    font-size: 20px;
    line-height: 1.55;
}

.rp-hero__benefits {
    display: grid;
    gap: 12px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.rp-hero__benefit {
    position: relative;
    padding-left: 28px;
    color: #262626;
    font-size: 18px;
    line-height: 1.45;
}

.rp-hero__benefit::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--rp-color-primary);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.rp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.rp-hero__actions-separator {
    color: var(--rp-color-muted);
    font-size: 16px;
    line-height: 1;
}

.rp-hero__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

@media (max-width: 1100px) {
    .rp-hero__content {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.9fr);
        gap: 38px;
    }

    .rp-hero__title {
        font-size: clamp(40px, 4vw, 50px);
    }
}

@media (max-width: 900px) {
    .rp-hero {
        padding: 66px 0 72px;
    }

    .rp-hero__content {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .rp-hero__left {
        max-width: 740px;
    }

    .rp-hero__right {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .rp-hero {
        padding: 48px 0 58px;
    }

    .rp-hero__content {
        gap: 42px;
    }

    .rp-hero__title {
        margin-bottom: 22px;
        font-size: clamp(36px, 10vw, 44px);
        line-height: 1.08;
    }

    .rp-hero__text {
        margin-bottom: 22px;
        font-size: 18px;
    }

    .rp-hero__benefit {
        font-size: 17px;
    }

    .rp-hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
    }

    .rp-hero__actions-separator {
        display: none;
    }
}