:root{
  --bg:#070b15;
  --bg2:#0b1220;
  --card:#0e1730;
  --card2:rgba(255,255,255,0.06);
  --text:#eaf0ff;
  --muted:rgba(234,240,255,0.72);
  --muted2:rgba(234,240,255,0.55);
  --line:rgba(255,255,255,0.10);
  --accent:#4f7cff;
  --accent2:#7c5cff;
  --ok:#1fe2a1;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:22px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 600px at 20% 0%, rgba(79,124,255,.35), transparent 60%),
    radial-gradient(900px 600px at 100% 10%, rgba(124,92,255,.25), transparent 55%),
    radial-gradient(900px 600px at 50% 110%, rgba(31,226,161,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

.header{
  position:sticky; top:0; z-index:50;
  background:rgba(7,11,21,.65);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; gap:14px;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px}
.brand__mark{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(79,124,255,1), rgba(124,92,255,1));
  font-weight:800;
}
.brand__name{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:18px; margin-left:18px}
.nav a{color:var(--muted); font-weight:600; font-size:14px}
.nav a:hover{color:var(--text)}

.header__actions{display:flex; align-items:center; gap:10px; margin-left:auto}

.lang{
  position:relative;
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(255,255,255,.04);
  color:var(--text);
  cursor:pointer;
}
.lang__label{font-weight:700; font-size:13px}
.lang__chev{color:var(--muted2)}
.lang__menu{
  position:absolute; right:18px; top:62px;
  width:180px;
  background:rgba(14,23,48,.95);
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:6px;
  display:none;
}
.lang__menu.is-open{display:block}
.lang__item{
  width:100%;
  text-align:left;
  padding:10px 10px;
  border-radius:12px;
  border:0;
  background:transparent;
  color:var(--text);
  cursor:pointer;
  font-weight:600;
}
.lang__item:hover{background:rgba(255,255,255,.06)}

.burger{
  display:none;
  background:transparent;
  border:0;
  width:44px; height:44px;
  border-radius:12px;
  cursor:pointer;
}
.burger span{
  display:block;
  height:2px; width:22px;
  background:var(--text);
  margin:5px auto;
  border-radius:2px;
  opacity:.85;
}

.mobile{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(7,11,21,.75);
}
.mobile__inner{
  display:flex; flex-direction:column; gap:10px;
  padding:12px 0 16px;
}
.mobile__inner a{
  padding:10px 12px;
  border-radius:12px;
  color:var(--muted);
  font-weight:600;
}
.mobile__inner a:hover{background:rgba(255,255,255,.04); color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  padding:10px 14px;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  transition:transform .08s ease, opacity .08s ease, background .15s ease, border-color .15s ease;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:linear-gradient(135deg, rgba(79,124,255,1), rgba(124,92,255,1));
  color:white;
}
.btn--ghost{
  background:rgba(255,255,255,.04);
  border-color:var(--line);
  color:var(--text);
}
.btn--soft{
  background:rgba(79,124,255,.14);
  border-color:rgba(79,124,255,.25);
  color:var(--text);
}
.btn--lg{padding:12px 16px; font-size:15px}
.w100{width:100%}

.hero{padding:46px 0 18px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .85fr;
  gap:24px;
  align-items:start;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(79,124,255,.28);
  background:rgba(79,124,255,.12);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.h1{font-size:44px; line-height:1.05; margin:14px 0 10px}
.lead{color:var(--muted); font-size:16.5px; margin:0 0 18px}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:18px 0 14px}

.trust{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:14px;
}
.trust__item{
  display:flex; gap:10px;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.trust__icon{
  width:28px; height:28px;
  border-radius:10px;
  display:grid; place-items:center;
  background:rgba(31,226,161,.12);
  border:1px solid rgba(31,226,161,.22);
  color:var(--ok);
  font-weight:900;
}
.trust__title{font-weight:800; font-size:13px}
.trust__text{color:var(--muted2); font-size:12.5px}

.note{
  margin-top:14px;
  color:var(--muted2);
  font-size:12.5px;
  padding:12px 12px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.03);
}

.card{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:rgba(14,23,48,.75);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  padding:18px;
}
.glass{
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(79,124,255,.22), transparent 55%),
    radial-gradient(700px 280px at 100% 0%, rgba(124,92,255,.18), transparent 55%),
    rgba(14,23,48,.65);
}
.card__kicker{color:var(--muted2); font-weight:700; font-size:12.5px}
.card__title{font-weight:800; margin-top:4px; font-size:18px}
.card__footer{margin-top:14px}
.mini{color:var(--muted2); font-size:12.5px; margin-top:10px}

.list{list-style:none; padding:0; margin:14px 0 0}
.list li{display:flex; gap:10px; align-items:flex-start; padding:8px 0}
.dot{
  width:10px; height:10px; border-radius:999px;
  background:rgba(79,124,255,.9);
  margin-top:6px;
}

.section{padding:44px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:18px}
.h2{font-size:28px; margin:0 0 6px}
.sub{color:var(--muted); margin:0}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:14px;
}
.grid2{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
}
.mt24{margin-top:14px}

