﻿/*feature*/
.feature-icon-wrapper .material-symbols-outlined {
    font-size: 45px !important;
    font-variation-settings: 'wght' 400, 'opsz' 48;
    display: block;
    line-height: 1;
}

.feature-icon-wrapper {
    width: 95px !important;
    height: 95px !important;
    background-color: var(--qiq-dark) !important;
    border-radius: 28px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--qiq-dark);
    margin-top: 1rem;
}

.step-num {
    position: absolute;
    width: 32px;
    height: 32px;
    top: -8px;
    right: -8px;
    background: var(--qiq-gold);
    color: var(--qiq-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 3px solid #fff;
    font-size: 0.85rem;
    z-index: 2;
}


@media (max-width: 991px) {
    .features-section {
        padding: 40px 0 !important; 
    }

    .feature-icon-wrapper {
        width: 80px !important;
        height: 80px !important;
        border-radius: 22px !important;
    }

        .feature-icon-wrapper .material-symbols-outlined {
            font-size: 35px !important; 
        }

    .feature-card h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .feature-card {
        margin-bottom: 10px;
        padding: 10px 5px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-icon-wrapper {
        width: 65px !important;
        height: 65px !important;
        border-radius: 18px !important;
        margin-bottom: 0.8rem;
    }

        .feature-icon-wrapper .material-symbols-outlined {
            font-size: 28px !important;
        }

    .step-num {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
        top: -5px;
        right: -5px;
    }
}