

/* --- 1. GLOBAL VARIABLES & RESET --- */

:root {
    --primary-color:#0066cc;
    --text-dark:#111111;
    --text-muted:#666666;
    --bg-light:#f5f5f7;
    --bg-white:#ffffff;
    --border-color:#e5e5e7;
    --max-width:1800px;
    --transition-speed:0.3s;
}


.pd-page *,
.pd-page *::before,
.pd-page *::after{
    box-sizing:border-box;
}


.pd-page{

    background-color:white;
    font-family:'Poppins',sans-serif;
    color:var(--text-dark);
    line-height:1.6;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}



.pd-page img{

    width:100%;
    height:auto;
    display:block;

}


.pd-page picture{

    display:block;
    width:100%;

}



.pd-page .container{

    max-width:var(--max-width);
    margin:0 auto;
    padding:0 20px;

}


/* --- 2. TYPOGRAPHY --- */


.pd-page .section-padding{

    padding:30px 0;

}



.pd-page .text-center{

    text-align:center;

}



.pd-page .section-title{

    font-size:36px;
    font-weight:700;
    color:var(--text-dark);

    margin-bottom:20px;

    line-height:1.25;
    letter-spacing:-0.5px;

}



.pd-page .section-desc{

    font-size:16px;
    font-weight:400;

    color:var(--text-muted);

    max-width:1500px;

    margin:0 auto 20px;

}




/* Banner common */

.pd-page .ratio-244{

    width:100%;

    aspect-ratio:2.44 / 1;

    overflow:hidden;

    border-radius:12px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    background:#eaeaea;

}



.pd-page .ratio-244 img{

    width:100%;
    height:100%;

    object-fit:cover;

}




/* --- 3. HERO --- */


.pd-page .module-hero{

    background:white;

}



.pd-page .hero-banner-wrap{

    width:100%;
    margin:auto;

}





/* --- 4. KEY FEATURE LIGHT --- */


.pd-page .module-key-feature-light{

    background:white;

}



.pd-page .light-feature-header-wrap{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    margin-bottom:20px;

}



.pd-page .light-feature-header-wrap .header-left{

    flex:1;

}



.pd-page .light-sub-title{

    font-size:14px;

    font-weight:600;

    color:var(--primary-color);

    text-transform:uppercase;

    letter-spacing:1.5px;

    margin-bottom:5px;

}



.pd-page .light-main-title{

    font-size:36px;

    font-weight:700;

    line-height:1.25;

    letter-spacing:-.5px;

    color:var(--text-dark);
  
    margin-top:0;

}



.pd-page .light-feature-header-wrap .header-right{

    flex:1.2;

    padding-top:32px;

}



.pd-page .light-desc-text{

    font-size:16px;

    font-weight:400;

    color:var(--text-muted);

}





/* --- 5. REVERSE FEATURE --- */


.pd-page .module-feature-reverse{

    background:white;

}



.pd-page .reverse-header-wrap{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    gap:60px;

    margin-bottom:20px;

}



.pd-page .reverse-desc-block{

    flex:1.5;

    padding-top:32px;

}



.pd-page .reverse-desc-text{

    font-size:16px;

    font-weight:400;

    color:var(--text-muted);

}



.pd-page .reverse-title-block{

    flex:1;

    text-align:right;

}



.pd-page .reverse-sub-title{

    font-size:14px;

    font-weight:600;

    color:var(--primary-color);

    text-transform:uppercase;

    letter-spacing:1.5px;

}



.pd-page .reverse-main-title{

    font-size:36px;

    font-weight:700;

    line-height:1.25;

    margin-top:0;
}



.pd-page .reverse-hero-banner .ratio-244{

    position:relative;

    width:100%;

    aspect-ratio:2.44/1;

    overflow:hidden;

}




/* --- 6. TABS FEATURE --- */


.pd-page .tab-controls{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-bottom:35px;

}



.pd-page .tab-btn{

    padding:12px 28px;

    border:1px solid var(--border-color);

    background:white;

    border-radius:30px;

    cursor:pointer;

    font-size:15px;

    font-weight:500;

    color:var(--text-muted);

}



.pd-page .tab-btn.active{

    background:var(--primary-color);

    color:white;

}



.pd-page .tab-content{

    display:none;

}



.pd-page .tab-content.active{

    display:block;

}

/* --- 7. ACCORDION SECTION --- */


.pd-page .module-accordion-section{

    background:white;

}



.pd-page .acc-wrapper{

    display:flex;

    gap:50px;

    align-items:center;

}



.pd-page .acc-list{

    flex:1;

}



.pd-page .acc-item{

    border-bottom:1px solid var(--border-color);

    padding:24px 0;

    cursor:pointer;

}



.pd-page .acc-item:first-child{

    padding-top:0;

}



.pd-page .acc-header{

    font-size:18px;

    font-weight:600;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:var(--text-dark);

}



.pd-page .acc-icon{

    font-size:14px;

    transition:.3s;

    color:var(--text-muted);

}



.pd-page .acc-body{

    max-height:0;

    overflow:hidden;

    transition:
    max-height .3s ease,
    margin-top .3s ease;

    color:var(--text-muted);

    font-size:15px;

}



.pd-page .acc-item.active .acc-body{

    max-height:150px;

    margin-top:15px;

}



.pd-page .acc-item.active .acc-header{

    color:var(--primary-color);

}



.pd-page .acc-item.active .acc-icon{

    transform:rotate(180deg);

    color:var(--primary-color);

}



