:root{
  /* BACKGROUND (как макет) */
  --bgTop:#2f66ff;
  --bgMid:#1f46d8;
  --bgBot:#1020a0;

  /* "звёздный" свет */
  --glow1: rgba(120, 200, 255, .35);
  --glow2: rgba(160, 140, 255, .22);
  --glow3: rgba(120, 255, 200, .16);

  /* CARDS (бело-голубые) */
  --cardA: rgba(255,255,255,.88);
  --cardB: rgba(238,246,255,.72);
  --cardC: rgba(225,238,255,.62);
  --border: rgba(255,255,255,.55);
  --borderSoft: rgba(255,255,255,.28);

  /* TEXT */
  --text:#eef5ff;         /* светлый текст на фоне */
  --muted: rgba(238,245,255,.78);
  --muted2: rgba(238,245,255,.62);

  /* Тёмный текст внутри белых карточек */
  --ink:#0b1a4a;
  --inkMuted:#4966ad;

  /* ACCENTS */
  --accentBlue:#64dfff;

  /* зелёная кнопка как на макете */
  --accentGreen1:#9bff71;
  --accentGreen2:#19d6a3;

  --warn:#ffd85e;

  --shadow: 0 18px 60px rgba(0,0,0,.25);
  --shadow2: 0 14px 40px rgba(0,0,0,.18);

  --r16:16px;
  --r20:20px;
  --r24:24px;

  --container: 1400px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial;
  color:var(--text);
  /* Основной градиент - плавный и цельный */
  background: linear-gradient(180deg, var(--bgTop) 0%, var(--bgMid) 42%, var(--bgBot) 100%);
  background-attachment: fixed;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  overflow-x:hidden;
  position:relative;
}

/* Слои свечения через псевдоэлементы для плавности */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  /* Плавные градиенты свечения без резких границ */
  background:
    radial-gradient(ellipse 80% 50% at 18% 8%, var(--glow1), transparent 70%),
    radial-gradient(ellipse 70% 45% at 82% 10%, var(--glow2), transparent 70%),
    radial-gradient(ellipse 65% 45% at 55% 82%, var(--glow3), transparent 70%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity:1;
  mix-blend-mode: screen;
}

/* Дополнительный слой для плавности переходов */
body::after{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  background:
    radial-gradient(ellipse 60% 40% at 30% 20%, rgba(120,200,255,.15), transparent 65%),
    radial-gradient(ellipse 55% 35% at 70% 15%, rgba(160,140,255,.12), transparent 65%),
    radial-gradient(ellipse 50% 35% at 45% 75%, rgba(120,255,200,.10), transparent 65%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity:1;
  mix-blend-mode: overlay;
}

/* "звёздочки" на фоне - отдельный слой поверх свечения */
body > * {
  position:relative;
  z-index:1;
}

/* Звёздочки через отдельный элемент с параллаксом */
.stars-layer{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:0;
  opacity:.9;
  will-change: transform;
  /* Звёзды большего размера и ярче */
  background-image:
    /* Звезда 1 - большая и яркая */
    radial-gradient(circle at 12% 22%, rgba(255,255,255,1) 0 4px, transparent 5px),
    radial-gradient(circle at 12% 22%, rgba(255,255,255,.85) 5px 2px, transparent 7px),
    /* Звезда 2 */
    radial-gradient(circle at 28% 10%, rgba(255,255,255,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 28% 10%, rgba(255,255,255,.8) 5px 2px, transparent 7px),
    /* Звезда 3 */
    radial-gradient(circle at 44% 18%, rgba(255,255,255,.9) 0 4px, transparent 5px),
    radial-gradient(circle at 44% 18%, rgba(255,255,255,.75) 5px 2px, transparent 7px),
    /* Звезда 4 */
    radial-gradient(circle at 63% 12%, rgba(255,255,255,1) 0 4px, transparent 5px),
    radial-gradient(circle at 63% 12%, rgba(255,255,255,.85) 5px 2px, transparent 7px),
    /* Звезда 5 */
    radial-gradient(circle at 78% 26%, rgba(255,255,255,.95) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 26%, rgba(255,255,255,.8) 5px 2px, transparent 7px),
    /* Звезда 6 */
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.9) 0 4px, transparent 5px),
    radial-gradient(circle at 86% 12%, rgba(255,255,255,.75) 5px 2px, transparent 7px),
    /* Звезда 7 */
    radial-gradient(circle at 18% 46%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    radial-gradient(circle at 18% 46%, rgba(255,255,255,.7) 5px 2px, transparent 7px),
    /* Звезда 8 */
    radial-gradient(circle at 55% 44%, rgba(255,255,255,.9) 0 4px, transparent 5px),
    radial-gradient(circle at 55% 44%, rgba(255,255,255,.75) 5px 2px, transparent 7px),
    /* Звезда 9 */
    radial-gradient(circle at 72% 56%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    radial-gradient(circle at 72% 56%, rgba(255,255,255,.7) 5px 2px, transparent 7px),
    /* Звезда 10 */
    radial-gradient(circle at 90% 48%, rgba(255,255,255,.85) 0 4px, transparent 5px),
    radial-gradient(circle at 90% 48%, rgba(255,255,255,.7) 5px 2px, transparent 7px),
    /* Дополнительные большие звезды */
    radial-gradient(circle at 25% 35%, rgba(255,255,255,.8) 0 3px, transparent 4px),
    radial-gradient(circle at 50% 25%, rgba(255,255,255,.85) 0 3px, transparent 4px),
    radial-gradient(circle at 75% 40%, rgba(255,255,255,.8) 0 3px, transparent 4px),
    radial-gradient(circle at 35% 60%, rgba(255,255,255,.75) 0 3px, transparent 4px),
    radial-gradient(circle at 65% 65%, rgba(255,255,255,.8) 0 3px, transparent 4px),
    /* Ещё больше звёзд для заполнения */
    radial-gradient(circle at 15% 65%, rgba(255,255,255,.75) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 40% 75%, rgba(255,255,255,.7) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,.75) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,.7) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 5% 30%, rgba(255,255,255,.8) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 95% 35%, rgba(255,255,255,.75) 0 2.5px, transparent 3.5px);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  /* Параллакс эффект при скролле */
  transform: translateZ(0);
}

/* Параллакс для звезд через JS будет добавлен, но можно и через CSS */
@media (prefers-reduced-motion: no-preference) {
  .stars-layer {
    animation: stars-parallax 15s ease-in-out infinite;
  }
}

