/* ===========================
   GOOGLE FONT
=========================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{
    --primary:#8b5cf6;
    --secondary:#a855f7;
    --dark:#111827;
    --text:#374151;
    --light:#ffffff;
    --gray:#f5f7fb;
    --border:#e5e7eb;
    --shadow:0 15px 40px rgba(0,0,0,.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

/* ===========================
 NAVBAR
=========================== */

header{
    position:fixed;
    width:100%;
    top:0;
    left:0;
    z-index:999;
}

.navbar{
    max-width:1200px;
    margin:20px auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 35px;

    background:rgba(255,255,255,.65);
    backdrop-filter:blur(18px);

    border-radius:18px;
    box-shadow:0 10px 40px rgba(0,0,0,.06);
}

.logo{
    font-size:28px;
    font-weight:800;
    color:var(--primary);
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:#555;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

/* ===========================
 BUTTONS
=========================== */

.btn-primary{
    display:inline-block;
    background:linear-gradient(135deg,#8b5cf6,#c026d3);
    color:white;
    padding:15px 34px;
    border-radius:50px;
    transition:.35s;
    font-weight:600;
    box-shadow:0 15px 35px rgba(139,92,246,.35);
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.btn-secondary{
    display:inline-block;
    margin-left:18px;
    padding:15px 34px;
    border:2px solid var(--primary);
    border-radius:50px;
    color:var(--primary);
    transition:.3s;
}

.btn-secondary:hover{
    background:var(--primary);
    color:white;
}

.btn-outline{
    padding:12px 28px;
    border-radius:40px;
    border:2px solid var(--primary);
    color:var(--primary);
}

/* ===========================
 HERO
=========================== */

.hero{
    max-width:1200px;
    margin:auto;
    min-height:100vh;

    display:flex;
    justify-content:space-between;
    align-items:center;

    gap:80px;

    padding-top:140px;
}

.hero-left{
    width:50%;
}

.hero-right{
    width:50%;
    position:relative;
    height:700px;
}

.badge{

display:inline-block;

background:#efe6ff;

color:#7c3aed;

padding:10px 22px;

border-radius:30px;

margin-bottom:25px;

font-weight:600;

}

.hero h1{

font-size:68px;

line-height:1.1;

margin-bottom:30px;

font-weight:800;

color:var(--dark);

}

.hero h1 span{

background:linear-gradient(135deg,#8b5cf6,#ec4899);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

font-size:20px;

line-height:1.8;

margin-bottom:40px;

color:#666;

}

.stats{

display:flex;

gap:50px;

margin-top:60px;

}

.stats h2{

font-size:40px;

color:var(--primary);

}

.stats p{

margin-top:5px;

font-size:15px;

color:#666;

}

/* ===========================
 FLOATING PHONES
=========================== */

.phone{

position:absolute;

width:270px;

border-radius:40px;

overflow:hidden;

box-shadow:0 30px 80px rgba(0,0,0,.20);

animation:float 5s ease-in-out infinite;

}

.phone img{

border-radius:40px;

}

.phone1{

left:20px;

top:60px;

z-index:3;

}

.phone2{

right:0;

top:130px;

animation-delay:1s;

}

.phone3{

left:160px;

top:240px;

animation-delay:2s;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0);

}

}

/* ===========================
BRANDS
=========================== */

.brands{

padding:120px 20px;

background:#fafafa;

text-align:center;

}

.brands h2{

font-size:42px;

margin-bottom:60px;

}

.brand-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

gap:30px;

max-width:1100px;

margin:auto;

}

.brand-card{

background:white;

padding:35px;

border-radius:18px;

font-size:20px;

font-weight:600;

transition:.3s;

box-shadow:var(--shadow);

}

.brand-card:hover{

transform:translateY(-10px);

}
/* ====================================
   FEATURES
==================================== */

.features{
    padding:120px 20px;
    text-align:center;
}

.features h2{
    font-size:48px;
    color:#111827;
    margin-bottom:20px;
}

.subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    margin-bottom:70px;
}

.feature-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.card{
    background:white;
    border-radius:25px;
    padding:45px;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
    border:1px solid #eee;
}

.card:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(139,92,246,.15);
}

.icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F3E8FF;
    font-size:32px;
    margin:auto;
    margin-bottom:25px;
}

