:root{
  --bg:#0f1724;
  --card:#0b1220;
  --accent:#4f46e5;
  --muted:#94a3b8;
  --glass:rgba(255,255,255,0.03);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  line-height:1.45;
  color:#e6eef8;
  background:linear-gradient(180deg,#071024 0%, #07182a 100%);
}

header{
  position:fixed;
  left:0;
  right:0;
  top:0;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  backdrop-filter: blur(6px);
  border-bottom:1px solid rgba(255,255,255,0.03);
  z-index:60;
}

.logo{
  display:flex;
  gap:12px;
  align-items:center;
  font-weight:700;
}

.logo .mark{
  width:42px;
  height:42px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--accent),#06b6d4);
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:800;
}

nav{
  display:flex;
  gap:18px;
  align-items:center;
}

nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:8px;
}

nav a.active, nav a:hover{
  color:white;
  background:var(--glass);
}

main{
  padding:110px 28px 80px;
  max-width:1100px;
  margin:0 auto;
}

.hero{
  display:grid;
  grid-template-columns:1fr 420px;
  gap:32px;
  align-items:center;
}

.hero h1{
  font-size:32px;
  margin:0 0 10px;
}

.hero p{
  color:var(--muted);
  margin:0 0 18px;
}

.cta{
  display:flex;
  gap:12px;
}

.btn{
  padding:10px 16px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:600;
}

.btn.primary{
  background:var(--accent);
  color:white;
}

.btn.ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,0.04);
  color:var(--muted);
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border-radius:12px;
  padding:18px;
  border:1px solid rgba(255,255,255,0.03);
}

.kpis{
  display:flex;
  gap:12px;
}

.kpi{
  flex:1;
  text-align:center;
}

.kpi h3{
  margin:6px 0 0;
}

section{
  margin-top:36px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}

.service{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.service .icon{
  width:48px;
  height:48px;
  border-radius:10px;
  background:rgba(255,255,255,0.02);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

footer{
  margin-top:40px;
  padding:28px;
  color:var(--muted);
  text-align:center;
}

/* Pages (sections) hidden by default except #home */
.page{
  display:none;
}

.page.active{
  display:block;
}

/* Projects gallery */
.project{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.project .thumb{
  height:160px;
  border-radius:10px;
  background:linear-gradient(135deg,#0b1220,#071124);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
}

/* Contact form */
form{
  display:grid;
  gap:12px;
}

input,textarea,select{
  background:transparent;
  border:1px solid rgba(255,255,255,0.06);
  padding:10px;
  border-radius:8px;
  color:white;
}

label{
  color:var(--muted);
  font-size:13px;
}

small{
  color:var(--muted);
}

/* Responsive */
@media (max-width:900px){
  .hero{grid-template-columns:1fr;}
  .logo span{display:none;}
  .kpis{flex-direction:column;}
  .nav-toggle{display:block;}
}

.thumb-img {
  width: 100%;
  height: 150px; /* adjust as needed */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 8px;
}