.offer__tag{
  display:inline-flex;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-size:12px;
  font-weight:800;
  letter-spacing:.3px;
}
.h3{margin:10px 0 8px; font-size:18px}
.p{margin:0 0 12px; color:var(--muted)}
.label{color:var(--muted2); font-weight:800; font-size:12.5px; margin:10px 0 8px}

.check{margin:0; padding-left:18px; color:var(--muted)}
.check li{margin:8px 0}
.chips{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chips li{
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-weight:700;
  font-size:12.5px;
}

.offer__block{margin-top:10px}
.price{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
}
.price__amount{
  font-size:26px;
  font-weight:900;
  letter-spacing:-0.3px;
}
.price__unit{font-size:14px; font-weight:800; color:var(--muted)}
.price__note{color:var(--muted2); font-size:12.5px; margin-top:3px}
.price--compact{margin-top:10px}
.price--right{min-width:240px}

.offer--featured{
  position:relative;
  border-color:rgba(79,124,255,.35);
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(79,124,255,.20), transparent 55%),
    radial-gradient(700px 280px at 100% 0%, rgba(124,92,255,.16), transparent 55%),
    rgba(14,23,48,.75);
}
.badge{
  position:absolute; top:14px; right:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(31,226,161,.12);
  border:1px solid rgba(31,226,161,.22);
  color:var(--ok);
  font-weight:900;
  font-size:12px;
}

.split{
  display:flex;
  gap:16px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.faq{display:grid; gap:10px}
.faq__item{
  border:1px solid var(--line);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  padding:12px 14px;
}
.faq__item summary{
  cursor:pointer;
  font-weight:800;
  color:var(--text);
}
.faq__item p{margin:10px 0 0; color:var(--muted)}

.contactRow{
  display:grid;
  grid-template-columns: 140px 1fr;
  gap:10px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.contactRow:last-child{border-bottom:0}
.contactRow__k{color:var(--muted2); font-weight:800}
.link{color:rgba(234,240,255,.92); text-decoration:underline; text-decoration-color:rgba(79,124,255,.55)}

.form{display:grid; gap:12px}
.field{display:grid; gap:6px}
.field span{color:var(--muted2); font-weight:800; font-size:12.5px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
}
input::placeholder, textarea::placeholder{color:rgba(234,240,255,.45)}
input:focus, select:focus, textarea:focus{border-color:rgba(79,124,255,.55)}

.footer{margin-top:18px; padding:18px 0 26px}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:12px; flex-wrap:wrap;
  color:var(--muted2);
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:18px;
}
.footer__links{display:flex; gap:10px; align-items:center; flex-wrap:wrap}
.sep{opacity:.5}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:14px}
  .trust{grid-template-columns:1fr; gap:10px}
  .grid3{grid-template-columns:1fr; }
  .grid2{grid-template-columns:1fr; }
  .nav{display:none}
  .burger{display:inline-block}
  .mobile.is-open{display:block}
  .price--right{min-width:auto}
}
