@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',Arial,Helvetica,sans-serif;
    color:#142033;
    background:#fff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ================= HEADER ================= */

header{
    background:rgba(255,255,255,.96);
    border-bottom:1px solid #e7edf4;
    position:sticky;
    top:0;
    z-index:1000;
    backdrop-filter:blur(12px);
}

.navbar{
    min-height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
}

/* ================= LOGO ================= */

.logo{
    display:flex;
    align-items:center;
    gap:11px;
    text-decoration:none;
    color:#075dcc;
}

.logo-icon{
    width:46px;
    height:46px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    background:linear-gradient(145deg,#064fc5,#0879df,#00b8ff);
    border-radius:13px;
    box-shadow:0 8px 22px rgba(0,105,210,.25);
    overflow:hidden;
    transition:.25s ease;
}

.logo:hover .logo-icon{
    transform:translateY(-2px) rotate(-2deg);
    box-shadow:0 12px 28px rgba(0,105,210,.34);
}

.p-letter{
    color:#fff;
    font-family:'Space Grotesk',sans-serif;
    font-size:25px;
    font-weight:700;
    position:relative;
    z-index:5;
}

.circuit{
    position:absolute;
    height:2px;
    background:rgba(255,255,255,.8);
}

.circuit-1{
    width:14px;
    right:0;
    top:12px;
}

.circuit-2{
    width:13px;
    left:0;
    bottom:12px;
}

.circuit-3{
    width:10px;
    right:2px;
    bottom:8px;
}

.dot{
    position:absolute;
    width:5px;
    height:5px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 7px #fff;
}

.dot-1{
    right:2px;
    top:9px;
}

.dot-2{
    left:2px;
    bottom:9px;
}

.dot-3{
    right:5px;
    bottom:5px;
}

.logo-name{
    font-family:'Space Grotesk',sans-serif;
    font-size:20px;
    font-weight:700;
    letter-spacing:-.5px;
    white-space:nowrap;
}

.logo-name strong{
    color:#182438;
    font-weight:500;
}

/* ================= NAVIGATION ================= */

nav{
    display:flex;
    align-items:center;
    gap:6px;
}

nav a{
    position:relative;
    text-decoration:none;
    color:#344256;
    font-size:13px;
    font-weight:600;
    letter-spacing:.1px;
    padding:10px 11px;
    border-radius:8px;
    transition:.2s ease;
}

nav a:hover{
    color:#0866d5;
    background:#f1f7fd;
}

.nav-btn{
    background:#0866d5;
    color:#fff!important;
    padding:11px 18px!important;
    margin-left:5px;
    box-shadow:0 6px 18px rgba(8,102,213,.2);
}

.nav-btn:hover{
    background:#0758ba!important;
    color:#fff!important;
}

/* ================= HERO ================= */

.hero{
    position:relative;
    min-height:650px;
    display:flex;
    align-items:center;
    overflow:hidden;
    color:#fff;

    background:
        linear-gradient(
            110deg,
            rgba(3,18,38,.98),
            rgba(4,55,100,.93),
            rgba(5,105,181,.72)
        ),
        url("https://images.pexels.com/photos/1181244/pexels-photo-1181244.jpeg?auto=compress&cs=tinysrgb&w=1600");

    background-size:cover;
    background-position:center;
}

.hero::after{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    right:-150px;
    top:-150px;
    background:rgba(0,190,255,.13);
    filter:blur(10px);
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    padding:90px 0;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 13px;
    border:1px solid rgba(255,255,255,.2);
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border-radius:30px;
    color:#bce9ff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:22px;
}

.badge span{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#20d96b;
    box-shadow:0 0 10px #20d96b;
}

.hero h1{
    font-family:'Space Grotesk',sans-serif;
    font-size:58px;
    line-height:1.04;
    letter-spacing:-2px;
    margin-bottom:21px;
}

.hero h1 span{
    color:#43ccff;
}

.hero p{
    max-width:680px;
    color:#d5e6f5;
    font-size:18px;
    line-height:1.75;
    margin-bottom:32px;
}

.buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    text-decoration:none;
    padding:14px 23px;
    border-radius:9px;
    font-weight:700;
    font-size:14px;
    transition:.2s ease;
}

