/* ===== РџР•Р Р•РњР•РќРќР«Р• / РўР•РњРђ ===== */
:root {
  --violet: #a855f7;
  --violet-2: #8b5cf6;
  --orange: #ff8a1e;
  --orange-2: #ff6a00;

  /* РџРѕС‡С‚Рё С‡С‘СЂРЅС‹Р№ РјРёРЅРёРјР°Р»РёР·Рј */
  --bg: #050507;
  --bg-2: #08070c;
  --surface: #0d0c12;
  --surface-2: #121118;
  --surface-hover: #16141d;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(168, 85, 247, 0.35);

  --text: #f2f0f7;
  --text-dim: #cdc9d8;
  --muted: #8a8598;
  --muted-2: #56515f;

  --grad: linear-gradient(120deg, var(--violet) 0%, var(--orange) 100%);

  --radius: 16px;
  --radius-lg: 22px;
  --shadow: 0 30px 70px -30px rgba(0, 0, 0, .9);

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ===== РЎР‘Р РћРЎ ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: currentColor; }
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.07; letter-spacing: -.03em; font-weight: 800; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* Р—Р°РіРѕР»РѕРІРѕРє СЃ РїСЂРёРіР»СѓС€С‘РЅРЅРѕР№ РІС‚РѕСЂРѕР№ С‡Р°СЃС‚СЊСЋ вЂ” РєР°Рє РЅР° СЂРµС„РµСЂРµРЅСЃРµ */
.t-dim { color: var(--muted); }
.t-grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ===== РўРѕРЅРєРѕРµ СЃРІРµС‡РµРЅРёРµ С‚РѕР»СЊРєРѕ РІРІРµСЂС…Сѓ ===== */
.bg-orbs { display: none; }
.orb { display: none; }

/* ===== Плавающие частицы (канвас) ===== */
.particles {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  width: 100%; height: 100%;
}

/* ===== РљРќРћРџРљР ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 12px 22px; border-radius: 12px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .2s var(--ease), box-shadow .3s var(--ease), background .25s, border-color .25s;
  white-space: nowrap;
}
.btn--primary { background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%); color: #fff; box-shadow: 0 14px 40px -14px rgba(124, 58, 237, .7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 46px -12px rgba(124, 58, 237, .9); filter: brightness(1.1); }
.btn--ghost { background: rgba(255,255,255,.03); border-color: var(--border); color: var(--text); }
.btn--ghost:hover { background: var(--surface-hover); border-color: var(--border-strong); transform: translateY(-2px); }
.btn--white { background: #fff; color: #000; box-shadow: 0 14px 40px -14px rgba(255,255,255,.5); border-color: transparent; }
.btn--white:hover { background: #f2f0f7; transform: translateY(-2px); box-shadow: 0 18px 46px -12px rgba(255,255,255,.7); }
.btn--link { background: transparent; color: var(--text); border: none; box-shadow: none; padding: 12px 16px; transition: color .2s var(--ease), transform .2s var(--ease); }
.btn--link:hover { color: var(--muted); transform: translateX(4px); background: transparent; }
.btn--lg { padding: 15px 28px; font-size: 16px; }
.btn--block { width: 100%; }
.btn--pill { border-radius: 99px; padding: 10px 22px; font-size: 14px; }

/* ===== РЁРђРџРљРђ ===== */
.header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 7, .72);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; gap: 24px; height: 70px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand__logo { filter: drop-shadow(0 4px 14px rgba(168,85,247,.45)); }
.brand__name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 20px; letter-spacing: -.01em; }
.brand__accent { color: var(--orange); }

.nav { display: flex; gap: 4px; margin-left: 12px; }
.nav__link { padding: 8px 14px; border-radius: 10px; color: var(--muted); font-weight: 600; font-size: 15px; transition: color .2s, background .2s; }
.nav__link:hover { color: var(--text); background: rgba(255,255,255,.04); }

