*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Inter',sans-serif;
background:#050505;
color:white;
line-height:1.6;
overflow-x:hidden;
}

.container{
width:min(1400px,92%);
margin:auto;
}

.header{
position:sticky;
top:0;
background:rgba(0,0,0,0.92);
backdrop-filter:blur(12px);
border-bottom:1px solid rgba(255,255,255,0.08);
z-index:999;
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:22px 0;
gap:30px;
}

.logo{
font-size:42px;
font-weight:900;
text-decoration:none;
color:white;
letter-spacing:-2px;
}

.logo span{
color:#7CFF4F;
}

.tagline{
font-size:11px;
letter-spacing:3px;
color:#888;
margin-top:6px;
}

.menu{
display:flex;
gap:28px;
flex-wrap:wrap;
}

.menu a{
color:#d0d0d0;
text-decoration:none;
font-weight:600;
transition:.25s;
}

.menu a:hover{
color:#7CFF4F;
}

.header-right{
display:flex;
align-items:center;
gap:18px;
}

.top-link{
color:#cfcfcf;
text-decoration:none;
font-weight:700;
font-size:14px;
}

.btn-header,
.btn-primary{
background:#7CFF4F;
color:black;
padding:16px 26px;
border-radius:18px;
font-weight:800;
text-decoration:none;
display:inline-block;
}

.btn-secondary{
border:1px solid rgba(255,255,255,0.15);
padding:16px 26px;
border-radius:18px;
color:white;
text-decoration:none;
font-weight:700;
}

.hero{
padding:120px 0 80px;
}

.hero-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.badge{
display:inline-block;
padding:10px 18px;
border-radius:999px;
background:rgba(124,255,79,0.08);
border:1px solid rgba(124,255,79,0.2);
color:#7CFF4F;
font-size:12px;
font-weight:800;
letter-spacing:3px;
margin-bottom:30px;
}

.hero h1{
font-size:78px;
line-height:0.95;
font-weight:900;
letter-spacing:-3px;
margin-bottom:28px;
}

.hero h1 span{
color:#7CFF4F;
}

.hero p{
font-size:21px;
color:#b0b0b0;
max-width:720px;
}

.hero-buttons{
display:flex;
gap:18px;
margin-top:40px;
flex-wrap:wrap;
}

.hero-card{
background:#0b0b0b;
border:1px solid rgba(255,255,255,0.08);
border-radius:36px;
padding:40px;
}

.hero-boxes{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.hero-box{
background:rgba(255,255,255,0.03);
padding:28px;
border-radius:28px;
border:1px solid rgba(255,255,255,0.06);
}

.hero-box h3{
margin-bottom:14px;
font-size:24px;
}

.hero-box p{
font-size:15px;
color:#a0a0a0;
}

.section{
padding:110px 0;
}

.section-sub{
color:#7CFF4F;
font-size:13px;
font-weight:800;
letter-spacing:3px;
margin-bottom:20px;
}

.section-title{
font-size:60px;
line-height:1;
font-weight:900;
letter-spacing:-3px;
margin-bottom:28px;
}

.green{
color:#7CFF4F;
}

.section-text{
font-size:20px;
line-height:1.9;
color:#a0a0a0;
max-width:1000px;
}

.stats{
padding:30px 0 90px;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:24px;
}

.stat{
background:#0b0b0b;
padding:40px;
border-radius:30px;
border:1px solid rgba(255,255,255,0.08);
}

.stat h2{
font-size:48px;
font-weight:900;
color:#7CFF4F;
margin-bottom:12px;
}

.helpdesk-grid,
.team-grid,
.horror-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:60px;
}

.service-card,
.team-card,
.horror-card{
background:#0b0b0b;
border-radius:34px;
overflow:hidden;
border:1px solid rgba(255,255,255,0.08);
}

.team-card img,
.horror-card img{
width:100%;
height:320px;
object-fit:cover;
object-position:center top;
display:block;
}

.team-content,
.horror-content{
padding:34px;
}

.team-role{
color:#7CFF4F;
font-size:14px;
font-weight:800;
margin:14px 0 18px;
text-transform:uppercase;
}

.icon-box{
width:72px;
height:72px;
display:flex;
align-items:center;
justify-content:center;
border-radius:22px;
background:rgba(124,255,79,0.08);
margin-bottom:24px;
font-size:30px;
}

.check-list{
margin-top:24px;
padding-left:18px;
color:#d0d0d0;
}

.footer{
padding:60px 0;
border-top:1px solid rgba(255,255,255,0.08);
}

.footer-grid{
display:flex;
justify-content:space-between;
gap:40px;
flex-wrap:wrap;
}

.footer-logo{
font-size:34px;
font-weight:900;
}

.footer-logo span{
color:#7CFF4F;
}

.footer-company{
margin-top:20px;
line-height:1.9;
color:#888;
}

.footer-links{
display:flex;
flex-direction:column;
gap:16px;
}

.footer-links a{
color:#7CFF4F;
text-decoration:none;
}

@media(max-width:1100px){

.hero-grid,
.helpdesk-grid,
.team-grid,
.horror-grid,
.stats-grid{
grid-template-columns:1fr;
}

.nav{
flex-direction:column;
align-items:flex-start;
}

.header-right{
flex-wrap:wrap;
}

.hero h1{
font-size:48px;
}

.section-title{
font-size:42px;
}

.hero-boxes{
grid-template-columns:1fr;
}

}