:root{
  --bg:#0b1220;
  --panel: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.10);
  --text:#eaf0ff;
  --muted: rgba(234,240,255,.75);

  --blue:#2f6bff;
  --blue2:#1f4fd6;

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);

  --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, sans-serif;
  color:var(--text);
  background: var(--bg);
  position: relative;
  overflow-x: hidden;
}

/* Глобальный фон — один на всю страницу (без “разрывов” между секциями) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1200px 700px at 15% 10%, rgba(47,107,255,.28), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(47,107,255,.20), transparent 55%),
    radial-gradient(900px 600px at 50% 95%, rgba(47,107,255,.10), transparent 60%);
}

/* Лёгкая “зернистость” чтобы убрать бэндинг (без картинок) */
body::after{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events:none;
  opacity: .18;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,.015) 0, rgba(255,255,255,.015) 1px, transparent 1px, transparent 3px);
}

a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:underline; text-underline-offset:3px; }

.container{
  width: var(--container);
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.skip{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px;
  background:rgba(0,0,0,.65);
  border:1px solid var(--stroke);
  border-radius:12px;
  z-index:9999;
}

/* Header (улучшенный) */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.62);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.header__row{
  height: 72px;
  display: flex;
  align-items: center;
  gap: 22px;
}

/* BRAND */
.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand__logo{
  height: 26px;           /* <= вот это критично для “ровного” вида */
  width: auto;
  display: block;
  filter: drop-shadow(0 10px 22px rgba(47,107,255,.18));
}

/* NAV — без капсул, просто аккуратные ссылки */
.nav{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 14px;
}

.nav__link{
  color: rgba(234,240,255,.72);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
}

.nav__link:hover{
  color: rgba(234,240,255,.95);
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

.nav__link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(47,107,255,.22);
}


/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(47,107,255,.35);
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  font-weight: 650;
  box-shadow: 0 16px 45px rgba(47,107,255,.25);
  text-decoration:none;
}
.btn:hover{ text-decoration:none; filter: brightness(1.05); }
.btn:active{ transform: translateY(1px); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
  box-shadow:none;
  color: var(--text);
}
.btn--wide{ width:100%; padding:12px 14px; }

/* Actions */
.header__actions{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn--sm{ padding: 9px 12px; border-radius: 14px; font-size: 14px; }


/* Burger — стабильный */
.burger{
  display:none; /* показывается в media */
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  position: relative;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

/* Три линии без margin/flow */
.burger span{
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: rgba(234,240,255,.92);
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform .18s ease, opacity .18s ease;
}

/* Раскладка по вертикали */
.burger span:nth-child(1){ top: 16px; }
.burger span:nth-child(2){ top: 22px; }
.burger span:nth-child(3){ top: 28px; }

/* focus */
.burger:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(47,107,255,.22);
}

/* Анимация в крестик */
.burger.is-open span:nth-child(1){
  transform: translateX(-50%) translateY(6px) rotate(45deg);
}
.burger.is-open span:nth-child(2){
  opacity: 0;
}
.burger.is-open span:nth-child(3){
  transform: translateX(-50%) translateY(-6px) rotate(-45deg);
}

/* Mobile nav overlay */
.mnav{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.04);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
  z-index: 60;
}

.mnav.is-open{
  opacity: 1;
  pointer-events: auto;
}

.mnav__panel{
  width: min(520px, calc(100% - 24px));
  margin: 80px auto 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.95);
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
  overflow: hidden;

  transform: translateY(-10px);
  opacity: .98;
  transition: transform .18s ease, opacity .18s ease;
}

.mnav.is-open .mnav__panel{
  transform: translateY(0);
  opacity: 1;
}

.mnav__top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.mnav__brand{
  display:flex;
  align-items:center;
  gap: 10px;
}
.mnav__title{
  font-weight: 800;
  letter-spacing: .2px;
}

.mnav__close{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: rgba(234,240,255,.88);
  cursor:pointer;
}

.mnav__links{
  display:grid;
  gap: 6px;
  padding: 12px;
}

.mnav__link{
  display:flex;
  align-items:center;
  height: 44px;
  padding: 0 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.88);
  text-decoration:none;
}

