:root{
    --ink:#0b1020;
    --muted:#5c667a;
    --line:#dbe2ee;
    --paper:#ffffff;
    --soft:#f4f7fb;
    --brand:#0b72e7;
    --brand-strong:#064fb0;
    --cyan:#00a8c8;
    --mint:#21a67a;
    --amber:#f0a51c;
    --shadow:0 18px 55px rgba(11,16,32,.14);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Inter", Arial, sans-serif;
    line-height:1.6;
    color:var(--ink);
    background:var(--paper);
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    color:inherit;
}

.site-header{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(255,255,255,.92);
    border-bottom:1px solid rgba(219,226,238,.8);
    backdrop-filter:blur(16px);
}

.navbar{
    max-width:1180px;
    min-height:76px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:22px;
}

.brand{
    display:inline-flex;
    align-items:center;
    gap:11px;
    color:var(--ink);
    text-decoration:none;
    font-weight:800;
    font-size:1.1rem;
    letter-spacing:0;
}

.brand img{
    width:42px;
    height:42px;
    border-radius:8px;
    object-fit:cover;
    border:1px solid var(--line);
}

.nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-links a{
    display:inline-flex;
    min-height:40px;
    align-items:center;
    padding:0 12px;
    color:#273246;
    text-decoration:none;
    font-weight:700;
    font-size:.94rem;
    border-radius:8px;
    transition:background .2s ease, color .2s ease;
}

.nav-links a:hover,
.nav-links a.active{
    background:#eaf3ff;
    color:var(--brand-strong);
}

.nav-cta{
    display:inline-flex;
    min-height:42px;
    align-items:center;
    justify-content:center;
    padding:0 16px;
    border-radius:8px;
    background:var(--ink);
    color:white;
    text-decoration:none;
    font-weight:800;
    box-shadow:0 10px 28px rgba(11,16,32,.18);
}

.menu-toggle{
    width:44px;
    height:44px;
    display:none;
    place-items:center;
    border:1px solid var(--line);
    border-radius:8px;
    background:white;
    cursor:pointer;
}

.menu-toggle span{
    display:block;
    width:20px;
    height:2px;
    margin:3px 0;
    background:var(--ink);
    border-radius:999px;
    transition:transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2){
    opacity:0;
}

.menu-toggle.is-open span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
}

.hero{
    position:relative;
    overflow:hidden;
    min-height:82svh;
    background:
        linear-gradient(90deg, rgba(5,8,18,.88), rgba(5,8,18,.62), rgba(5,8,18,.38)),
        url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1800&q=80");
    background-size:cover;
    background-position:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.08));
    pointer-events:none;
}

.hero-inner{
    position:relative;
    z-index:1;
    width:calc(100% - 40px);
    max-width:1180px;
    min-height:82svh;
    margin:auto;
    padding:92px 0 68px;
    display:grid;
    grid-template-columns:minmax(0, 1.08fr) minmax(310px, .72fr);
    gap:48px;
    align-items:center;
}

.hero-content{
    color:white;
    max-width:760px;
    min-width:0;
}

.eyebrow{
    margin-bottom:14px;
    color:var(--cyan);
    font-size:.78rem;
    font-weight:800;
    letter-spacing:0;
    text-transform:uppercase;
}

.hero h1{
    font-size:clamp(2.5rem, 5vw, 5.2rem);
    line-height:.98;
    max-width:820px;
    margin-bottom:22px;
    font-weight:800;
    letter-spacing:0;
    overflow-wrap:break-word;
}

.hero-text{
    max-width:640px;
    margin-bottom:30px;
    color:#e6edf8;
    font-size:1.12rem;
}

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:34px;
}

.btn{
    display:inline-flex;
    min-height:50px;
    align-items:center;
    justify-content:center;
    padding:0 22px;
    border:0;
    border-radius:8px;
    text-decoration:none;
    font:inherit;
    font-weight:800;
    cursor:pointer;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary{
    background:var(--brand);
    color:white;
    box-shadow:0 12px 34px rgba(11,114,231,.3);
}

.btn-primary:hover{
    background:var(--brand-strong);
}

.btn-secondary{
    background:rgba(255,255,255,.14);
    color:white;
    border:1px solid rgba(255,255,255,.28);
}

.hero-stats{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:12px;
    max-width:680px;
}

.hero-stats div{
    min-height:88px;
    padding:16px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:8px;
    background:rgba(255,255,255,.1);
    backdrop-filter:blur(12px);
}

.hero-stats strong{
    display:block;
    font-size:1.05rem;
    line-height:1.2;
}

.hero-stats span{
    display:block;
    margin-top:6px;
    color:#d7e2f2;
    font-size:.9rem;
}

.hero-card{
    width:100%;
    min-width:0;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.24);
    border-radius:8px;
    background:rgba(255,255,255,.94);
    box-shadow:var(--shadow);
}

.hero-card img{
    width:100%;
    aspect-ratio:1.5;
    object-fit:cover;
    object-position:center 38%;
    background:#f8fbff;
}

