:root{
  --bg: #07090d;
  --panel: rgba(255,255,255,0.04);
  --panel2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.90);
  --muted: rgba(255,255,255,0.65);
  --muted2: rgba(255,255,255,0.45);

 --neon: #2A57FF;   /* основний неон (як на фото) */
  --neon2: #1E88FF;  /* додатковий синій для градієнтів */
  --danger: #ff3b6a;

  --shadow: 0 18px 60px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius2: 26px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: #05070b;
  overflow-x: hidden;
  position: relative;
}

body::before,
body::after{
  content:"";
  position: fixed;
  inset: -20vh -20vw;
  pointer-events: none;
  z-index: -1;
}

/* Головний неоновий "туман" */
body::before{
  background:
    radial-gradient(900px 520px at 18% 12%, rgba(42,87,255,0.22), transparent 60%),
    radial-gradient(760px 520px at 86% 18%, rgba(30,136,255,0.16), transparent 62%),
    radial-gradient(1100px 820px at 52% 92%, rgba(42,87,255,0.12), transparent 68%);
  filter: blur(24px);
  opacity: 0.95;
}

/* Ледь помітна "віньєтка", щоб краї були темніші */
body::after{
  background:
    radial-gradient(1200px 900px at 50% 40%, transparent 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0.75) 100%);
  opacity: 0.55;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: 0.92; }

.container{
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}
/*
.bg-glow{
  position: fixed;
  inset: -35vh -30vw -35vh -30vw; 
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(42,87,255,0.22), transparent 60%),
    radial-gradient(750px 520px at 85% 25%, rgba(30,136,255,0.16), transparent 62%),
    radial-gradient(900px 620px at 45% 85%, rgba(42,87,255,0.10), transparent 65%);
  filter: blur(22px);
  opacity: 0.95;
}
*/
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(7,9,13,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header__inner{
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 12px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}
.brand__logo{
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 0 0 2px rgba(47,140,255,0.10), 0 0 24px rgba(47,140,255,0.22);
}
.brand__text{
  display: grid;
  line-height: 1.05;
}
.brand__text small{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav{
  display: flex;
  gap: 16px;
  align-items: center;
}
.nav a{
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover{ color: var(--text); }

.header__actions{
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
  cursor: pointer;
  user-select: none;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(47,140,255,0.35);
  box-shadow: 0 0 0 2px rgba(47,140,255,0.12);
}
.btn--primary{
   border-color: rgba(42,87,255,0.70);
  background: linear-gradient(180deg, rgba(42,87,255,0.42), rgba(42,87,255,0.14));
  box-shadow:
    0 0 0 2px rgba(42,87,255,0.12),
    0 18px 70px rgba(42,87,255,0.20),
    0 0 22px rgba(42,87,255,0.22);
}
.btn--primary:hover{
  border-color: rgba(47,140,255,0.9);
  box-shadow: 0 0 0 2px rgba(47,140,255,0.16), 0 18px 70px rgba(47,140,255,0.18);
}
.btn--ghost{ background: rgba(255,255,255,0.03); }
.w100{ width: 100%; }

.burger{
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}
.burger span{
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(255,255,255,0.86);
  margin: 4px auto;
  border-radius: 99px;
  box-shadow: 0 0 18px rgba(47,140,255,0.25);
}

.mobile-nav{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 12px 18px 18px;
  background: rgba(7,9,13,0.85);
}
.mobile-nav a{
  display: block;
  padding: 10px 6px;
  color: var(--muted);
}
.mobile-nav a:hover{ color: var(--text); }
.mobile-nav__actions{
  display: flex;
  gap: 10px;
  padding-top: 10px;
}

/* HERO */
.hero{ padding: 44px 0 18px; }
.hero__grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(47,140,255,0.35);
  background: rgba(47,140,255,0.10);
  color: rgba(255,255,255,0.86);
  font-size: 13px;
  width: fit-content;
}
.dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff, var(--neon));
  box-shadow: 0 0 16px rgba(47,140,255,0.55);
}

h1{
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.06;
  margin: 14px 0 12px;
  letter-spacing: -0.02em;
}
.neon{
   color: white;
  text-shadow:
    0 0 12px rgba(42,87,255,0.55),
    0 0 28px rgba(42,87,255,0.30),
    0 0 60px rgba(42,87,255,0.18);
}

.lead{
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  max-width: 62ch;
}

.hero__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 12px;
}

.quick-links{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 10px;
}
.chip{
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.82);
  font-weight: 700;
  font-size: 13px;
}
.chip:hover{
  border-color: rgba(47,140,255,0.35);
  box-shadow: 0 0 0 2px rgba(47,140,255,0.10);
}

