/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ffe4f3, #e6e6ff, #fff5cc);
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
    color:#333;
}

/* ANIMATION */
@keyframes gradientMove{
    0%{background-position: 0% 50%;}
    50%{background-position: 100% 50%;}
    100%{background-position: 0% 50%;}
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 16px;
    position:sticky;
    top:0;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.5);
    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
    gap:8px;
}

.logo img{
    width:35px;
    height:35px;
    border-radius:10px;
}

.navbar h1{
    font-size:18px;
    color:#7b2ff7;
}

.navbar button{
    margin-left:6px;
    padding:6px 12px;
    border:none;
    border-radius:20px;
    font-size:12px;
    cursor:pointer;
}

.login{
    background:transparent;
    border:1px solid #7b2ff7;
    color:#7b2ff7;
}

.download{
    background: linear-gradient(135deg, #ff4ecd, #7b2ff7);
    color:white;
}

/* HERO */
.hero{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px 15px;
}

.glass{
    background: rgba(255,255,255,0.7);
    padding:25px;
    border-radius:20px;
    backdrop-filter: blur(15px);
    border:1px solid rgba(255,255,255,0.4);
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.hero-logo{
    width:65px;
    margin-bottom:10px;
}

.hero h2{
    font-size:22px;
    margin-bottom:8px;
    color:#7b2ff7;
}

.hero p{
    font-size:13px;
    opacity:0.8;
    margin-bottom:15px;
}

/* BUTTONS */
.buttons{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.btn{
    padding:10px;
    border-radius:25px;
    text-decoration:none;
    font-size:14px;
    transition:0.3s;
    display:block;
}

.primary{
    background: linear-gradient(135deg, #ff4ecd, #7b2ff7);
    color:white;
    font-weight:bold;
}

.secondary{
    border:1px solid #7b2ff7;
    color:#7b2ff7;
    background:white;
}

.btn:hover{
    transform: scale(1.05);
    box-shadow:0 5px 15px rgba(255, 78, 205, 0.3);
}

/* FEATURES */
.features{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    padding:20px;
}

.card{
    background: rgba(255,255,255,0.6);
    padding:18px;
    border-radius:15px;
    text-align:center;
    border:1px solid rgba(255,255,255,0.4);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-5px);
}

/* LISTENER SECTION */
.sub-text{
    font-size:14px;
    margin-bottom:10px;
    opacity:0.8;
}

/* BENEFITS */
.benefits{
    text-align:left;
    margin:15px 0;
    font-size:13px;
    line-height:1.8;
}

/* BIG BUTTON */
.big-btn{
    font-size:16px;
    padding:12px;
}

/* TRUST TEXT */
.trust{
    font-size:12px;
    margin-top:10px;
    color:#ff4ecd;
    font-weight:500;
}

/* STEPS */
.steps{
    padding:25px 15px;
    text-align:center;
}

.step-box{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.step{
    background: rgba(255,255,255,0.6);
    padding:12px;
    border-radius:10px;
}

/* CTA */
.cta{
    text-align:center;
    padding:30px 15px;
}

/* FOOTER */
footer{
    text-align:center;
    padding:15px;
    font-size:12px;
    background: rgba(255,255,255,0.4);
}

/* TABLET */
@media(min-width:768px){

    .hero{
        padding:80px 20px;
    }

    .hero h2{
        font-size:36px;
    }

    .buttons{
        flex-direction:row;
        justify-content:center;
    }

    .features{
        grid-template-columns:repeat(3,1fr);
    }

    .step-box{
        flex-direction:row;
        justify-content:center;
    }

    .step{
        width:180px;
    }
}

/* DESKTOP */
@media(min-width:1024px){

    .hero h2{
        font-size:42px;
    }

    .glass{
        padding:40px;
    }
}