@keyframes stars-parallax {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-15px, -20px) scale(1.05);
  }
  50% {
    transform: translate(15px, -10px) scale(1);
  }
  75% {
    transform: translate(-10px, -15px) scale(1.03);
  }
}

/* На мобилке упрощаем фон для производительности */
@media (max-width: 768px){
  body::before,
  body::after{
    opacity:.7;
  }
  
  .stars-layer{
    opacity:.7;
  }
  
  /* Отключаем анимацию параллакса на мобилке для производительности */
  @media (prefers-reduced-motion: no-preference) {
    .stars-layer {
      animation: none;
    }
  }
}

a{color:inherit; text-decoration:none}
.container{width:100%; max-width:min(var(--container), 96vw); margin:0 auto; padding:22px 18px 72px}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(20, 40, 140, .35);
  border-bottom:1px solid rgba(255,255,255,.16);
}
.topbar-inner{
  width:100%; max-width:min(var(--container), 96vw); margin:0 auto;
  padding:14px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  flex-wrap:nowrap;
  position:relative;
}
.brand{
  display:flex; align-items:center; gap:12px;
  flex-shrink:0;
  min-width:0;
}
.brand .logo{
  width:40px; height:40px; border-radius:14px;
  background: linear-gradient(135deg, rgba(255,255,255,.24), rgba(100,223,255,.14));
  border:1px solid rgba(255,255,255,.25);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  display:grid; place-items:center;
  overflow:hidden;
  flex-shrink:0;
}
.brand .logo img{width:100%; height:100%; object-fit:cover}
.brand > div:last-child{
  min-width:0;
  flex:1;
}
.brand b{
  display:block;
  font-size:16px; 
  letter-spacing:.2px;
  white-space:nowrap;
}
.brand span{
  display:block; 
  font-size:12px; 
  color:var(--muted2); 
  margin-top:2px;
  white-space:nowrap;
}

.nav{
  display:flex; gap:16px; align-items:center;
  color:var(--muted);
  font-size:14px;
  flex:1;
  justify-content:center;
  flex-wrap:wrap;
}
.nav a{
  padding:8px 10px; 
  border-radius:12px;
  white-space:nowrap;
  transition:background .2s ease, color .2s ease;
}
.nav a:hover{background: rgba(255,255,255,.14); color:var(--text)}

.cta-row{
  display:flex; 
  gap:10px; 
  align-items:center;
  flex-shrink:0;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
  color:var(--text);
  font-family: inherit;
  font-size:15px;
  font-weight:900;
  line-height:1.2;
  letter-spacing:0;
  cursor:pointer;
  transition: transform .06s ease, filter .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
  white-space:nowrap;
  text-decoration:none;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.btn:hover{background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.32)}
.btn:active{transform: translateY(1px)}
.btn.primary{
  color:#ffffff;
  border-color: transparent;
  background: linear-gradient(180deg, var(--accentGreen1), var(--accentGreen2));
  box-shadow:
    0 16px 30px rgba(25,214,163,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.btn.primary:hover{filter: saturate(1.06) brightness(1.02)}
.btn.small{padding:10px 12px; font-size:13px}
.btn.ghost{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
  color:var(--text);
}
.btn.blue{
  color:#ffffff;
  border-color: transparent;
  background: linear-gradient(180deg, #2f66ff, #1f46d8);
  box-shadow:
    0 16px 30px rgba(47,102,255,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
}
.btn.blue:hover{filter: saturate(1.06) brightness(1.02)}
.btn[disabled]{opacity:.6; cursor:not-allowed}

/* Mobile nav */
.menu{
  display:none;
  position:relative;
}
.menu summary{
  list-style:none;
  cursor:pointer;
  user-select:none;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  border:none;
  background:transparent;
  width:28px;
  height:28px;
}
.menu summary::-webkit-details-marker{display:none}

/* Иконка гамбургера - простая, без обертки */
.menu summary{
  position:relative;
}
.menu-icon{
  display:block;
  width:24px;
  height:18px;
  position:relative;
  flex-shrink:0;
}
/* Все три линии через один элемент с box-shadow для идеального выравнивания */
.menu-icon::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:2.5px;
  background:#ffffff;
  border-radius:1.5px;
  transition:all .3s ease;
  box-shadow:
    0 7.5px 0 0 #ffffff,
    0 15px 0 0 #ffffff;
}
/* Средняя и нижняя линии через box-shadow */
.menu-icon::after{
  display:none; /* Не используем ::after, все через box-shadow */
}
/* Убираем summary::before, так как используем box-shadow */
.menu summary::before{
  display:none;
}
/* Состояние открытого меню - превращаем в крестик */
.menu[open] .menu-icon::before{
  top:50%;
  transform:translateY(-50%) rotate(45deg);
  box-shadow:
    0 0 0 0 transparent,
    0 0 0 0 transparent;
}
/* Вторая линия крестика через ::after */
.menu[open] .menu-icon::after{
  display:block;
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:100%;
  height:2.5px;
  background:#ffffff;
  border-radius:1.5px;
  transform:translateY(-50%) rotate(-45deg);
  transition:all .3s ease;
}

.menu .panel{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  min-width:220px;
  background: rgba(20, 40, 140, .85);
  border:1px solid rgba(255,255,255,.25);
  border-radius:16px;
  padding:12px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow2);
  z-index:100;
}
.menu .panel a{
  display:block;
  padding:12px;
  border-radius:12px;
  color:var(--text);
  font-weight:600;
  transition:background .2s ease, color .2s ease;
}
.menu .panel a:hover{
  background: rgba(255,255,255,.20); 
  color:#ffffff;
}

@media (max-width: 900px){
  .nav, .cta-row{display:none}
  .menu{display:block}
  .brand span{display:none}
  .brand b{font-size:15px}
  .topbar-inner{
    padding:12px 14px;
    gap:12px;
  }
}

@media (max-width: 480px){
  .brand .logo{
    width:54px;
    height:54px;
  }
  .brand b{font-size:14px}
  .topbar-inner{
    padding:10px 12px;
    gap:10px;
  }
  .menu summary{
    width:24px;
    height:24px;
  }
  .menu-icon{
    width:20px;
    height:15px;
  }
  .menu-icon::before{
    height:2.5px;
    box-shadow:
      0 6.25px 0 0 #ffffff,
      0 12.5px 0 0 #ffffff;
  }
  .menu[open] .menu-icon::after{
    height:2.5px;
  }
  .menu .panel{
    min-width:200px;
    right:-10px;
    background: rgba(20, 40, 140, .90);
  }
}

/* Hero */
.hero{
  padding:34px 0 18px;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}
@media (max-width: 980px){
  .hero{grid-template-columns:1fr; padding-top:22px}
}

.hero-card{
  background: transparent;
  border:none;
  border-radius: var(--r24);
  padding: 0;
  box-shadow: none;
  position:relative;
  overflow:hidden;
}
.hero h1{
  margin:0 0 10px;
  font-size:44px;
  line-height:1.05;
  letter-spacing:-.6px;
}
@media (max-width: 520px){
  .hero h1{font-size:36px}
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  max-width: 60ch;
}
.hero-actions{
  display:flex; flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
}
@media (max-width: 480px){
  .hero-actions{
    justify-content:center;
  }
  .hero-actions .btn{
    width:100%;
    max-width:280px;
  }
}

.chips{display:flex; flex-wrap:wrap; gap:8px; margin-top:16px}
@media (max-width: 480px){
  .chips{
    justify-content:center;
  }
}
.chip{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color:rgba(255,255,255,.82);
  font-size:13px;
  font-weight:800;
}
.dot{
  width:9px; height:9px; border-radius:99px;
  background: linear-gradient(135deg, #7bf2ff, #ffffff);
  box-shadow: 0 0 0 3px rgba(100,223,255,.18);
}

.visual{
  background: transparent;
  border:none;
  border-radius: var(--r24);
  padding:0;
  box-shadow:none;
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
  min-height: 260px;
}

.mascot{
  display:flex; align-items:center; justify-content:center;
  padding:10px 10px 0;
}
.mascot img{
  width:min(380px, 96%);
  height:auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.20));
}

.stats{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.stat{
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.20);
  border-radius: 16px;
  padding:12px;
  backdrop-filter: blur(10px);
}
.stat b{display:block; font-size:15px}
.stat span{display:block; font-size:12px; color:var(--muted2); margin-top:3px}

/* HERO BANNER (единый баннер как на макете) */
.hero.hero-banner{
  padding:26px;
  border-radius: 28px;
  background:
    radial-gradient(900px 520px at 72% 20%, rgba(130,210,255,.32), transparent 60%),
    radial-gradient(700px 520px at 20% 85%, rgba(120,255,210,.14), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: var(--shadow);
  position:relative;
  overflow:hidden;
}
.hero.hero-banner:before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.55;
  background:
    radial-gradient(circle at 18% 28%, rgba(255,255,255,.85) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 18%, rgba(255,255,255,.75) 0 1px, transparent 2px),
    radial-gradient(circle at 58% 22%, rgba(255,255,255,.8) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 14%, rgba(255,255,255,.7) 0 1px, transparent 2px),
    radial-gradient(circle at 86% 30%, rgba(255,255,255,.7) 0 1px, transparent 2px),
    radial-gradient(circle at 22% 58%, rgba(255,255,255,.6) 0 1px, transparent 2px),
    radial-gradient(circle at 64% 62%, rgba(255,255,255,.55) 0 1px, transparent 2px);
}

/* Sections */
.section{padding:22px 0 0}
.section h2{
  margin:0 0 10px;
  font-size:28px;
  letter-spacing:-.3px;
  color:white;
}
.section p.lead{margin:0 0 14px; color:var(--muted); line-height:1.6; max-width: 80ch}

/* How it works section - улучшенное оформление */
#how{
  padding-top:48px;
}
#how h2{
  font-size:48px;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:16px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(255,255,255,.3);
}
#how .lead{
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.95);
  line-height:1.7;
  margin-bottom:32px;
  max-width:90ch;
  padding:20px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.2);
  border-radius:20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