.header__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s var(--ease); }
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero { padding: 140px 0 260px; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; min-height: 880px; }
.hero__inner { position: relative; z-index: 1; max-width: var(--maxw); display: flex; align-items: center; }
.hero__copy { max-width: 960px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero__lead { margin-left: 0; }
.hero__cta { justify-content: flex-start; }

/* Прыгающая стрелка вниз */
.hero__scroll {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; width: 46px; height: 46px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--border); background: rgba(255,255,255,.03);
  color: var(--text); backdrop-filter: blur(6px);
  animation: bounce 2s var(--ease) infinite; transition: border-color .25s, background .25s;
}
.hero__scroll:hover { border-color: var(--border-strong); background: var(--surface-hover); }
.hero__scroll svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Фоновое видео */
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero__video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -35%);
  min-width: 150%; min-height: 150%; width: 150%; height: 150%;
  object-fit: cover; object-position: 50% 0%;
  opacity: 1;
  transition: opacity .6s var(--ease);
}
.hero__video.is-fading { opacity: 0; }
/* Фиолетовый фильтр под стиль сайта */
.hero__tint {
  position: absolute; inset: 0;
  background:
    radial-gradient(rgba(0,0,0,0.4) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5,5,7,.7) 0%, rgba(5,5,7,.7) 75%, var(--bg) 100%),
    linear-gradient(120deg, rgba(124,58,237,.45) 0%, rgba(88,28,135,.25) 50%, rgba(255,106,0,.15) 100%);
  background-size: 3px 3px, 100% 100%, 100% 100%;
  mix-blend-mode: normal;
}
.hero__tint::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 0%, transparent 60%, var(--bg) 100%);
}

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.03); border: 1px solid var(--border); color: var(--text-dim);
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(255,138,30,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(255,138,30,.18); } 50% { box-shadow: 0 0 0 8px rgba(255,138,30,0); } }

.hero__title { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(34px, 8vw, 96px); line-height: 1.05; letter-spacing: -0.03em; margin: 22px 0 24px; }
.hero__lead { font-size: 20px; color: var(--muted); max-width: 580px; }
.hero__cta { display: flex; gap: 14px; margin: 32px 0 24px; flex-wrap: wrap; }
.hero__badges { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 22px; }
.hero__badges li { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 600; }
.ic { width: 18px; height: 18px; fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

/* РљР°СЂС‚РѕС‡РєР°-РІРёР·СѓР°Р» (РєР°Рє РЅР° 1-Рј СЃРєСЂРёРЅРµ, РЅРѕ РЅР° С‚С‘РјРЅРѕРј) */
.hero__visual { display: flex; justify-content: center; }
.shield-card {
  position: relative; width: 100%; max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow);
  animation: rise 1s var(--ease) both;
}
@keyframes rise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.shield-card__glow { position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(140px 120px at 50% 0%, rgba(255,138,30,.18), transparent 70%); pointer-events: none; }
.shield-card__logo { margin: 0 auto 14px; filter: drop-shadow(0 12px 26px rgba(168,85,247,.5)); animation: bob 4s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.shield-card__status { display: flex; align-items: center; justify-content: center; gap: 8px; font-weight: 700; margin-bottom: 18px; }
.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot--on { background: #3ddc84; box-shadow: 0 0 12px #3ddc84; animation: pulse 2s infinite; }
.shield-card__row { display: flex; justify-content: space-between; padding: 12px 0; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }
.mono { font-family: 'JetBrains Mono', ui-monospace, 'Plus Jakarta Sans', monospace; color: var(--text); font-weight: 600; letter-spacing: -.01em; }
.shield-card__speed { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.speed-bar { flex: 1; height: 8px; border-radius: 999px; background: rgba(255,255,255,.06); overflow: hidden; }
.speed-bar i { display: block; height: 100%; width: var(--w); background: var(--grad); border-radius: inherit; animation: fill 1.6s var(--ease) both; }
@keyframes fill { from { width: 0; } }

/* Р”РѕРІРµСЂРёРµ */
.trust { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-top: 60px; padding-top: 28px; border-top: 1px solid var(--border); }
.trust__label { color: var(--muted-2); font-size: 13px; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.trust__logos { display: flex; gap: 28px; flex-wrap: wrap; }
.trust__logos span { color: var(--muted); font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; opacity: .6; transition: opacity .2s, color .2s; }
.trust__logos span:hover { opacity: 1; color: var(--text); }

/* ===== РЎР•РљР¦РР ===== */
.section { padding: 88px 0; position: relative; }
.section--alt { background: transparent; }
.section__head { max-width: 720px; margin: 0 0 48px; }
.section__head--center { text-align: center; margin-inline: auto; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.section__title { font-size: clamp(30px, 4.4vw, 48px); margin-bottom: 16px; }
.section__sub { color: var(--muted); font-size: 17px; }

/* ===== РљРђР РўРћР§РљР / РЎР•РўРљР ===== */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); transition: transform .3s var(--ease), border-color .3s, background .3s; }
.grid { display: grid; gap: 20px; }

/* РЁР°РіРё В«РўСЂРё РґРµР№СЃС‚РІРёСЏВ» */
.grid--steps { grid-template-columns: repeat(3, 1fr); }
.step { padding: 30px 28px; position: relative; overflow: hidden; }
.step:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-4px); }
.step__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 26px; }
.step__mark { width: 20px; height: 20px; background: url('logo.webp') center/contain no-repeat; }
.step__tag { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.step h3 { position: relative; z-index: 1; font-size: 26px; margin-bottom: 12px; }
.step p { position: relative; z-index: 1; color: var(--muted); font-size: 15px; padding-right: 65px; line-height: 1.6; }
.step__num { position: absolute; right: 10px; bottom: -4px; z-index: 0; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 100px; font-weight: 800; color: rgba(255,255,255,.04); line-height: 1; pointer-events: none; }

/* Р¤РёС‡Рё */
.feature__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; border: 1px solid var(--border); background: rgba(255,255,255,.02); }
.feature__icon svg { width: 26px; height: 26px; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-violet svg { stroke: var(--violet); }
.icon-orange svg { stroke: var(--orange); }

/* ===== BENTO ===== */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  grid-auto-rows: 1fr;
}
.bento__card {
  padding: 34px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.bento__card--wide { grid-column: span 2; }
.bento__card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(420px 240px at 100% 0%, rgba(168,85,247,.10), transparent 60%);
  opacity: 0; transition: opacity .4s var(--ease);
}
.bento__card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.bento__card:hover::before { opacity: 1; }
.bento__card h3 { font-size: 22px; margin-bottom: 10px; position: relative; }
.bento__card p { color: var(--muted); font-size: 15px; position: relative; }

