
/* =====================================================
   PRODUCTS PAGE
   CV NUSA TIRTA TEKNOLOGI
======================================================*/

/* =====================================================
    HERO
======================================================*/

.products-hero{

    position:relative;

    overflow:hidden;

    padding:120px 0 100px;

    background:
    radial-gradient(circle at top right,
    rgba(30,79,159,.08),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(255,107,0,.08),
    transparent 40%),

    #fff;

}

.products-hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    border-radius:50%;

    background:rgba(30,79,159,.05);

    right:-180px;

    top:-180px;

}

.products-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,107,0,.05);

    left:-180px;

    bottom:-180px;

}

.products-hero-wrapper{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:90px;

    align-items:center;

}

.products-hero-image{

    text-align:center;

}

.products-hero-image img{

    width:100%;

    max-width:560px;

    filter:drop-shadow(0 25px 55px rgba(0,0,0,.12));

}

.product-stats{

    display:flex;

    gap:25px;

    margin-top:50px;

}

.product-stats div{

    flex:1;

    background:#fff;

    border-radius:22px;

    padding:25px;

    border:1px solid #EEF2F7;

    text-align:center;

    box-shadow:var(--shadow-sm);

}

.product-stats h3{

    font-size:34px;

    color:var(--primary);

    margin-bottom:8px;

}

.product-stats span{

    color:var(--gray-600);

    font-size:14px;

}

/* =====================================================
    SEARCH
======================================================*/

.product-search{

    padding:80px 0;

    background:#F8FAFC;

}

.search-wrapper{

    display:flex;

    flex-direction:column;

    gap:35px;

}

.search-box{

    position:relative;

}

.search-box input{

    width:100%;

    height:68px;

    padding-left:65px;

    border:none;

    border-radius:20px;

    background:#fff;

    box-shadow:var(--shadow-sm);

    font-size:16px;

}

.search-box i{

    position:absolute;

    left:28px;

    top:50%;

    transform:translateY(-50%);

    font-size:22px;

    color:var(--primary);

}

.product-filter{

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;

}

.product-filter button{

    border:none;

    background:#fff;

    padding:13px 24px;

    border-radius:999px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

    box-shadow:var(--shadow-xs);

}

.product-filter button:hover,

.product-filter button.active{

    background:var(--gradient-primary);

    color:#fff;

}/* =====================================================
    FEATURED PRODUCT
======================================================*/

.featured-product{

    padding:120px 0;

    background:#fff;

}

.featured-card{

    margin-top:70px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    padding:60px;

    border-radius:40px;

    background:linear-gradient(
        135deg,
        #ffffff,
        #F8FAFC
    );

    box-shadow:var(--shadow-md);

    overflow:hidden;

    position:relative;

}

.featured-card::before{

    content:"";

    position:absolute;

    width:380px;

    height:380px;

    border-radius:50%;

    background:rgba(30,79,159,.05);

    right:-120px;

    top:-120px;

}

.featured-image{

    text-align:center;

}

.featured-image img{

    width:100%;

    max-width:520px;

    transition:.45s;

}

.featured-card:hover .featured-image img{

    transform:translateY(-10px) scale(1.02);

}

.featured-content{

    position:relative;

    z-index:2;

}

.product-label{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(30,79,159,.08);

    color:var(--primary);

    font-size:13px;

    font-weight:700;

    margin-bottom:20px;

}

.featured-content h2{

    font-size:52px;

    margin-bottom:22px;

}

.featured-content p{

    color:var(--gray-600);

    line-height:1.9;

    margin-bottom:35px;

}

.product-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:35px;

}

.product-tags span{

    background:#EEF4FF;

    color:var(--primary);

    padding:10px 18px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

}

/* =====================================================
    MARKETPLACE
======================================================*/

.products-showcase{

    padding:120px 0;

    background:#F8FAFC;

}

.products-grid-market{

    margin-top:70px;

    display:grid;

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

    gap:30px;

}

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

.market-card{

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    border:1px solid #EEF2F7;

    transition:.35s;

    box-shadow:var(--shadow-sm);

    position:relative;

}

.market-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

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

.market-image{

    height:260px;
    padding:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#F8FAFC;
    overflow:hidden;

}
.market-image img{

    max-width:100%;
    max-height:200px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.4s;

}

.market-card:hover .market-image img{

    transform:scale(1.05);

}
/* =====================================================
    BODY
======================================================*/

.market-body{

    padding:28px;

}

.market-body h3{

    font-size:26px;
    line-height:1.3;
    margin:15px 0;
    min-height:68px;

}
.market-body p{

    color:var(--gray-600);

    line-height:1.8;

    min-height:78px;

}

