*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#020617;
    color:white;
    line-height:1.7;
}

.container{
    width:min(1200px,90%);
    margin:auto;
}

section{
    padding:90px 0;
}

h1{
    font-size:3.5rem;
    line-height:1.1;
    margin-bottom:25px;
}

h2{
    font-size:2.4rem;
    margin-bottom:20px;
    text-align:center;
}

h3{
    font-size:1.3rem;
    margin-bottom:15px;
}

p{
    color:#cbd5e1;
}

a{
    text-decoration:none;
}

.btn-primary{
    display:inline-block;
    background:#2563eb;
    color:white;
    padding:16px 26px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
    background:#1d4ed8;
}

.btn-secondary{
    display:inline-block;
    border:1px solid #334155;
    color:white;
    padding:16px 26px;
    border-radius:14px;
}

.navbar{
    position:sticky;
    top:0;
    z-index:999;
    background:rgba(2,6,23,.9);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #1e293b;
}

.nav-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo{
    color:white;
    font-weight:700;
    font-size:1.4rem;
}

nav{
    display:flex;
    gap:20px;
}

nav a{
    color:#cbd5e1;
}

.hero{
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-content{
    max-width:750px;
}

.hero-actions{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.trust-row{
    display:flex;
    gap:20px;
    margin-top:35px;
    flex-wrap:wrap;
    color:#93c5fd;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.card{
    background:#0f172a;
    padding:35px;
    border-radius:24px;
    border:1px solid #1e293b;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    border-color:#2563eb;
}

.card a{
    color:#60a5fa;
}

.section-subtitle{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.cta-banner{
    background:#2563eb;
    text-align:center;
}

.cta-banner p{
    color:white;
    margin-bottom:30px;
}

.contact-form{
    max-width:700px;
    margin:auto;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    margin-bottom:20px;
    padding:18px;
    border:none;
    border-radius:14px;
    background:#0f172a;
    color:white;
}

.contact-form button{
    border:none;
    cursor:pointer;
}

.footer{
    border-top:1px solid #1e293b;
    padding:50px 0;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:40px;
}

.footer a{
    display:block;
    color:#cbd5e1;
    margin-bottom:10px;
}

.page-header{
    padding:140px 0 80px;
    text-align:center;
}

.page-content{
    max-width:900px;
    margin:auto;
}

.page-content p{
    margin-bottom:25px;
}

@media(max-width:768px){

    h1{
        font-size:2.5rem;
    }

    h2{
        font-size:2rem;
    }

    .nav-inner{
        flex-direction:column;
        gap:20px;
    }

    nav{
        flex-wrap:wrap;
        justify-content:center;
    }

}