:root{
  --bg:#070b14;
  --panel:#0c1426;
  --text:#eaf0ff;
  --muted:#b6c0ff;
  --accent:#7c5cff;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.container{max-width:1100px;margin:auto;padding:0 24px}

header{
  background:rgba(7,11,20,.85);
  border-bottom:1px solid rgba(255,255,255,.1);
}
.header{
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 0;
}
.brand{font-weight:900}
nav a{margin-left:16px;color:var(--muted)}

.hero{padding:90px 0}
.hero h1{font-size:42px;line-height:1.1}
.hero p{max-width:650px;color:var(--muted)}

.buttons{margin-top:26px;display:flex;gap:14px;flex-wrap:wrap}
.btn{
  padding:14px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.2);
  font-weight:800;
}
.btn.primary{
  background:linear-gradient(135deg,var(--accent),#38bdf8);
  border:none;
}

.badges span{
  display:inline-block;
  margin-right:8px;
  margin-top:14px;
  padding:6px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px;
  padding:60px 0;
}
.card{
  background:rgba(255,255,255,.05);
  padding:22px;
  border-radius:18px;
}

.contact-page input,
.contact-page textarea{
  width:100%;
  margin-bottom:14px;
  padding:12px;
  border-radius:12px;
  border:none;
}
.hp{display:none}

footer{
  padding:26px 0;
  text-align:center;
  color:var(--muted);
  border-top:1px solid rgba(255,255,255,.1);
}