.mnav__link:hover{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

.mnav__cta{
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mnav__note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(234,240,255,.62);
}

/* Responsive: desktop nav -> mobile burger */
@media (max-width: 720px){
  .nav{ display:none; }
  .burger{ display:inline-flex; align-items:center; justify-content:center; }
  .brand__name{ display:none; }
  #demoBtn {display: none;}
}

/* Sections */
.section{ padding: 72px 0; }

.section, .header, .footer{ position: relative; z-index: 1; }

.section--muted{
  position: relative;
  overflow: hidden;
}

/* мягкая подложка без жестких границ + плавные края */
.section--muted::before{
  content:"";
  position:absolute;
  inset: 0;
  background: rgba(255,255,255,.03);
  /* плавное “затухание” сверху/снизу — пропадает эффект полос */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 12%, #000 88%, transparent 100%);
  pointer-events:none;
}

.section--muted .container > h2{
  margin-bottom: 8px;
}

.section--muted .sub{
  color: rgba(234,240,255,.62);
}

h1,h2,h3{ margin: 0 0 10px; line-height:1.15; }
h1{ font-size: 44px; letter-spacing:-.6px; }
h2{ font-size: 34px; letter-spacing:-.4px; }
h3{ font-size: 18px; }
p{ margin: 0; color: var(--muted); line-height:1.65; }
.lead{ font-size: 17px; }
.sub{ margin-top:6px; max-width: 70ch; }

/* ================= HERO ================= */

.hero{ padding: 78px 0 60px; }

.hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: start;
}

/* Левая колонка */
.hero__copy{
  max-width: 56ch;
}

.hero h1{
  font-size: clamp(32px, 3.2vw, 44px);
  letter-spacing: -0.7px;
  line-height: 1.12;
  margin-bottom: 14px;
}

.lead{
  font-size: 17px;
  line-height: 1.65;
  color: rgba(234,240,255,.78);
  margin-top: 8px;
}

/* Badge */
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(47,107,255,.40);
  background: rgba(47,107,255,.14);
  color: rgba(234,240,255,.92);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
}

/* CTA */
.hero__cta{
  display:flex;
  gap:12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.hero__cta .btn{
  min-height: 44px;
  padding: 12px 18px;
  text-decoration: none;
}

/* Meta блоки */
.meta{
  display:flex;
  gap:12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* Meta: ровная сетка 3 карточки */
.meta--grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 26px;
  align-items: stretch;
}

.meta--grid .meta__item{
  height: 100%;
}

.meta__item{
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(4px);
}

.meta__k{
  font-weight:700;
  font-size: 14px;
  color: rgba(234,240,255,.95);
}

.meta__v{
  font-size: 13px;
  color: var(--muted);
  margin-top:6px;
}

/* Правая колонка (мокап) */
.hero__mock{
  position: relative;
  overflow: hidden;
}

.hero__mock::before{
  content: "";
  position: absolute;
  inset: -30px; /* вместо -40px -50px */
  background:
    radial-gradient(400px 260px at 65% 25%, rgba(47,107,255,.22), transparent 60%),
    radial-gradient(520px 340px at 40% 70%, rgba(47,107,255,.14), transparent 65%);
  filter: blur(10px);
  z-index: -1;
  opacity: .9;
}

/* Мокап */
.mock{
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
  overflow:hidden;
}

.mock__top{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 14px 16px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.dot{
  width:10px;
  height:10px;
  border-radius:50%;
}

.dot--r{ background: rgba(255,90,90,.7); }
.dot--y{ background: rgba(255,210,90,.7); }
.dot--g{ background: rgba(90,255,170,.65); }

.mock__title{
  margin-left:10px;
  font-size: 13px;
  color: rgba(234,240,255,.75);
}

.mock__body{
  padding: 18px;
  display:grid;
  gap: 14px;
}

.mock__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mock__card,
.mock__table{
  padding: 14px;
  border-radius: 16px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.08);
}

/* Skeleton */
.skeleton{
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,.08),
    rgba(255,255,255,.18),
    rgba(255,255,255,.08)
  );
  background-size: 240% 100%;
  animation: shimmer 1.8s infinite linear;
}

.sk-title{ height: 12px; width: 60%; margin-bottom: 12px; }
.sk-line{ height: 10px; width: 100%; margin: 8px 0; }
.sk-line.short{ width: 70%; }

@keyframes shimmer{
  0%{ background-position: 0% 0; }
  100%{ background-position: 240% 0; }
}

.mock__hint{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(234,240,255,.60);
}

.nowrap{ white-space: nowrap; }

/* ================= Responsive ================= */