@media (max-width: 768px){
  #how{
    padding-top:32px;
  }
  #how h2{
    font-size:32px;
    letter-spacing:-.4px;
  }
  #how .lead{
    font-size:16px;
    padding:16px 18px;
    margin-bottom:24px;
  }
  .how-it-works-layout{
    margin-top:20px;
  }
}
@media (max-width: 480px){
  #how{
    padding-top:24px;
  }
  #how h2{
    font-size:28px;
  }
  #how .lead{
    font-size:15px;
    padding:14px 16px;
  }
}

/* Benefits section - аналогичное оформление */
#benefits{
  padding-top:48px;
}
#benefits h2{
  font-size:48px;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:16px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(255,255,255,.3);
}
#benefits .lead{
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.95);
  line-height:1.7;
  margin-bottom:32px;
  max-width:90ch;
  padding:20px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.2);
  border-radius:20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
@media (max-width: 768px){
  #benefits{
    padding-top:32px;
  }
  #benefits h2{
    font-size:32px;
    letter-spacing:-.4px;
  }
  #benefits .lead{
    font-size:16px;
    padding:16px 18px;
    margin-bottom:24px;
  }
}
@media (max-width: 480px){
  #benefits{
    padding-top:24px;
  }
  #benefits h2{
    font-size:28px;
  }
  #benefits .lead{
    font-size:15px;
    padding:14px 16px;
  }
}

/* Pricing section - аналогичное оформление */
#pricing{
  padding-top:48px;
}
#pricing h2{
  font-size:48px;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:16px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(255,255,255,.3);
}
#pricing .lead{
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.95);
  line-height:1.7;
  margin-bottom:32px;
  max-width:90ch;
  padding:20px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.2);
  border-radius:20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
@media (max-width: 768px){
  #pricing{
    padding-top:32px;
  }
  #pricing h2{
    font-size:32px;
    letter-spacing:-.4px;
  }
  #pricing .lead{
    font-size:16px;
    padding:16px 18px;
    margin-bottom:24px;
  }
}
@media (max-width: 480px){
  #pricing{
    padding-top:24px;
  }
  #pricing h2{
    font-size:28px;
  }
  #pricing .lead{
    font-size:15px;
    padding:14px 16px;
  }
}

/* Comparison section - аналогичное оформление */
#compare{
  padding-top:48px;
}
#compare h2{
  font-size:48px;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:16px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(255,255,255,.3);
}
#compare .lead{
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.95);
  line-height:1.7;
  margin-bottom:32px;
  max-width:90ch;
  padding:20px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.2);
  border-radius:20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
@media (max-width: 768px){
  #compare{
    padding-top:32px;
  }
  #compare h2{
    font-size:32px;
    letter-spacing:-.4px;
  }
  #compare .lead{
    font-size:16px;
    padding:16px 18px;
    margin-bottom:24px;
  }
}
@media (max-width: 480px){
  #compare{
    padding-top:24px;
  }
  #compare h2{
    font-size:28px;
  }
  #compare .lead{
    font-size:15px;
    padding:14px 16px;
  }
}

