/*==================================
        PRODUCTS INTRO
===================================*/

.products-intro{
    padding:140px 0 70px;
    background:#050505;
}

.products-intro .section-header{
    max-width:760px;
    margin:0 auto;
    text-align:center;
}

.products-intro .section-header span{
    display:inline-block;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#888;
    margin-bottom:18px;
}

.products-intro .section-header h2{
    font-size:52px;
    font-weight:700;
    line-height:1.15;
    color:#fff;
    margin-bottom:24px;
}

.products-intro .section-header p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.9;
    color:#b5b5b5;
}


/*==================================
        PRODUCT SECTION
===================================*/

/*==================================
        PRODUCT SECTION HEADER
===================================*/

.product-section .section-header{
    max-width:760px;
    margin-bottom:70px;
}

.product-section .section-header span{
    display:inline-block;
    color:#8f8f8f;
    font-size:13px;
    font-weight:500;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.product-section .section-header h2{
    font-size:48px;
    font-weight:700;
    line-height:1.15;
    letter-spacing:-1px;
    color:#fff;
    margin-bottom:24px;
}

.product-section .section-header p{
    max-width:680px;
    font-size:18px;
    line-height:1.9;
    color:#b5b5b5;
}

/*=========================
      TABLET
=========================*/

@media(max-width:991px){

.product-section .section-header h2{
    font-size:40px;
}

.product-section .section-header p{
    font-size:17px;
}

}

/*=========================
      MOBILE
=========================*/

@media(max-width:768px){

.product-section .section-header{
    margin-bottom:50px;
}

.product-section .section-header h2{
    font-size:32px;
}

.product-section .section-header p{
    font-size:16px;
    line-height:1.8;
}

}

/*==================================
        PRODUCT CARD
===================================*/

.product-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.35s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

.product-image{
    height:230px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

.product-content{
    padding:30px;
}

.product-content h3{
    font-size:24px;
    font-weight:600;
    margin-bottom:14px;
}

.product-content p{
    color:#b5b5b5;
    font-size:15px;
    line-height:1.8;
    margin-bottom:20px;
}

.product-content ul{
    margin-bottom:28px;
}

.product-content ul li{
    color:#d5d5d5;
    font-size:15px;
    margin-bottom:12px;
    display:flex;
    align-items:center;
    gap:10px;
}

.product-content ul li i{
    color:#fff;
    font-size:12px;
}

.product-content .premium-btn{
    width:100%;
    justify-content:center;
}


/*==================================
        TABLET
===================================*/

@media(max-width:991px){

.products-intro{

    padding:120px 0 60px;

}

.products-intro .section-header h2{

    font-size:42px;

}

.products-intro .section-header p{

    font-size:17px;

}

.product-grid{

    grid-template-columns:repeat(2,1fr);

}

}


/*==================================
        MOBILE
===================================*/

@media(max-width:768px){

.products-intro{

    padding:110px 0 50px;

}

.products-intro .section-header h2{

    font-size:34px;

}

.products-intro .section-header p{

    font-size:16px;

}

.product-section{

    padding:70px 0;

}

.product-grid{

    grid-template-columns:1fr;

}

.product-image{

    height:220px;

}

.product-content{

    padding:24px;

}

.product-content h3{

    font-size:22px;

}

}

/*==================================
        PRODUCT GRID
===================================*/

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.product-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.35s ease;
    display:flex;
    flex-direction:column;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

/*==================================
        PRODUCT IMAGE
===================================*/

.product-image{
    height:230px;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.45s;
}

.product-card:hover .product-image img{
    transform:scale(1.08);
}

/*==================================
        PRODUCT CONTENT
===================================*/

.product-content{
    padding:30px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.product-content h3{
    font-size:24px;
    margin-bottom:14px;
    color:#fff;
}

.product-content p{
    color:#b5b5b5;
    font-size:15px;
    line-height:1.8;
    margin-bottom:22px;
}

/*==================================
        FEATURES
===================================*/

.product-content ul{
    list-style:none;
    margin-bottom:30px;
}

.product-content ul li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
    color:#d5d5d5;
    font-size:15px;
}

.product-content ul li i{
    font-size:12px;
    color:#fff;
}

/*==================================
        BUTTON
===================================*/

.product-content .premium-btn{
    width:100%;
    justify-content:center;
    margin-top:auto;
}

/*==================================
        RESPONSIVE
===================================*/

@media(max-width:991px){

.product-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.product-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.product-image{
    height:220px;
}

.product-content{
    padding:24px;
}

.product-content h3{
    font-size:22px;
}

.product-content p,
.product-content ul li{
    font-size:15px;
}

}


/*==================================
      WHY PRODUCTS
===================================*/

.why-products{
    padding:110px 0;
    background:#0a0a0a;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:45px 30px;
    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

.why-icon{
    width:65px;
    height:65px;
    border-radius:16px;
    background:#181818;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.why-icon i{
    font-size:26px;
    color:#fff;
}

.why-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.why-card p{
    font-size:15px;
    color:#b5b5b5;
    line-height:1.8;
}

@media(max-width:991px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-products{
    padding:80px 0;
}

.why-grid{
    grid-template-columns:1fr;
}

}


.why-products .section-header{

    max-width:760px;
    margin-bottom:70px;

}

.why-products .section-header span{

    display:inline-block;
    font-size:13px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#888;
    margin-bottom:24px;

}

.why-products .section-header h2{

    font-size:52px;
    line-height:1.15;
    font-weight:700;
    letter-spacing:-1px;

    margin-bottom:28px;

}

.why-products .section-header p{

    max-width:700px;

    font-size:18px;

    line-height:1.9;

    color:#b5b5b5;

}
.premium-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:16px 34px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:60px;
    color:#fff;
    overflow:hidden;
    transition:.45s ease;
    font-size:15px;
    font-weight:600;
}

.premium-btn::before{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:#fff;
    transition:.45s ease;
    z-index:0;
}

.premium-btn span,
.premium-btn i{
    position:relative;
    z-index:2;
    transition:.45s;
}

.premium-btn i{
    transform:rotate(-45deg);
}

.premium-btn:hover::before{
    left:0;
}

.premium-btn:hover{
    border-color:#fff;
}

.premium-btn:hover span,
.premium-btn:hover i{
    color:#000;
}

.premium-btn:hover i{
    transform:translateX(6px) rotate(0deg);
}


/*==================================
        TRUST
===================================*/

.trust{
    padding:120px 0;
    background:#050505;
}

.trust-header{
    max-width:700px;
    margin-bottom:70px;
}

.trust-header span{
    font-size:13px;
    letter-spacing:2px;
    color:#888;
    text-transform:uppercase;
}

.trust-header h2{
    font-size:20px;
    margin:18px 0;
}

.trust-header p{
    font-size:15px;
    color:#b5b5b5;
    line-height:1.9;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.trust-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:45px 30px;
    transition:.35s;
}

.trust-card:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

.trust-card h3{
    font-size:34px;
    margin-bottom:12px;
}

.trust-card p{
    font-size:15px;
    color:#b5b5b5;
}

@media(max-width:991px){

.trust-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.trust{
    padding:80px 0;
}

.trust-grid{
    grid-template-columns:1fr;
}

}
/*==================================
            CTA
===================================*/

.cta{
    padding:120px 0;
    background:#050505;
}

.cta-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:80px 60px;
    text-align:center;
}

.cta-box span{
    color:#888;
    font-size:13px;
    letter-spacing:2px;
}

.cta-box h2{
    font-size:20px;
    margin:20px 0;
}

.cta-box p{
    max-width:650px;
    margin:0 auto 40px;
    color:#b5b5b5;
    font-size:15px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

@media(max-width:768px){

.cta{
    padding:80px 0;
}

.cta-box{
    padding:50px 30px;
}

.cta-buttons{
    flex-direction:column;
}