/* Сравнение скорости */
.compare { margin-top: auto; padding-top: 26px; display: grid; gap: 14px; position: relative; }
.compare__row { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 16px; }
.compare__name { font-size: 14px; font-weight: 600; color: var(--muted); }
.compare__name--us { color: var(--text); font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.compare__bar { height: 12px; border-radius: 999px; background: rgba(255,255,255,.05); overflow: hidden; }
.compare__fill { display: block; height: 100%; border-radius: inherit; width: var(--w); animation: fill 1.4s var(--ease) both; }
.compare__fill--slow { background: rgba(255,255,255,.18); }
.compare__fill--fast { background: var(--grad); box-shadow: 0 0 18px -2px rgba(168,85,247,.6); }

/* РЎС‚Р°С‚РёСЃС‚РёРєР° */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.stat { text-align: center; padding: 26px 12px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.stat b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 4vw, 40px); background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { color: var(--muted); font-size: 14px; font-weight: 600; }

/* РЎРµСЂРІРµСЂС‹ */
.marquee {
  position: relative; overflow: hidden; width: 100%; margin-top: 8px;
  -webkit-mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.marquee__track {
  display: flex; width: max-content; gap: 14px;
  animation: marquee 44s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.loc {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  padding: 14px 22px; background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; font-weight: 600; font-size: 15px; color: var(--text-dim);
  transition: border-color .25s, background .25s, color .25s;
}
.loc:hover { border-color: var(--border-strong); background: var(--surface-2); color: var(--text); }

/* РўР°СЂРёС„С‹ */
.grid--pricing { grid-template-columns: repeat(4, 1fr); align-items: start; }
.price { padding: 32px 28px; position: relative; }
.price:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.price--featured { background: var(--surface-2); border-color: var(--border-strong); }
.price--featured::before { content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; opacity: .55; }
.price__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad); color: #fff; font-size: 12px; font-weight: 800; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.price__name { font-size: 20px; color: var(--muted); margin-bottom: 10px; }
.price__value { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 52px; font-weight: 700; line-height: 1; }
.price__cur { font-size: 26px; vertical-align: super; margin-left: 2px; }
.price__per { font-size: 16px; color: var(--muted); font-weight: 500; }
.price__note { color: var(--orange); font-size: 14px; font-weight: 600; margin: 10px 0 20px; }
.price__list { list-style: none; margin-bottom: 26px; display: grid; gap: 12px; }
.price__list li { position: relative; padding-left: 28px; color: var(--text-dim); font-size: 15px; }
.price__list li::before { content: "\2714"; position: absolute; left: 0; top: 1px; width: 18px; height: 18px; border-radius: 50%; background: var(--grad); color: #fff; font-size: 11px; font-weight: 800; display: grid; place-items: center; }
.pay-note { text-align: center; margin-top: 30px; color: var(--muted); font-size: 15px; display: flex; gap: 10px; justify-content: center; align-items: center; flex-wrap: wrap; }
.pay-note b { color: var(--text); font-weight: 700; }
.pay-chip { padding: 4px 12px; border: 1px solid var(--border); border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--text-dim); }

/* РџСЂРёР»РѕР¶РµРЅРёСЏ / РџР»Р°С‚С„РѕСЂРјС‹ */
.platforms-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 40px; }
.platform-tag { display: flex; align-items: center; gap: 10px; padding: 12px 20px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 100px; color: var(--text); font-size: 15px; font-weight: 500; transition: all .3s ease; cursor: default; }
.platform-tag:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(0,0,0,0.5); }
.platform-tag .ic { width: 20px; height: 20px; opacity: 0.7; stroke: currentColor; }