.pd-page .acc-sticky-img{

    flex:1.2;

    position:sticky;

    top:40px;

    overflow:hidden;

    border-radius:12px;

}



.pd-page .acc-img-panel{

    display:none;

}



.pd-page .acc-img-panel.active{

    display:block;

}





/* --- 8. FOUR MEDIA FEATURES --- */


.pd-page .module-media-features{

    background:white;

}



.pd-page .media-grid-wrapper{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}



.pd-page .media-card{

    display:flex;

    flex-direction:column;
  height:100%;

}



.pd-page .media-card-title{

    font-size:20px;

    font-weight:700;

    color:#1d1d1f;

    margin-bottom:12px;

}



.pd-page .media-card-desc{

    font-size:14px;

    color:#515154;

    line-height:1.5;

}



.pd-page .media-card-preview{

    width:100%;

    aspect-ratio:1 / 1;

    overflow:hidden;

    border-radius:12px;
 margin-top:auto;

}



.pd-page .media-card-preview img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}



.pd-page .media-card:hover img{

    transform:scale(1.05);

}





/* --- 9. FAQ --- */



.pd-page .module-faq {
    background-color: #fafafa;
    border-top: 1px solid var(--border-color);
}

.pd-page .faq-header {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--text-dark);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.pd-page .faq-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    display: -webkit-flex;
    align-items: center;
    gap: 10px;
}

.pd-page .faq-title::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 24px;
    background-color: #e02424;
}

.pd-page .faq-subtitle {
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.pd-page .faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.pd-page .faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.01);
    transition: border-color var(--transition-speed);
}

.pd-page .faq-item:hover {
    border-color: #ccc;
}

.pd-page .faq-item.active {
    border-color: #d11212;
}

.pd-page .faq-q {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.pd-page .faq-q span {
    transition: transform var(--transition-speed);
    color: #d11212;
    font-size: 12px;
}

.pd-page .faq-item.active .faq-q span {
    transform: rotate(180deg);
}

.pd-page .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    color: var(--text-muted);
    font-size: 14px;
}

.pd-page .faq-a-inner {
    padding: 0 24px 20px 24px;
    line-height: 1.6;
}

.pd-page .faq-item.active .faq-a {
    max-height: 200px;
}


/* ==================================
   TABLET RESPONSIVE
================================== */


@media(max-width:1199px){


    .pd-page .container{

        padding:0 30px;

    }



    .pd-page .section-title{

        font-size:32px;

    }



    .pd-page .light-main-title,
    .pd-page .reverse-main-title{

        font-size:32px;

    }



    .pd-page .section-desc,
    .pd-page .light-desc-text,
    .pd-page .reverse-desc-text{

        font-size:15px;

    }



    .pd-page .light-feature-header-wrap,
    .pd-page .reverse-header-wrap{

        gap:35px;

    }



    .pd-page .media-grid-wrapper{

        grid-template-columns:repeat(2,1fr);

    }


}





/* ==================================
   MOBILE RESPONSIVE
================================== */


@media(max-width:768px){



    .pd-page .container{

        padding-left:16px;

        padding-right:16px;

    }




    .pd-page .section-padding{

        padding:20px 0;

    }





    /* Typography */


    .pd-page .section-title{

        font-size:26px;

        font-weight:700;

        line-height:1.25;

        margin-bottom:15px;

    }



    .pd-page .section-desc{

        font-size:14px;

        line-height:1.6;

    }



    .pd-page .light-sub-title,
    .pd-page .reverse-sub-title{

        font-size:12px;

    }



    .pd-page .light-main-title,
    .pd-page .reverse-main-title{

        font-size:26px;

        font-weight:700;

        line-height:1.25;

    }



    .pd-page .light-desc-text,
    .pd-page .reverse-desc-text{

        font-size:14px;

    }





    /* Banner */


    .pd-page .ratio-244{

        aspect-ratio:4 / 3;

        border-radius:6px;

    }



    .pd-page .ratio-244 img{

        object-fit:contain;

    }





    /* Feature Header */


    .pd-page .light-feature-header-wrap,
    .pd-page .reverse-header-wrap{

        flex-direction:column;

        gap:15px;

    }



    .pd-page .header-right,
    .pd-page .reverse-desc-block{

        padding-top:0;

    }



    .pd-page .reverse-title-block{

        text-align:left;

    }





    /* Tabs */


    .pd-page .tab-controls{

        flex-direction:column;

        gap:10px;

        margin-bottom:25px;

    }



    .pd-page .tab-btn{

        width:100%;

        font-size:14px;

        padding:10px 20px;

    }





    /* Accordion */


    .pd-page .acc-wrapper{

        flex-direction:column;

        gap:25px;

    }



    .pd-page .acc-sticky-img{

        width:100%;

        order:-1;

        position:relative;

        top:0;

    }



    .pd-page .acc-header{

        font-size:16px;

    }



    .pd-page .acc-body{

        font-size:14px;

    }





    /* Four Cards */


    .pd-page .media-grid-wrapper{

        grid-template-columns:1fr;

        gap:32px;

    }



    .pd-page .media-card-title{

        font-size:18px;

    }





    /* FAQ */


    .pd-page .faq-title{

        font-size:22px;

    }



    .pd-page .faq-q{

        padding:16px;

        font-size:14px;

    }



    .pd-page .faq-a-inner{

        padding:0 16px 16px;

        font-size:13px;

    }



}