@media (max-width: 980px){
  .hero{
    padding: 64px 0 54px;
  }

  .hero__grid{
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero__copy{
    max-width: none;
  }

  .meta--grid{
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 560px){
  .hero__cta{
    flex-direction: column;
    align-items: stretch;
  }

  .mock__row{
    grid-template-columns: 1fr;
  }

  .meta--grid{
    grid-template-columns: 1fr;
  }
}
/* Grids & Cards */
.grid4{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.grid3{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.card--soft{ background: rgba(255,255,255,.04); }
.card__icon{ font-size: 20px; margin-bottom: 8px; }

/* ================= Features ================= */

#features .sub{
  max-width: 70ch;
}

.features{
  margin-top: 22px;
}

.feature{
  position: relative;
  padding: 18px 18px 18px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  overflow: hidden;
  min-height: 150px;
}

.feature:hover{
  transform: translateY(-2px);
  border-color: rgba(47,107,255,.30);
  background: rgba(255,255,255,.055);
}

/* Иконка-плашка без эмодзи/библиотек */
.feature::before{
  content:"";
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: block;
  margin-bottom: 12px;

  background: rgba(47,107,255,.16);
  border: 1px solid rgba(47,107,255,.35);
  box-shadow: 0 16px 40px rgba(47,107,255,.14);

  /* “рисуем” символ внутри через маску = чисто CSS */
  -webkit-mask: var(--ico) center / 20px 20px no-repeat;
  mask: var(--ico) center / 20px 20px no-repeat;

  /* цвет символа */
  background-color: rgba(234,240,255,.92);
}

/* ВАЖНО:
   Мы делаем так: сама плашка — отдельным ::after, а ::before — это иконка.
   Чтобы не усложнять, делаем наоборот:
   - ::after = плашка
   - ::before = белая иконка (маска)
*/
.feature::after{
  content:"";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(47,107,255,.16);
  border: 1px solid rgba(47,107,255,.35);
  box-shadow: 0 16px 40px rgba(47,107,255,.14);
  pointer-events:none;
}

.feature::before{
  content:"";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(234,240,255,.92);
  -webkit-mask: var(--ico) center / 20px 20px no-repeat;
  mask: var(--ico) center / 20px 20px no-repeat;
  pointer-events:none;
}

/* отступ под иконку */
.feature h3{
  margin: 0 0 8px;
  padding-top: 56px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.feature p{
  margin: 0;
  color: rgba(234,240,255,.70);
  line-height: 1.6;
}

/* мягкий отблеск */
.feature .feature__glow{ display:none; } /* на будущее */
.feature{
  background-image: radial-gradient(220px 140px at 120% -10%, rgba(47,107,255,.12), transparent 60%);
}

/* Иконки через inline-svg (data-uri) — без файлов */
.feature[data-ico="orders"]{
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h10a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2Zm1 6h8v2H8V9Zm0 4h8v2H8v-2Z'/%3E%3C/svg%3E");
}
.feature[data-ico="agents"]{
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 12a4 4 0 1 0-4-4 4 4 0 0 0 4 4Zm-8 9a8 8 0 0 1 16 0H4Z'/%3E%3C/svg%3E");
}
.feature[data-ico="payments"]{
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 7a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v10a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7Zm2 0v2h12V7H6Zm0 4v6h12v-6H6Z'/%3E%3C/svg%3E");
}
.feature[data-ico="catalog"]{
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v2H4V6Zm0 4h16v8a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2v-8Z'/%3E%3C/svg%3E");
}
.feature[data-ico="analytics"]{
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 19V9h3v10H5Zm6 0V5h3v14h-3Zm6 0v-7h3v7h-3Z'/%3E%3C/svg%3E");
}
.feature[data-ico="integrations"]{
  --ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7.5 12a4.5 4.5 0 0 1 4.5-4.5h3V9h-3a3 3 0 0 0 0 6h3v1.5h-3A4.5 4.5 0 0 1 7.5 12Zm1.5-.75h6v1.5H9v-1.5ZM16.5 7.5H15V6h1.5A4.5 4.5 0 0 1 21 10.5V12h-1.5v-1.5A3 3 0 0 0 16.5 7.5ZM21 12v1.5A4.5 4.5 0 0 1 16.5 18H15v-1.5h1.5a3 3 0 0 0 3-3V12H21Z'/%3E%3C/svg%3E");
}

/* Responsive */
@media (max-width: 980px){
  .feature{ min-height: auto; }
}

/* Pains (иконки не эмодзи) */
.pains{
  margin-top: 22px; /* как у тебя */
}

.pain{
  position: relative;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  overflow: hidden;
}

.pain:hover{
  transform: translateY(-2px);
  border-color: rgba(47,107,255,.35);
  background: rgba(255,255,255,.055);
}

/* Иконка-капсула */
.pain__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;

  color: rgba(234,240,255,.92);
  background: rgba(47,107,255,.16);
  border: 1px solid rgba(47,107,255,.35);
  box-shadow: 0 16px 40px rgba(47,107,255,.14);
}

.pain__icon svg{
  width: 20px;
  height: 20px;
  display: block;
}

/* Заголовок/текст в карточке */
.pain h3{
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.pain p{
  margin: 0;
  color: rgba(234,240,255,.70);
  line-height: 1.6;
}

/* Чуть “дороже”: мягкий отблеск */
.pain::before{
  content:"";
  position:absolute;
  inset: -60px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(47,107,255,.18), transparent 60%);
  filter: blur(12px);
  opacity: .55;
  pointer-events:none;
}

/* ================= HOW / Steps ================= */

.steps.how{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  position: relative;
}

/* лёгкая “сетка-линия” на фоне, чтобы шаги ощущались связанными */
.steps.how::before{
  content:"";
  position:absolute;
  inset:-10px;
  pointer-events:none;
  opacity:.35;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0/ 120px 120px,
    linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0/ 120px 120px;
  -webkit-mask-image: radial-gradient(circle at 40% 35%, #000 0, #000 45%, transparent 75%);
  mask-image: radial-gradient(circle at 40% 35%, #000 0, #000 45%, transparent 75%);
}

.step.how__step{
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  min-height: 110px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.step.how__step:hover{
  transform: translateY(-2px);
  border-color: rgba(47,107,255,.28);
  background: rgba(255,255,255,.055);
}

/* glow */
.step.how__step::before{
  content:"";
  position:absolute;
  inset:-80px auto auto -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(47,107,255,.14), transparent 60%);
  filter: blur(12px);
  opacity: .65;
  pointer-events:none;
}

/* номер шага */
.step__n{
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-weight: 900;
  font-size: 14px;
  color: rgba(234,240,255,.95);

  background: rgba(47,107,255,.18);
  border: 1px solid rgba(47,107,255,.38);
  box-shadow: 0 16px 40px rgba(47,107,255,.14);
}

/* текст */
.step__body h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.step__body p{
  margin: 0;
  color: rgba(234,240,255,.70);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .steps.how{ grid-template-columns: 1fr; }
}

/* ================= Pricing v2 ================= */

.pricing--v2{
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

/* Карточка тарифа */
.plan{
  position: relative;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.plan:hover{
  transform: translateY(-2px);
  border-color: rgba(47,107,255,.26);
  background: rgba(255,255,255,.055);
}

/* шапка */
.plan__head{
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 14px;
}

.plan__name{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.plan__for{
  margin-top: 6px;
  color: rgba(234,240,255,.66);
  font-size: 13px;
}

/* цена */
.plan__price{
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.plan__priceVal{
  font-weight: 900;
  font-size: 26px;
  letter-spacing: -0.3px;
  color: rgba(234,240,255,.95);
}

.plan__priceSub{
  font-size: 13px;
  color: rgba(234,240,255,.60);
}

/* список */
.plan__list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
  color: rgba(234,240,255,.76);
}

.plan__list li{
  position: relative;
  padding-left: 26px;
  line-height: 1.55;
}

/* маркер-галка (без эмодзи) */
.plan__list li::before{
  content:"";
  position:absolute;
  left:0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: rgba(47,107,255,.14);
  border: 1px solid rgba(47,107,255,.28);
}

.plan__list li::after{
  content:"";
  position:absolute;
  left: 5px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 2px solid rgba(234,240,255,.92);
  border-bottom: 2px solid rgba(234,240,255,.92);
  transform: rotate(-45deg);
}

/* кнопка всегда снизу */
.plan .btn{
  margin-top: auto;
}

/* featured */
.plan--featured{
  border-color: rgba(47,107,255,.40);
  box-shadow: 0 26px 80px rgba(47,107,255,.16);
  background: rgba(47,107,255,.08);
}

.plan--featured:hover{
  border-color: rgba(47,107,255,.55);
  background: rgba(47,107,255,.10);
}

/* верхняя строка у featured */
.plan__topline{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}

.plan__tag{
  display:inline-flex;
  align-items:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(234,240,255,.92);
  background: rgba(47,107,255,.16);
  border: 1px solid rgba(47,107,255,.35);
}

/* заметка под тарифами */
.pricing__note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.70);
}

/* Responsive */
@media (max-width: 980px){
  .pricing--v2{
    grid-template-columns: 1fr;
  }
  .plan{
    min-height: auto;
  }
}

/* ================= FAQ v2 ================= */

.faq--v2{
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

/* Карточка */
.faq__item{
  border-radius: 20px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  padding: 0;
  overflow: hidden;
  transition: border-color .18s ease, background .18s ease;
}

.faq__item:hover{
  border-color: rgba(47,107,255,.28);
  background: rgba(255,255,255,.055);
}

/* Убираем дефолтный маркер */
.faq__item summary{
  list-style: none;
}

.faq__item summary::-webkit-details-marker{
  display:none;
}

/* Заголовок */
.faq__item summary{
  position: relative;
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 700;
  color: rgba(234,240,255,.95);
  font-size: 15px;
}

/* Кастомная стрелка */
.faq__item summary::after{
  content:"";
  position:absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(234,240,255,.80);
  border-bottom: 2px solid rgba(234,240,255,.80);
  transform: translateY(-60%) rotate(45deg);
  transition: transform .18s ease;
}

/* Поворот стрелки */
.faq__item[open] summary::after{
  transform: translateY(-40%) rotate(-135deg);
}

/* Текст */
.faq__item p{
  padding: 0 20px 16px 20px;
  margin: 0;
  color: rgba(234,240,255,.70);
  line-height: 1.6;
  font-size: 14px;
}

/* Лёгкий glow при открытии */
.faq__item[open]{
  border-color: rgba(47,107,255,.35);
  background: rgba(255,255,255,.055);
  box-shadow: 0 20px 60px rgba(47,107,255,.12);
}

/* ================= Contact v2 ================= */

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

/* Левый блок */
.contact__left .sub{
  max-width: 62ch;
}

.contact__info{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Pills без эмодзи — иконки через CSS */
.pill{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(234,240,255,.85);
  font-size: 13px;
  line-height: 1;
}

.pill::before{
  content:"";
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(47,107,255,.16);
  border: 1px solid rgba(47,107,255,.30);
  box-shadow: 0 14px 34px rgba(47,107,255,.12);

  /* иконка как маска */
  -webkit-mask: var(--pill-ico) center / 14px 14px no-repeat;
  mask: var(--pill-ico) center / 14px 14px no-repeat;

  /* цвет иконки */
  background-color: rgba(234,240,255,.92);
}

/* data-ico -> конкретные иконки (data-uri svg) */
.pill[data-ico="bolt"]{
  --pill-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2 3 14h7l-1 8 12-14h-7l-1-6Z'/%3E%3C/svg%3E");
}
.pill[data-ico="setup"]{
  --pill-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M14.7 6.3a5 5 0 0 0-7.1 7.1l-5 5 2.8 2.8 5-5a5 5 0 0 0 7.1-7.1l2.9-2.9-2.8-2.8-2.9 2.9Zm-1.4 7.1a3 3 0 1 1-4.2-4.2 3 3 0 0 1 4.2 4.2Z'/%3E%3C/svg%3E");
}
.pill[data-ico="chart"]{
  --pill-ico: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M5 19V9h3v10H5Zm6 0V5h3v14h-3Zm6 0v-7h3v7h-3Z'/%3E%3C/svg%3E");
}

/* Форма */
.form{
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

label{ display:block; margin: 12px 0; }

label span{
  display:block;
  font-size: 13px;
  color: rgba(234,240,255,.80);
  margin-bottom: 7px;
}

input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}

input:hover, textarea:hover{
  border-color: rgba(255,255,255,.18);
  background: rgba(0,0,0,.24);
}

input:focus, textarea:focus{
  border-color: rgba(47,107,255,.55);
  box-shadow: 0 0 0 4px rgba(47,107,255,.18);
}

input::placeholder, textarea::placeholder{
  color: rgba(234,240,255,.45);
}

.form__note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(234,240,255,.58);
}

.form__group.is-hidden{ display:none; }

.domain{
  display:flex;
  gap:10px;
  align-items:center;
}

.domain input{
  flex:1;
}

.domain__suffix{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  color: rgba(234,240,255,.78);
  font-size: 14px;
  white-space: nowrap;
}

.form__hint{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(234,240,255,.62);
}

/* Responsive */
@media (max-width: 980px){
  .contact{
    grid-template-columns: 1fr;
  }
}
/* ================= Compare ================= */

.section--compare{
  position: relative;
  overflow: hidden;
}

.section--compare::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(47,107,255,.16), transparent 60%),
    radial-gradient(900px 420px at 85% 70%, rgba(47,107,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 55%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 14%, #000 90%, transparent 100%);
  pointer-events:none;
}

.compare{
  margin-top: 26px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.compare__col{
  position: relative;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.045);
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.compare__col:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.055);
}

.compare__col--bad{
  border-color: rgba(255,120,120,.20);
}

.compare__col--bad::before{
  content:"";
  position:absolute;
  inset:-80px auto auto -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,90,90,.12), transparent 60%);
  filter: blur(12px);
  opacity: .7;
  pointer-events:none;
}

.compare__col--good{
  border-color: rgba(47,107,255,.35);
  box-shadow: 0 26px 80px rgba(47,107,255,.16);
}

.compare__col--good::before{
  content:"";
  position:absolute;
  inset:-80px -80px auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(47,107,255,.18), transparent 60%);
  filter: blur(12px);
  opacity: .8;
  pointer-events:none;
}

/* Title/badges */
.compare__title{
  margin-bottom: 14px;
}

.compare__badge{
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
}

.compare__badge--bad{
  color: rgba(255,220,220,.95);
  background: rgba(255,90,90,.10);
  border: 1px solid rgba(255,90,90,.25);
}

.compare__badge--good{
  color: rgba(234,240,255,.95);
  background: rgba(47,107,255,.14);
  border: 1px solid rgba(47,107,255,.35);
}

/* Lists (без эмодзи — свои маркеры) */
.compare__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(234,240,255,.78);
}

.compare__list li{
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.compare__list li::before{
  content:"";
  position:absolute;
  left:0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
}

/* BAD marker */
.compare__list--bad li::after{
  content:"";
  position:absolute;
  left: 6px;
  top: 13px;
  width: 9px;
  height: 2px;
  border-radius: 2px;
  background: rgba(255,140,140,.85);
}

/* GOOD marker (галка) */
.compare__list--good li::after{
  content:"";
  position:absolute;
  left: 6px;
  top: 8px;
  width: 8px;
  height: 4px;
  border-left: 2px solid rgba(234,240,255,.90);
  border-bottom: 2px solid rgba(234,240,255,.90);
  transform: rotate(-45deg);
}

.compare__note{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(234,240,255,.70);
}

/* Responsive */
@media (max-width: 980px){
  .compare{
    grid-template-columns: 1fr;
  }
}

/* ================= Footer v2 ================= */

.footer{
  padding: 28px 0 34px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.10);
  position: relative;
  overflow: hidden;
}

.footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 320px at 10% 30%, rgba(47,107,255,.10), transparent 60%),
    radial-gradient(800px 320px at 85% 70%, rgba(47,107,255,.06), transparent 60%);
  pointer-events:none;
}

.footer__row{
  position: relative;
  z-index: 1;
  display:flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.footer__brand{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
}

.footer__logo{
  height: 22px;
  width: auto;
  display:block;
  filter: drop-shadow(0 10px 22px rgba(47,107,255,.16));
}

.footer__name{
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(234,240,255,.92);
  font-size: 14px;
}

.footer__copy{
  margin-top: 8px;
  color: rgba(234,240,255,.60);
  font-size: 13px;
}

.footer__right{
  display:flex;
  gap: 14px;
  align-items:center;
  color: rgba(234,240,255,.72);
}

.footer__link{
  color: rgba(234,240,255,.72);
  text-decoration:none;
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.footer__link:hover{
  color: rgba(234,240,255,.92);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
  text-decoration: none;
}

.footer__link:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(47,107,255,.20);
}

/* Mobile */
@media (max-width: 720px){
  .footer__row{
    align-items:flex-start;
  }
  .footer__right{
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }
}



/* Responsive */
@media (max-width: 980px){
  h1{ font-size: 38px; }
  .hero__grid{ grid-template-columns: 1fr; }
  .grid4{ grid-template-columns: repeat(2, 1fr); }
  .grid3{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px){
  .grid4, .grid3, .steps{ grid-template-columns: 1fr; }
}