:root{
    --primary:#16a34a;
    --primary-dark:#15803d;
    --dark:#0f172a;
    --dark-2:#111827;
    --gray:#f8fafc;
    --text:#1e293b;
}

body{
    background:#fff;
    color:var(--text);
    font-family:Inter,Arial,sans-serif;
}

.hero{
    padding:90px 0;
    background:
    radial-gradient(circle at top left,#22c55e20,transparent 40%),
    radial-gradient(circle at top right,#16a34a20,transparent 40%),
    #ffffff;
}

.badge-custom{
    background:#dcfce7;
    color:#166534;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
    display:inline-block;
    margin-bottom:25px;
}

.hero h1{
    font-size:58px;
    font-weight:900;
    line-height:1;
    margin-bottom:25px;
}

.hero p{
    font-size:20px;
    color:#475569;
    margin-bottom:30px;
}

.hero-price{
    font-size:52px;
    font-weight:900;
    color:var(--primary);
    margin-bottom:25px;
}

.btn-buy{
    background:var(--primary);
    color:#fff;
    padding:18px 40px;
    border-radius:14px;
    text-decoration:none;
    font-weight:800;
    display:inline-block;
    transition:.3s;
}

.btn-buy:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
    color:#fff;
}

.hero-image{
    width:100%;
    max-width:500px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    font-size:42px;
    font-weight:900;
    margin-bottom:15px;
}

.section-sub{
    text-align:center;
    color:#64748b;
    margin-bottom:60px;
}

.benefit-card{
    background:#fff;
    border:1px solid #e2e8f0;
    border-radius:20px;
    padding:30px;
    text-align:center;
    height:100%;
    transition:.3s;
    position:relative;
    overflow:hidden;
    box-shadow:
    0 15px 35px rgba(15,23,42,.12);

}

.benefit-card:hover{

    transform:translateY(-6px);

    box-shadow:
   0 30px 60px rgba(15,23,42,.20);


}
.product-card::before{

    content:'';

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:
    linear-gradient(
        90deg,
        #16a34a,
        #22c55e
    );

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

.stats{
    background:var(--dark);
    color:#fff;
}

.stat-number{
    font-size:58px;
    font-weight:900;
}

.stat-text{
    opacity:.8;
}

.offer-card{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    padding:50px;
    border-radius:30px;
    text-align:center;
    max-width:700px;
    margin:auto;
}

.old-price{
    text-decoration:line-through;
    opacity:.6;
}

.new-price{
    font-size:68px;
    font-weight:900;
    color:#22c55e;
}

.faq-item{
    border:1px solid #e2e8f0;
    border-radius:14px;
    margin-bottom:12px;
}

.cta-final{
    background:#f8fafc;
    padding:100px 0;
    text-align:center;
}

footer{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:30px;
}

@media(max-width:768px){

.hero{
    text-align:center;
}

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

.hero-price{
    font-size:40px;
}

.section-title{
    font-size:30px;
}

.new-price{
    font-size:50px;
}

}