*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f4f5f7;
    overflow-x:hidden;
}

/* HEADER */

.topbar{
    background:#d31d24;
    padding:10px 0;
}

.logo{
    font-size:28px;
    color:#fff;
    font-weight:700;
    text-decoration:none;
}

.logo:hover{
    color:#fff;
}

.top-links{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:25px;
}

.top-links a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.top-links a:hover{
    color:#ffd8d8;
}

/* MOBILE MENU */

.mobile-toggle{
    display:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.mobile-menu{
    display:none;
    background:#c41a21;
    padding:15px;
}

.mobile-menu a{
    display:block;
    color:#fff;
    text-decoration:none;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.1);
}

/* HERO */

.hero-section{
    padding:35px 0;
}

.hero-card{
    background:#edf2f5;
    border-radius:10px;
    padding:30px;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.main-title{
    font-size:38px;
    font-weight:700;
    color:#222;
    text-align:center;
}

.sub-title{
    text-align:center;
    color:#666;
    margin-top:8px;
    font-size:15px;
}

/* INPUT AREA */

.download-box{
    margin-top:25px;
    background:#fff;
    border-radius:10px;
    padding:25px;
    border:2px dashed #d31d24;
}

.download-form{
    display:flex;
    gap:12px;
}

.url-input{
    width:100%;
    height:55px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 18px;
    font-size:15px;
}

.url-input:focus{
    outline:none;
    border-color:#d31d24;
}

.download-btn{
    background:#d31d24;
    border:none;
    color:#fff;
    min-width:180px;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.download-btn:hover{
    background:#b4141b;
}

.info-text{
    text-align:center;
    margin-top:18px;
    color:#777;
    font-size:14px;
}

/* DISCOVER */

.discover-box{
    margin-top:25px;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

.discover-title{
    padding:15px 20px;
    background:#f8f8f8;
    font-weight:600;
}

.discover-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 20px;
    border-bottom:1px solid #eee;
    transition:.3s;
    cursor:pointer;
}

.discover-item:hover{
    background:#fafafa;
}

.discover-item:last-child{
    border-bottom:none;
}

/* RESPONSIVE */

@media(max-width:992px){

.main-title{
    font-size:30px;
}

.download-btn{
    min-width:150px;
}

}

@media(max-width:768px){

.top-links{
    display:none;
}

.mobile-toggle{
    display:block;
    text-align:right;
}

.hero-section{
    padding:20px 0;
}

.hero-card{
    padding:20px;
}

.main-title{
    font-size:28px;
}

.sub-title{
    font-size:14px;
}

.download-box{
    padding:18px;
}

.download-form{
    flex-direction:column;
}

.url-input{
    height:52px;
}

.download-btn{
    width:100%;
    height:52px;
}

.discover-item{
    font-size:14px;
}

.logo{
    font-size:24px;
}

}

@media(max-width:480px){

.main-title{
    font-size:24px;
}

.hero-card{
    padding:15px;
}

.download-box{
    padding:15px;
}

}

/* DOWNLOAD GUIDE */

.download-guide{
    background:#f5f7fb;
}

.guide-card{
    background:#fff;
    border-radius:24px;
    padding:45px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.guide-heading{
    text-align:center;
    margin-bottom:40px;
}

.guide-heading h2{
    font-size:38px;
    font-weight:700;
    color:#222;
}

.guide-heading p{
    color:#666;
    margin-top:10px;
}

.step-box{
    background:#f8f9fc;
    border-radius:20px;
    padding:30px;
    margin-bottom:20px;
}

.step-box h3{
    font-size:28px;
    margin-bottom:25px;
    font-weight:600;
}

.steps-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.step-item{
    display:flex;
    align-items:flex-start;
    gap:15px;
}

.step-number{
    width:40px;
    height:40px;
    background:#d31d24;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    min-width:40px;
}

.phone-card{
    background:#fff;
    border-radius:20px;
    padding:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.phone-card:hover{
    transform:translateY(-10px);
}

.phone-card img{
    border-radius:20px;
}

.phone-card h5{
    margin-top:15px;
    font-weight:600;
}

.desktop-steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.desktop-step{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.circle{
    width:60px;
    height:60px;
    background:#d31d24;
    color:#fff;
    border-radius:50%;
    margin:auto;
    margin-bottom:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:bold;
}

/* MOBILE */

@media(max-width:768px){

.guide-card{
    padding:22px;
}

.guide-heading h2{
    font-size:28px;
}

.step-box{
    padding:20px;
}

.step-box h3{
    font-size:22px;
}

.desktop-steps{
    grid-template-columns:1fr;
}

.phone-card{
    margin-bottom:15px;
}

}

/* INFO SECTION */

.info-section{
    background:#f6f8fb;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:#222;
}

.section-heading p{
    color:#777;
    margin-top:10px;
}

.info-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.3s;
    position:relative;
    overflow:hidden;
}

.info-card:hover{
    transform:translateY(-8px);
}

.card-icon{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#d31d24,#ff5252);
    color:#fff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.info-card h3{
    font-size:28px;
    font-weight:600;
    margin-bottom:15px;
}

.info-card p{
    color:#666;
    line-height:1.8;
}

.info-card ul{
    margin-top:15px;
    padding-left:20px;
}

.info-card ul li{
    margin-bottom:12px;
    color:#444;
}

.safe-card{
    text-align:center;
}

.safe-features{
    margin-top:25px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.safe-item{
    background:#f5f7fb;
    padding:15px;
    border-radius:14px;
    font-weight:500;
}

/* MOBILE */

@media(max-width:768px){

.section-heading h2{
    font-size:30px;
}

.info-card{
    padding:22px;
}

.info-card h3{
    font-size:22px;
}

.safe-features{
    grid-template-columns:1fr;
}

.card-icon{
    width:60px;
    height:60px;
    font-size:24px;
}

}

/* UPDATE SECTION */

.updates-section{
    background:#f5f7fb;
}

.modern-card{
    background:#fff;
    border-radius:30px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.section-title-box{
    text-align:center;
    margin-bottom:35px;
}

.section-title-box h2{
    font-size:42px;
    font-weight:700;
}

.section-title-box p{
    color:#666;
}

/* UPDATE BOX */

.update-box{
    border-radius:24px;
    padding:30px;
    color:#fff;
    height:100%;
    position:relative;
    transition:.3s;
}

.update-box:hover{
    transform:translateY(-8px);
}

.blue{
    background:linear-gradient(135deg,#1f4fff,#4169ff);
}

.purple{
    background:linear-gradient(135deg,#7b2ff7,#b84cff);
}

.orange{
    background:linear-gradient(135deg,#ff8c00,#ff5722);
}

.green{
    background:linear-gradient(135deg,#00b894,#00d084);
}

.badge-tag{
    background:rgba(255,255,255,.2);
    display:inline-block;
    padding:6px 14px;
    border-radius:30px;
    margin-bottom:15px;
    font-size:13px;
}

.update-box h4{
    font-size:24px;
    font-weight:600;
}

.update-box p{
    margin-top:10px;
}

/* FAQ */

.faq-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.faq-title{
    margin-bottom:25px;
}

.faq-title h3{
    font-size:30px;
    font-weight:700;
}

.qa-item{
    background:#f7f8fc;
    padding:20px;
    border-radius:16px;
    margin-bottom:18px;
}

.qa-item h5{
    font-size:18px;
    font-weight:600;
}

.accordion-item{
    border:none;
    margin-bottom:15px;
    border-radius:16px !important;
    overflow:hidden;
}

.accordion-button{
    padding:18px;
    font-weight:600;
}

.accordion-button:not(.collapsed){
    background:#d31d24;
    color:#fff;
}

/* MOBILE */

@media(max-width:768px){

.modern-card{
    padding:22px;
}

.section-title-box h2{
    font-size:30px;
}

.faq-card{
    padding:22px;
}

.faq-title h3{
    font-size:24px;
}

.update-box{
    padding:22px;
}

}


/* PREMIUM FOOTER */

.premium-footer{
    background:linear-gradient(
        135deg,
        #111827,
        #1f2937
    );
    color:#fff;
    padding:70px 0 30px;
    margin-top:60px;
}

.footer-brand h2{
    font-size:32px;
    font-weight:700;
    margin-bottom:15px;
}

.footer-brand p{
    color:#cbd5e1;
    line-height:1.8;
}

.premium-footer h5{
    font-size:20px;
    margin-bottom:20px;
    font-weight:600;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:6px;
}

.social-icons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.social-icons a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:20px;
}

.social-icons a:hover{
    background:#d31d24;
    transform:translateY(-5px);
}

.premium-footer hr{
    margin:40px 0 25px;
    border-color:rgba(255,255,255,.1);
}

.footer-bottom{
    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
    margin-bottom:8px;
    font-size:14px;
}

/* MOBILE */

@media(max-width:768px){

.premium-footer{
    text-align:center;
    padding:50px 0 25px;
}

.footer-brand h2{
    font-size:26px;
}

.social-icons{
    justify-content:center;
}

.premium-footer h5{
    margin-top:15px;
}

.footer-links{
    margin-bottom:10px;
}

}