:root{
    --green:#00BB60;
    --dark:#111111;
    --gray:#666666;
    --light:#f7f8fa;
    --border:#e8ebee;
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
    background:#ffffff;
    color:var(--dark);
    font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
}

.topbar{
    width:100%;
    padding:28px 20px;
    text-align:center;
    border-bottom:1px solid #f1f1f1;
    background:#ffffff;
}

.logo{
    font-size:1.8rem;
    font-weight:800;
    letter-spacing:1px;
}

.logo span{
    color:var(--green);
}

.hero-wrapper{
    max-width:1100px;
    margin:0 auto;
    padding:50px 20px 70px;
}

.hero-card{
    max-width:760px;
    margin:0 auto;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:24px;
    padding:55px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}

.badge{
    display:inline-block;
    background:rgba(0,187,96,.12);
    color:var(--green);
    padding:8px 16px;
    border-radius:999px;
    font-size:.9rem;
    font-weight:600;
    margin-bottom:25px;
}

h1{
    margin:0;
    font-size:3rem;
    line-height:1.15;
    font-weight:800;
    letter-spacing:-1px;
}

.hero-text{
    margin-top:25px;
    font-size:1.2rem;
    line-height:1.7;
    color:var(--gray);
}

.cta-button{
    display:inline-block;
    margin-top:35px;
    background:var(--green);
    color:#ffffff;
    text-decoration:none;
    padding:18px 42px;
    border-radius:999px;
    font-size:1.1rem;
    font-weight:700;
    transition:.2s ease;
    box-shadow:0 6px 18px rgba(0,187,96,.25);
}

.cta-button:hover{
    transform:translateY(-2px);
}

.trust-row{
    display:flex;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
    margin-top:35px;
}

.trust-item{
    background:#f5f7f8;
    border:1px solid var(--border);
    padding:12px 18px;
    border-radius:12px;
    font-size:.95rem;
    color:#333333;
}

.small-disclaimer{
    margin-top:28px;
    font-size:.8rem;
    line-height:1.6;
    color:#777777;
}

.info-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
    margin-top:40px;
}

.info-card{
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
}

.info-card h2{
    margin-top:0;
    font-size:1.5rem;
}

.info-card p{
    color:var(--gray);
    line-height:1.8;
}

.footer{
    margin-top:70px;
    padding:50px 20px;
    background:#fafafa;
    border-top:1px solid #eeeeee;
    text-align:center;
    color:#777777;
    font-size:.9rem;
    line-height:1.8;
}

.footer-links{
    margin-bottom:20px;
}

.footer-links a{
    color:#555555;
    text-decoration:none;
    margin:0 12px;
}

.footer-links a:hover{
    text-decoration:underline;
}

@media(max-width:900px){

    h1{
        font-size:2.2rem;
    }

    .hero-card{
        padding:38px 28px;
    }

    .info-section{
        grid-template-columns:1fr;
    }

}

@media(max-width:600px){

    .logo{
        font-size:1.5rem;
    }

    h1{
        font-size:1.9rem;
    }

    .hero-text{
        font-size:1.05rem;
    }

    .cta-button{
        width:100%;
    }

}

