/* =========================================================
   ABTECH PRODUCTS RESET + CLEAN SYSTEM
========================================================= */

/* ================= PAGE BASE ================= */

body{
    margin:0;
    font-family:'Plus Jakarta Sans', sans-serif;
    background:#ffffff;
    color:#0f172a;
}

/* fix container biar tidak rusak */
.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* ================= HERO ================= */

.products-hero{
     padding-top: 100px;
    padding-bottom: 40px;
}

.products-hero h1{
    font-size:34px;
    margin-bottom:10px;
}

.products-hero p{
    color:#64748b;
    max-width:600px;
}

/* ================= PRODUCTS GRID ================= */

.products-section{
    padding:80px 0;
    background:#ffffff;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* ================= PRODUCT CARD ================= */

.product-card{
    display:block;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;

    border:1px solid #eef2f7;
    box-shadow:0 10px 30px rgba(15,23,42,0.06);

    transition:all .25s ease;
}

.product-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(15,23,42,0.12);
}

/* ================= THUMBNAIL ================= */

.product-thumb{
    width:100%;
    height:200px;
    overflow:hidden;
    background:#f1f5f9;
}

.product-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* ================= INFO ================= */

.product-info{
    padding:18px;
}

.product-info h3{
    font-size:18px;
    margin:0 0 8px 0;
}

.product-info p{
    font-size:14px;
    color:#64748b;
    line-height:1.5;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

      .products-hero{
        padding:95px 0 25px;
    }

    .products-highlight{
        padding:20px 0 40px;
    }
    .products-hero h1{
        font-size:28px;
    }

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-thumb{
        height:180px;
    }
}


.products-highlight{
    padding:20px 0 60px;
}
.highlight-box{
    max-width:850px;
    margin:auto;
    text-align:center;

    background:#fff;
    border:1px solid #edf2f7;
    border-radius:22px;

    padding:45px 50px;

    box-shadow:0 15px 40px rgba(15,23,42,.05);
}

.highlight-badge{
    display:inline-block;

    padding:8px 16px;

    background:#eef5ff;
    color:#0e2557;

    border-radius:999px;

    font-size:.85rem;
    font-weight:600;

    margin-bottom:18px;
}

.highlight-box h2{
    font-size:30px;
    line-height:1.3;
    margin-bottom:18px;
}

.highlight-box p{
    color:#64748b;
    line-height:1.8;
    font-size:1.05rem;
}