
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f7fb;
    color:#172033;
    line-height:1.9;
}

a{
    text-decoration:none;
    color:inherit;
}

.container{
    width:min(1150px,92%);
    margin:auto;
}


/* =========================
   HEADER
========================= */

header{
    height:72px;
    background:#fff;
    border-bottom:1px solid #e8edf4;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#1264e8;
    font-weight:bold;
    font-size:18px;
}

.logo i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#1264e8;
    color:#fff;
    border-radius:12px;
    font-size: 26px;
}

nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    color:#596579;
    font-size:13px;
    transition:.2s;
}

nav a:hover{
    color:#1264e8;
}

.nav-owner{
    background:#1264e8;
    color:#fff!important;
    padding:8px 16px;
    border-radius:9px;
}


/* =========================
   HERO
========================= */

.hero{
    padding:95px 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            #dceaff,
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #edf5ff
        );
}

.hero-content{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:60px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 14px;
    border-radius:30px;
    background:#e5efff;
    color:#1264e8;
    font-size:12px;
    margin-bottom:20px;
}

.hero h1{
    font-size:clamp(30px,5vw,50px);
    line-height:1.45;
    color:#101828;
    margin-bottom:20px;
}

.hero h1 span{
    color:#1264e8;
}

.hero p{
    max-width:700px;
    color:#667085;
    font-size:16px;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    padding:12px 22px;
    border-radius:10px;
    font-size:13px;
    font-weight:bold;
    transition:.2s;
}

.btn-primary{
    background:#1264e8;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-light{
    background:#fff;
    color:#344054;
    border:1px solid #e1e6ee;
}


/* =========================
   HERO CARD
========================= */

.hero-card{
    background:#fff;
    border:1px solid #e4eaf2;
    border-radius:22px;
    padding:30px;
    box-shadow:0 20px 50px rgba(25,70,140,.09);
}

.hero-card-icon{
    width:65px;
    height:65px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:#edf4ff;
    color:#1264e8;
    font-size:28px;
    margin-bottom:20px;
}

.hero-card h3{
    font-size:19px;
    margin-bottom:10px;
}

.hero-card p{
    color:#667085;
    font-size:13px;
    margin:0;
}


/* =========================
   SECTION
========================= */

section{
    padding:80px 0;
}

.section-title{
    text-align:center;
    margin-bottom:45px;
}

.section-title h2{
    font-size:29px;
    color:#101828;
    margin-bottom:10px;
}

.section-title p{
    color:#667085;
    font-size:13px;
}


/* =========================
   SERVICES
========================= */

.services{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service{
    background:#fff;
    border:1px solid #e5e9ef;
    border-radius:16px;
    padding:25px;
    transition:.2s;
}

.service:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.service-icon{
    width:50px;
    height:50px;
    border-radius:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf4ff;
    color:#1264e8;
    font-size:20px;
    margin-bottom:15px;
}

.service h3{
    font-size:16px;
    margin-bottom:8px;
}

.service p{
    color:#667085;
    font-size:12px;
}


/* =========================
   CONTACT
========================= */

.contact{
    background:#fff;
}

.contact-box{
    background:#f5f8fd;
    border:1px solid #e3eaf4;
    border-radius:22px;
    padding:40px;
    text-align:center;
}

.contact-box h2{
    font-size:27px;
    margin-bottom:10px;
}

.contact-box p{
    color:#667085;
    font-size:14px;
    max-width:700px;
    margin:0 auto 25px;
}

.messenger-list{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
}

.messenger{
    min-width:145px;
    padding:13px 20px;
    border-radius:11px;
    background:#fff;
    border:1px solid #e1e7ef;
    color:#344054;
    font-size:13px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;
    transition:.2s;
}

.messenger i{
    color:#1264e8;
}

.messenger:hover{
    border-color:#1264e8;
    transform:translateY(-2px);
}


/* =========================
   ECAFENET
========================= */

.ecafenet{
    background:#1264e8;
    color:#fff;
}

.ecafenet-box{
    display:grid;
    grid-template-columns:1fr auto;
    gap:50px;
    align-items:center;
}

.ecafenet h2{
    font-size:30px;
    margin-bottom:14px;
}

.ecafenet p{
    color:#dceaff;
    font-size:14px;
    max-width:750px;
}

.ecafenet .btn{
    background:#fff;
    color:#1264e8;
    white-space:nowrap;
}


/* =========================
   FEATURES
========================= */

.features{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.feature{
    background:#fff;
    border:1px solid #e5e9ef;
    border-radius:15px;
    padding:22px;
}

.feature i{
    width:45px;
    height:45px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#edf4ff;
    color:#1264e8;
    margin-bottom:13px;
}

.feature h3{
    font-size:14px;
    margin-bottom:6px;
}

.feature p{
    color:#667085;
    font-size:11px;
}


/* =========================
   TOOLS
========================= */

.tools-section{
    background:#f5f7fb;
}

.tools{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.tool{
    background:#fff;
    border:1px solid #e5e9ef;
    border-radius:13px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:13px;
    transition:.2s;
}

.tool:hover{
    border-color:#1264e8;
    transform:translateY(-3px);
}

.tool i{
    min-width:43px;
    height:43px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:11px;
    background:#edf4ff;
    color:#1264e8;
}

.tool h3{
    font-size:13px;
    margin-bottom:2px;
}

.tool span{
    color:#98a2b3;
    font-size:10px;
}


/* =========================
   LINKS
========================= */

.links-section{
    background:#fff;
}

.links{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}

.link{
    border:1px solid #e5e9ef;
    border-radius:12px;
    padding:18px;
    text-align:center;
    color:#344054;
    font-size:12px;
    transition:.2s;
}

.link i{
    display:block;
    color:#1264e8;
    font-size:21px;
    margin-bottom:8px;
}

.link:hover{
    border-color:#1264e8;
    background:#f7faff;
}


/* =========================
   FOOTER
========================= */

footer{
    background:#101828;
    color:#fff;
    padding:45px 0 20px;
}

.footer-content{
    display:flex;
    justify-content:space-between;
    gap:30px;
    padding-bottom:30px;
}

.footer-title{
    font-size:19px;
    font-weight:bold;
    margin-bottom:8px;
}

.footer-text{
    color:#98a2b3;
    font-size:12px;
}

.footer-links{
    display:flex;
    align-items:center;
    gap:20px;
}

.footer-links a{
    color:#d0d5dd;
    font-size:12px;
}

.copyright{
    border-top:1px solid #263142;
    padding-top:18px;
    text-align:center;
    color:#667085;
    font-size:11px;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    nav{
        display:none;
    }

    .hero-content{
        grid-template-columns:1fr;
    }

    .services{
        grid-template-columns:repeat(2,1fr);
    }

    .features,
    .tools,
    .links{
        grid-template-columns:repeat(2,1fr);
    }

    .ecafenet-box{
        grid-template-columns:1fr;
    }

}


@media(max-width:600px){

    section{
        padding:60px 0;
    }

    .hero{
        padding:60px 0;
    }

    .hero h1{
        font-size:31px;
    }

    .hero p{
        font-size:14px;
    }

    .services,
    .features,
    .tools,
    .links{
        grid-template-columns:1fr;
    }

    .contact-box{
        padding:25px 18px;
    }

    .messenger{
        width:100%;
    }

    .footer-content{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        justify-content:center;
        flex-wrap:wrap;
    }

}