.mini-features{
  margin-top: 14px;
  display: grid;
  gap: 8px;
}
.mini-features__item{
  color: var(--muted);
  font-size: 14px;
  padding-left: 2px;
}

.hero__side{
  display: grid;
  gap: 12px;
}

.hero-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius2);
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-card::before{
  content:"";
  position: absolute;
  inset: -120px auto auto -140px;
  width: 260px;
  height: 260px;
  background: radial-gradient(closest-side, rgba(0,194,255,0.16), transparent 70%);
}
.hero-card__title{ font-weight: 900; }
.hero-card__sub{ color: var(--muted); margin-top: 6px; font-size: 13px; }

.mini-form{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
.mini-form label{
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}

.req{ color: var(--danger); font-weight: 900; }

input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: rgba(255,255,255,0.92);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(47,140,255,0.55);
  box-shadow: 0 0 0 2px rgba(47,140,255,0.14);
}

.toast{
  margin-top: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(47,140,255,0.35);
  background: rgba(47,140,255,0.10);
  color: rgba(255,255,255,0.88);
}

.stats{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.stat{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 16px;
  padding: 12px;
}
.stat__num{
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 0 18px rgba(47,140,255,0.22);
}
.stat__label{
  color: var(--muted2);
  font-size: 12px;
  margin-top: 4px;
}

/* SECTIONS */
.section{ padding: 52px 0; }
.section__head{ margin-bottom: 18px; }
.section__head h2{
  margin: 0 0 8px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.section__head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 72ch;
}

.cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.card::before{
  content:"";
  position: absolute;
  inset: -80px -120px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(closest-side, rgba(47,140,255,0.18), transparent 70%);
}
.card h3{ margin: 0 0 8px; }
.card p{ margin: 0 0 10px; color: var(--muted); line-height: 1.55; }
.card ul{ margin: 0; padding-left: 18px; color: rgba(255,255,255,0.78); line-height: 1.6; }

/* images inside cards */
.card--media .card__img{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(47,140,255,0.22);
  background: rgba(255,255,255,0.02);
  box-shadow: 0 0 0 2px rgba(47,140,255,0.08), 0 18px 60px rgba(0,0,0,0.45);
  margin-bottom: 12px;
}
.card--media .card__img img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}

.routes{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.route{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 16px;
}
.route__flag{ color: rgba(255,255,255,0.9); font-weight: 900; }
.route__title{ margin-top: 8px; font-weight: 900; }
.route__desc{ margin-top: 6px; color: var(--muted); line-height: 1.55; }

.steps{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.step{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 16px;
}
.step__num{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(47,140,255,0.12);
  border: 1px solid rgba(47,140,255,0.35);
  box-shadow: 0 0 0 2px rgba(47,140,255,0.08);
  font-weight: 900;
}
.step h3{ margin: 10px 0 6px; }
.step p{ margin: 0; color: var(--muted); line-height: 1.55; }

.lead-box{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  margin-top: 16px;
}
.form{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius2);
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.form::before{
  content:"";
  position: absolute;
  inset: -120px auto auto -140px;
  width: 260px;
  height: 260px;
  background: radial-gradient(closest-side, rgba(0,194,255,0.16), transparent 70%);
}

.form label{
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.82);
}
.form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form__full{ margin-bottom: 12px; }

.form__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.form__hint{
  margin: 10px 0 0;
  color: var(--muted2);
  font-size: 12px;
}

.lead-aside{ display: grid; gap: 12px; }
.aside-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius2);
  padding: 16px;
}
.aside-card h3{ margin: 0 0 10px; }
.aside-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.aside-card ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.mono{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}
.big{ font-size: 18px; font-weight: 900; }
.muted{ color: var(--muted); }

.contacts{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}
.contact-card{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 16px;
}
.contact-actions{ display: flex; gap: 10px; flex-wrap: wrap; }

.footer{ margin-top: 26px; padding-bottom: 28px; }
.footer__line{
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47,140,255,0.45), transparent);
  margin: 10px 0 16px;
}
.footer__bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted2);
  font-size: 13px;
}
.to-top{ color: rgba(255,255,255,0.75); }
.to-top:hover{ color: white; text-shadow: 0 0 18px rgba(47,140,255,0.35); }

/* Responsive */
@media (max-width: 980px){
  .nav, .header__actions{ display: none; }
  .burger{ display: inline-block; }
  .header__inner{ grid-template-columns: 1fr auto; }

  .hero__grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .routes{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .lead-box{ grid-template-columns: 1fr; }
  .contacts{ grid-template-columns: 1fr; }
}

@media (max-width: 520px){
  .form__row{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .card--media .card__img img{ height: 180px; }
}