/* FAQ section - аналогичное оформление */
#faq{
  padding-top:48px;
}
#faq h2{
  font-size:48px;
  font-weight:900;
  letter-spacing:-.6px;
  margin-bottom:16px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 20px rgba(255,255,255,.3);
}
#faq .lead{
  font-size:18px;
  font-weight:600;
  color:rgba(255,255,255,.95);
  line-height:1.7;
  margin-bottom:32px;
  max-width:90ch;
  padding:20px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.2);
  border-radius:20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15), inset 0 1px 0 rgba(255,255,255,.1);
}
@media (max-width: 768px){
  #faq{
    padding-top:32px;
  }
  #faq h2{
    font-size:32px;
    letter-spacing:-.4px;
  }
  #faq .lead{
    font-size:16px;
    padding:16px 18px;
    margin-bottom:24px;
  }
}
@media (max-width: 480px){
  #faq{
    padding-top:24px;
  }
  #faq h2{
    font-size:28px;
  }
  #faq .lead{
    font-size:15px;
    padding:14px 16px;
  }
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
/* Блок «Почему удобно» — одна сетка, последняя карточка на всю ширину (без дырки) */
.benefits-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.benefits-grid .card.benefits-grid-last{
  grid-column: 1 / -1;
}
@media (max-width: 980px){
  .grid3{grid-template-columns:1fr; }
  .benefits-grid{grid-template-columns:1fr; }
  .benefits-grid .card.benefits-grid-last{grid-column: 1; }
}

/* How it works — картинка сверху, под ней 4 карточки сеткой 2×2 */
.how-it-works-layout{
  display:flex;
  flex-direction:column;
  gap:28px;
  margin-top:24px;
}
.how-it-works-image{
  text-align:center;
  max-width:960px;
  margin:0 auto;
}
.how-it-works-image img{
  width:100%;
  height:auto;
  display:block;
}
.how-it-works-cards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}
.how-it-works-cards .card{
  min-height:0;
}
@media (max-width: 760px){
  .how-it-works-cards{
    grid-template-columns:1fr;
  }
}
@media (max-width: 480px){
  .how-it-works-image{
    max-width:480px;
  }
}

/* Cards -> белые как в макете */
.card{
  background: linear-gradient(180deg, var(--cardA), var(--cardB));
  border:1px solid rgba(255,255,255,.75);
  border-radius: var(--r20);
  padding:16px;
  box-shadow: 0 16px 34px rgba(10,30,90,.18);
  color: var(--ink);
}
/* Карточки в секции "Как это работает" - без прозрачности */
.card .icon{
  width:44px; height:44px; border-radius:16px;
  display:grid; place-items:center;
  border:1px solid rgba(255,255,255,.72);
  background: linear-gradient(135deg, rgba(100,223,255,.28), rgba(47,102,255,.10));
  margin-bottom:12px;
}
@media (max-width: 480px){
  .card{
    text-align:center;
  }
  .card .icon{
    margin-left:auto;
    margin-right:auto;
  }
  .card h3{
    text-align:center;
  }
  .card p{
    text-align:center;
  }
}
.card h3{margin:0 0 6px; font-size:16px; color: var(--ink)}
.card p{margin:0; color:var(--inkMuted); line-height:1.55; font-size:14px}
/* Выделение для карточки с мультиоблачностью */
.card.highlight-card{
  border:2px solid rgba(100,223,255,.6);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(238,246,255,.88));
  box-shadow: 0 20px 45px rgba(10,30,90,.25), 0 0 0 1px rgba(100,223,255,.3) inset;
  position:relative;
}
.card.highlight-card::before{
  content:"⭐";
  position:absolute;
  top:12px;
  right:12px;
  font-size:20px;
  opacity:.8;
}
/* Выделение для chip с PRO-фичами */
.chip.highlight-chip{
  background: linear-gradient(135deg, rgba(100,223,255,.25), rgba(47,102,255,.15));
  border:1px solid rgba(100,223,255,.5);
  font-weight:600;
}
.chip.highlight-chip .chip-pro{
  line-height:1.35;
}
.chip.highlight-chip strong{
  color:rgba(255,255,255,.95);
  font-weight:700;
}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:1000; font-size:12px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  color:rgba(255,255,255,.86);
}
.pill strong{color: #ffffff}
.pill .spark{width:8px; height:8px; border-radius:99px; background: var(--warn)}
/* Выделение для pill "Бесплатно" */
.pill[style*="color:#fff"],
.pill[style*="color: #fff"],
.pill[style*="color:#ffffff"],
.pill[style*="color: #ffffff"]{
  background: linear-gradient(135deg, rgba(100,223,255,.25), rgba(47,102,255,.15));
  border:1px solid rgba(255,255,255,.4);
  box-shadow: 0 4px 12px rgba(100,223,255,.2), inset 0 1px 0 rgba(255,255,255,.3);
  padding:8px 12px;
  font-size:13px;
  color: #0b1a4a !important;
}
.pill[style*="color:#fff"] strong,
.pill[style*="color: #fff"] strong,
.pill[style*="color:#ffffff"] strong,
.pill[style*="color: #ffffff"] strong{
  color: #0b1a4a !important;
}

/* Trust Badge - улучшенный блок безопасности */
.trust-badge{
  display:flex;
  align-items:center;
  gap:16px;
  padding:20px 24px;
  border-radius:20px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(100,223,255,.12));
  border:2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(0,0,0,.2), 0 0 0 1px rgba(255,255,255,.1) inset;
  margin-bottom:20px;
}
.trust-icon{
  font-size:56px;
  line-height:1;
  flex-shrink:0;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.25));
}
.trust-content{
  display:flex;
  flex-direction:column;
  gap:6px;
  flex:1;
  min-width:0;
}
.trust-content strong{
  font-size:20px;
  font-weight:900;
  color:#ffffff;
  letter-spacing:.3px;
  line-height:1.2;
}
.trust-text{
  font-size:15px;
  color:rgba(255,255,255,.9);
  line-height:1.5;
  font-weight:600;
}

@media (max-width: 640px){
  .trust-badge{
    padding:16px 18px;
    gap:14px;
    flex-direction:row;
    align-items:flex-start;
  }
  .trust-icon{
    font-size:40px;
    margin-top:2px;
  }
  .trust-content strong{
    font-size:18px;
  }
  .trust-text{
    font-size:14px;
  }
}

