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

body{
font-family:'Inter',sans-serif;
background:#07111F;
color:#fff;
overflow-x:hidden;
}

.container{
width:min(1180px,92%);
margin:auto;
position:relative;
z-index:2;
}

.bg-grid{
position:fixed;
inset:0;
background-image:
linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
background-size:40px 40px;
z-index:0;
}

.navbar{
position:fixed;
width:100%;
top:0;
z-index:100;
backdrop-filter:blur(18px);
background:rgba(7,17,31,.72);
border-bottom:1px solid rgba(255,255,255,.06);
}

.nav-content{
display:flex;
align-items:center;
justify-content:space-between;
padding:18px 0;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:26px;
font-weight:800;
}

.logo-box{
background:linear-gradient(135deg,#0057FF,#00C8FF);
padding:10px 14px;
border-radius:16px;
box-shadow:0 0 30px rgba(0,200,255,.4);
}

.menu{
display:flex;
gap:26px;
}

.menu a{
color:#CBD5E1;
text-decoration:none;
font-weight:600;
}

.btn-primary,
.btn-secondary{
padding:14px 22px;
border-radius:16px;
font-weight:700;
text-decoration:none;
transition:.3s;
display:inline-flex;
align-items:center;
gap:10px;
}

.btn-primary{
background:linear-gradient(135deg,#0057FF,#00C8FF);
color:#fff;
box-shadow:0 20px 40px rgba(0,87,255,.35);
}

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

.btn-secondary{
border:1px solid rgba(255,255,255,.1);
background:rgba(255,255,255,.05);
color:#fff;
}

.large{
padding:16px 28px;
}

.hero{
padding:180px 0 120px;
position:relative;
overflow:hidden;
}

.hero-grid{
display:grid;
grid-template-columns:1.1fr .9fr;
gap:60px;
align-items:center;
}

.glow{
position:absolute;
width:420px;
height:420px;
border-radius:50%;
filter:blur(90px);
opacity:.35;
}

.glow1{
background:#0057FF;
top:-100px;
right:-100px;
}

.glow2{
background:#00C8FF;
bottom:-100px;
left:-100px;
}

.tag{
display:inline-flex;
gap:10px;
align-items:center;
padding:12px 18px;
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
border-radius:999px;
margin-bottom:24px;
font-weight:700;
color:#BFEFFF;
}

.hero h1{
font-size:64px;
line-height:1.05;
margin-bottom:24px;
letter-spacing:-2px;
}

.hero p{
font-size:20px;
line-height:1.8;
color:#CBD5E1;
margin-bottom:34px;
}

.hero-buttons{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.stats{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-top:40px;
}

.stat-card{
background:rgba(255,255,255,.05);
border:1px solid rgba(255,255,255,.08);
padding:22px;
border-radius:24px;
backdrop-filter:blur(18px);
}

.stat-card strong{
font-size:34px;
display:block;
margin-bottom:6px;
}

.stat-card span{
color:#CBD5E1;
font-size:14px;
}

.dashboard-card{
background:rgba(255,255,255,.06);
border:1px solid rgba(255,255,255,.08);
border-radius:32px;
padding:28px;
backdrop-filter:blur(22px);
box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.dashboard-header{
display:flex;
justify-content:space-between;
margin-bottom:24px;
}

.status{
display:flex;
align-items:center;
gap:10px;
color:#86EFAC;
font-weight:700;
}

.pulse{
width:10px;
height:10px;
background:#22C55E;
border-radius:50%;
animation:pulse 1.5s infinite;
}

@keyframes pulse{
0%{transform:scale(1);opacity:1}
100%{transform:scale(2.4);opacity:0}
}

.dashboard-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:16px;
}

.dashboard-item{
background:#111827;
padding:24px;
border-radius:24px;
}

.dashboard-item i{
font-size:28px;
margin-bottom:14px;
color:#00C8FF;
}

.dashboard-item strong{
display:block;
margin-bottom:8px;
font-size:20px;
}

.dashboard-item span{
color:#94A3B8;
}

.chart-line{
height:10px;
background:rgba(255,255,255,.06);
border-radius:999px;
margin-top:24px;
overflow:hidden;
}

.chart-bar{
height:100%;
width:75%;
background:linear-gradient(90deg,#0057FF,#00C8FF);
animation:loading 3s infinite;
}

@keyframes loading{
0%{width:15%}
100%{width:85%}
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title span{
color:#00C8FF;
font-weight:700;
}

.section-title h2{
font-size:46px;
margin-top:12px;
}

.services{
padding:110px 0;
background:#F8FAFC;
color:#07111F;
}

.services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:24px;
}

.service-card{
background:#fff;
padding:34px;
border-radius:28px;
box-shadow:0 18px 40px rgba(15,23,42,.08);
transition:.3s;
}

.service-card:hover{
transform:translateY(-8px);
}

.service-card i{
font-size:34px;
margin-bottom:20px;
color:#0057FF;
}

.service-card h3{
margin-bottom:14px;
font-size:24px;
}

.service-card p{
color:#64748B;
line-height:1.8;
}

.dashboard-demo{
padding:110px 0;
}

.demo-panel{
display:grid;
grid-template-columns:280px 1fr;
gap:24px;
}

.demo-sidebar{
background:rgba(255,255,255,.05);
padding:28px;
border-radius:28px;
display:flex;
flex-direction:column;
gap:18px;
border:1px solid rgba(255,255,255,.06);
}

.demo-sidebar div{
padding:16px;
border-radius:16px;
background:rgba(255,255,255,.04);
}

.demo-content{
background:rgba(255,255,255,.05);
padding:28px;
border-radius:28px;
border:1px solid rgba(255,255,255,.06);
}

.demo-cards{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:18px;
margin-bottom:22px;
}

.demo-box{
background:#111827;
padding:22px;
border-radius:22px;
}

.demo-box strong{
font-size:32px;
display:block;
margin-bottom:8px;
}

.map-fake{
height:320px;
border-radius:28px;
background:
radial-gradient(circle at center, rgba(0,200,255,.2), transparent 50%),
linear-gradient(135deg,#0F172A,#111827);
position:relative;
overflow:hidden;
}

.map-dot{
position:absolute;
width:16px;
height:16px;
border-radius:50%;
background:#00C8FF;
top:40%;
left:50%;
box-shadow:0 0 20px #00C8FF;
}

.map-dot.second{
top:60%;
left:30%;
background:#0057FF;
}

.contact-section{
padding:110px 0;
background:#F8FAFC;
}

.contact-box{
background:linear-gradient(135deg,#07111F,#0B1220);
padding:70px;
border-radius:36px;
text-align:center;
color:white;
box-shadow:0 30px 80px rgba(0,0,0,.3);
}

.contact-box h2{
font-size:48px;
margin-bottom:16px;
}

.contact-box p{
color:#CBD5E1;
font-size:18px;
margin-bottom:32px;
}

.center{
justify-content:center;
}

@media(max-width:980px){
.hero-grid,
.demo-panel{
grid-template-columns:1fr;
}

.services-grid,
.demo-cards,
.stats{
grid-template-columns:1fr 1fr;
}

.hero h1{
font-size:46px;
}

.menu{
display:none;
}
}

@media(max-width:680px){
.services-grid,
.demo-cards,
.stats,
.dashboard-grid{
grid-template-columns:1fr;
}

.hero h1{
font-size:36px;
}

.section-title h2,
.contact-box h2{
font-size:34px;
}

.contact-box{
padding:40px 24px;
}
}