/* =====================================================
    CATEGORY
======================================================*/

.category{

    display:inline-flex;

    align-items:center;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(30,79,159,.08);

    color:var(--primary);

    font-size:12px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.5px;

}

/* =====================================================
    TAGS
======================================================*/

.market-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin-top:20px;

}

.market-tags span{

    padding:8px 14px;

    border-radius:999px;

    background:#F3F7FD;

    font-size:12px;

    color:var(--gray-700);

    font-weight:600;

}

/* =====================================================
    LINK
======================================================*/

.market-link{

    margin-top:30px;

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    color:var(--primary);

    text-decoration:none;

    transition:.3s;

}

.market-link i{

    transition:.3s;

}

.market-link:hover{

    color:var(--secondary);

}

.market-link:hover i{

    transform:translateX(8px);

}/* =====================================================
    PRODUCT ECOSYSTEM
======================================================*/

.product-ecosystem{

    padding:120px 0;

    background:#fff;

}

.ecosystem-wrapper{

    margin-top:70px;

    display:grid;

    grid-template-columns:320px 1fr 320px;

    align-items:center;

    gap:60px;

}

.ecosystem-center{

    text-align:center;

}

.ecosystem-center img{

    width:100%;

    max-width:520px;

    filter:drop-shadow(0 20px 45px rgba(0,0,0,.12));

}

