/* SECTION */
.product-hero {
    padding: 60px 0px;
    position: relative;
}

/* LOGO */
.logo-circle {
    width: 45px;
    height: 45px;
    background: #1fa463;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* FEATURE BOX */
.feature-box {
    background: #eef3f6;
    padding: 10px;
    text-align: center;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER */
.feature-box:hover {
    transform: translateY(-5px);
    background: #e3ecf2;
}

/* BUTTON */
.btn-orange {
    display: inline-block;
    background: #ff5a1f;
    color: #fff;
    padding: 8px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-orange:hover {
    background: #e14c17;
}

.right-image {
    width: 130px !important;
}

.main-image {
    width: 270px;
}

/* =========================
   LARGE DEVICES (≤1199px)
========================= */
@media (max-width: 1199px) {

    .product-hero {
        padding: 50px 0;
    }

    .main-image {
        width: 230px;
    }

    .right-image {
        width: 110px !important;
    }

    .feature-box {
        font-size: 13px;
        padding: 8px;
    }
}

/* =========================
   TABLETS (≤992px)
========================= */
@media (max-width: 992px) {

    .product-hero {
        text-align: center;
        padding: 40px 0;
    }

    .main-image {
        width: 200px;
        margin: 20px auto;
    }

    .right-image {
        width: 100px !important;
    }

    .feature-box {
        font-size: 13px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* =========================
   MOBILE (≤768px)
========================= */
@media (max-width: 768px) {

    .product-hero {
        padding: 30px 0;
    }

    .main-image {
        width: 170px;
    }

    .right-image {
        width: 90px !important;
    }

    .feature-box {
        font-size: 12px;
        padding: 8px;
    }

    .btn-orange {
        padding: 6px 18px;
        font-size: 14px;
    }
}

/* =========================
   SMALL MOBILE (≤576px)
========================= */
@media (max-width: 576px) {

    .main-image {
        width: 140px;
    }

    .right-image {
        width: 80px !important;
    }

    .feature-box {
        font-size: 11px;
        padding: 6px;
    }

    .logo-circle {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .btn-orange {
        padding: 5px 15px;
        font-size: 13px;
    }
}