.hero-card-content{
    padding:24px;
}

.hero-card-content span{
    display:inline-flex;
    margin-bottom:10px;
    color:var(--mint);
    font-size:.76rem;
    font-weight:800;
    text-transform:uppercase;
}

.hero-card-content h2{
    font-size:1.45rem;
    line-height:1.2;
    margin-bottom:10px;
}

.hero-card-content p{
    color:var(--muted);
}

.section{
    width:calc(100% - 40px);
    max-width:1180px;
    margin:auto;
    padding:88px 0;
}

.trust-band{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:14px;
    padding:22px 0 0;
}

.trust-item{
    min-height:92px;
    display:flex;
    align-items:center;
    gap:14px;
    padding:18px;
    border:1px solid var(--line);
    border-radius:8px;
    background:var(--paper);
    box-shadow:0 8px 24px rgba(11,16,32,.06);
}

.trust-item span{
    flex:0 0 auto;
    width:38px;
    height:38px;
    display:grid;
    place-items:center;
    border-radius:8px;
    color:white;
    background:var(--ink);
    font-weight:800;
    font-size:.85rem;
}

.trust-item p{
    font-weight:700;
    color:#263247;
}

.section-heading{
    max-width:760px;
    margin-bottom:34px;
}

.section-heading.compact{
    max-width:680px;
}

.section-heading h2,
.about-content h2,
.contact-copy h2{
    font-size:clamp(2rem, 3.6vw, 3.4rem);
    line-height:1.05;
    margin-bottom:16px;
    font-weight:800;
    letter-spacing:0;
}

.section-heading p,
.about-content p,
.contact-copy p{
    color:var(--muted);
    font-size:1.02rem;
}

.cards{
    display:grid;
    gap:18px;
}

.services-grid{
    grid-template-columns:repeat(3, minmax(0, 1fr));
}

.card{
    padding:26px;
    border:1px solid var(--line);
    border-radius:8px;
    background:white;
    box-shadow:0 10px 28px rgba(11,16,32,.06);
}

.service-card{
    min-height:340px;
    display:flex;
    flex-direction:column;
}

.featured-card{
    border-color:rgba(11,114,231,.28);
    box-shadow:0 18px 45px rgba(11,114,231,.12);
}

.service-icon{
    width:52px;
    height:52px;
    margin-bottom:22px;
    display:grid;
    place-items:center;
    border-radius:8px;
    color:var(--brand);
    background:#eaf3ff;
    font-size:1.55rem;
}

.service-card:nth-child(2) .service-icon{
    color:var(--mint);
    background:#e8f8f2;
}

.service-card:nth-child(3) .service-icon{
    color:var(--amber);
    background:#fff6df;
}

.card h3,
.process-grid h3,
.project-card h3{
    margin-bottom:10px;
    font-size:1.28rem;
    line-height:1.25;
}

.card p,
.process-grid p,
.project-card p{
    color:var(--muted);
}

.service-card ul{
    margin-top:auto;
    padding-top:22px;
    list-style:none;
}

.service-card li{
    position:relative;
    padding-left:20px;
    margin-top:9px;
    color:#2c374d;
    font-weight:600;
    font-size:.94rem;
}

.service-card li::before{
    content:"";
    position:absolute;
    left:0;
    top:.62em;
    width:7px;
    height:7px;
    border-radius:999px;
    background:var(--brand);
}

.process-section{
    width:100%;
    max-width:none;
    padding:88px max(20px, calc((100% - 1180px) / 2));
    background:var(--soft);
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:16px;
}

.process-grid article{
    min-height:240px;
    padding:24px;
    border:1px solid var(--line);
    border-radius:8px;
    background:white;
}

.process-grid span{
    width:38px;
    height:38px;
    margin-bottom:34px;
    display:grid;
    place-items:center;
    border-radius:8px;
    color:white;
    background:var(--brand);
    font-weight:800;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:1.1fr .9fr 1fr;
    gap:18px;
}

.project-card{
    min-height:300px;
    padding:26px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    border-radius:8px;
    color:white;
    overflow:hidden;
    background:
        linear-gradient(180deg, rgba(11,16,32,.05), rgba(11,16,32,.9)),
        url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80");
    background-size:cover;
    background-position:center;
}

.project-card:nth-child(2){
    background:
        linear-gradient(180deg, rgba(11,16,32,.04), rgba(11,16,32,.88)),
        url("https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=900&q=80");
    background-size:cover;
    background-position:center;
}

.project-card:nth-child(3){
    background:
        linear-gradient(180deg, rgba(11,16,32,.04), rgba(11,16,32,.9)),
        url("https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=80");
    background-size:cover;
    background-position:center;
}

.project-card span{
    margin-bottom:10px;
    color:#8be4f4;
    font-size:.78rem;
    font-weight:800;
    text-transform:uppercase;
}

.project-card p{
    color:#dbe8f6;
}

