html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Open Sans',sans-serif;
    background:white;
    color:#2c2c2c;
}

/* NAVBAR */

.navbar{
    position:sticky;
    top:0;
    background:#0b1f3a;
    padding:12px 20px;
    z-index:1000;
}

.nav-container{
    max-width:1150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo a{
    display:flex;
    flex-direction:column;
    text-decoration:none;
    line-height:1;
}

.logo-title{
    font-size:21px;
    font-weight:700;
    letter-spacing:1px;
    color:white;
    font-family:Arial,sans-serif;
}

.logo-title span{
    color:#2aa198;
}

.logo-tagline{
    margin-top:4px;
    font-size:7px;
    font-weight:600;
    letter-spacing:0.6px;
    color:white;
    text-transform:uppercase;
    font-family:Arial,sans-serif;
}

.nav-links{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.nav-links a{
    font-family:'Inter',sans-serif;
    color:#fdfefe;
    text-decoration:none;
    font-size:14px;
}

.cta-button{
    font-family:'Inter',sans-serif;
    background:#2aa198;
    color:white;
    padding:11px 18px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

/* HERO */

.page-hero{
    max-width:850px;
    margin:auto;
    padding:80px 20px 40px;
    text-align:center;
}

.page-hero h1{
    font-family:'Inter',sans-serif;
    font-size:48px;
    color:#0b1f3a;
    margin-bottom:14px;
}

.headline{
    font-family:'Inter',sans-serif;
    font-size:24px;
    font-weight:700;
    color:#0b1f3a;
    margin-bottom:14px;
}

.page-hero p{
    line-height:1.7;
    color:#444;
}

/* PRICING */

.pricing-section{
    max-width:1150px;
    margin:40px auto 80px;
    padding:0 20px;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    align-items:stretch;
}

.pricing-card{
    background:white;
    border:2px solid #9cc7c5;
    border-radius:12px;
    padding:35px 28px;
    text-align:center;
    position:relative;
    transition:0.3s ease;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.pricing-card h2{
    font-family:'Inter',sans-serif;
    font-size:54px;
    color:#0b1f3a;
    margin:0;
    font-weight:800;
}

.pricing-card h3{
    font-family:'Inter',sans-serif;
    font-size:22px;
    color:#0b1f3a;
    margin:10px 0 16px;
}

.pricing-card p{
    line-height:1.7;
    color:#444;
    margin-bottom:18px;
}

.pricing-card.popular{
    border:3px solid #2aa198;
    transform:scale(1.05);
    box-shadow:0 12px 28px rgba(0,0,0,0.08);
    padding-top:50px;
}

.popular-badge{
    position:absolute;
    top:0;
    left:0;
    right:0;
    background:#2aa198;
    color:white;
    font-size:13px;
    font-weight:700;
    padding:8px;
    border-radius:8px 8px 0 0;
    letter-spacing:0.5px;
    font-family:'Inter',sans-serif;
}

.tick-list{
    list-style:none;
    padding:0;
    margin:22px 0 28px;
    text-align:left;
}

.tick-list li{
    margin-bottom:12px;
    line-height:1.5;
    color:#444;
    font-size:15px;
}

.tick-list li::before{
    content:"✓";
    color:#2aa198;
    font-weight:700;
    margin-right:10px;
}

.primary-btn{
    display:inline-block;
    background:#2aa198;
    color:white;
    padding:14px 32px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    font-family:'Inter',sans-serif;
    transition:0.3s ease;
}

.primary-btn:hover{
    background:#23867f;
}

/* FAIR SERVICE */

.fair-service-statement{
    max-width:900px;
    margin:70px auto;
    padding:0 20px;
}

.fair-service-statement h2{
    font-family:'Inter',sans-serif;
    font-size:30px;
    color:#0b1f3a;
    margin-top:35px;
}

.fair-service-statement p{
    line-height:1.7;
}

.fair-service-statement hr{
    border:none;
    border-top:1px solid #dcdcdc;
    margin:35px 0;
}

.features{
    padding-left:20px;
}

.features li{
    margin-bottom:12px;
    line-height:1.6;
}

/* FOOTER */

footer{
    background:#f5f5f5;
    text-align:center;
    padding:24px;
    color:#666;
}

footer a{
    color:#0b1f3a;
    text-decoration:none;
}

/* MOBILE */

@media (max-width:900px){

    .nav-container{
        flex-direction:column;
        gap:16px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
    }

    .pricing-card.popular{
        transform:none;
    }
}