*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
    margin:0;
    background:#f4f8fb;
    color:#10233f;
    font-family:Arial,Helvetica,sans-serif
}

a{color:inherit}

/* HEADER */
.site-header{
    background:#fff;
    border-bottom:1px solid #e2e9ef
}

.topbar{
    min-height:42px;
    background:#061a33;
    color:#b9cbd7;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 6%;
    font-size:9px
}

.topbar b{color:#fff}

.nav-wrap{
    min-height:88px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 6%
}

.brand{
    font-size:24px;
    font-weight:900;
    text-decoration:none;
    color:#061a33;
    line-height:1
}

.brand i{
    font-style:normal;
    color:#08a9df
}

.brand small{
    display:block;
    margin-top:5px;
    color:#71879a;
    font-size:7px;
    letter-spacing:1.4px
}

nav{
    display:flex;
    gap:22px;
    align-items:center
}

nav a{
    text-decoration:none;
    color:#344b61;
    font-size:10px;
    font-weight:800
}

nav a:hover{color:#08a9df}

/* HERO */
.hero,
.pagehero{
    background:linear-gradient(135deg,#061a33,#0a2b4d);
    color:#fff;
    padding:75px 6%
}

.hero h1,
.pagehero h1{
    font-size:48px;
    line-height:1.05;
    margin:12px 0
}

.hero h1 span{color:#08a9df}

.hero p,
.pagehero p{
    max-width:760px;
    color:#c5d4df;
    font-size:14px;
    line-height:1.8
}

/* SECTIONS */
.section{
    max-width:1200px;
    margin:auto;
    padding:60px 25px
}

.narrow{max-width:850px}

.section h2{
    font-size:30px;
    margin:10px 0 25px;
    color:#20364e
}

/* GRID */
.grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px
}

.grid.two{
    grid-template-columns:1fr 1fr
}

/* CARDS */
.card{
    background:#fff;
    border:1px solid #dfe7ed;
    padding:28px;
    box-shadow:0 8px 25px rgba(6,26,51,.04)
}

.card h3{
    font-size:18px;
    margin:12px 0 8px
}

.card p{
    color:#718496;
    font-size:11px;
    line-height:1.75
}

.icon{
    width:38px;
    height:38px;
    background:#eaf7fc;
    color:#0798c8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:9px;
    font-weight:900
}

/* BUTTONS */
.btn{
    display:inline-block;
    border:0;
    border-radius:6px;
    padding:12px 18px;
    text-decoration:none;
    font-size:10px;
    font-weight:900;
    cursor:pointer;
    margin-top:10px
}

.btn.primary{
    background:#08a9df;
    color:#fff
}

.btn.dark{
    background:#061a33;
    color:#fff
}

/* FORMS */
.field{
    display:flex;
    flex-direction:column;
    margin:16px 0
}

.field label{
    font-size:10px;
    font-weight:800;
    margin-bottom:7px;
    color:#30465d
}

.field input,
.field textarea{
    width:100%;
    padding:13px;
    border:1px solid #d5e0e7;
    border-radius:7px;
    background:#f8fafb;
    font-family:inherit;
    font-size:13px;
    outline:0
}

.field input:focus,
.field textarea:focus{
    border-color:#08a9df;
    box-shadow:0 0 0 3px rgba(8,169,223,.08)
}

.field textarea{
    min-height:130px;
    resize:vertical
}

/* NOTICE */
.notice{
    margin-top:20px;
    padding:16px;
    background:#fff8e8;
    border:1px solid #ead8aa;
    color:#75694e;
    font-size:10px;
    line-height:1.7
}

/* RESULT */
.result-card{
    background:#fff;
    border:1px solid #dce6ed;
    padding:30px
}

.result-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
    align-items:flex-start;
    border-bottom:1px solid #e5ebef;
    padding-bottom:22px
}

.result-top h2{margin-bottom:0}

.status{
    background:#fff8e8;
    color:#96731d;
    padding:7px 10px;
    font-size:8px;
    font-weight:900
}

.result-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1px;
    background:#dfe7ed;
    margin-top:25px
}

.result-grid div{
    background:#fff;
    padding:17px
}

.result-grid small{
    display:block;
    text-transform:uppercase;
    color:#8192a0;
    font-size:7px;
    font-weight:900;
    letter-spacing:.7px;
    margin-bottom:6px
}

.result-grid strong{
    font-size:11px;
    color:#30465d
}

/* FAQ */
.faq-item{
    background:#fff;
    border-top:1px solid #dfe7ed
}

.faq-item:last-child{
    border-bottom:1px solid #dfe7ed
}

.faq-question{
    width:100%;
    padding:18px;
    border:0;
    background:#fff;
    display:flex;
    justify-content:space-between;
    text-align:left;
    font-weight:800;
    color:#30465d;
    cursor:pointer
}

.faq-question b{color:#08a9df}

.faq-answer{
    display:none;
    padding:0 18px 18px;
    color:#718496;
    font-size:11px;
    line-height:1.7
}

.faq-item.active .faq-answer{display:block}

/* DARK CARD */
.dark-card{
    background:#061a33;
    color:#fff
}

.dark-card p{color:#a9bdcf}

/* SUPPORT */
.support-mail{
    display:block;
    color:#08a9df;
    text-decoration:none;
    font-size:11px;
    font-weight:800;
    margin-top:13px
}

/* FOOTER */
.site-footer{
    margin-top:50px;
    background:#061a33;
    color:#fff
}

.footer-grid{
    max-width:1200px;
    margin:auto;
    padding:50px 25px;
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:45px
}

.footer-brand{
    font-size:24px;
    font-weight:900;
    text-decoration:none
}

.footer-brand span{color:#08a9df}

.footer-grid small{
    display:block;
    color:#718da3;
    font-size:7px;
    letter-spacing:1.3px;
    margin-top:5px
}

.footer-grid p{
    max-width:330px;
    color:#94aabd;
    font-size:9px;
    line-height:1.8
}

.footer-grid h4{
    font-size:10px;
    margin:0 0 16px
}

.footer-grid>div>a:not(.footer-brand){
    display:block;
    color:#91a7b8;
    text-decoration:none;
    font-size:9px;
    margin:10px 0
}

.footer-grid>div>a:hover{color:#08a9df}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:17px 6%;
    display:flex;
    justify-content:space-between;
    color:#71879a;
    font-size:8px
}

/* TABLET */
@media(max-width:800px){

    nav{display:none}

    .grid,
    .grid.two{
        grid-template-columns:1fr
    }

    .hero h1,
    .pagehero h1{
        font-size:38px
    }

    .footer-grid{
        grid-template-columns:1fr 1fr
    }

    .footer-bottom{
        flex-direction:column;
        gap:8px
    }

    .result-top{
        flex-direction:column
    }
}

/* MOBILE */
@media(max-width:520px){

    .topbar{
        padding:10px 5%;
        flex-direction:column;
        gap:5px
    }

    .nav-wrap{
        padding:18px 5%
    }

    .brand{
        font-size:21px
    }

    .footer-grid{
        grid-template-columns:1fr
    }

    .footer-bottom{
        padding:17px 5%
    }

    .result-grid{
        grid-template-columns:1fr
    }

    .hero,
    .pagehero{
        padding:55px 5%
    }

    .hero h1,
    .pagehero h1{
        font-size:34px
    }

    .section{
        padding:45px 18px
    }

    .section h2{
        font-size:26px
    }
}