.def-home-showcase{
    width:100%;
    max-width:1440px;
    margin:0 auto 40px auto;
    padding:20px 20px 10px 20px;
}

.def-home-heading{
    text-align:center;
    margin-bottom:24px;
}

.def-home-heading-badge{
    display:inline-block;
    background:#ff744f;
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.5px;
    text-transform:uppercase;
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:14px;
}

.def-home-heading-title{
    font-size:46px;
    line-height:1.15;
    font-weight:800;
    color:#16233b;
    margin-bottom:10px;
}

.def-home-heading-desc{
    font-size:20px;
    color:#64748b;
}

.def-home-benefits{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
    margin:28px 0 30px 0;
}

.def-home-benefit{
    background:#fff;
    border:1px solid #e8edf4;
    border-radius:20px;
    padding:18px 20px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 8px 22px rgba(15,23,42,.04);
}

.def-home-benefit-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:50%;
    background:#f5f8ff;
    border:1px solid #e3ebfb;
    display:flex;
    align-items:center;
    justify-content:center;
}

.def-home-benefit-icon i{
    font-size:24px;
    color:#356df3;
}

.def-home-benefit-title{
    font-size:22px;
    font-weight:800;
    color:#18223a;
    line-height:1.2;
    margin-bottom:4px;
}

.def-home-benefit-desc{
    font-size:15px;
    color:#6c7a90;
    line-height:1.45;
}

.def-home-tabs{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-bottom:24px;
}

.def-home-tablink{
    cursor:pointer;
}

.def-home-tablink p{
    margin:0;
    padding:12px 20px;
    border-radius:999px;
    border:1px solid #e2e8f0;
    background:#fff;
    color:#475569;
    font-size:15px;
    font-weight:700;
    line-height:1;
    transition:.25s ease;
}

.def-home-tablink.is-active p,
.def-home-tablink:hover p{
    background:#16233b;
    color:#fff;
    border-color:#16233b;
}

.def-home-products-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:20px;
}

.def-home-card{
    position:relative;
    background:#fff;
    border:1px solid #e9edf4;
    border-radius:24px;
    padding:18px;
    box-shadow:0 10px 28px rgba(15,23,42,.05);
    transition:all .25s ease;
    height:100%;
    display:flex;
    flex-direction:column;
}

.def-home-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 36px rgba(15,23,42,.10);
}

.def-home-card-badge{
    position:absolute;
    top:16px;
    left:16px;
    z-index:3;
    background:#ff744f;
    color:#fff;
    border-radius:10px;
    font-size:12px;
    font-weight:800;
    line-height:1;
    padding:8px 10px;
    text-transform:uppercase;
}

.def-home-card-badge.purple{
    background:#8b5cf6;
}

.def-home-card-fav{
    position:absolute;
    top:14px;
    right:14px;
    width:36px;
    height:36px;
    border-radius:50%;
    border:1px solid #e6ebf2;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#64748b;
    font-size:18px;
    z-index:3;
}

.def-home-card-image{
    height:290px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-bottom:18px;
}

.def-home-card-image img{
    max-width:100%;
    max-height:260px;
    object-fit:contain;
    transition:transform .25s ease;
}

.def-home-card:hover .def-home-card-image img{
    transform:scale(1.04);
}

.def-home-card-title{
    font-size:22px;
    line-height:1.25;
    font-weight:800;
    color:#152238;
    margin-bottom:6px;
    min-height:56px;
}

.def-home-card-subtitle{
    font-size:15px;
    line-height:1.45;
    color:#697586;
    min-height:44px;
    margin-bottom:16px;
}

.def-home-card-features{
    display:flex;
    justify-content:space-between;
    gap:8px;
    margin-bottom:18px;
}

.def-home-card-feature{
    flex:1;
    text-align:center;
}

.def-home-card-feature-icon{
    width:46px;
    height:46px;
    margin:0 auto 8px auto;
    border-radius:50%;
    background:#f8fafc;
    border:1px solid #edf2f7;
    display:flex;
    align-items:center;
    justify-content:center;
}

.def-home-card-feature-icon i{
    color:#356df3;
    font-size:20px;
}

.def-home-card-feature-text{
    font-size:13px;
    line-height:1.35;
    color:#667085;
    font-weight:600;
}

.def-home-card-footer{
    margin-top:auto;
    padding-top:16px;
    border-top:1px solid #edf2f7;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.def-home-card-price{
    font-size:20px;
    font-weight:800;
    color:#16233b;
    line-height:1;
}

.def-home-card-link{
    min-width:112px;
    text-align:center;
    padding:12px 16px;
    border:2px solid #8fb0ff;
    border-radius:14px;
    color:#356df3 !important;
    font-size:16px;
    font-weight:800;
    text-decoration:none !important;
    line-height:1;
    transition:.25s ease;
}

.def-home-card-link:hover{
    background:#356df3;
    color:#fff !important;
    border-color:#356df3;
}

.def-home-card-noprice{
    font-size:14px;
    color:#64748b;
    font-weight:700;
}

.def-home-tabcontent{
    display:none;
}

.def-home-tabcontent.is-active{
    display:block;
}

@media (max-width: 1200px){
    .def-home-products-grid{
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
    .def-home-benefits{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 991px){
    .def-home-heading-title{
        font-size:34px;
    }
    .def-home-products-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width: 767px){
    .def-home-showcase{
        padding:16px 14px 10px 14px;
    }
    .def-home-heading-title{
        font-size:28px;
    }
    .def-home-heading-desc{
        font-size:16px;
    }
    .def-home-benefits{
        grid-template-columns:1fr;
        gap:12px;
    }
    .def-home-products-grid{
        grid-template-columns:1fr;
        gap:16px;
    }
    .def-home-card-image{
        height:250px;
    }
    .def-home-card-title{
        min-height:auto;
        font-size:20px;
    }
    .def-home-card-subtitle{
        min-height:auto;
    }
}

