:root{
    --bg:#0d0d0d;
    --bg2:#141414;
    --card:#181818;
    --orange:#f7931a;
    --orange2:#ffab3d;
    --text:#f5f5f5;
    --muted:#b8b8b8;
    --border:rgba(255,255,255,0.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:var(--bg);
    color:var(--text);
    overflow-x:hidden;
}

.container{
    width:min(1400px,92%);
    margin:auto;
}

/* NAV */

nav{
    position:fixed;
    width:100%;
    z-index:1000;
    background:rgba(10,10,10,.92);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--border);
}

.nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}

.logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo img{
    width:55px;
}

.logo-text h2{
    font-size:1.7rem;
    font-weight:800;
}

.logo-text span{
    color:var(--orange);
    font-size:.8rem;
    letter-spacing:2px;
}

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:600;
}

.call-btn{
    background:var(--orange);
    color:white;
    text-decoration:none;
    padding:14px 22px;
    border-radius:10px;
    font-weight:700;
}

/* HERO */

.hero{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
}

.hero-bg{
    position:absolute;
    inset:0;
    background:
    linear-gradient(to right, rgba(0,0,0,.88), rgba(0,0,0,.55)),
    url("../images/hero-logo-bg.png") center/cover no-repeat;
}

.hero-content{
    position:relative;
    z-index:2;
    padding-top:90px;
    max-width:750px;
}

.hero h1{
    font-size:clamp(3rem,8vw,6rem);
    line-height:.95;
    font-weight:900;
    margin-bottom:24px;
    text-transform:uppercase;
}

.hero h1 span{
    color:var(--orange);
}

.hero p{
    color:var(--muted);
    font-size:1.2rem;
    line-height:1.7;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:18px 30px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
}

.primary-btn{
    background:var(--orange);
    color:white;
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.15);
    color:white;
}

/* STATS */

.stats{
    background:var(--bg2);
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}

.stat{
    padding:45px 35px;
    border-right:1px solid var(--border);
}

.stat h2{
    color:var(--orange);
    font-size:2.8rem;
    margin-bottom:10px;
}

.stat p{
    color:var(--muted);
}

.stat{
    position:relative;
    padding:45px 35px;
    border-right:1px solid var(--border);
}

/* Featured Stat Layout */

.featured-stat{
    display:flex;
    align-items:center;
    gap:26px;
}

/* Text Area */

.stat-content{
    display:flex;
    flex-direction:column;
}

.stat-pin{
    width:70px;
    min-width:70px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.stat-pin img{
    width:62px;
    height:62px;
    object-fit:contain;
}

.stat-people{
    width:70px;
    min-width:70px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.stat-people img{
    width:80px;
    height:70px;
    object-fit:contain;
}

/* Stat Text */

.stat h2{
    color:var(--orange);
    font-size:2.8rem;
    margin-bottom:10px;
}

.stat p{
    color:var(--muted);
    line-height:1.6;
}

/* SECTIONS */

section{
    padding:110px 0;
}

.section-title{
    margin-bottom:60px;
}

.section-title span{
    color:var(--orange);
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.section-title h2{
    margin-top:12px;
    font-size:clamp(2.2rem,5vw,4rem);
}

.section-title p{
    color:var(--muted);
    margin-top:20px;
}

/* SERVICES */

.services{
    background:#111;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
}

.service-card{
    background:linear-gradient(180deg,#1a1a1a,#131313);
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
}

.service-image-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:18px;
}

.service-image-icon img{
    width:70px;
    height:70px;
    object-fit:contain;
}

.service-card h3{
    margin-bottom:14px;
}

.service-card p{
    color:var(--muted);
    line-height:1.7;
}

/* GALLERY */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-item{
    overflow:hidden;
    border-radius:18px;
}

.gallery-item img{
    width:100%;
    height:320px;
    object-fit:cover;
}

/* CTA */

.cta{
    text-align:center;
    background:
    linear-gradient(to right, rgba(0,0,0,.88), rgba(0,0,0,.72)),
    url("../images/hero-bg.png") center/cover no-repeat;
}

.cta h2{
    font-size:clamp(2.5rem,5vw,4.5rem);
    margin-bottom:20px;
}

.cta p{
    color:var(--muted);
    max-width:700px;
    margin:auto;
    margin-bottom:40px;
}

/* FOOTER */

footer{
    background:#0a0a0a;
    border-top:1px solid var(--border);
}

.footer-wrap{
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
    padding:45px 0;
}

.footer-left img{
    width:220px;
    margin-bottom:20px;
}

.footer-left p{
    color:var(--muted);
}

.footer-right{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-right a{
    color:white;
    text-decoration:none;
}

.copyright{
    border-top:1px solid var(--border);
    text-align:center;
    padding:22px 0;
    color:#888;
}

/* MOBILE */

@media(max-width:1100px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:850px){

    .nav-links{
        display:none;
    }

    .services-grid,
    .gallery-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

}

/* =========================
   SUPPORTED SYSTEMS
========================= */

.systems{
    background:#111;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.systems-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

.system-card{
    background:linear-gradient(180deg,#1a1a1a,#131313);
    border:1px solid var(--border);
    border-radius:20px;
    padding:35px;
    transition:.35s;
}

.system-card:hover{
    transform:translateY(-6px);
    border-color:rgba(247,147,26,.35);
}

.system-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:28px;
}

.system-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:rgba(247,147,26,.10);
    display:flex;
    align-items:center;
    justify-content:center;
}

.system-header h3{
    font-size:1.5rem;
}

.system-card ul{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.system-card li{
    color:var(--muted);
    padding-bottom:14px;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.system-card li:last-child{
    border-bottom:none;
    padding-bottom:0;
}

@media(max-width:900px){

    .systems-grid{
        grid-template-columns:1fr;
    }

}

/* System Logo Image */

.system-logo{
    padding:10px;
}

.system-logo img{
    width:42px;
    height:42px;
    object-fit:contain;
}

.award-ribbon{
    width:70px;
    min-width:70px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.award-ribbon img{
    width:74px;
    height:74px;
    object-fit:contain;
}