@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    font-family:'Poppins',sans-serif;
}

.nfs-hero{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:30px;
    padding:50px;
    border-radius:28px;
    background:linear-gradient(135deg,#071b34,#0d4ea6);
    color:#fff;
    margin-bottom:30px;
    overflow:hidden;
}

.hero-badge{
    display:inline-block;
    padding:8px 14px;
    border-radius:30px;
    background:rgba(255,255,255,.15);
    margin-bottom:20px;
}

.nfs-hero h1{
    font-size:3rem;
    line-height:1.2;
    margin-bottom:20px;
}

.nfs-hero h1 span{
    display:block;
    color:#7ec8ff;
}

.nfs-hero p{
    line-height:1.9;
    opacity:.95;
}

.hero-checks{
    margin-top:25px;
    display:grid;
    gap:10px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    margin-top:30px;
    flex-wrap:wrap;
}

.hero-buttons button{
    border:none;
    padding:14px 20px;
    border-radius:12px;
    font-weight:600;
    cursor:pointer;
}

.hero-buttons .secondary{
    background:rgba(255,255,255,.15);
    color:#fff;
}

.mockup-card{
    background:#fff;
    color:#111;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,.2);
}

.mockup-header{
    background:#0d4ea6;
    color:#fff;
    padding:18px;
    font-weight:bold;
}

.mockup-body{
    padding:25px;
}

.mockup-success{
    background:#dcfce7;
    color:#166534;
    padding:12px;
    border-radius:12px;
    margin-top:15px;
    margin-bottom:10px;
}

.metrics-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-bottom:30px;
}

.metric-card{
    background:#fff;
    padding:30px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.metric-card h3{
    font-size:2rem;
    color:#0d4ea6;
}

.steps-section{
    margin:40px 0;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
    margin-top:20px;
}

.step{
    background:#fff;
    padding:25px;
    border-radius:22px;
}

.step span{
    width:50px;
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0d4ea6;
    color:#fff;
    border-radius:50%;
    margin-bottom:15px;
}

.beta-banner{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:#fff;
    padding:40px;
    border-radius:24px;
    margin:40px 0;
}

.beta-banner ul{
    margin-top:20px;
    padding-left:20px;
}

.lead-box{
    background:#fff;
    border-radius:24px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
    margin-bottom:20px;
}

.form-grid input{
    padding:14px;
    border:1px solid #ddd;
    border-radius:12px;
}

.submit-btn{
    width:100%;
    margin-top:25px;
    padding:16px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    font-weight:600;
    cursor:pointer;
}

@media(max-width:900px){

    .nfs-hero{
        grid-template-columns:1fr;
        padding:30px;
    }

    .nfs-hero h1{
        font-size:2rem;
    }

}