*{
    box-sizing:border-box;
}

body{
    overflow-x:hidden;
}

body{
    font-family:'Poppins',sans-serif;
    margin:0;
    background:#f5f7fa;
}

/* HERO */
.hero{
    background:linear-gradient(135deg,#0a7f3f,#00c26e);
    color:#fff;
    padding:120px 20px;
    text-align:center;
}

.hero h1{
    font-size:48px;
    font-weight:800;
}

.hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
}

.btn{
    display:inline-block;
    padding:18px 50px;
    border-radius:12px;
    font-weight:800;
    font-size:18px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s;
}

.btn:hover{
    transform:translateY(-3px) scale(1.05);
}

.primary{
    background:#ffcc00;
    color:#000;
}

.whatsapp{
    background:#25D366;
    color:#fff;
}

/* PREVIEW */
.preview{
    text-align:center;
    margin-top:-50px;
}

.preview img{
    width:90%;
    max-width:900px;
    border-radius:15px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

/* SECTIONS */
section{
    padding:80px 20px;
    text-align:center;
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    background:#fff;
    padding:20px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.card img{
    width:100%;
}

/* VIDEO */
.video iframe{
    width:90%;
    max-width:800px;
    height:400px;
}

/* PRICING */
.price-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,0.2);
}

.old{
    text-decoration:line-through;
    color:red;
    font-size:26px;
}

.new{
    font-size:60px;
    color:#00a651;
    font-weight:800;
}

.note{
    margin-top:10px;
}

.floating-buy{
    position:fixed;
    bottom:20px;
    right:20px;
    background:linear-gradient(135deg,#ffcc00,#ff9900);
    color:#000;
    padding:15px 25px;
    border-radius:50px;
    font-weight:800;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,0.3);
    z-index:999;
    animation:pulse 1.5s infinite;
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.08);}
    100%{transform:scale(1);}
}

.floating-timer{
    position:fixed;
    top:20px;
    right:20px;
    background:#111;
    color:#fff;
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
    z-index:999;
}

/* SALES POPUP */
.sales-popup{
    position:fixed;
    bottom:20px;
    left:20px;
    background:#fff;
    padding:15px;
    border-radius:10px;
    display:none;
}

/* FOOTER */
footer{
    background:#111;
    color:#fff;
    padding:30px;
}



/* MOBILE RESPONSIVE */
@media (max-width: 768px){

    .hero h1{
        font-size:28px;
        line-height:1.3;
    }

    .hero p{
        font-size:15px;
        padding:0 10px;
    }

    .btn{
        width:90%;
        display:block;
        margin:20px auto;
        text-align:center;
    }

    .video iframe{
        width:100%;
        height:220px;
    }

    .preview img{
        width:95%;
    }

    section{
        padding:50px 15px;
    }

    .new{
        font-size:45px;
    }

    .grid{
        grid-template-columns:1fr;
    }

}