
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f7f5ff;
overflow-x:hidden;
color:#111;
position:relative;
}

.bg1,.bg2{
position:absolute;
border-radius:50%;
filter:blur(120px);
z-index:-1;
}

.bg1{
width:350px;
height:350px;
background:#673bb7;
top:-100px;
left:-120px;
opacity:0.3;
}



.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
background:rgba(255,255,255,0.75);
backdrop-filter:blur(12px);
position:sticky;
top:0;
z-index:999;
}

.brand{
display:flex;
align-items:center;
gap:14px;
}

.brand img{
width:65px;
height:65px;
border-radius:18px;
box-shadow:0 10px 30px rgba(103,59,183,0.25);
}

.brand h2{
font-size:28px;
}

.brand p{
color:#666;
font-size:13px;
}

.nav-links{
display:flex;
gap:30px;
}

.nav-links a{
text-decoration:none;
font-weight:500;
color:#333;
}

.desktop-btn,
.primary-btn{
background:linear-gradient(135deg,#673bb7,#8f63ff);
border:none;
padding:15px 28px;
color:#fff;
font-weight:600;
border-radius:18px;
cursor:pointer;
box-shadow:0 12px 35px rgba(103,59,183,0.3);
}

.secondary-btn{
padding:15px 28px;
border:2px solid #673bb7;
background:#fff;
color:#673bb7;
font-weight:600;
border-radius:18px;
cursor:pointer;
}

.hero{
min-height:100vh;
display:flex;
align-items:center;
justify-content:space-between;
padding:60px 8%;
gap:50px;
}

.hero-left{
flex:1;
}

.tag{
display:inline-block;
background:#ece4ff;
padding:10px 20px;
border-radius:50px;
color:#673bb7;
font-weight:600;
margin-bottom:25px;
}

.hero h1{
font-size:72px;
line-height:1.1;
margin-bottom:20px;
}

.hero h1 span{
color:#673bb7;
}

.hero p{
font-size:18px;
line-height:1.8;
color:#666;
max-width:620px;
margin-bottom:35px;
}

.hero-btns{
display:flex;
gap:20px;
margin-bottom:50px;
margin-top:50px;
}

.stats{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.stat-card{
background:rgba(255,255,255,0.8);
backdrop-filter:blur(12px);
padding:28px;
border-radius:25px;
min-width:180px;
box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.stat-card h2{
font-size:40px;
color:#673bb7;
margin-bottom:5px;
}

.hero-right{
flex:1;
display:flex;
justify-content:center;
position:relative;
}

.mobile-frame{
width:340px;
padding:15px;
background:#111;
border-radius:45px;
transform:rotate(-4deg);
box-shadow:0 25px 80px rgba(103,59,183,0.35);
}

.mobile-frame img{
width:100%;
border-radius:35px;
display:block;
}

.floating{
position:absolute;
background:#fff;
padding:16px 22px;
border-radius:18px;
font-weight:600;
box-shadow:0 12px 35px rgba(0,0,0,0.08);
}

.floating1{
top:80px;
left:0;
}

.floating2{
bottom:70px;
right:0;
}

.features{
padding:100px 8%;
}

.features h2{
text-align:center;
font-size:52px;
margin-bottom:60px;
}

.feature-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.feature-card{
background:rgba(255,255,255,0.75);
padding:40px 30px;
border-radius:30px;
backdrop-filter:blur(12px);
box-shadow:0 10px 40px rgba(0,0,0,0.05);
transition:0.3s;
}

.feature-card:hover{
transform:translateY(-8px);
}

.icon{
font-size:42px;
margin-bottom:20px;
}

.feature-card h3{
font-size:24px;
margin-bottom:15px;
color:#673bb7;
}

.feature-card p{
color:#666;
line-height:1.7;
}

.offer{
padding:20px 8% 100px;
}

.offer-box{
background:linear-gradient(135deg,#673bb7,#8f63ff);
padding:70px;
border-radius:40px;
text-align:center;
color:#fff;
box-shadow:0 25px 80px rgba(103,59,183,0.35);
}

.offer-box h2{
font-size:52px;
margin-bottom:20px;
}

.offer-box p{
font-size:20px;
margin-bottom:30px;
}

footer{
padding:60px;
text-align:center;
}

footer img{
width:90px;
border-radius:22px;
margin-bottom:20px;
}

footer h3{
font-size:32px;
margin-bottom:10px;
color:#673bb7;
}

.mobile-download{
display:none;
}

@media(max-width:950px){

.navbar{
flex-direction:column;
gap:18px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
gap:18px;
}

.desktop-btn{
display:none;
}

.hero{
flex-direction:column;
text-align:center;
padding-top:40px;
}

.hero h1{
font-size:46px;
}

.hero-btns{
justify-content:center;
flex-wrap:wrap;
}

.stats{
justify-content:center;
}

.mobile-frame{
width:300px;
}

.features h2{
font-size:38px;
}

.offer-box{
padding:45px 25px;
}

.offer-box h2{
font-size:36px;
}

.floating{
display:none;
}

.mobile-download{
display: flex
;
        position: fixed;
        bottom: 20px;
        left: 33%;
        transform: translateX(-50%);
        width: 42%;
    
        justify-content: center;
        align-items: center;
        padding: 18px;
        background: linear-gradient(135deg, #673bb7, #8f63ff);
        color: #fff;
        font-weight: 700;
        font-size: 18px;
        border-radius: 22px;
        text-decoration: none;
        box-shadow: 0 20px 50px rgba(103, 59, 183, 0.45);
        z-index: 9999;
}

body{
padding-bottom:100px;
}

}