@media (max-width: 480px){
  .trust-badge{
    padding:14px 16px;
    gap:12px;
    border-radius:18px;
  }
  .trust-icon{
    font-size:44px;
  }
  .trust-content{
    gap:4px;
  }
  .trust-content strong{
    font-size:16px;
  }
  .trust-text{
    font-size:13px;
    line-height:1.4;
  }
}

/* Pricing */
.pricing{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  margin-top:12px;
  align-items:stretch;
}
@media (max-width: 980px){ .pricing{grid-template-columns:1fr} }

.plan{
  position:relative;
  overflow:hidden;
  padding:18px;
  border-radius: var(--r24);
  border:1px solid rgba(255,255,255,.75);
  background: linear-gradient(180deg, var(--cardA), var(--cardB));
  box-shadow: 0 18px 40px rgba(10,30,90,.18);
  color: var(--ink);
}
.plan.popular{
  border-color: rgba(100,223,255,.85);
  box-shadow: 0 22px 70px rgba(10,30,90,.20);
}
.ribbon{
  position:absolute; top:14px; right:14px;
  padding:8px 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #7bf2ff, #2f66ff);
  color:#ffffff;
  font-weight:1000;
  font-size:12px;
  letter-spacing:.2px;
  box-shadow: 0 10px 22px rgba(10,30,90,.18);
}
.plan-head{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.plan-name{font-weight:1100; letter-spacing:.2px; font-size:16px}
.plan-desc{color:var(--inkMuted); font-size:13px; margin-top:4px}
.price{
  margin:12px 0 10px;
  font-size:36px;
  font-weight:1100;
  letter-spacing:-.5px;
  color: var(--ink);
}
.price small{font-size:13px; color:var(--inkMuted); font-weight:900}
.subnote{color:var(--inkMuted); font-size:13px; line-height:1.45}

.list{margin:12px 0 0; padding:0; list-style:none; display:grid; gap:10px}
.li{
  display:flex; gap:10px; align-items:flex-start;
  color:var(--inkMuted);
  font-size:14px; line-height:1.5;
}
.check{
  width:18px; height:18px; border-radius:6px;
  border:1px solid rgba(255,255,255,.72);
  background: rgba(100,223,255,.16);
  display:grid; place-items:center;
  flex:0 0 18px;
  margin-top:1px;
  color: var(--ink);
}
.check svg{width:13px; height:13px}
.li b{color:var(--ink)}
.plan .actions{margin-top:14px; display:grid; gap:10px}

.hint{
  display:flex; align-items:center; gap:10px;
  margin-top:12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.70);
  background: rgba(255,255,255,.55);
  padding:12px;
  color:var(--inkMuted);
  font-size:13px;
}
.hint .badge{
  padding:6px 10px;
  border-radius:999px;
  font-weight:1100;
  font-size:12px;
  color:#ffffff;
  background: linear-gradient(180deg, #2f66ff, #1f46d8);
  white-space:nowrap;
}

/* Comparison table */
.table{
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
  border-radius: var(--r24);
  border:1px solid rgba(255,255,255,.75);
  background: linear-gradient(180deg, var(--cardA), var(--cardB));
  box-shadow: 0 16px 34px rgba(10,30,90,.18);
  margin-top:12px;
  color: var(--ink);
  position:relative;
  /* Градиентные подсказки для скролла */
  background-image:
    linear-gradient(to right, var(--cardA) 0%, transparent 40px),
    linear-gradient(to left, var(--cardA) 0%, transparent 40px);
  background-position: left center, right center;
  background-repeat: no-repeat;
  background-size: 60px 100%, 60px 100%;
}

/* Подсказка "Свайпните" для мобильных */
.table::before{
  content:"← Свайпните →";
  position:absolute;
  bottom:8px;
  left:50%;
  transform:translateX(-50%);
  font-size:11px;
  color:var(--inkMuted);
  font-weight:700;
  opacity:.6;
  pointer-events:none;
  display:none;
  z-index:10;
  background:rgba(255,255,255,.8);
  padding:4px 8px;
  border-radius:8px;
}

table{
  width:100%; 
  border-collapse:separate;
  border-spacing:0;
  min-width: 600px;
  background:rgba(255,255,255,.95);
  border-radius:12px;
  overflow:hidden;
}
th,td{
  padding:16px 18px; 
  text-align:left; 
  vertical-align:middle;
}
th{
  font-size:13px; 
  letter-spacing:.3px;
  color: rgba(11,26,74,.70);
  text-transform:uppercase;
  font-weight:900;
  background:rgba(11,26,74,.04);
  border-bottom:2px solid rgba(11,26,74,.12);
}
th:first-child{
  min-width:220px;
  text-align:left;
}
th:nth-child(2),
th:nth-child(3){
  min-width:140px;
  text-align:center;
}
td{
  color:var(--inkMuted); 
  font-size:14px;
  background:rgba(255,255,255,.5);
  border-bottom:1px solid rgba(11,26,74,.08);
}
td:first-child{
  font-weight:600;
  color:var(--ink);
  text-align:left;
  background:rgba(255,255,255,.7);
}
td:nth-child(2),
td:nth-child(3){
  text-align:center;
  font-weight:700;
  background:rgba(255,255,255,.5);
}
td strong{
  color:var(--ink);
  display:inline;
  padding:0;
  border-radius:0;
  background:transparent;
  text-align:left;
  margin:0;
  font-weight:600;
}
tbody tr:hover td{
  background:rgba(11,26,74,.03);
}
tbody tr:last-child td{
  border-bottom:none;
}
.yes{color: #0aa86a; font-weight:1000}
.no{color: rgba(11,26,74,.40); font-weight:1000}
.pro{color: #1f46d8; font-weight:1100}

/* Мобильная версия - карточки */
@media (max-width: 768px){
  .table{
    overflow:visible;
    border:none;
    background:transparent;
    box-shadow:none;
    background-image:none;
  }
  .table::before{
    display:none;
  }
  
  table{
    display:block;
    min-width:auto;
  }
  
  thead{
    display:none;
  }
  
  tbody{
    display:grid;
    gap:12px;
  }
  
  tr{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    background:linear-gradient(180deg, var(--cardA), var(--cardB));
    border:1px solid rgba(255,255,255,.75);
    border-radius:16px;
    padding:16px;
    box-shadow: 0 16px 34px rgba(10,30,90,.18);
  }
  
  td{
    padding:12px 0;
    border-bottom:1px solid rgba(11,26,74,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    position:static;
    background:transparent;
  }
  
  td:first-child{
    font-weight:700;
    color:var(--ink);
    font-size:15px;
    border-bottom:2px solid rgba(11,26,74,.12);
    padding-bottom:10px;
    margin-bottom:8px;
  }
  
  td:not(:first-child){
    font-size:16px;
    font-weight:800;
  }
  
  td:last-child{
    border-bottom:none;
  }
  
  /* Добавляем метки для FREE и PRO */
  td:nth-child(2)::before{
    content:"FREE: ";
    font-size:12px;
    font-weight:700;
    color:var(--inkMuted);
    margin-right:8px;
  }
  
  td:nth-child(3)::before{
    content:"PRO: ";
    font-size:12px;
    font-weight:700;
    color:var(--inkMuted);
    margin-right:8px;
  }
}

/* Планшеты - горизонтальный скролл с подсказкой */
@media (min-width: 769px) and (max-width: 1024px){
  .table::before{
    display:block;
  }
  
  .table{
    background-image:
      linear-gradient(to right, var(--cardA) 0%, transparent 50px),
      linear-gradient(to left, var(--cardA) 0%, transparent 50px);
  }
}

/* FAQ */
.faq{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:12px;
  margin-top:12px;
}
@media (max-width: 980px){ .faq{grid-template-columns:1fr} }

details{
  border:1px solid rgba(255,255,255,.75);
  background: linear-gradient(180deg, var(--cardA), var(--cardB));
  border-radius: 18px;
  padding:12px 14px;
  box-shadow: 0 16px 34px rgba(10,30,90,.14);
  color: var(--ink);
}
summary{cursor:pointer; font-weight:1000; color: var(--ink)}
details p{margin:10px 0 0; color:var(--inkMuted); line-height:1.6}

.box{
  border:1px solid rgba(255,255,255,.75);
  background: linear-gradient(180deg, var(--cardA), var(--cardB));
  border-radius: 24px;
  padding:18px;
  box-shadow: 0 18px 40px rgba(10,30,90,.18);
  position:relative;
  overflow:hidden;
  color: var(--ink);
}
.box h3{margin:0 0 8px; color: var(--ink)}
.box p{margin:0; color:var(--inkMuted); line-height:1.6}
.box .actions{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}

/* Footer */
footer{
  margin-top:28px;
  border-top:1px solid rgba(255,255,255,.20);
  padding-top:16px;
  color:rgba(255,255,255,.80);
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  font-size:13px;
}
footer a{color: rgba(255,255,255,.90); text-decoration:underline; text-decoration-color:rgba(255,255,255,.35)}
footer a:hover{color:#ffffff}

/* Availability Banner */
.availability-banner-section{
  padding:28px 0;
}
.availability-banner{
  background: linear-gradient(135deg, rgba(47,102,255,.2), rgba(31,70,216,.15));
  border:2px solid rgba(255,255,255,.4);
  border-radius:24px;
  padding:28px 32px;
  box-shadow: 
    0 20px 50px rgba(10,30,90,.25),
    0 0 0 1px rgba(255,255,255,.1) inset;
  position:relative;
  overflow:hidden;
}
.availability-banner::before{
  content:"";
  position:absolute;
  top:-50%;
  right:-50%;
  width:200%;
  height:200%;
  background: radial-gradient(circle, rgba(25,214,163,.1), transparent 70%);
  pointer-events:none;
}
.availability-banner-content h3{
  margin:0 0 12px;
  font-size:24px;
  color:white;
  font-weight:900;
  letter-spacing:-.3px;
  text-align:center;
}
.availability-banner-content h3:first-of-type{
  margin-top:0;
}
.availability-banner-content p{
  margin:0 0 24px;
  font-size:15px;
  color:rgba(255,255,255,.9);
  line-height:1.6;
  text-align:center;
}
.platforms-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:24px;
}
.platform-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.2);
  border-radius:16px;
  padding:20px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  transition:all .3s ease;
  backdrop-filter:blur(10px);
}
.platform-item:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.3);
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(0,0,0,.15);
}
.platform-available{
  border-color:rgba(25,214,163,.5);
  background:rgba(25,214,163,.1);
}
.platform-available:hover{
  border-color:rgba(25,214,163,.7);
  background:rgba(25,214,163,.15);
}
.platform-logo{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  opacity:.85;
  background:rgba(255,255,255,.05);
  border-radius:14px;
  transition:all .3s ease;
}
.platform-item:hover .platform-logo{
  opacity:1;
  background:rgba(255,255,255,.1);
  transform:scale(1.05);
}
.platform-available .platform-logo{
  color:#19d6a3;
  opacity:1;
  background:rgba(25,214,163,.15);
}
.platform-available:hover .platform-logo{
  background:rgba(25,214,163,.25);
}
.platform-info{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.platform-info strong{
  font-size:16px;
  color:white;
  font-weight:900;
}
.platform-status{
  font-size:12px;
  font-weight:700;
  padding:4px 10px;
  border-radius:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
}
.platform-status.available{
  background:rgba(25,214,163,.25);
  color:#19d6a3;
  border:1px solid rgba(25,214,163,.4);
}
.platform-status.coming{
  background:rgba(255,193,7,.2);
  color:#ffc107;
  border:1px solid rgba(255,193,7,.3);
}
@media (max-width: 768px){
  .platforms-grid{
    grid-template-columns:1fr;
    gap:12px;
  }
  .platform-item{
    flex-direction:row;
    text-align:left;
    padding:16px;
  }
  .platform-info{
    align-items:flex-start;
    flex:1;
  }
}
@media (max-width: 480px){
  .availability-banner{
    padding:20px;
  }
  .availability-banner-content h3{
    font-size:20px;
  }
  .availability-banner-content p{
    font-size:14px;
  }
  .platform-item{
    padding:14px;
  }
  .platform-logo{
    width:40px;
    height:40px;
  }
  .platform-info strong{
    font-size:15px;
  }
}

/* Promo Banner */
.promo-banner-section{
  padding:32px 0;
}
.promo-banner{
  background: linear-gradient(135deg, rgba(31,70,216,.15), rgba(47,102,255,.10));
  border:1px solid rgba(255,255,255,.3);
  border-radius:24px;
  padding:32px;
  display:grid;
  grid-template-columns: 1.2fr 1fr;
  gap:32px;
  align-items:center;
  box-shadow: 0 20px 50px rgba(10,30,90,.2);
  position:relative;
  overflow:hidden;
}
.promo-banner::before{
  content:"";
  position:absolute;
  top:0;
  right:0;
  width:200px;
  height:200px;
  background: radial-gradient(circle, rgba(25,214,163,.15), transparent 70%);
  border-radius:50%;
  pointer-events:none;
}
.promo-banner-content h2{
  margin:0 0 12px;
  font-size:32px;
  color:white;
  font-weight:900;
  letter-spacing:-.4px;
}
.promo-banner-content p{
  margin:0 0 24px;
  font-size:16px;
  color:rgba(255,255,255,.85);
  line-height:1.6;
}
.promo-banner-content .btn.large{
  padding:16px 24px;
  font-size:16px;
}
.promo-banner-image{
  display:flex;
  align-items:center;
  justify-content:center;
}
.promo-banner-image img{
  width:100%;
  height:auto;
  max-width:100%;
  border-radius:16px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
@media (max-width: 980px){
  .promo-banner{
    grid-template-columns:1fr;
    padding:24px;
    gap:24px;
  }
  .promo-banner-content h2{
    font-size:26px;
  }
  .promo-banner-image{
    order:-1;
  }
}
@media (max-width: 480px){
  .promo-banner{
    padding:20px;
    gap:20px;
  }
  .promo-banner-content h2{
    font-size:22px;
  }
  .promo-banner-content p{
    font-size:14px;
  }
}

/* Toast */
.toast{
  position:fixed; left:50%; bottom:18px; transform:translateX(-50%);
  background: rgba(10,30,90,.55);
  border:1px solid rgba(255,255,255,.22);
  padding:10px 12px;
  border-radius: 14px;
  color:#ffffff;
  box-shadow: var(--shadow2);
  display:none;
  max-width: 92vw;
  z-index:100;
  backdrop-filter: blur(14px);
}

/* Стили для страниц оферты и политики */
.section h1{
  margin:0 0 12px;
  font-size:32px;
  letter-spacing:-.4px;
  font-weight:900;
  color:white;
}

.section h2{
  margin:0 0 10px;
  font-size:20px;
  letter-spacing:-.2px;
  font-weight:900;
  color:#000;
}

.box ul{
  margin:8px 0;
  padding-left:20px;
  color:var(--inkMuted);
  line-height:1.6;
}

.box ul li{
  margin:4px 0;
}

.box p{
  margin:0 0 12px;
  color:var(--inkMuted);
  line-height:1.6;
}

.box p:last-child{
  margin-bottom:0;
}

@media (max-width: 480px){
  .section h1{
    font-size:26px;
  }
  
  .section h2{
    font-size:21px;
    color:#000;
  }
}

/* Store Buttons in Availability Banner */
.availability-banner .store-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  justify-content:center;
  align-items:center;
  margin-bottom:32px;
}
.availability-banner .store-button{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 20px;
  border-radius:16px;
  background: rgba(255,255,255,.95);
  border:2px solid rgba(255,255,255,.5);
  box-shadow: 0 8px 20px rgba(0,0,0,.15);
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  color:var(--ink);
  text-decoration:none;
  font-weight:700;
  min-width:180px;
}
.availability-banner .store-button:hover{
  transform:translateY(-2px);
  box-shadow: 0 12px 25px rgba(0,0,0,.2);
  background:white;
}
.availability-banner .store-button:active{
  transform:translateY(0);
}
.availability-banner .store-button svg{
  width:32px;
  height:32px;
  flex-shrink:0;
}
.availability-banner .store-button-content{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
}
.availability-banner .store-button-label{
  font-size:11px;
  color:var(--inkMuted);
  font-weight:600;
  line-height:1.2;
  margin-bottom:2px;
}
.availability-banner .store-button-name{
  font-size:18px;
  color:var(--ink);
  font-weight:900;
  line-height:1.2;
  letter-spacing:-.2px;
}
.availability-banner .store-button.store-ios svg{
  fill:var(--ink);
}
.availability-banner .store-button.store-android svg{
  fill:var(--ink);
}

@media (max-width: 768px){
  .availability-banner .store-buttons{
    flex-direction:column;
    width:100%;
    margin-bottom:24px;
  }
  .availability-banner .store-button{
    width:100%;
    justify-content:center;
    min-width:auto;
  }
}

/* ====== Модальное окно авторизации через Telegram ====== */
.modal{
  position:fixed; top:0; left:0; width:100%; height:100%;
  background:rgba(0,0,0,.6);
  display:flex; align-items:center; justify-content:center;
  z-index:1000;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding:20px;
}
.modal-content{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.88));
  border:1px solid rgba(255,255,255,.75);
  border-radius:var(--r24);
  box-shadow:var(--shadow);
  max-width:500px;
  width:100%;
  max-height:80vh;
  overflow-y:auto;
  display:flex;
  flex-direction:column;
  color:var(--ink);
}
.modal-header{
  display:flex; justify-content:space-between; align-items:center;
  padding:24px;
  border-bottom:1px solid rgba(0,0,0,.08);
}
.modal-header h3{
  margin:0;
  font-size:24px;
  font-weight:900;
  color:var(--ink);
}
.modal-close{
  background:none; border:none;
  font-size:32px; color:var(--inkMuted);
  cursor:pointer;
  line-height:1;
  padding:0;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  border-radius:8px;
  transition:all .2s ease;
}
.modal-close:hover{
  color:var(--ink);
  background:rgba(0,0,0,.05);
}
.modal-body{
  padding:24px;
}
.modal-body p{
  margin:0 0 16px;
  color:var(--inkMuted);
  line-height:1.6;
}
.modal-body ol{
  margin:16px 0;
  padding-left:24px;
  color:var(--inkMuted);
  line-height:1.6;
}
.modal-body code{
  background:rgba(0,0,0,.1);
  padding:2px 6px;
  border-radius:4px;
  font-family:monospace;
  font-size:14px;
}
.modal-body .btn.blue{
  background: linear-gradient(135deg, #64dfff, #2f66ff);
  color:#fff;
  border:none;
  box-shadow: 0 4px 12px rgba(47,102,255,.3);
  transition: all .2s ease;
}
.modal-body .btn.blue:hover{
  box-shadow: 0 6px 16px rgba(47,102,255,.4);
  transform: translateY(-1px);
}
.modal-body .btn.blue svg{
  fill:#fff;
  margin-right:8px;
}
@media (max-width: 480px){
  .modal{
    padding:12px;
  }
  .modal-content{
    max-height:95vh;
  }
  .modal-header{
    padding:20px;
  }
  .modal-header h3{
    font-size:20px;
  }
  .modal-body{
    padding:20px;
  }
}

/* Screenshots Banner Section */
/* Промо-картинка cloud_d — область и размер */
.promo-cloud-section{
  padding-top:32px;
  padding-bottom:32px;
}
.promo-cloud-wrap{
  width:100%;
  max-width:min(1100px, 92vw);
  margin:0 auto;
  text-align:center;
  border-radius:20px;
  overflow:hidden;
}
.promo-cloud-img{
  width:100%;
  height:auto;
  display:block;
  vertical-align:middle;
}
.promo-cloud-desc{
  max-width:min(700px, 92vw);
  margin:20px auto 0;
  text-align:center;
  font-size:15px;
  line-height:1.55;
  color:rgba(255,255,255,.88);
}
.promo-cloud-desc .promo-cloud-link{
  color:rgba(255,255,255,1);
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
}
.promo-cloud-desc .promo-cloud-link:hover{
  color:rgba(180,220,255,1);
}
@media (max-width: 768px){
  .promo-cloud-wrap{
    border-radius:16px;
  }
  .promo-cloud-desc{
    font-size:14px;
    margin-top:16px;
  }
}

.screenshots-banner-section{
  padding-top:32px;
}
.screenshots-banner-container{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
  justify-content:center;
  padding:16px 20px;
  text-align:center;
  background:
    radial-gradient(900px 520px at 72% 20%, rgba(130,210,255,.25), transparent 60%),
    radial-gradient(700px 520px at 20% 85%, rgba(120,255,210,.12), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  backdrop-filter: blur(10px);
}
.screenshots-banner-content{
  text-align:center;
  width:100%;
  margin-top:8px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.screenshots-banner-content h2{
  font-size:38px;
  font-weight:900;
  letter-spacing:-.5px;
  margin:0 auto 8px;
  text-align:center;
  width:100%;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.screenshots-banner-content .lead{
  font-size:16px;
  font-weight:500;
  color:rgba(255,255,255,.9);
  line-height:1.5;
  margin:0 auto;
  text-align:center;
  width:100%;
}
.screenshots-banner-image{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:2px;
  width:100%;
}
.screenshots-banner-image img{
  width:100%;
  height:auto;
  max-width:70%;
  border-radius:20px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.25));
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.7);
  opacity: 0.7;
}
.screenshots-banner-image img:hover{
  transform: scale(1.02);
}
.screenshots-banner-image img.scroll-visible{
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 968px){
  .screenshots-banner-container{
    gap:18px;
    padding:18px;
  }
  .screenshots-banner-content h2{
    font-size:32px;
  }
  .screenshots-banner-content .lead{
    font-size:15px;
  }
}
@media (max-width: 768px){
  .screenshots-banner-section{
    padding-top:20px;
  }
  .screenshots-banner-container{
    padding:16px;
    gap:16px;
  }
  .screenshots-banner-content h2{
    font-size:28px;
    margin-bottom:8px;
  }
  .screenshots-banner-content .lead{
    font-size:14px;
  }
  .screenshots-banner-image{
    padding:6px;
  }
}
@media (max-width: 480px){
  .screenshots-banner-container{
    padding:14px;
    gap:14px;
  }
  .screenshots-banner-content h2{
    font-size:24px;
  }
  .screenshots-banner-content .lead{
    font-size:13px;
  }
  .screenshots-banner-image{
    padding:4px;
  }
}

/* Early Access Section */
.early-access-section{
  padding-top:48px;
}
.early-access-container{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  align-items:center;
  padding:32px;
  background:
    radial-gradient(900px 520px at 72% 20%, rgba(130,210,255,.3), transparent 60%),
    radial-gradient(700px 520px at 20% 85%, rgba(120,255,210,.15), transparent 62%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  backdrop-filter: blur(10px);
  position:relative;
  overflow:hidden;
}
.early-access-content h2{
  font-size:42px;
  font-weight:900;
  letter-spacing:-.5px;
  margin:0 0 12px;
  background: linear-gradient(135deg, #ffffff, rgba(255,255,255,.85));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.early-access-subtitle{
  font-size:18px;
  font-weight:500;
  color:rgba(255,255,255,.9);
  line-height:1.6;
  margin:0 0 24px;
}
.early-access-benefits{
  list-style:none;
  padding:0;
  margin:0 0 28px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.early-access-benefits li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  backdrop-filter: blur(5px);
  transition: all .2s ease;
}
.early-access-benefits li:hover{
  background:rgba(255,255,255,.12);
  border-color:rgba(255,255,255,.25);
  transform: translateY(-2px);
}
.benefit-icon{
  font-size:24px;
  flex-shrink:0;
  line-height:1;
}
.early-access-benefits li div{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.early-access-benefits li strong{
  display:block;
  font-size:16px;
  font-weight:700;
  color:#ffffff;
  line-height:1.4;
}
.early-access-benefits li span{
  display:block;
  font-size:14px;
  color:rgba(255,255,255,.75);
  line-height:1.4;
}
.early-access-cta{
  font-size:18px;
  padding:16px 32px;
  width:100%;
  max-width:300px;
}
.early-access-visual{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
}
.early-access-visual img{
  width:100%;
  height:auto;
  max-width:100%;
  border-radius:20px;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,.25));
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform: scale(0.7);
  opacity: 0.7;
}
.early-access-visual img:hover{
  transform: scale(1.02);
}
.early-access-visual img.scroll-visible{
  transform: scale(1);
  opacity: 1;
}
@media (max-width: 968px){
  .early-access-container{
    grid-template-columns: 1fr;
    gap:32px;
    padding:28px;
  }
  .early-access-content h2{
    font-size:36px;
  }
  .early-access-visual{
    order:-1;
    padding:10px;
  }
}
@media (max-width: 768px){
  .early-access-section{
    padding-top:32px;
  }
  .early-access-container{
    padding:24px;
    gap:24px;
  }
  .early-access-content h2{
    font-size:32px;
  }
  .early-access-subtitle{
    font-size:16px;
  }
  .early-access-benefits{
    gap:12px;
  }
  .early-access-benefits li{
    padding:14px;
  }
  .early-access-cta{
    font-size:16px;
    padding:14px 24px;
    max-width:100%;
  }
}
@media (max-width: 480px){
  .early-access-container{
    padding:20px;
    gap:20px;
  }
  .early-access-content h2{
    font-size:28px;
  }
  .early-access-subtitle{
    font-size:15px;
  }
  .early-access-benefits li{
    padding:12px;
  }
  .early-access-benefits li strong{
    font-size:15px;
  }
  .early-access-benefits li span{
    font-size:13px;
  }
}
