/* ===================================
   GLOBAL
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Segoe UI",sans-serif;
    background:#f5f7fb;
    color:#222;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

.pdown-container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===================================
   HERO
=================================== */

.pdown-hero{
    padding:80px 0;
}

.pdown-hero-grid{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:50px;
    align-items:center;
}

.pdown-hero-content h1{
    font-size:52px;
    margin-bottom:20px;
    line-height:1.2;
}

.pdown-hero-content p{
    color:#555;
    margin-bottom:18px;
}

.pdown-button-group{
    display:flex;
    gap:15px;
    margin-top:30px;
}

.pdown-primary-btn,
.pdown-secondary-btn{
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.pdown-primary-btn{
    background:#0d6efd;
    color:#fff;
}

.pdown-primary-btn:hover{
    background:#0056d6;
}

.pdown-secondary-btn{
    border:2px solid #0d6efd;
    color:#0d6efd;
}

.pdown-secondary-btn:hover{
    background:#0d6efd;
    color:#fff;
}

/* ===================================
   DOWNLOAD CARD
=================================== */

.pdown-download-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.pdown-download-card h2{
    margin-bottom:10px;
}

.pdown-download-card p{
    color:#666;
    margin-bottom:20px;
}

/* ===================================
   FORM
=================================== */

.pdown-form-group{
    margin-bottom:15px;
}

.pdown-form-group input{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:0 15px;
    font-size:15px;
}

.pdown-form-group input:focus{
    outline:none;
    border-color:#0d6efd;
}

.pdown-form-group input[readonly]{
    background:#f4f4f4;
}

.pdown-submit-btn{
    width:100%;
    height:52px;
    border:none;
    border-radius:8px;
    background:#0d6efd;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.pdown-submit-btn:hover{
    background:#0056d6;
}

.pdown-privacy{
    margin-top:15px;
    font-size:14px;
    color:#666;
}

/* ===================================
   INFO BOXES
=================================== */

.pdown-info-section{
    padding:60px 0;
}

.pdown-info-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.pdown-info-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.pdown-info-box i{
    font-size:30px;
    color:#0d6efd;
    margin-bottom:12px;
}

/* ===================================
   FEATURE CARDS
=================================== */

.pdown-feature-section{
    padding-bottom:70px;
}

.pdown-feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.pdown-feature-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.pdown-feature-card h2{
    margin-bottom:20px;
}

.pdown-feature-card ul li{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.pdown-feature-card table{
    width:100%;
    border-collapse:collapse;
}

.pdown-feature-card table td{
    padding:10px 0;
    border-bottom:1px solid #eee;
}

.pdown-download-btn{
    display:block;
    text-align:center;
    background:#16a34a;
    color:#fff;
    padding:14px;
    border-radius:8px;
    margin:20px 0;
}

.pdown-download-details p{
    margin:8px 0;
}

/* ===================================
   VIDEO
=================================== */

.pdown-video-showcase{
    padding:80px 0;
    background:#f8fbff;
}

.pdown-video-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.pdown-image-box,
.pdown-video-box{
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.pdown-image-box img{
    transition:.4s;
}

.pdown-image-box:hover img{
    transform:scale(1.05);
}

.pdown-video-box iframe{
    width:100%;
    height:450px;
    border:0;
}

/* ===================================
   FAQ
=================================== */

.pdown-faq-section{
    padding:80px 0;
}

.pdown-section-title{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
}

.pdown-faq-item{
    background:#fff;
    margin-bottom:15px;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
}

.pdown-faq-question{
    width:100%;
    padding:20px;
    background:#fff;
    border:none;
    cursor:pointer;
    text-align:left;
    font-size:17px;
    font-weight:600;
    display:flex;
    justify-content:space-between;
}

.pdown-faq-question::after{
    content:"+";
    color:#0d6efd;
    font-size:24px;
}

.pdown-faq-item.active .pdown-faq-question::after{
    content:"−";
}

.pdown-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:.4s;
}

.pdown-faq-answer p{
    padding:20px;
    color:#555;
}

.pdown-faq-item.active .pdown-faq-answer{
    max-height:300px;
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:992px){

.pdown-hero-grid,
.pdown-feature-grid,
.pdown-video-grid{
    grid-template-columns:1fr;
}

.pdown-info-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.pdown-info-grid{
    grid-template-columns:1fr;
}

.pdown-button-group{
    flex-direction:column;
}

.pdown-hero-content h1{
    font-size:36px;
}

.pdown-video-box iframe{
    height:280px;
}

}
/*==================================
    MOBILE - FORM FIRST
==================================*/

@media (max-width:768px){

    .pdown-hero-grid{
        display:flex;
        flex-direction:column;
    }

    /* Download Form First */
    .pdown-download-card{
        order:1;
        margin-bottom:30px;
    }

    /* Hero Content Second */
    .pdown-hero-content{
        order:2;
    }

}