.btn-green{
    background:#08a84f;
    color:#fff;
    box-shadow:0 8px 20px rgba(8,168,79,.25);
}

.btn-green:hover{
    background:#078f43;
    transform:translateY(-2px);
}

.btn-white{
    background:#fff;
    color:#075dbb;
}

.btn-white:hover{
    background:#edf7ff;
    transform:translateY(-2px);
}

/* ================= HERO STATS ================= */

.hero-stats{
    display:flex;
    gap:35px;
    margin-top:50px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.15);
}

.hero-stat strong{
    display:block;
    font-family:'Space Grotesk',sans-serif;
    font-size:22px;
    color:#fff;
}

.hero-stat span{
    font-size:12px;
    color:#a9c5dc;
}

/* ================= TRUST BAR ================= */

.trust{
    background:#f7faff;
    border-bottom:1px solid #e7eef6;
}

.trust-inner{
    min-height:90px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:25px;
}

.trust-text{
    font-size:13px;
    color:#6c7b8e;
    font-weight:600;
}

.trust-items{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
}

.trust-item{
    color:#405066;
    font-size:13px;
    font-weight:700;
}

/* ================= SECTION TITLES ================= */

.section-title{
    text-align:center;
    margin-bottom:48px;
}

.section-title small{
    color:#0874e8;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.section-title h2{
    font-family:'Space Grotesk',sans-serif;
    font-size:38px;
    letter-spacing:-1px;
    margin-top:8px;
}

.section-title p{
    color:#6a788b;
    max-width:700px;
    margin:10px auto 0;
}

/* ================= SERVICES ================= */