.ecosystem-side{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.eco-card{

    display:flex;

    align-items:center;

    gap:18px;

    padding:22px;

    background:#fff;

    border-radius:22px;

    border:1px solid #EEF2F7;

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.eco-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

.eco-card i{

    width:64px;

    height:64px;

    border-radius:18px;

    background:var(--gradient-primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

}

.eco-card h4{

    margin-bottom:6px;

}

.eco-card span{

    color:var(--gray-600);

    font-size:14px;

}

.ecosystem-tech{

    margin-top:70px;

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    gap:16px;

}

.ecosystem-tech span{

    padding:12px 22px;

    background:#F4F8FD;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    color:var(--primary);

}

/* =====================================================
    TECHNOLOGY STACK
======================================================*/

.technology-stack{

    padding:120px 0;

    background:#F8FAFC;

}

.stack-grid{

    margin-top:70px;

    display:grid;

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

    gap:28px;

}

.stack-card{

    background:#fff;

    border-radius:24px;

    padding:35px;

    text-align:center;

    border:1px solid #EEF2F7;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.stack-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.stack-card img{

    width:58px;

    margin-bottom:20px;

}

.stack-card span{

    display:block;

    font-weight:600;

}/* =====================================================
    DEPLOYMENT
======================================================*/

.deployment{

    padding:120px 0;

    background:#fff;

}

.deployment-grid{

    margin-top:70px;

    display:grid;

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

    gap:30px;

}

.deployment-card{

    background:#fff;

    padding:40px;

    border-radius:28px;

    border:1px solid #EEF2F7;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.deployment-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.deployment-card i{

    width:82px;

    height:82px;

    border-radius:22px;

    margin:auto;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:36px;

    color:#fff;

    background:var(--gradient-primary);

    margin-bottom:25px;

}

.deployment-card h3{

    margin-bottom:18px;

}

.deployment-card p{

    color:var(--gray-600);

    line-height:1.8;

}

/* =====================================================
    COMPARISON
======================================================*/

.comparison{

    padding:120px 0;

    background:#F8FAFC;

}

.comparison-table{

    margin-top:60px;

    overflow:auto;

    border-radius:30px;

    box-shadow:var(--shadow-md);

}

.comparison table{

    width:100%;

    border-collapse:collapse;

    background:#fff;

}

.comparison thead{

    background:var(--gradient-primary);

    color:#fff;

}

.comparison th{

    padding:24px;

    text-align:center;

    font-weight:700;

}

.comparison td{

    padding:22px;

    text-align:center;

    border-bottom:1px solid #EEF2F7;

}

.comparison tbody tr:hover{

    background:#F8FAFC;

}

.comparison td:first-child{

    text-align:left;

    font-weight:600;

}

.comparison i{

    color:#22C55E;

    font-size:22px;

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

.cta{

    padding:120px 0;

    background:#fff;

}

.cta-box{

    position:relative;

    overflow:hidden;

    padding:90px;

    border-radius:40px;

    background:var(--gradient-primary);

    text-align:center;

    color:#fff;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-180px;

    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    bottom:-140px;

    left:-80px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-box span{

    display:inline-block;

    margin-bottom:18px;

    font-size:15px;

    letter-spacing:2px;

    text-transform:uppercase;

    opacity:.9;

}

.cta-box h2{

    color:#fff;

    font-size:48px;

    margin-bottom:25px;

}

.cta-box p{

    max-width:760px;

    margin:0 auto 40px;

    color:rgba(255,255,255,.92);

    line-height:1.9;

}

.cta-box .hero-buttons{

    justify-content:center;

}

.cta-box .btn-outline{

    border:2px solid rgba(255,255,255,.3);

    color:#fff;

}

.cta-box .btn-outline:hover{

    background:#fff;

    color:var(--primary);

}

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

/* Laptop */

@media(max-width:1200px){

.products-hero-wrapper{

    grid-template-columns:1fr;

    text-align:center;

    gap:60px;

}

.featured-card{

    grid-template-columns:1fr;

    gap:50px;

}

.products-grid-market{

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

}

.ecosystem-wrapper{

    grid-template-columns:1fr;

}

.stack-grid{

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

}

.deployment-grid{

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

}

}

/* Tablet */

@media(max-width:991px){

.products-hero{

    padding-top:140px;

}

.product-stats{

    flex-wrap:wrap;

}

.product-stats div{

    min-width:180px;

}

.featured-card{

    padding:45px;

}

.stack-grid{

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

}

}

/* Mobile */

@media(max-width:768px){

.products-hero{

    padding:120px 0 70px;

}

.products-hero-content h1{

    font-size:38px;

}

.products-hero-content p{

    font-size:16px;

}

.product-stats{

    flex-direction:column;

    gap:18px;

}

.product-stats div{

    width:100%;

}

.search-box input{

    height:58px;

    padding-left:55px;

    font-size:15px;

}

.search-box i{

    left:22px;

}

.product-filter{

    justify-content:flex-start;

    overflow-x:auto;

    flex-wrap:nowrap;

    padding-bottom:8px;

    scrollbar-width:none;

}

.product-filter::-webkit-scrollbar{

    display:none;

}

.product-filter button{

    white-space:nowrap;

}

.products-grid-market{

    grid-template-columns:1fr;

}

.market-image{

    height:200px;

}

.market-body{

    padding:22px;

}

.market-body h3{

    font-size:24px;

}

.featured-card{

    padding:30px;

}

.featured-content h2{

    font-size:34px;

}

.product-tags{

    gap:8px;

}

.ecosystem-side{

    gap:18px;

}

.eco-card{

    padding:18px;

}

.stack-grid{

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

    gap:18px;

}

.stack-card{

    padding:25px;

}

.stack-card img{

    width:46px;

}

.deployment-grid{

    grid-template-columns:1fr;

}

.deployment-card{

    padding:30px;

}

.comparison{

    overflow-x:auto;

}

.comparison table{

    min-width:700px;

}

.cta-box{

    padding:55px 30px;

}

.cta-box h2{

    font-size:34px;

}

}

/* Small Mobile */

@media(max-width:480px){

.products-hero-content h1{

    font-size:30px;

}

.products-hero-content p{

    font-size:15px;

}

.product-stats h3{

    font-size:28px;

}

.market-body h3{

    font-size:22px;

}

.market-body p{

    min-height:auto;

}

.eco-card{

    flex-direction:column;

    text-align:center;

}

.eco-card i{

    margin-bottom:10px;

}

.stack-grid{

    grid-template-columns:1fr 1fr;

}

.cta-box{

    border-radius:25px;

    padding:45px 22px;

}

.cta-box h2{

    font-size:30px;

}

.cta-box p{

    font-size:15px;

}

}
.section-title{

    max-width:900px;
    margin:0 auto 70px;
    text-align:center;

}

.section-title span{

    display:block;

    color:var(--secondary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title h2{

    font-size:54px;

    line-height:1.2;

    margin-bottom:22px;

    color:var(--title-color);

}

.section-title p{

    max-width:720px;

    margin:0 auto;

    font-size:20px;

    line-height:1.9;

    color:var(--gray-600);

}
/* =====================================================
    TECHNOLOGY CARD
======================================================*/

.stack-card{

    background:#fff;
    border-radius:24px;
    padding:35px 25px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    text-align:center;

    border:1px solid #EEF2F7;

    box-shadow:var(--shadow-sm);

    transition:.35s;

    min-height:180px;

}

.stack-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

.stack-card img{

    width:64px;
    height:64px;

    object-fit:contain;

    display:block;

    margin-bottom:20px;

}

.stack-card span{

    display:block;

    font-size:16px;

    font-weight:600;

    color:var(--gray-800);

    line-height:1.4;

}