:root{
  --bg:#0b0f14;
  --card:#111827;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --line:#1f2937;
  --primary:#22c55e;
  --primary2:#16a34a;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(900px 500px at 20% 0%, rgba(34,197,94,.10), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(34,197,94,.08), transparent 55%),
              var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.wrap{max-width:1120px;margin:0 auto;padding:0 16px}
.hidden{display:none!important}

.topbar{
  position:sticky; top:0; z-index:10;
  border-bottom:1px solid var(--line);
  background: rgba(11,15,20,.85);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
  gap:12px;
}
.brand{display:flex;align-items:center;gap:10px}
.logo{
  width:40px;height:40px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  font-weight:900;
  box-shadow: var(--shadow);
}
.brand-text{display:flex;flex-direction:column;line-height:1.1}
.muted{color:var(--muted)}
.nav{display:flex;gap:16px;align-items:center}
.nav a{color:var(--muted);font-size:14px}
.nav a:hover{color:var(--text)}
.actions{display:flex;gap:10px;align-items:center}
.hamb{
  display:none;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
}
.mobile-nav{
  padding:12px 0 16px 0;
  display:flex;flex-direction:column;gap:10px;
}
.mobile-nav a{color:var(--muted)}
.mobile-nav .btn{margin-top:6px}

.btn{
  border:1px solid var(--line);
  background: rgba(17,24,39,.6);
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}
.btn:hover{filter:brightness(1.06)}
.btn-primary{
  border-color: rgba(34,197,94,.35);
  background: linear-gradient(180deg, var(--primary), var(--primary2));
  color:#06210f;
}
.btn-outline{background:transparent}
.btn-full{width:100%}

.hero{padding:64px 0 24px 0}
.hero-inner{
  display:grid;
  grid-template-columns: 1.12fr .88fr;
  gap:24px;
  align-items:center;
}
.pill{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.06);
  color: var(--muted);
  font-size:13px;
}
h1{
  font-size:44px;
  line-height:1.08;
  margin:12px 0 12px 0;
  letter-spacing:-.02em;
}
.lead{
  font-size:18px;
  line-height:1.55;
  color: var(--muted);
  margin:0 0 18px 0;
}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap}
.trust{
  display:flex;gap:14px;flex-wrap:wrap;
  margin-top:18px;
}
.trust-item{
  border:1px solid var(--line);
  background: rgba(17,24,39,.45);
  border-radius:14px;
  padding:10px 12px;
  min-width: 190px;
}

.hero-card{
  border:1px solid rgba(34,197,94,.22);
  background: rgba(17,24,39,.55);
  border-radius:22px;
  padding:18px;
  box-shadow: var(--shadow);
}
.mock{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  background:#0b1220;
}
.mock-top{
  display:flex;gap:6px;
  padding:10px;
  border-bottom:1px solid var(--line);
  background: rgba(17,24,39,.5);
}
.dot{width:10px;height:10px;border-radius:999px;background: rgba(229,231,235,.25)}
.mock-body{padding:14px}
.mock-title{font-weight:900;margin-bottom:10px}
.mock-item{
  display:flex;align-items:center;justify-content:space-between;
  border:1px solid var(--line);
  border-radius:14px;
  padding:10px 10px;
  margin:10px 0;
  background: rgba(17,24,39,.55);
}
.tag{
  border:1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);
  padding:6px 10px;
  border-radius:999px;
  color:var(--text);
  font-weight:800;
  font-size:13px;
}
.mock-total{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 2px;
  margin-top:6px;
}
.mock-note{font-size:12px;margin-top:10px}

.section{padding:44px 0}
.section.alt{
  background: rgba(17,24,39,.35);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
h2{font-size:30px;margin:0 0 8px 0}
h3{margin:0 0 6px 0}
.kicker{color: rgba(34,197,94,.9); font-weight:900; font-size:13px; margin-bottom:8px}
.card{
  border:1px solid var(--line);
  background: rgba(17,24,39,.55);
  border-radius:18px;
  padding:16px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
  margin-top:16px;
}
.list{margin:10px 0 0 18px;color:var(--muted);line-height:1.6}
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.price-card{
  position:relative;
  border:1px solid var(--line);
  background: rgba(17,24,39,.55);
  border-radius:18px;
  padding:16px;
}
.price-card.featured{
  border-color: rgba(34,197,94,.35);
  box-shadow: var(--shadow);
}
.badge{
  position:absolute; top:12px; right:12px;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.08);
  color: var(--text);
  font-weight:900;
}
.price-head{margin-bottom:10px}
.price{font-size:26px;font-weight:900;margin-top:6px}
.note{
  margin-top:14px;
  border:1px dashed rgba(229,231,235,.18);
  border-radius:16px;
  padding:12px 14px;
  color:var(--muted);
}
.faq{display:flex;flex-direction:column;gap:10px;margin-top:16px}
details{
  border:1px solid var(--line);
  background: rgba(17,24,39,.55);
  border-radius:16px;
  padding:12px 14px;
}
summary{
  cursor:pointer;
  font-weight:800;
}
details p{color:var(--muted);margin:10px 0 0 0;line-height:1.55}
.cta-box{
  margin-top:18px;
  border:1px solid rgba(34,197,94,.25);
  background: rgba(34,197,94,.06);
  border-radius:18px;
  padding:16px;
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;
}
.footer{
  border-top:1px solid var(--line);
  padding:18px 0;
  background: rgba(11,15,20,.9);
}
.footer-inner{
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;
}

@media (max-width: 980px){
  .hero-inner{grid-template-columns:1fr; }
  h1{font-size:38px}
  .grid-3{grid-template-columns:1fr}
  .grid-2{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .nav, .actions{display:none}
  .hamb{display:inline-flex}
}
