:root{
    --bg:#f4f7fb;
    --dark:#06172c;
    --dark2:#0b2342;
    --blue:#2563eb;
    --sky:#38bdf8;
    --green:#16a34a;
    --text:#0f172a;
    --muted:#64748b;
    --line:#e5e7eb;
    --white:#ffffff;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

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

a{text-decoration:none}

.container{
    width:min(1180px,92%);
    margin:auto;
}

.topbar{
    background:#031022;
    color:#cbd5e1;
    font-size:13px;
    padding:9px 0;
}

.topbar .container{
    display:flex;
    justify-content:space-between;
    gap:15px;
}

.header{
    background:rgba(6,23,44,.96);
    backdrop-filter:blur(14px);
    position:sticky;
    top:0;
    z-index:50;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    color:white;
}

.logo strong{
    display:block;
    font-size:26px;
    letter-spacing:-.8px;
}

.logo strong span{color:var(--sky)}

.logo small{
    color:#cbd5e1;
    font-size:12px;
}

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

.nav a{
    color:#e5e7eb;
    font-size:14px;
    font-weight:700;
}

.nav a:hover{color:white}

.actions{
    display:flex;
    gap:12px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    border-radius:10px;
    padding:13px 20px;
    font-weight:800;
    font-size:14px;
    transition:.2s;
    border:1px solid transparent;
}

.btn:hover{transform:translateY(-2px)}

.btn-primary{
    background:linear-gradient(135deg,#38bdf8,#2563eb);
    color:white;
    box-shadow:0 14px 28px rgba(37,99,235,.28);
}

.btn-success{
    background:var(--green);
    color:white;
}

.btn-outline{
    color:white;
    border-color:rgba(255,255,255,.35);
}

.btn-light{
    background:white;
    color:var(--dark);
    border-color:#dbe3ef;
}

.hero{
    position:relative;
    overflow:hidden;
    background:
        linear-gradient(90deg,rgba(3,16,34,.98) 0%,rgba(8,36,68,.94) 54%,rgba(8,36,68,.72) 100%),
        url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80');
    background-size:cover;
    background-position:center right;
    color:white;
    padding:86px 0 72px;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:52px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:rgba(56,189,248,.12);
    color:#bae6fd;
    border:1px solid rgba(56,189,248,.25);
    padding:9px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    letter-spacing:.4px;
}

.hero h1{
    font-size:54px;
    line-height:1.06;
    margin:22px 0 18px;
    letter-spacing:-1.8px;
}

.hero h1 span{color:#60a5fa}

.hero p{
    color:#dbeafe;
    font-size:18px;
    line-height:1.7;
    max-width:680px;
    margin:0 0 28px;
}

.hero-buttons{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.hero-metrics{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:38px;
    max-width:720px;
}

.metric{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);
    border-radius:14px;
    padding:18px;
}

.metric strong{
    display:block;
    font-size:28px;
    color:white;
}

.metric span{
    color:#cbd5e1;
    font-size:13px;
}

.panel{
    background:rgba(255,255,255,.96);
    color:var(--text);
    border-radius:22px;
    padding:30px;
    box-shadow:0 28px 80px rgba(0,0,0,.28);
}

.panel h3{
    margin:0 0 18px;
    font-size:24px;
}

.service-list{
    padding:0;
    margin:0;
    list-style:none;
}

.service-list li{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid #e5e7eb;
    color:#334155;
    font-weight:700;
}

.service-list li:last-child{border-bottom:0}

.service-list i{
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:10px;
    background:#eff6ff;
    color:var(--blue);
    font-size:19px;
    flex:none;
}

.section{
    padding:72px 0;
}

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

.section-title .eyebrow{
    color:var(--blue);
    font-weight:900;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.8px;
}

.section-title h2{
    margin:10px 0 12px;
    font-size:38px;
    letter-spacing:-1px;
}

.section-title p{
    margin:0;
    color:var(--muted);
    line-height:1.7;
}

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

.card{
    background:white;
    border:1px solid var(--line);
    border-radius:18px;
    padding:28px;
    box-shadow:0 12px 34px rgba(15,23,42,.06);
    transition:.2s;
}

.card:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 44px rgba(15,23,42,.10);
}

.card-icon{
    width:54px;
    height:54px;
    border-radius:14px;
    display:grid;
    place-items:center;
    background:#eff6ff;
    color:var(--blue);
    font-size:26px;
    margin-bottom:18px;
}

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

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

.process{
    background:white;
}

.steps{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 14px 36px rgba(15,23,42,.07);
}

.step{
    background:white;
    padding:26px 20px;
    text-align:center;
    border-right:1px solid var(--line);
    position:relative;
}

.step:last-child{border-right:0}

.step-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:linear-gradient(135deg,#38bdf8,#2563eb);
    color:white;
    display:grid;
    place-items:center;
    font-size:22px;
    margin:0 auto 14px;
}

.step h4{
    margin:0 0 8px;
    font-size:15px;
}

.step p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.5;
}

.plans{
    background:#f8fafc;
}

.plan-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.plan{
    background:white;
    border:1px solid var(--line);
    border-radius:18px;
    padding:26px;
    box-shadow:0 12px 34px rgba(15,23,42,.06);
}

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

.plan .label{
    display:inline-block;
    padding:7px 12px;
    border-radius:999px;
    background:#eff6ff;
    color:var(--blue);
    font-size:12px;
    font-weight:900;
    text-transform:uppercase;
}

.plan h3{
    margin:18px 0 8px;
    font-size:23px;
}

.plan p{
    color:var(--muted);
    line-height:1.55;
    min-height:74px;
}

.price{
    font-size:30px;
    font-weight:900;
    margin:16px 0 18px;
}

.price small{
    font-size:13px;
    color:var(--muted);
    font-weight:700;
}

.plan ul{
    padding:0;
    list-style:none;
    margin:0 0 22px;
}

.plan li{
    display:flex;
    gap:10px;
    margin:11px 0;
    color:#334155;
    font-size:14px;
}

.plan li i{
    color:var(--green);
}

.dark-band{
    background:var(--dark);
    color:white;
    padding:34px 0;
}

.benefits{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.benefit{
    display:flex;
    gap:14px;
}

.benefit i{
    width:44px;
    height:44px;
    border-radius:12px;
    display:grid;
    place-items:center;
    background:rgba(56,189,248,.12);
    color:#7dd3fc;
    font-size:20px;
    flex:none;
}

.benefit strong{
    display:block;
    margin-bottom:6px;
}

.benefit span{
    color:#cbd5e1;
    font-size:13px;
    line-height:1.5;
}

.cta{
    background:white;
    padding:46px 0;
}

.cta-box{
    background:linear-gradient(135deg,#06172c,#0b2f57);
    color:white;
    border-radius:24px;
    padding:42px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:24px;
}

.cta-box h2{
    margin:0 0 8px;
    font-size:32px;
}

.cta-box p{
    margin:0;
    color:#dbeafe;
}

.cta-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.footer{
    background:#020617;
    color:#94a3b8;
    padding:26px 0;
    text-align:center;
    font-size:13px;
}

@media(max-width:1050px){
    .hero-grid,
    .cards,
    .plan-grid,
    .benefits{
        grid-template-columns:repeat(2,1fr);
    }

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

    .step{
        border-right:0;
        border-bottom:1px solid var(--line);
    }

    .step:last-child{border-bottom:0}

    .nav{display:none}
}

@media(max-width:720px){
    .topbar .container,
    .header-inner,
    .cta-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .actions{
        width:100%;
        flex-direction:column;
    }

    .actions .btn,
    .hero-buttons .btn,
    .cta-actions .btn{
        width:100%;
    }

    .hero{
        padding:60px 0;
    }

    .hero-grid,
    .cards,
    .plan-grid,
    .benefits,
    .hero-metrics{
        grid-template-columns:1fr;
    }

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

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

    .plan.featured{
        transform:none;
    }
}
