*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#fff;
    color:#111;
}

a{text-decoration:none;color:inherit;}



.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 8%;
    border-bottom:1px solid #ececec;
    background:white;
    position:sticky;
    top:0;
}

.logo{
    font-size:1.3rem;
    font-weight:700;
}

.logo span{
    color:#999;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:2rem;
}

.nav-btn{
    background:#111;
    color:#fff;
    padding:.9rem 1.5rem;
    border-radius:8px;
}

.hero{
    text-align:center;
    max-width:700px;
    margin:auto;
    padding:100px 20px 70px;
}

.eyebrow{
    color:#888;
    letter-spacing:2px;
    margin-bottom:12px;
}

.hero h1{
    font-size:3rem;
    font-weight:500;
    margin-bottom:20px;
}

.subtitle{
    color:#666;
}

.faq{
    width:min(850px,90%);
    margin:auto;
    padding-bottom:100px;
}

.faq-item{
    border-bottom:1px solid #e7e7e7;
}

.faq-question{
    width:100%;
    padding:24px 0;
    border:none;
    background:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:1.05rem;
    font-weight:600;
    cursor:pointer;
}

.faq-question span{
    font-size:1.5rem;
    color:#888;
    transition:.3s;
}

.faq-answer{
    display:none;
    padding-bottom:24px;
}

.faq-answer p{
    color:#666;
    line-height:1.7;
}

footer{
    border-top:1px solid #ececec;
    padding:24px 8%;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-links{
    display:flex;
    gap:24px;
}

.footer-links a{
    color:#777;
}

.footer-links a:hover{
    color:#111;
}

.copyright{
    margin-top:20px;
    color:#999;
    font-size:.85rem;
}

@media(max-width:900px){

    .nav-links{
        display:none;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .footer-content{
        flex-direction:column;
        gap:20px;
    }

}