.card h3{
    margin-bottom:15px;
    font-size:24px;
    color:#111827;
}

.card p{
    color:#666;
    line-height:1.8;
}

/* ====================================
   SCREENSHOTS
==================================== */

.screens{
    padding:120px 20px;
    background:#fafafa;
}

.screens h2{
    text-align:center;
    font-size:48px;
    margin-bottom:70px;
}

.screen-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:35px;
}

.screen-grid img{
    border-radius:35px;
    box-shadow:0 30px 60px rgba(0,0,0,.12);
    transition:.4s;
}

.screen-grid img:hover{
    transform:translateY(-12px) scale(1.03);
}

/* ====================================
   TIMELINE
==================================== */

.steps{
    padding:120px 20px;
    text-align:center;
}

.steps h2{
    font-size:46px;
    margin-bottom:70px;
}

.timeline{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:30px;
    flex-wrap:wrap;
}

.step{
    flex:1;
    min-width:220px;
    background:white;
    padding:45px;
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
}

.step span{
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(135deg,#8B5CF6,#D946EF);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    font-weight:700;
    margin:auto;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:15px;
}

/* ====================================
   DOWNLOAD CTA
==================================== */

.download{
    padding:140px 20px;
    text-align:center;
    background:linear-gradient(135deg,#8B5CF6,#D946EF);
    color:white;
}

.download h2{
    font-size:52px;
    max-width:850px;
    margin:auto;
    margin-bottom:25px;
}

.download p{
    font-size:20px;
    max-width:650px;
    margin:auto;
    margin-bottom:45px;
    opacity:.9;
}

.download .btn-primary{
    background:white;
    color:#8B5CF6;
}

/* ====================================
   FAQ
==================================== */

.faq{
    padding:120px 20px;
    max-width:900px;
    margin:auto;
}

.faq h2{
    text-align:center;
    margin-bottom:60px;
    font-size:46px;
}

.faq-item{
    margin-bottom:20px;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #eee;
}

.faq-item button{
    width:100%;
    padding:22px;
    font-size:18px;
    border:none;
    background:white;
    cursor:pointer;
    text-align:left;
    font-weight:600;
}

.faq-item div{
    padding:0 22px 22px;
    color:#666;
    line-height:1.8;
}

/* ====================================
   FOOTER
==================================== */

footer{
    background:#111827;
    color:white;
    padding:80px 20px 40px;
}

.footer-content{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
}

.footer-content h3{
    font-size:30px;
    margin-bottom:20px;
}

.footer-content h4{
    margin-bottom:20px;
}

.footer-content a{
    display:block;
    color:#ddd;
    margin-bottom:12px;
}

.footer-content a:hover{
    color:white;
}

.copyright{
    margin-top:70px;
    text-align:center;
    opacity:.7;
}

/* ====================================
   RESPONSIVE
==================================== */

@media(max-width:900px){

.hamburger{
    display: block !important;
}
.stats h2 {
    font-size: 28px;
}
.navbar{

padding:18px 22px;

}

.desktop-btn{

display:none;

}

.hamburger{

display:block;

}

.nav-links{

position:fixed;

top:0;

right:-100%;

width:280px;

height:100vh;

background:white;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

gap:35px;

transition:.4s;

box-shadow:-10px 0 30px rgba(0,0,0,.1);

z-index:999;

}

.nav-links.active{

right:0;

}

.nav-links li{

list-style:none;

}

.nav-links a{

font-size:22px;

font-weight:600;

}

.hero{

padding-top:120px;

flex-direction:column;

}

.hero-left,

.hero-right{

width:100%;

text-align:center;

}

.phone{

position:relative;

margin:auto;

left:auto;

right:auto;

top:auto;

}

.phone2,

.phone3{

display:none;

}

.stats{

justify-content:center;

}

.hero h1{

font-size:42px;

}

}

.hamburger{
display: none;

width:34px;

cursor:pointer;

z-index:1001;

}

.hamburger span{

display:block;

height:3px;

margin:6px 0;

background:#111;

border-radius:20px;

transition:.35s;

}

.hamburger.active span:nth-child(1){

transform:rotate(45deg) translateY(13px);

}

.hamburger.active span:nth-child(2){

opacity:0;

}

.hamburger.active span:nth-child(3){

transform:rotate(-45deg) translateY(-13px);

}