:root{
  --bg0:#070A12;
  --bg1:#0B1630;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.09);
  --text:#EAF0FF;
  --muted: rgba(234,240,255,0.72);
  --muted2: rgba(234,240,255,0.58);
  --line: rgba(255,255,255,0.12);
  --accent:#6D5CFF;
  --accent2:#2DE2E6;
  --good:#2FE38B;
  --bad:#FF4D6D;
  --shadow: 0 30px 80px rgba(0,0,0,0.35);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 700px at 15% 10%, rgba(109,92,255,0.22), transparent 55%),
              radial-gradient(900px 600px at 70% 20%, rgba(45,226,230,0.16), transparent 50%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color:var(--text);
}

.bg{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:0.9;
  background:
    linear-gradient(transparent 0 0),
    radial-gradient(circle at 50% 0%, rgba(109,92,255,0.18), transparent 42%),
    radial-gradient(circle at 0% 50%, rgba(45,226,230,0.12), transparent 40%);
  filter:saturate(1.05);
}

.container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

.header{
  padding:32px 0 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.header-right{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
}
.logo{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: linear-gradient(135deg, rgba(109,92,255,0.35), rgba(45,226,230,0.20));
  border:1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 60px rgba(109,92,255,0.15);
  font-weight:700;
}
.brand-name{ font-weight:800; letter-spacing:0.2px; }
.brand-tag{ font-size:12.5px; color:var(--muted2); margin-top:2px; }

.badge{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(234,240,255,0.88);
  font-weight:600;
}
.lang-switch{
  display:flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: rgba(234,240,255,0.88);
  font-size:12.5px;
}
.lang-switch select{
  border:1px solid rgba(255,255,255,0.2);
  border-radius:10px;
  background: rgba(9,14,28,0.75);
  color: var(--text);
  padding:4px 8px;
  font-size:12px;
}

.hero{
  display:grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap:26px;
  padding:10px 0 26px;
}

.hero-title{
  margin:0 0 12px;
  font-size: clamp(36px, 4.4vw, 54px);
  line-height:1.05;
  letter-spacing:-0.7px;
}
.hero-subtitle{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
  max-width:62ch;
}

.mini-list{
  margin:16px 0 18px;
  padding-left:18px;
  color: var(--muted);
}
.mini-list li{ margin:7px 0; }

.trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.trust-item{
  flex: 1 1 auto;
  min-width:160px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,0.05);
}
.trust-value{
  font-weight:900;
  font-size:18px;
}
.trust-label{
  margin-top:6px;
  color: var(--muted2);
  font-size:12.5px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05));
  border: 1px solid rgba(255,255,255,0.14);
  border-radius:20px;
  box-shadow: var(--shadow);
  padding:18px;
}

.card-title{ margin:0 0 6px; }
.card-subtitle{
  margin:0 0 14px;
  color: var(--muted);
  line-height:1.5;
}

.card-title{ font-size:16px; font-weight:800; }
.card-subtitle{ font-size:13.5px; color:var(--muted); }

.card-help{
  margin-top:16px;
  border-top:1px solid rgba(255,255,255,0.10);
  padding-top:14px;
}
.help-row{
  display:flex;
  gap:10px;
  align-items:center;
  margin:10px 0;
  color: var(--muted);
  font-size:13px;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(45,226,230,0.95), rgba(109,92,255,0.55));
  box-shadow: 0 0 0 4px rgba(109,92,255,0.12);
}

.section{
  padding: 16px 0 8px;
}
.section-title{
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 900;
}
.muted{ padding-top:22px; }

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid-2{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}

.step{
  padding:16px;
  border-radius:18px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
}
.step-num{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background: rgba(109,92,255,0.18);
  border:1px solid rgba(109,92,255,0.25);
  font-weight:900;
  margin-bottom:10px;
}
.step-title{
  font-weight:800;
}
.step-desc{
  margin-top:6px;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.5;
}

.pill-card{
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.pill-title{ font-weight:900; }
.pill-desc{
  margin-top:6px;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.5;
}

.faq details{
  background: rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:16px;
  padding:12px 14px;
  margin:10px 0;
}
summary{
  cursor:pointer;
  font-weight:800;
}
details div{
  margin-top:8px;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.6;
}

.footer{
  padding:26px 0 44px;
  color: var(--muted2);
  font-size:13px;
}

.form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.label{
  font-size:12.5px;
  color:var(--muted2);
}

input{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.18);
  color:var(--text);
  outline:none;
}
input::placeholder{ color: rgba(234,240,255,0.45); }

input:focus{
  border-color: rgba(109,92,255,0.55);
  box-shadow: 0 0 0 4px rgba(109,92,255,0.14);
}

.btn{
  margin-top:6px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(109,92,255,0.55);
  background: linear-gradient(135deg, rgba(109,92,255,0.95), rgba(45,226,230,0.65));
  color:#07101E;
  font-weight:900;
  cursor:pointer;
}
.btn[disabled]{
  opacity:0.45;
  cursor:not-allowed;
}
.status{
  min-height: 20px;
  color: var(--muted);
  font-size: 13px;
}
.status.ok{ color: var(--good); font-weight:700; }
.status.err{ color: var(--bad); font-weight:700; }

.fineprint{
  margin: 0;
  color: var(--muted2);
  font-size:12px;
  line-height:1.55;
}

.divider{
  height:1px;
  background: rgba(255,255,255,0.10);
  margin: 12px 0 6px;
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
}

