body,
.hero,
section,
.hancot-bg {
    background: #fff !important;
}

.header-qr {
    width: 62px;
    height: 62px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0;
}





/* =========================================================
   HERO
========================================================= */

.hero {
    width: 100%;
    padding: 50px 20px 40px;
    background: #ffffff;
    text-align: center;
}

.hero .container {
    max-width: 1200px;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.hero h1,
.hero-title {
    margin-bottom: 18px;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    word-break: keep-all;
}

.hero-sub,
.hero .muted {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-sub {
    font-size: 22px;
}

.small {
    font-size: 15px;
    line-height: 1.7;
}

/* =========================================================
   SECTION
========================================================= */

.section-gap {
    margin-top: 16px;
    background: #ffffff;
}

section.py-5 {
    width: 100%;
    background: #ffffff;
}

/* =========================================================
   FEATURE BOX
========================================================= */

.feature-box {
    height: 100%;
    position: relative;
    overflow: hidden;
    padding: 34px 22px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 24px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all .25s ease;
}

.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #16a34a, #22c55e);
}

.feature-box:hover {
    transform: translateY(-8px);
    border-color: #86efac;
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.10);
}

.feature-box h4 {
    margin-bottom: 14px;
    font-size: 19px;
    line-height: 1.4;
    font-weight: 700;
    color: #111827;
}

.feature-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    word-break: keep-all;
}

.feature-box ol {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.9;
    color: #374151;
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 20px;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #16a34a;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .hero {
        padding: 35px 15px;
    }
 .header-qr {
        width: 34px;
        height: 34px;
    }
    .hero h1,
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }

    .hero-sub {
        font-size: 0.95rem;
        line-height: 1.6;
        white-space: normal;
    }

    .hero .muted,
    .hero .small {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .feature-box {
        padding: 24px 16px;
    }

    .feature-box h4 {
        font-size: 17px;
    }

    .feature-box p,
    .feature-box ol {
        font-size: 14px;
    }
}