/* GLOBAL */
body{
  margin:0;
  font-family:'Segoe UI',sans-serif;
  background:#071a2d;
  color:#fff;
}

/* HERO */
.hero{
  height:100vh;
  display:flex;
  align-items:center;
  padding:60px;
  background:url('images/lab/research-analytics.png') center/cover;
}

.hero h1{
  font-size:48px;
  margin-bottom:20px;
}

.hero span{
  color:#00d4ff;
}

.hero p{
  width:50%;
  color:#a8c4dc;
  line-height:1.6;
}

.btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#00d4ff;
  border-radius:6px;
  text-decoration:none;
  color:#fff;
}

.section{
  padding:80px 60px;
   width:90%;
}

h2{
  font-size:22px;
  margin-bottom:20px;
}

/* CARDs */
.cards{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  padding:25px;
  border-radius:10px;
  transition:0.3s;
}

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

.cards i{
  color:#00d4ff;
  font-size:28px;
  margin-bottom:10px;
}

/* GRIDs */
.grids{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:25px;
}





/* dashboard */
/* ===== GRID ===== */
.dashboard{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

/* ===== CARD ===== */
.card{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  padding:18px;
  border-radius:8px;
}

.big{
  font-size:32px;
  margin-top:10px;
  color:#4da6ff;
}

.label{
  font-size:13px;
  color:#9fb3c8;
}

/* ===== CHART FIX ===== */
canvas{
  width:100% !important;
  height:250px !important;
}

/* ===== STATUS COLORS ===== */
.low{color:#4caf50;}
.mid{color:#ff9800;}
.high{color:#ff5252;}



/* PROCESS */
.steps{
  display:flex;
  flex-wrap:wrap;
  gap:20px;
}

.step{
  flex:1;
  min-width:220px;
  background:rgba(255,255,255,0.05);
  padding:20px;
  border-left:3px solid #00d4ff;
}

/* CTA */
.cta{
  text-align:center;
  background:linear-gradient(135deg,#071a2d,#0b2c4a);
  padding:70px;
}




/* Mobile */
@media(max-width:600px){

  .dashboard{
    grid-template-columns:1fr;
  }

  h2{
    font-size:18px;
  }

  .big{
    font-size:28px;
  }

  .section{
    padding:25px 15px;
  }

  canvas{
    height:200px !important;
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero p{width:100%;}
  .dashboard{grid-template-columns:1fr;}
  .stats{flex-direction:column;gap:20px;}
}

/* Tablet */
@media(max-width:992px){
  .dashboard{
    grid-template-columns:repeat(2,1fr);
  }
}
