.incentives-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.incentives-header {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 3rem 0;
    color: #1f2937;
}

.incentives-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.incentive-card {
    background: linear-gradient(135deg, #5b4a9f 0%, #4c3d95 100%);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.incentive-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.incentive-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.incentive-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.incentive-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.incentive-content-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 0;
}

.incentive-value {
    font-size: 3.5rem;
    font-weight: 700;
    color: #5b4a9f;
    margin: 0;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .incentives-header {
        font-size: 2rem;
        margin: 0 0 2rem 0;
    }

    .incentives-container {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.25rem;
    }

    .incentive-card {
        padding: 1.75rem 1.25rem;
    }

    .incentive-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .incentive-title {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .incentive-value {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .incentives-container {
        grid-template-columns: 1fr;
    }

    .incentive-card {
        padding: 1.5rem 1rem;
    }

    .incentive-icon {
        width: 60px;
        height: 60px;
    }

    .incentive-title {
        font-size: 1.15rem;
    }

    .incentive-content-box {
        padding: 1rem 1.25rem;
    }

    .incentive-value {
        font-size: 2.5rem;
    }
}