/*=====================================
        APP SHOWCASE
======================================*/

.app-grid{

display:grid;

grid-template-columns:420px 1fr;

gap:70px;

align-items:center;

}

.phone-frame{

width:320px;

margin:auto;

padding:18px;

background:#111827;

border-radius:45px;

box-shadow:0 30px 60px rgba(0,0,0,.18);

}

.phone-frame img{

width:100%;

border-radius:28px;

display:block;

}

.feature-list{

margin-top:35px;

display:grid;

gap:22px;

}

.feature-item{

display:flex;

gap:18px;

align-items:flex-start;

}

.feature-item i{

width:55px;

height:55px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

background:var(--primary);

color:#fff;

font-size:20px;

}

.feature-item h3{

margin-bottom:6px;

font-size:19px;

}

.feature-item p{

color:var(--gray);

line-height:1.7;

}

/*=====================================
        QR SECTION
======================================*/

.qr-download{

background:#F8FBFF;

}

.qr-card{

padding:50px;

display:flex;

justify-content:space-between;

align-items:center;

gap:40px;

}

.qr-image img{

width:180px;

}

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

@media(max-width:992px){

.app-grid{

grid-template-columns:1fr;

text-align:center;

}

.feature-item{

justify-content:center;

text-align:left;

}

.qr-card{

flex-direction:column;

text-align:center;

}

}

@media(max-width:768px){

.phone-frame{

width:250px;

}

.qr-card{

padding:30px;

}

.qr-image img{

width:150px;

}

}

/*=====================================
        SCREENSHOTS
======================================*/

.screenshots{

background:#fff;

}

.screenshots-grid{

display:grid;

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

gap:30px;

margin-top:50px;

}

.screenshot-card{

padding:15px;

transition:.35s;

}

.screenshot-card:hover{

transform:translateY(-8px);

}

.screenshot-card img{

width:100%;

border-radius:22px;

display:block;

}

/*=====================================
        DOWNLOAD STEPS
======================================*/

.download-steps{

background:#F8FBFF;

}

.steps-grid{

display:grid;

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

gap:30px;

margin-top:50px;

}

.step-card{

padding:40px;

text-align:center;

}

.step-number{

width:70px;

height:70px;

margin:auto;

margin-bottom:20px;

border-radius:50%;

background:var(--primary);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:28px;

font-weight:700;

}

/* ===========================
   DOWNLOAD STATS
=========================== */

.download-stats{
    padding:90px 0;
    background:#fff;
}

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

.download-stats .stat-card{
    background:#fff;
    border-radius:24px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    border:1px solid #eee;
    min-height:180px;

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

.download-stats .stat-card h2{
    font-size:42px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:12px;
    line-height:1.2;
}

.download-stats .stat-card p{
    font-size:18px;
    color:#555;
    margin:0;
}

/* Mobile */

@media(max-width:992px){

.download-stats .stats-grid{

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

}

}

@media(max-width:576px){

.download-stats .stats-grid{

grid-template-columns:1fr;

}

}

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

@media(max-width:992px){

.screenshots-grid{

grid-template-columns:1fr;

}

.steps-grid{

grid-template-columns:1fr;

}

}

/*=====================================
        DOWNLOAD FAQ
======================================*/

.download-faq{

background:#F8FBFF;

}

.faq-list{

display:grid;

gap:25px;

margin-top:50px;

}

.faq-item{

padding:35px;

transition:.35s;

}

.faq-item:hover{

transform:translateY(-6px);

}

.faq-item h3{

margin-bottom:15px;

font-size:22px;

}

.faq-item p{

color:var(--gray);

line-height:1.8;

}

/*=====================================
        FINAL CTA
======================================*/

.download-final{

background:linear-gradient(
135deg,
#07111F,
#0E1C31
);

}

.download-final-card{

padding:80px 50px;

text-align:center;

border-radius:30px;

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

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

}

.download-final-card h2{

font-size:46px;

color:#fff;

margin:25px 0;

}

.download-final-card p{

max-width:650px;

margin:auto;

color:#CBD5E1;

line-height:1.9;

margin-bottom:40px;

}

.download-final .download-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

@media(max-width:768px){

.download-final-card{

padding:45px 25px;

}

.download-final-card h2{

font-size:32px;

}

}