.grid--apps { grid-template-columns: repeat(2, 1fr); max-width: 760px; margin: 0 auto; }
.appcard { display: flex; align-items: center; gap: 18px; padding: 26px 28px; background: rgba(255,255,255,0.01); border: 1px solid rgba(255,255,255,0.05); border-radius: 24px; transition: all .3s var(--ease); text-decoration: none; position: relative; overflow: hidden; }
.appcard::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(255,255,255,0.03), transparent 60%); opacity: 0; transition: opacity .3s; }
.appcard:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); box-shadow: 0 12px 32px -12px rgba(0,0,0,0.5); }
.appcard:hover::before { opacity: 1; }
.appcard__logo { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 22px; color: #fff; flex-shrink: 0; }
.appcard__logo--incy { background: linear-gradient(140deg, var(--violet), var(--violet-2)); }
.appcard__logo--happ { background: linear-gradient(140deg, var(--orange), var(--orange-2)); }
.appcard__body { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.appcard__name { font-weight: 800; font-size: 20px; font-family: 'Plus Jakarta Sans', sans-serif; }
.appcard__sub { color: var(--muted); font-size: 14px; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: start; }
.faq-layout__sidebar { display: flex; flex-direction: column; }
.faq-layout__title { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 24px; line-height: 1.05; }
.faq-layout__desc { color: var(--muted); font-size: 15px; margin-bottom: 32px; max-width: 320px; }
.faq-layout__links { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.faq-link { color: var(--text); font-size: 14px; font-weight: 600; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 4px; transition: border-color .2s; }
.faq-link:hover { border-color: rgba(255,255,255,0.8); }

.faq { display: flex; flex-direction: column; gap: 0; }
.faq__item { background: transparent; border: none; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.03); }
.faq__item:last-child { border-bottom: none; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 16px; padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: color .2s; }
.faq__q:hover { color: #fff; }
.faq__q-text { display: flex; align-items: center; gap: 14px; }
.faq__q-text::before { content: ""; display: block; width: 4px; height: 4px; background: var(--muted); border-radius: 50%; opacity: 0.5; }

.faq__plus-wrap { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; transition: background .2s; flex-shrink: 0; }
.faq__q:hover .faq__plus-wrap { background: rgba(255,255,255,0.08); }
.faq__plus { position: relative; width: 10px; height: 10px; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--text); border-radius: 2px; transition: transform .3s var(--ease); }
.faq__plus::before { top: 4px; left: 0; width: 10px; height: 2px; }
.faq__plus::after { left: 4px; top: 0; width: 2px; height: 10px; }
.faq__item.is-open .faq__plus::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 0 24px 18px; color: var(--muted); font-size: 15px; }

/* CTA */
.cta { padding: 40px 0 100px; }
.cta__inner { text-align: center; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 64px 30px; position: relative; overflow: hidden; }
.cta__inner::before { content: ""; position: absolute; inset: 0; z-index: 2; background: radial-gradient(500px 260px at 50% -30%, rgba(124,58,237,.22), transparent 70%); pointer-events: none; }
.cta__title { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; position: relative; z-index: 3; }
.cta__sub { color: var(--muted); font-size: 17px; margin-bottom: 28px; position: relative; z-index: 3; }
.cta__inner .btn { position: relative; z-index: 3; }

/* Фоновое видео в CTA */
.cta__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.cta__video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  object-fit: cover; opacity: 1;
  transition: opacity .6s var(--ease);
}
.cta__video.is-fading { opacity: 0; }
.cta__tint {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(rgba(0,0,0,0.4) 1px, transparent 1px),
    linear-gradient(180deg, rgba(13,12,18,.8) 0%, rgba(13,12,18,.8) 100%),
    linear-gradient(120deg, rgba(124,58,237,.55) 0%, rgba(88,28,135,.35) 50%, rgba(255,106,0,.2) 100%);
  background-size: 3px 3px, 100% 100%, 100% 100%;
}
.cta__tint::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 120% at 50% 50%, transparent 45%, rgba(13,12,18,.7) 100%);
}

