:root{
    --dark:#20143d;
    --green:#22b573;
    --orange:#f37021;
    --bg:#f7f9fc;
    --text:#07002f;
    --muted:#697386;
    --line:#dde6ef;
    --card:#fff;
    --shadow:0 16px 42px rgba(20,30,50,.08);
}

*{box-sizing:border-box}

body{
    margin:0;
    font-family:Arial,sans-serif;
    background:var(--bg);
    color:var(--text);
}

.site-header{
    height:68px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 84px;
    background:#fff;
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:10;
}

.logo{
    font-size:24px;
    font-weight:900;
    letter-spacing:-.5px;
    color:var(--dark);
}

.logo span{color:var(--green)}

.site-header nav{
    display:flex;
    gap:26px;
    align-items:center;
}

.site-header a{
    color:var(--text);
    text-decoration:none;
    font-weight:800;
    font-size:14px;
}

.login-link{
    background:var(--dark);
    color:#fff!important;
    padding:10px 14px;
    border-radius:6px;
}

.hero{
    max-width:1210px;
    margin:0 auto;
    padding:86px 0 70px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:54px;
    align-items:center;
}

.eyebrow{
    color:var(--orange);
    font-weight:900;
    text-transform:uppercase;
    font-size:12px;
    letter-spacing:.08em;
}

.hero h1{
    font-size:52px;
    line-height:1.05;
    margin:16px 0 18px;
    letter-spacing:-1.5px;
}

.hero p,
.section p{
    color:var(--muted);
    font-size:18px;
    line-height:1.65;
}

.hero-actions{
    display:flex;
    gap:12px;
    margin-top:26px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 18px;
    border-radius:6px;
    font-weight:900;
    text-decoration:none;
}

.btn-orange{
    background:var(--orange);
    color:#fff;
}

.btn-soft{
    background:#fff;
    color:var(--text);
    border:1px solid var(--line);
}

.trust-line{
    margin-top:18px;
    color:var(--muted);
    font-size:14px;
    font-weight:700;
}

.hero-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    box-shadow:var(--shadow);
    overflow:hidden;
}

.browser-bar{
    height:42px;
    background:var(--dark);
    display:flex;
    align-items:center;
    gap:8px;
    padding:0 16px;
}

.browser-bar span{
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff;
    opacity:.35;
}

.dashboard-preview{
    padding:22px;
}

.preview-head{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
}

.preview-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:18px;
}

.preview-grid div{
    background:#f7f9fc;
    border:1px solid var(--line);
    border-radius:8px;
    padding:14px;
}

.preview-grid small{
    color:var(--muted);
}

.preview-grid strong{
    display:block;
    color:var(--orange);
    font-size:26px;
    margin-top:6px;
}

.hero-card table{
    width:100%;
    border-collapse:collapse;
}

.hero-card th,
.hero-card td{
    padding:10px;
    border-bottom:1px solid var(--line);
    text-align:left;
    font-size:13px;
}

.pill{
    background:#e9f8f1;
    color:#168955;
    border-radius:999px;
    padding:5px 8px;
    font-size:12px;
    font-weight:800;
}

.pill.orange{
    background:#fff3e8;
    color:#c95100;
}

.pill.blue{
    background:#edf2ff;
    color:#3751a3;
}

.logos{
    max-width:1210px;
    margin:0 auto 30px;
    padding:18px;
    text-align:center;
    color:var(--muted);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
}

.section{
    max-width:1210px;
    margin:0 auto;
    padding:72px 0;
}

.section-head{
    max-width:680px;
    margin-bottom:28px;
}

.section h2{
    font-size:38px;
    line-height:1.15;
    margin:12px 0;
    letter-spacing:-.8px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.card,
.price-card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;
    padding:24px;
    box-shadow:0 8px 22px rgba(20,30,50,.04);
}

.card h3,
.price-card h3{
    margin-top:0;
    font-size:21px;
}

.card p{
    font-size:15px;
    margin-bottom:0;
}

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:54px;
    align-items:center;
}

.steps{
    display:grid;
    gap:14px;
}

.steps div{
    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;
    padding:18px;
    display:flex;
    gap:14px;
    align-items:center;
}

