:root{
  --bg:#070A10;
  --card:#0D1220;
  --soft:#0B1020;
  --text:#EAF0FF;
  --muted:rgba(234,240,255,.72);
  --line:rgba(234,240,255,.10);
  --brand:#7C5CFF;
  --brand2:#33D6FF;
  --good:#22C55E;

  --radius:18px;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 600px at 10% 0%, rgba(124,92,255,.25), transparent 60%),
              radial-gradient(1000px 600px at 90% 10%, rgba(51,214,255,.18), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}
.container{width:min(1100px, 92%); margin:0 auto}

.topbar{
  position:sticky; top:0; z-index:10;
  background:rgba(7,10,16,.70);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.topbar__wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 0}

.brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.brand__mark{
  width:42px;height:42px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  font-weight:800;
}
.brand__text strong{display:block; font-size:14px}
.brand__text small{display:block; color:var(--muted); font-size:12px}

.nav{display:flex; gap:18px; align-items:center}
.nav a{color:var(--muted); text-decoration:none; font-weight:600; font-size:13px}
.nav a:hover{color:var(--text)}
.nav a.active{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  text-decoration:none;
  font-weight:800;
  border:0;
  cursor:pointer;
  box-shadow: 0 16px 40px rgba(124,92,255,.18);
}
.btn--small{padding:10px 12px; font-size:13px}
.btn--ghost{
  background:transparent;
  border:1px solid var(--line);
  box-shadow:none;
}

.hero{padding:46px 0 18px}
.hero__grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:26px; align-items:center}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}
h1{font-size:44px; line-height:1.05; margin:14px 0 12px}
.lead{color:var(--muted); font-size:16px; line-height:1.7}

.hero__cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}

.trust{display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; margin-top:20px}
.trust__card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:12px;
}
.trust__card strong{display:block; font-size:13px}
.muted{color:var(--muted)}

.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:16px;
}
.card--media{padding:0; overflow:hidden}
.card__top{
  display:flex; gap:7px; padding:12px 14px;
  border-bottom:1px solid var(--line);
  background:rgba(0,0,0,.25);
}
.dot{width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,.12)}
.card--media img{width:100%; display:block}
.card__body{padding:14px 14px 16px}

.section{padding:46px 0}
.section--soft{background:rgba(255,255,255,.02); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{font-size:28px; margin:0 0 10px}
.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:18px}
.grid2{display:grid; grid-template-columns: repeat(2, 1fr); gap:14px; margin-top:18px}

.service{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.service h3{margin:0 0 8px}
.service p{margin:0 0 14px; color:var(--muted); line-height:1.6}
.price{font-weight:900; color:var(--text)}

.feature{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
}
.feature h3{margin:0 0 6px}
.feature p{margin:0; color:var(--muted); line-height:1.6}

.cta{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap;
  background: linear-gradient(135deg, rgba(124,92,255,.20), rgba(51,214,255,.14));
  border:1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding:18px;
}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0 18px;
  background:rgba(0,0,0,.18);
}
.footer__grid{display:grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap:16px}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}
.footer__brand{display:flex; gap:12px; align-items:center; margin-bottom:10px}
.footer__bottom{margin-top:18px; border-top:1px solid var(--line); padding-top:14px; font-size:12px}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:36px}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .trust{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr 1fr}
}
