.cashback-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    counter-reset: cashback-step;
}

.cashback-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #EBE7EB;
    border-radius: 20px;
    padding: 20px 22px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cashback-step:hover {
    box-shadow: 0 12px 32px -12px rgba(116, 46, 218, 0.25);
    transform: translateY(-2px);
}

.cashback-step-badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5b22b0 0%, #742EDA 55%, #9B59E6 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cashback-step-body {
    flex: 1;
    min-width: 0;
}

.cashback-step-title {
    font-size: 17px;
    font-weight: 600;
    color: #071739;
    margin: 0 0 6px;
}

.cashback-step-text {
    font-size: 14px;
    line-height: 1.6;
    color: #59647A;
    margin: 0;
}

.cashback-rules {
    background: #F6F1FE;
    border-radius: 20px;
    padding: 28px 24px;
    margin-top: 40px;
}

.cashback-rules-title {
    font-size: 20px;
    font-weight: 600;
    color: #071739;
    margin: 0 0 18px;
}

.cashback-rules-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cashback-rule {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cashback-rule-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #E8DAFB;
    color: #742EDA;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.cashback-rule-text {
    font-size: 14px;
    line-height: 1.6;
    color: #394561;
}

.cashback-cta {
    display: inline-block;
    background: #742eda;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 36px;
    text-decoration: none;
    transition: background 0.15s ease;
}

.cashback-cta:hover {
    background: #6520c7;
}

@media (min-width: 768px) {
    .cashback-steps {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .cashback-step {
        padding: 24px 26px;
    }

    .cashback-rules {
        padding: 32px 36px;
    }
}