.steps strong{
    background:var(--green);
    color:#fff;
    width:34px;
    height:34px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.pricing{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.price{
    color:var(--orange);
    font-size:32px;
    font-weight:900;
    margin:14px 0;
}

.price span{
    font-size:15px;
    color:var(--muted);
}

.featured{
    border:2px solid var(--green);
    transform:translateY(-8px);
}

.price-card ul{
    padding-left:18px;
    color:var(--muted);
    line-height:1.9;
}

.faq details{
    background:#fff;
    border:1px solid var(--line);
    border-radius:8px;
    padding:18px;
    margin-bottom:12px;
}

.faq summary{
    font-weight:900;
    cursor:pointer;
}

.cta{
    max-width:1210px;
    margin:40px auto 80px;
    background:var(--dark);
    color:#fff;
    border-radius:14px;
    padding:44px;
    text-align:center;
}

.cta h2{
    font-size:36px;
    margin:0 0 10px;
}

.cta p{
    color:#dfe6ef;
}

footer{
    border-top:1px solid var(--line);
    padding:28px 84px;
    display:flex;
    justify-content:space-between;
    color:var(--muted);
    background:#fff;
}

@media(max-width:900px){
    .site-header{
        padding:16px;
        height:auto;
        flex-direction:column;
        align-items:flex-start;
    }

    .site-header nav{
        flex-wrap:wrap;
        gap:12px;
    }

    .hero,
    .section,
    .logos,
    .cta{
        max-width:none;
        margin-left:16px;
        margin-right:16px;
    }

    .hero,
    .split,
    .cards,
    .pricing{
        grid-template-columns:1fr;
    }

    .hero{
        padding-top:40px;
    }

    .hero h1{
        font-size:38px;
    }

    footer{
        padding:24px 16px;
        flex-direction:column;
    }
}

.site-footer{
    background:#20143d;
    color:#fff;
    margin-top:70px;
    padding:46px 28px 22px;
}

.footer-inner{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:2fr 1fr 1.2fr 1fr;
    gap:34px;
}

.site-footer .logo{
    color:#fff;
    margin-bottom:14px;
}

.site-footer p{
    color:#d7d4e8;
    line-height:1.7;
    margin:0;
    max-width:420px;
}

.site-footer h4{
    margin:0 0 14px;
    font-size:15px;
    color:#fff;
}

.site-footer a,
.site-footer span{
    display:block;
    color:#d7d4e8;
    text-decoration:none;
    margin:8px 0;
    font-size:14px;
}

.site-footer a:hover{
    color:#f37021;
}

.footer-bottom{
    max-width:1180px;
    margin:34px auto 0;
    padding-top:18px;
    border-top:1px solid rgba(255,255,255,.14);
    color:#bdb8d4;
    font-size:13px;
}

@media(max-width:900px){
    .footer-inner{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:560px){
    .site-footer{
        padding:36px 18px 20px;
    }

    .footer-inner{
        grid-template-columns:1fr;
        gap:24px;
    }
}

.site-footer .logo{
    color:#ffffff;
}

.site-footer .logo span{
    color:var(--green);
}

/* Homepage polish */
.section{
    max-width:1180px;
    margin:0 auto;
    padding:76px 24px;
}

.section-head{
    max-width:760px;
    margin:0 auto 36px;
    text-align:center;
}

.section-head h2{
    font-size:38px;
    line-height:1.12;
    margin:10px 0 12px;
}

.section-head p{
    color:var(--muted);
    font-size:17px;
    line-height:1.7;
}

.cards{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:20px;
}

.card{
    min-height:190px;
    padding:26px;
    border-radius:24px;
    background:#fff;
    border:1px solid rgba(18,49,36,.08);
    box-shadow:0 18px 45px rgba(18,49,36,.07);
}

.card h3{
    margin:0 0 10px;
    font-size:20px;
}

.card p{
    margin:0;
    color:var(--muted);
    line-height:1.65;
}

.split{
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:44px;
    align-items:center;
}

.steps{
    display:grid;
    gap:14px;
}

.steps div{
    background:#fff;
    border:1px solid rgba(18,49,36,.08);
    border-radius:20px;
    padding:18px 20px;
    box-shadow:0 12px 35px rgba(18,49,36,.06);
}

.steps strong{
    display:inline-flex;
    width:38px;
    height:38px;
    align-items:center;
    justify-content:center;
    margin-right:12px;
    border-radius:14px;
    background:#fff3e6;
    color:var(--orange);
}

.final-cta{
    text-align:center;
    background:linear-gradient(135deg,#123124,#1f5f42);
    color:#fff;
    border-radius:36px;
    margin-top:40px;
    margin-bottom:60px;
}

.final-cta .section-head h2,
.final-cta .section-head p{
    color:#fff;
}

.final-cta .hero-actions{
    justify-content:center;
}

@media(max-width:900px){
    .cards{
        grid-template-columns:1fr;
    }

    .split{
        grid-template-columns:1fr;
    }

    .section{
        padding:54px 18px;
    }

    .section-head h2{
        font-size:30px;
    }

    .final-cta{
        border-radius:24px;
        margin-left:14px;
        margin-right:14px;
    }
}

.price-btn{
    width:100%;
    margin-top:18px;
}

.price-card ul{
    min-height:120px;
}

.pricing-note{
    text-align:center;
    color:var(--muted);
    margin-top:-18px;
    margin-bottom:28px;
    font-weight:700;
}