.about-section{
    display:grid;
    grid-template-columns:.82fr 1.18fr;
    gap:54px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:8px;
    border:1px solid var(--line);
    background:var(--soft);
    box-shadow:var(--shadow);
}

.about-image img{
    width:100%;
    aspect-ratio:4/5;
    object-fit:cover;
    object-position:center;
}

.about-list{
    display:grid;
    gap:14px;
    margin-top:26px;
}

.about-list div{
    padding:18px 0;
    display:grid;
    grid-template-columns:150px 1fr;
    gap:18px;
    border-top:1px solid var(--line);
}

.about-list strong{
    color:var(--ink);
}

.about-list span{
    color:var(--muted);
}

.contact-section{
    width:100%;
    max-width:none;
    padding:88px max(20px, calc((100% - 1180px) / 2));
    background:#07101f;
}

.contact-panel{
    display:grid;
    grid-template-columns:.88fr 1.12fr;
    gap:42px;
    align-items:start;
    color:white;
}

.contact-copy{
    padding-top:18px;
}

.contact-copy h2{
    max-width:540px;
}

.contact-copy p{
    max-width:500px;
    color:#b9c8da;
}

.contact-details{
    display:grid;
    gap:12px;
    margin-top:30px;
}

.contact-details a{
    width:fit-content;
    color:white;
    text-decoration:none;
    font-weight:800;
}

.contact-details p{
    color:#8be4f4;
    font-weight:700;
}

.contact-form{
    display:grid;
    gap:16px;
    padding:26px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:8px;
    background:white;
    color:var(--ink);
    box-shadow:0 24px 70px rgba(0,0,0,.24);
}

.contact-form label{
    display:grid;
    gap:8px;
    color:#283347;
    font-weight:800;
    font-size:.92rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    min-height:48px;
    padding:12px 14px;
    border:1px solid #cfd8e7;
    border-radius:8px;
    color:var(--ink);
    background:white;
    font:inherit;
    outline:none;
    transition:border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea{
    resize:vertical;
    min-height:132px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:var(--brand);
    box-shadow:0 0 0 4px rgba(11,114,231,.12);
}

.form-status{
    min-height:22px;
    color:var(--mint);
    font-weight:800;
}

footer{
    background:#050914;
    color:white;
}

.footer-inner{
    width:calc(100% - 40px);
    max-width:1180px;
    min-height:132px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
}

.footer-brand{
    color:white;
}

.footer-brand img{
    border-color:rgba(255,255,255,.2);
}

footer p{
    color:#b7c2d2;
}

.footer-content{
    display:grid;
    gap:8px;
    text-align:right;
}

.footer-links{
    display:flex;
    flex-wrap:wrap;
    justify-content:flex-end;
    gap:8px;
    color:white;
    font-weight:700;
}

.footer-links a{
    color:white;
    text-decoration:none;
}

.footer-links a:hover{
    color:#8be4f4;
}

@media (max-width:980px){
    .navbar{
        min-height:70px;
    }

    .menu-toggle{
        display:grid;
    }

    .nav-links,
    .nav-cta{
        display:none;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:20px;
        right:20px;
        padding:12px;
        border:1px solid var(--line);
        border-radius:8px;
        background:white;
        box-shadow:var(--shadow);
    }

    .nav-links.is-open{
        display:grid;
        gap:4px;
    }

    .nav-links a{
        justify-content:flex-start;
        min-height:46px;
    }

    .hero-inner{
        grid-template-columns:1fr;
        gap:32px;
        padding:70px 0 52px;
    }

    .hero-card{
        max-width:520px;
    }

    .services-grid,
    .trust-band,
    .process-grid,
    .portfolio-grid,
    .about-section,
    .contact-panel{
        grid-template-columns:1fr;
    }

    .portfolio-grid{
        gap:14px;
    }

    .about-section{
        gap:34px;
    }

    .about-image{
        max-width:420px;
    }
}

@media (max-width:640px){
    .navbar{
        padding:0 16px;
    }

    .brand span{
        font-size:1rem;
    }

    .hero{
        min-height:auto;
    }

    .hero-inner,
    .section,
    .footer-inner{
        width:calc(100vw - 32px);
        max-width:1180px;
    }

    .hero-inner{
        min-height:auto;
        padding:54px 0 42px;
    }

    .hero h1{
        font-size:2rem;
        line-height:1.05;
    }

    .hero-text{
        font-size:1rem;
    }

    .hero-actions,
    .footer-inner{
        align-items:stretch;
        flex-direction:column;
    }

    .footer-content{
        text-align:left;
    }

    .footer-links{
        justify-content:flex-start;
    }

    .btn{
        width:100%;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .section,
    .process-section,
    .contact-section{
        padding-top:62px;
        padding-bottom:62px;
    }

    .trust-band{
        padding-top:18px;
    }

    .card,
    .contact-form,
    .project-card,
    .process-grid article{
        padding:22px;
    }

    .project-card{
        min-height:260px;
    }

    .about-list div{
        grid-template-columns:1fr;
        gap:6px;
    }

    .contact-panel{
        gap:26px;
    }
}