.services{
    padding:90px 0;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-card{
    padding:29px;
    border:1px solid #e0e8f1;
    border-radius:16px;
    background:#fff;
    transition:.25s ease;
}

.service-card:hover{
    transform:translateY(-6px);
    border-color:#c8dff5;
    box-shadow:0 18px 40px rgba(20,65,105,.1);
}

.service-icon{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:13px;
    background:#edf7ff;
    font-size:25px;
    margin-bottom:17px;
}

.service-card h3{
    font-family:'Space Grotesk',sans-serif;
    font-size:19px;
    margin-bottom:7px;
}

.service-card p{
    color:#6b788a;
    font-size:14px;
    margin-bottom:15px;
}

.service-card a{
    color:#0874e8;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}

/* ================= FEATURE ================= */

.feature{
    padding:90px 0;
    background:#f6faff;
}

.feature-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:65px;
    align-items:center;
}

.feature-image{
    height:430px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 22px 50px rgba(15,45,80,.15);
}

.feature-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.feature-content small{
    color:#0874e8;
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.feature-content h2{
    font-family:'Space Grotesk',sans-serif;
    font-size:39px;
    line-height:1.15;
    letter-spacing:-1px;
    margin:10px 0 18px;
}

.feature-content>p{
    color:#68778b;
    margin-bottom:22px;
}

.feature-list{
    list-style:none;
}

.feature-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin:14px 0;
    color:#405066;
    font-size:14px;
    font-weight:500;
}

.check{
    width:22px;
    height:22px;
    flex-shrink:0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#e7f8ee;
    color:#08a84f;
    font-size:12px;
    font-weight:bold;
}

/* ================= WHY US ================= */

.why{
    padding:90px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.why-card{
    padding:27px 22px;
    border:1px solid #e0e8f0;
    border-radius:15px;
    text-align:center;
}

.why-number{
    font-family:'Space Grotesk',sans-serif;
    color:#0874e8;
    font-size:28px;
    font-weight:700;
    margin-bottom:5px;
}

.why-card h3{
    font-family:'Space Grotesk',sans-serif;
    font-size:17px;
    margin-bottom:6px;
}

.why-card p{
    color:#718096;
    font-size:13px;
}

/* ================= PROCESS ================= */

.process{
    padding:90px 0;
    background:#06182e;
    color:#fff;
}

.process .section-title h2{
    color:#fff;
}

.process .section-title p{
    color:#a9bdd0;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step{
    text-align:center;
    position:relative;
}

.step-number{
    width:58px;
    height:58px;
    border-radius:50%;
    background:linear-gradient(135deg,#0874e8,#00b8ff);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 17px;
    font-family:'Space Grotesk',sans-serif;
    font-weight:700;
    font-size:18px;
    box-shadow:0 10px 25px rgba(0,145,255,.25);
}

.step h3{
    font-family:'Space Grotesk',sans-serif;
    font-size:17px;
    margin-bottom:6px;
}

.step p{
    color:#a9bdd0;
    font-size:13px;
}

/* ================= AREAS ================= */

.areas{
    padding:90px 0;
}

.area-grid{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:11px;
    max-width:900px;
    margin:auto;
}

.area{
    padding:11px 20px;
    border:1px solid #dce6ef;
    background:#f7faff;
    border-radius:30px;
    color:#405167;
    font-size:13px;
    font-weight:600;
}

/* ================= CTA ================= */

.cta{
    padding:85px 0;
    text-align:center;
    color:#fff;

    background:
        linear-gradient(135deg,rgba(4,24,49,.96),rgba(5,106,190,.92)),
        url("https://images.pexels.com/photos/325229/pexels-photo-325229.jpeg?auto=compress&cs=tinysrgb&w=1600");

    background-size:cover;
    background-position:center;
}

.cta h2{
    font-family:'Space Grotesk',sans-serif;
    font-size:40px;
    letter-spacing:-1px;
    margin-bottom:10px;
}

.cta p{
    color:#d5e7f7;
    margin-bottom:25px;
}

/* ================= FOOTER ================= */

footer{
    background:#071321;
    color:#aebccc;
    padding:55px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;
    gap:45px;
}

footer h3{
    font-family:'Space Grotesk',sans-serif;
    color:#fff;
    font-size:17px;
    margin-bottom:14px;
}

footer p{
    color:#95a5b8;
    font-size:13px;
    margin-bottom:6px;
}

.footer-links{
    list-style:none;
}

.footer-links li{
    margin:7px 0;
}

.footer-links a{
    color:#aebccc;
    text-decoration:none;
    font-size:13px;
}

.footer-links a:hover{
    color:#fff;
}

.copyright{
    border-top:1px solid #1d2b3c;
    margin-top:35px;
    padding-top:18px;
    text-align:center;
    color:#718197;
    font-size:12px;
}

/* ================= WHATSAPP ================= */

.whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:58px;
    height:58px;
    border-radius:50%;
    background:#19c45a;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:27px;
    box-shadow:0 8px 28px rgba(0,0,0,.25);
    z-index:999;
    transition:.2s;
}

.whatsapp:hover{
    transform:scale(1.07);
}

/* ================= MOBILE ================= */

@media(max-width:1000px){

    nav{
        display:none;
    }

    .hero h1{
        font-size:48px;
    }

    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .feature-grid{
        grid-template-columns:1fr;
    }

    .process-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .trust-inner{
        flex-direction:column;
        justify-content:center;
        padding:20px 0;
    }
}

@media(max-width:600px){

    .container{
        width:92%;
    }

    .navbar{
        min-height:70px;
    }

    .logo-name{
        font-size:17px;
    }

    .logo-icon{
        width:42px;
        height:42px;
    }

    .logo-name strong{
        display:none;
    }

    .hero{
        min-height:620px;
    }

    .hero-content{
        padding:70px 0;
    }

    .hero h1{
        font-size:38px;
        letter-spacing:-1.3px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-stats{
        gap:18px;
    }

    .hero-stat strong{
        font-size:18px;
    }

    .service-grid,
    .why-grid,
    .process-grid,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }

    .feature-content h2{
        font-size:31px;
    }

    .feature-image{
        height:300px;
    }

    .cta h2{
        font-size:31px;
    }
}
