:root{
  --vx-bg:#020713;
  --vx-card:#071225;
  --vx-card2:#09172d;
  --vx-text:#edf6ff;
  --vx-muted:#8ca2ba;
  --vx-blue:#087cff;
  --vx-cyan:#06e5e8;
  --vx-border:rgba(48,155,255,.18);
  --vx-max:1120px;
}

*{box-sizing:border-box}

body.vx-page{
  margin:0;
  min-height:100vh;
  color:var(--vx-text);
  background:
    radial-gradient(circle at 80% 5%,rgba(8,124,255,.13),transparent 30%),
    linear-gradient(180deg,#010611,#030a18 55%,#01050e);
  font-family:Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.vx-wrap{
  width:min(var(--vx-max),calc(100% - 40px));
  margin:auto;
}

.vx-nav{
  display:flex;
  min-height:76px;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.vx-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.vx-brand img{
  width:34px;
  height:34px;
  object-fit:contain;
}

.vx-navlinks{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:18px;
}

.vx-navlinks a{
  color:var(--vx-muted);
  text-decoration:none;
  font-size:14px;
}

.vx-navlinks a:hover{color:#fff}

.vx-lang{
  padding:7px 10px;
  border:1px solid var(--vx-border);
  border-radius:999px;
}

.vx-hero{
  padding:90px 0 70px;
}

.vx-kicker{
  margin-bottom:16px;
  color:var(--vx-cyan);
  font-weight:800;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.vx-hero h1{
  max-width:900px;
  margin:0;
  font-size:clamp(42px,7vw,76px);
  letter-spacing:-.055em;
  line-height:.98;
}

.vx-hero p{
  max-width:760px;
  margin:25px 0 0;
  color:var(--vx-muted);
  font-size:18px;
  line-height:1.75;
}

.vx-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

.vx-btn{
  display:inline-flex;
  padding:13px 18px;
  align-items:center;
  justify-content:center;
  border-radius:11px;
  text-decoration:none;
  font-weight:750;
  border:1px solid var(--vx-border);
  color:#fff;
}

.vx-btn.primary{
  border-color:transparent;
  background:linear-gradient(135deg,#087cff,#0861ce);
}

.vx-section{
  padding:70px 0;
}

.vx-section h2{
  margin:0 0 20px;
  font-size:clamp(30px,4vw,46px);
  letter-spacing:-.035em;
}

.vx-copy{
  max-width:820px;
  color:var(--vx-muted);
  font-size:16px;
  line-height:1.8;
}

.vx-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
  margin-top:30px;
}

.vx-card{
  padding:25px;
  border:1px solid var(--vx-border);
  border-radius:17px;
  background:linear-gradient(145deg,var(--vx-card),var(--vx-card2));
}

.vx-card h3{
  margin:0 0 10px;
  font-size:18px;
}

.vx-card p{
  margin:0;
  color:var(--vx-muted);
  line-height:1.65;
}

.vx-process{
  counter-reset:step;
  display:grid;
  gap:15px;
  margin-top:30px;
}

.vx-step{
  padding:22px;
  border-left:2px solid var(--vx-blue);
  background:rgba(7,18,37,.6);
}

.vx-step strong{
  display:block;
  margin-bottom:7px;
}

.vx-proof{
  padding:32px;
  border:1px solid rgba(6,229,232,.18);
  border-radius:20px;
  background:rgba(6,229,232,.035);
}

.vx-faq details{
  margin-bottom:10px;
  padding:17px 18px;
  border:1px solid var(--vx-border);
  border-radius:12px;
  background:rgba(7,18,37,.7);
}

.vx-faq summary{
  cursor:pointer;
  font-weight:700;
}

.vx-faq p{
  color:var(--vx-muted);
  line-height:1.65;
}

.vx-form{
  display:grid;
  gap:13px;
  margin-top:24px;
}

.vx-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}

.vx-form input,
.vx-form select,
.vx-form textarea{
  width:100%;
  border:1px solid var(--vx-border);
  border-radius:11px;
  padding:13px 14px;
  outline:none;
  color:#fff;
  background:#06101f;
  font:inherit;
}

.vx-form textarea{
  min-height:145px;
  resize:vertical;
}

.vx-form button{
  cursor:pointer;
  border:0;
}

.vx-form-status{
  min-height:22px;
  color:var(--vx-muted);
  font-size:13px;
}

.vx-hp{
  position:absolute!important;
  left:-10000px!important;
}

.vx-footer{
  padding:40px 0 60px;
  border-top:1px solid var(--vx-border);
  color:var(--vx-muted);
  font-size:13px;
}

@media(max-width:800px){
  .vx-grid{grid-template-columns:1fr}
  .vx-form-row{grid-template-columns:1fr}
  .vx-navlinks a:not(.vx-lang){display:none}
}
