:root{
  --bg:#0b1220;
  --bg2:#0f1a2e;
  --card:#111c33;
  --text:#eaf0ff;
  --muted:#a9b8d6;
  --accent:#28d1ff;
  --accent2:#6cff7a;
  --border:rgba(255,255,255,.10);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(40,209,255,.20), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(108,255,122,.12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
a:hover{opacity:.92}
.container{width:min(1120px, 92vw); margin:0 auto}
.nav{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(1.4) blur(10px);
  background: rgba(11,18,32,.62);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0}
.brand{display:flex; align-items:center; gap:14px}
.brand img{width:90px; height:90px; border-radius:16px; object-fit:cover; border:1px solid var(--border)}
.brand .name{font-weight:900; letter-spacing:.2px; font-size:16px}
.brand .tag{font-size:12px; color:var(--muted); margin-top:2px}
.nav-links{display:flex; gap:18px; align-items:center}
.nav-links a{font-size:14px; color:var(--muted)}
.nav-links a.active{color:var(--text)}
.nav-cta{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  font-weight:800;
  font-size:14px;
  gap:10px;
}
.btn.primary{
  border-color: rgba(40,209,255,.35);
  background: linear-gradient(135deg, rgba(40,209,255,.22), rgba(108,255,122,.10));
}
.btn.small{padding:8px 12px; border-radius:12px; font-size:13px}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}
.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.card.pad{padding:18px}
.card .title{font-weight:900; margin:0 0 6px}
.card .muted{color:var(--muted); font-size:14px}
.hero{padding:54px 0 26px}
.hero-grid{display:grid; grid-template-columns: 1.15fr .85fr; gap:22px; align-items:center}
.hero-logo{width:420px; max-width:95%; height:auto; display:block; margin:0 0 14px 0; filter: drop-shadow(0 14px 26px rgba(0,0,0,.35));}
.h1{font-size: clamp(34px, 4.8vw, 56px); line-height:1.04; margin:12px 0 10px; letter-spacing:-.7px}
.lead{color:var(--muted); font-size:16px; margin:0 0 16px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:10px}
.kpis{display:flex; gap:14px; flex-wrap:wrap; margin-top:18px}
.kpi{padding:12px 14px; border-radius: var(--radius); border:1px solid var(--border); background: rgba(255,255,255,.03)}
.kpi .n{font-weight:900}
.kpi .t{font-size:12px; color:var(--muted); margin-top:2px}
.section{padding:44px 0}
.section h2{margin:0 0 10px; font-size:28px; letter-spacing:-.2px}
.section p{color:var(--muted); margin:0 0 16px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px}
.feature{padding:16px}
.feature h3{margin:0 0 6px; font-size:16px}
.feature p{margin:0; color:var(--muted); font-size:14px}
.ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.ul li{margin:6px 0}
.hr{height:1px; background: var(--border); margin:22px 0}
.form{display:grid; gap:12px}
label{font-size:13px; color:var(--muted)}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.18);
  color:var(--text);
  outline:none;
}
textarea{min-height:120px; resize:vertical}
.row{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.help{font-size:12px; color:var(--muted)}
.small{color:var(--muted); font-size:12px}
.pricing{display:flex; align-items:flex-end; justify-content:space-between; gap:14px; flex-wrap:wrap;}
.price{font-size:44px; font-weight:1000; letter-spacing:-1px;}
.price small{font-size:14px; color:var(--muted); font-weight:800}
.check{display:flex; gap:10px; align-items:flex-start; color:var(--muted); font-size:14px; margin:10px 0}
.check b{color:var(--text)}
.footer{padding:26px 0 40px; border-top:1px solid var(--border); margin-top:22px}
.footer-grid{display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap:14px}
.footer a{color:var(--muted); font-size:14px}
.pill{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
  gap:10px;
  align-items:center;
}
@media (max-width: 920px){
  .hero-grid{grid-template-columns: 1fr}
  .grid3{grid-template-columns: 1fr}
  .grid2{grid-template-columns: 1fr}
  .footer-grid{grid-template-columns: 1fr}
  .nav-links{display:none}
  .row{grid-template-columns: 1fr}
  .brand img{width:74px; height:74px}
  .hero-logo{width:340px}
}
