.installment-hero {
    background: rgba(252, 245, 252, 1);
    padding: 40px 0 80px;
}

.installment-hero__content {
    display: grid;
    grid-template-columns: 652fr 923fr;
    gap: 24px;
    align-items: stretch;
}

.installment-hero__card {
    background: #fff;
    border-radius: 25px;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    height: 720px;
    position: relative;
    overflow: hidden;
}

.installment-hero__card::before,
.installment-hero__card::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(213, 104, 216, 0.12);
    filter: blur(153px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.installment-hero__card::before {
    top: -180px;
    left: -180px;
}

.installment-hero__card::after {
    bottom: -180px;
    right: -180px;
}

.installment-hero__card > * {
    position: relative;
    z-index: 1;
}

.installment-hero__title {
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 55px;
    line-height: 64px;
    letter-spacing: -0.01em;
    color: #5C075E;
    margin: 0;
}

.installment-hero__description {
    font-family: Manrope, sans-serif;
    font-weight: 500;
    font-size: 28px;
    line-height: 42px;
    letter-spacing: -0.01em;
    color: #5C075E;
    margin: 0;
}

.installment-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    padding: 16px 32px;
    border-radius: 12px;
    background: linear-gradient(180deg, #C05FC2 0%, #8D2A8F 100%);
    font-family: Manrope, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.installment-hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(141, 42, 143, 0.3);
}

.installment-hero__image-wrap {
    border-radius: 25px;
    overflow: hidden;
    height: 720px;
    position: relative;
}

.installment-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1024px) {
    .installment-hero {
        padding: 32px 0 60px;
    }

    .installment-hero__content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .installment-hero__card {
        padding: 36px 28px;
        gap: 24px;
        height: 560px;
    }

    .installment-hero__image-wrap {
        height: 560px;
    }

    .installment-hero__title {
        font-size: 40px;
        line-height: 50px;
    }

    .installment-hero__description {
        font-size: 22px;
        line-height: 34px;
    }
}

@media (max-width: 768px) {
    .installment-hero__content {
        grid-template-columns: 1fr;
    }

    .installment-hero__image-wrap {
        height: 380px;
        order: -1;
    }

    .installment-hero__card {
        height: auto;
        min-height: auto;
        padding: 28px 24px;
        gap: 20px;
    }

    .installment-hero__title {
        font-size: 34px;
        line-height: 42px;
    }

    .installment-hero__description {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 576px) {
    .installment-hero {
        padding: 24px 0 40px;
    }

    .installment-hero__title {
        font-size: 28px;
        line-height: 36px;
    }

    .installment-hero__description {
        font-size: 16px;
        line-height: 26px;
    }

    .installment-hero__button {
        width: 100%;
        padding: 14px 24px;
    }

    .installment-hero__image-wrap {
        height: 260px;
    }
}