/* ===== Р¤РЈРўР•Р  ===== */
.footer { border-top: 1px solid var(--border); background: var(--surface); padding: 36px 0 0; position: relative; overflow: hidden; }
.footer__inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; }
.footer__desc { color: var(--muted); font-size: 15px; max-width: 360px; margin-top: 12px; text-align: center; }
.footer__links { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.footer__note { font-size: 13px; color: var(--muted-2); margin-top: -12px; text-align: center; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 24px; padding-top: 16px; border-top: 1px solid var(--border); color: var(--muted-2); font-size: 14px; flex-wrap: wrap; }
.footer__socials { display: flex; gap: 10px; }
.footer__socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.03); border: 1px solid var(--border); color: var(--muted); transition: .25s var(--ease); }
.footer__socials a svg { width: 18px; height: 18px; }
.footer__socials a:hover { color: var(--text); border-color: var(--border-strong); transform: translateY(-3px); }

/* Гигантская надпись-водяной знак */
.footer__watermark {
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; text-align: center;
  font-size: clamp(48px, 12vw, 160px); line-height: .8; letter-spacing: -.04em;
  margin-top: 10px; user-select: none; pointer-events: none; white-space: nowrap;
  background: linear-gradient(180deg, rgba(242,240,247,.08) 0%, rgba(242,240,247,0) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  transform: translateY(20%);
}
.footer__watermark span { color: transparent; }

/* ===== РђРќРРњРђР¦РРЇ РџРћРЇР’Р›Р•РќРРЇ ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== РђР”РђРџРўРР’ ===== */
@media (max-width: 960px) {
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .hero__inner { flex-direction: column; text-align: left; gap: 60px; }
  .hero__copy { align-items: flex-start; text-align: left; }
  .hero__lead { margin-left: 0; margin-right: 0; }
  .hero__cta { justify-content: flex-start; width: 100%; flex-direction: column; gap: 8px; align-items: center; }
  .hero__cta .btn { justify-content: center; border-radius: 99px; padding: 14px 24px; }
  .hero__cta .btn--primary { width: 100%; }
  .hero__cta .btn--ghost { width: auto; background: transparent; border-color: transparent; color: var(--muted); font-size: 15px; }
  .hero__badges { justify-content: flex-start; }
  .shield-card { margin: 0 auto; }
  .grid--steps { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--wide { grid-column: span 2; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid--pricing { grid-template-columns: 1fr 1fr; max-width: 800px; margin: 0 auto; }
  .grid--apps { grid-template-columns: 1fr; max-width: 460px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .hero__lead { font-size: 16px; }
  .grid--pricing { grid-template-columns: 1fr; max-width: 460px; }
  .bento { grid-auto-rows: auto; }
  .bento__card { padding: 24px; }
  .step { padding: 24px; }
  .price { padding: 24px; }
  .shield-card { padding: 24px; }
  .nav, .header__actions { display: none; }
  .burger { display: flex; }
  .nav {
    position: absolute; top: 70px; left: 0; right: 0; flex-direction: column; gap: 4px;
    background: rgba(5,5,7,.98); backdrop-filter: blur(16px);
    padding: 16px 24px 22px; border-bottom: 1px solid var(--border);
  }
  .nav.is-open { display: flex; animation: rise .3s var(--ease) both; }
  .nav__link { padding: 12px 14px; font-size: 16px; }
  .section { padding: 62px 0; }
  .trust { justify-content: flex-start; }
  .hero { padding: 72px 0 48px; min-height: auto; }
}

@media (max-width: 480px) {
  .stats, .footer__inner { grid-template-columns: 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--wide { grid-column: span 1; }
  .hero__cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
}



