:root{
  --bg:#070b16;
  --text:#e7ecff;
  --muted:#b6c2ff;
  --line:rgba(255,255,255,.10);
  --accent:#49a2ff;
  --accent2:#7c5cff;
  --ok:#33d69f;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1100px 700px at 20% -10%, rgba(73,162,255,.35), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(124,92,255,.25), transparent 55%),
              linear-gradient(180deg, var(--bg), #050815);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.wrap{max-width:1100px; margin:0 auto; padding:0 20px}

/* NAV */
.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(7,11,22,.55);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:16px;
}
.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:850;
}
.brand small{display:block; color:var(--muted); font-weight:650}
.logo-img{height:42px; width:auto; display:block}
.menu{display:flex; gap:16px; align-items:center}
.menu a{color:var(--muted); font-weight:750; font-size:14px; padding:8px 10px; border-radius:10px}
.menu a:hover{color:var(--text); background:rgba(255,255,255,.05)}
.cta{
  padding:10px 16px; border-radius:999px; font-weight:900;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 32px rgba(73,162,255,.18);
}
@media (max-width:900px){
  .menu{display:none}
}

/* HERO */
section{padding:44px 0}
.hero{padding:64px 0 30px}
.hero-grid{display:grid; grid-template-columns:1.25fr .75fr; gap:22px}
@media (max-width:900px){.hero-grid{grid-template-columns:1fr}}

.pill{
  display:inline-flex; align-items:center; gap:10px;
  padding:8px 12px; border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted); font-weight:750; width:fit-content;
}
.dot{width:8px; height:8px; border-radius:50%; background:var(--ok)}
h1{font-size:clamp(34px,4vw,52px); line-height:1.05; margin:16px 0}
h2{margin:0}
.lead{color:var(--muted); font-size:17px; line-height:1.65}
.kicker{color:rgba(182,194,255,.9); font-weight:700}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 18px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
  font-weight:900;
}
.btn.primary{background: linear-gradient(135deg, var(--accent), var(--accent2)); border:1px solid rgba(255,255,255,.08)}
.btn.small{padding:10px 14px; border-radius:12px; font-weight:850}
.btn:hover{filter:brightness(1.05)}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.cards{display:grid; grid-template-columns:repeat(3,1fr); gap:16px}
@media (max-width:900px){.cards{grid-template-columns:1fr}}
.sub{color:var(--muted); margin-top:8px; line-height:1.6}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:16px}
@media (max-width:900px){.grid-2{grid-template-columns:1fr}}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.badge{
  padding:8px 10px; border-radius:999px;
  border:1px solid var(--line);
  color:rgba(231,236,255,.95);
  background:rgba(255,255,255,.05);
  font-weight:750;
  font-size:13px;
}

/* Lists */
.ul{margin:10px 0 0; padding-left:18px; color:var(--muted); line-height:1.75}
.ul li{margin:4px 0}

/* CONTACT */
form label{display:block; margin:12px 0 6px; font-weight:800}
input, textarea, select{
  width:100%; padding:12px; border-radius:14px;
  background:rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.12);
  color:var(--text);
}
textarea{min-height:120px}
footer{border-top:1px solid var(--line); padding:28px 0; color:var(--muted)}
hr.sep{border:none; border-top:1px solid var(--line); margin:0}
.breadcrumb{color:rgba(182,194,255,.9); font-weight:700; font-size:13px}
.breadcrumb a{color:rgba(182,194,255,.95)}
