.installment-card {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
    direction: rtl !important;
    text-align: right !important;
    color: #ffffff;
    background: linear-gradient(135deg, #5b21b6 0%, #7c3aed 56%, #8b5cf6 100%);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: 0 24px 60px -24px rgba(91, 33, 182, .72);
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .85s var(--ease), transform .85s var(--ease), box-shadow .4s var(--ease);
    isolation: isolate;
}

.installment-card.in-view {
    opacity: 1;
    transform: none;
}

.installment-card::before,
.installment-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.installment-card::before {
    width: 340px;
    height: 340px;
    top: -220px;
    right: -90px;
    border: 70px solid rgba(255, 255, 255, .08);
}

.installment-card::after {
    width: 260px;
    height: 260px;
    bottom: -190px;
    left: 8%;
    background: rgba(255, 255, 255, .07);
}

.installment-card__content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
    direction: rtl !important;
    text-align: right !important;
}

.installment-card__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    direction: rtl !important;
    text-align: right !important;
    color: #ede9fe;
    font-size: .84rem;
    font-weight: bold;
}

.installment-card__eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: #ddd6fe;
}

.installment-card__title {
    width: 100%;
    margin: 0;
    direction: rtl !important;
    text-align: right !important;
    color: #ffffff;
    font-size: clamp(1.55rem, 3.2vw, 2.35rem);
    font-weight: bold;
    line-height: 1.55;
}

.installment-card__desc {
    width: 100%;
    margin: 12px 0 0;
    direction: rtl !important;
    text-align: right !important;
    color: rgba(255, 255, 255, .88);
    font-size: clamp(.9rem, 1.5vw, 1rem);
    line-height: 2.05;
}

.installment-card__features {
    width: 100%;
    gap: 10px 18px;
    margin-top: 18px;
    direction: rtl !important;
    justify-content: flex-start !important;
    text-align: right !important;
}

.installment-card__feature {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    direction: rtl !important;
    text-align: right !important;
    color: #ffffff;
    font-size: .84rem;
}

.installment-card__feature svg {
    width: 18px;
    height: 18px;
    stroke: #d8b4fe;
    flex: 0 0 18px;
}

.installment-card__action {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.installment-card__button {
    min-width: 220px;
    min-height: 54px;
    border: 0 !important;
    border-radius: 999px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--accent-2) !important;
    background: #ffffff !important;
    font-weight: bold;
    box-shadow: 0 14px 32px -14px rgba(23, 15, 48, .7);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}

.installment-card__button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

@media (hover: hover) {
    .installment-card:hover {
        box-shadow: 0 30px 70px -24px rgba(91, 33, 182, .88);
    }

    .installment-card__button:hover {
        transform: translateY(-3px);
        background: #f5f3ff !important;
        box-shadow: 0 20px 38px -14px rgba(23, 15, 48, .82);
    }
}

@media (max-width: 991.98px) {
    .installment-card__content {
        max-width: none;
    }

    .installment-card__action,
    .installment-card__button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .installment-card {
        opacity: 1 !important;
        transform: none !important;
    }
}
