:root{
  --bg:#0b0f14;
  --card:#111827;
  --muted:#94a3b8;
  --text:#e5e7eb;
  --accent:#7c3aed;
  --accent2:#22c55e;
  --border:rgba(148,163,184,.18);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius:16px;
  --max:1080px;
  --pad:22px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--text);font-family:var(--font);line-height:1.5}
a{color:inherit;text-decoration:none}
small{color:var(--muted)}
.container{max-width:var(--max);margin:0 auto;padding:28px 18px}

.nav{
  position:sticky;top:0;z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,15,20,.72);
  border-bottom:1px solid var(--border);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:16px;max-width:var(--max);margin:0 auto;padding:14px 18px}
.brand{display:flex;align-items:center;gap:10px;font-weight:700;letter-spacing:.2px}
.logo{
  width:34px;
  height:34px;
  display:block;
  flex:0 0 auto;
  filter: drop-shadow(0 10px 22px rgba(124,58,237,.35));
}
.nav-links{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.nav-links a{
  color:var(--muted);
  padding:8px 10px;border-radius:10px;
}
.nav-links a.active, .nav-links a:hover{
  color:var(--text);
  background: rgba(148,163,184,.08);
}

.hero{
  padding:44px 0 10px;
}
.h-eyebrow{
  display:inline-flex;gap:10px;align-items:center;
  padding:7px 12px;border:1px solid var(--border);border-radius:999px;
  color:var(--muted);font-size:14px
}
.dot{width:8px;height:8px;border-radius:999px;background:var(--accent2)}
.h-title{font-size:44px;line-height:1.05;margin:16px 0 10px;letter-spacing:-.8px}
.h-title span{
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.h-sub{color:var(--muted);max-width:760px;font-size:18px;margin:0 0 22px}

.row{display:grid;grid-template-columns: 1.2fr .8fr;gap:18px;align-items:start}
@media (max-width: 900px){.row{grid-template-columns:1fr}.h-title{font-size:36px}}

.card{
  background: rgba(17,24,39,.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--pad);
}
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width: 900px){.grid3{grid-template-columns:1fr}}

.kpi{display:flex;flex-direction:column;gap:6px}
.kpi strong{font-size:18px}
.kpi span{color:var(--muted);font-size:14px}

.btns{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:11px 14px;border-radius:12px;font-weight:600;
  border:1px solid var(--border);
  background: rgba(148,163,184,.08);
}
.btn.primary{
  border:none;
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  box-shadow: 0 12px 26px rgba(124,58,237,.30);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0)}
.section{padding:20px 0}
.section h2{font-size:22px;margin:0 0 10px}
.section p{color:var(--muted);margin:0 0 16px}

.list{display:flex;flex-direction:column;gap:10px}
.li{display:flex;gap:10px;align-items:flex-start;color:var(--muted)}
.tick{
  margin-top:3px;
  width:18px;height:18px;border-radius:6px;
  background: rgba(34,197,94,.14);
  border:1px solid rgba(34,197,94,.35);
  display:inline-flex;align-items:center;justify-content:center;
  color: var(--accent2);
  font-weight:900;
}

.badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border-radius:999px;
  border:1px solid var(--border);
  background: rgba(148,163,184,.06);
  color:var(--muted);font-size:13px
}
.hr{height:1px;background:var(--border);margin:18px 0}

.pricing-toggle{
  display:flex;gap:10px;align-items:center;flex-wrap:wrap;
}
.toggle{
  display:inline-flex;border:1px solid var(--border);border-radius:999px;overflow:hidden;
}
.toggle button{
  cursor:pointer;
  background:transparent;border:none;color:var(--muted);
  padding:10px 12px;font-weight:600;
}
.toggle button.active{
  color:var(--text);
  background: rgba(148,163,184,.10);
}

.price-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media (max-width: 900px){.price-cards{grid-template-columns:1fr}}
.price-head{display:flex;justify-content:space-between;align-items:flex-start;gap:10px}
.price{font-size:34px;line-height:1;margin:10px 0}
.price small{font-size:14px}
.tag{font-size:12px;color:var(--muted);border:1px solid var(--border);padding:5px 8px;border-radius:999px}

.form{display:grid;gap:12px}
.input, .textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  background: rgba(148,163,184,.06);
  padding:12px 12px;
  color:var(--text);
  outline:none;
}
.textarea{min-height:120px;resize:vertical}
.footer{padding:26px 0;color:var(--muted);border-top:1px solid var(--border);margin-top:26px}
.footer a{color:var(--text)}
