:root {
  --bg:    #0a0f1e;
  --bg2:   #0f1728;
  --bg3:   #141e33;
  --card:  #111827;
  --line:  rgba(108,71,255,0.15);
  --line2: rgba(255,255,255,0.07);
  --vi:    #6c47ff;
  --vi2:   #5538d9;
  --vi3:   rgba(108,71,255,0.12);
  --vi4:   rgba(108,71,255,0.06);
  --text:  #f0f6ff;
  --mid:   #c2cfe0;
  --muted: #8096b0;
  --max:   1080px;
  --f: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: var(--f); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; min-width: 0; }
a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; display: block; }
.w { max-width: var(--max); margin: 0 auto; padding: 0 36px; }

/* ─── NAV ─────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,15,30,0.96); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line2);
}
.nav-i {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 12px; min-width: 0;
}
.logo { font-size: 1.05rem; font-weight: 800; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 10px; flex-shrink: 0; white-space: nowrap; }
.logo-mark { width: 32px; height: 32px; background: var(--vi); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nav-ul { display: flex; gap: 28px; list-style: none; }
.nav-ul a { font-size: 0.9rem; font-weight: 500; color: var(--mid); text-decoration: none; letter-spacing: .01em; transition: color .2s; white-space: nowrap; }
.nav-ul a:hover { color: var(--text); }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-outline-nav { font-size: 0.88rem; font-weight: 600; color: var(--vi); background: transparent; border: 1.5px solid rgba(108,71,255,.4); padding: 8px 18px; text-decoration: none; border-radius: 6px; white-space: nowrap; transition: all .2s; }
.btn-outline-nav:hover { background: var(--vi3); border-color: var(--vi); }
.btn-primary-nav { font-size: 0.88rem; font-weight: 700; color: #fff; background: var(--vi); padding: 9px 22px; text-decoration: none; border-radius: 6px; white-space: nowrap; transition: background .2s; }
.btn-primary-nav:hover { background: var(--vi2); }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* ─── MOBILE MENU ─────────────────────── */
.mob { display: none; position: fixed; top: 99px; left: 0; right: 0; bottom: 0; background: rgba(10,15,30,.98); backdrop-filter: blur(20px); z-index: 99; flex-direction: column; padding: 32px 28px; gap: 4px; overflow-y: auto; border-top: 1px solid rgba(108,71,255,.25); }
.mob.open { display: flex; }
.mob a { font-size: 1.05rem; font-weight: 500; color: var(--text); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--line2); display: flex; justify-content: space-between; transition: color .2s; }
.mob a:hover { color: var(--vi); }
.mob a:last-of-type { border-bottom: none; }
.mob-dl { margin-top: 16px; background: var(--vi) !important; color: #fff !important; font-weight: 700 !important; border-radius: 6px; text-align: center; justify-content: center !important; border-bottom: none !important; }

/* ─── BUTTONS (global) ─────────────────── */
.btn-dl {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f); font-size: 0.95rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: #fff; background: var(--vi); border: 2px solid var(--vi);
  padding: 14px 32px; text-decoration: none; border-radius: 8px; white-space: nowrap; transition: background .2s, border-color .2s;
}
.btn-dl:hover { background: var(--vi2); border-color: var(--vi2); }
.btn-tg {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f); font-size: 0.95rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
  color: #fff; background: #229ed9; border: 2px solid #229ed9;
  padding: 14px 28px; text-decoration: none; border-radius: 8px; white-space: nowrap; transition: background .2s;
}
.btn-tg:hover { background: #1a8fc4; border-color: #1a8fc4; }
.btn-sec {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--f); font-size: 0.95rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  color: var(--vi); background: transparent; border: 2px solid rgba(108,71,255,.4);
  padding: 13px 28px; text-decoration: none; border-radius: 8px; white-space: nowrap; transition: all .2s;
}
.btn-sec:hover { background: var(--vi3); border-color: var(--vi); }

/* ─── HERO ─────────────────────────────── */
#hero { position: relative; overflow: hidden; padding: 80px 36px 0; min-height: 92vh; display: flex; flex-direction: column; }
.hero-glow { position: absolute; top: -5%; left: -10%; width: 60%; height: 80%; background: radial-gradient(ellipse, rgba(108,71,255,.1) 0%, transparent 65%); pointer-events: none; }
.hero-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(108,71,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(108,71,255,.04) 1px, transparent 1px); background-size: 52px 52px; mask-image: radial-gradient(ellipse 80% 80% at 30% 40%, #000 30%, transparent 100%); }
.hero-inner { max-width: var(--max); margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; z-index: 1; flex: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--vi3); border: 1px solid rgba(108,71,255,.35); color: var(--vi); font-size: 0.88rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 20px; }
.badge-pulse { width: 6px; height: 6px; background: var(--vi); border-radius: 50%; animation: pulse 1.5s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 16px; }
.hero-bullets { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.hero-bullet { display: flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 500; color: var(--mid); }
.hb-dot { width: 26px; height: 26px; background: var(--vi3); border: 1.5px solid rgba(108,71,255,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: var(--vi); flex-shrink: 0; }
.hero-btns { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; width: fit-content; max-width: 100%; }
.hero-btns-row { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-btns > .btn-dl { width: 100%; }
/* image */
.hero-img-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-img-glow { position: absolute; width: 70%; height: 70%; background: radial-gradient(ellipse, rgba(108,71,255,.18), transparent 70%); border-radius: 50%; }
.hero-img { border-radius: 16px; border: 1px solid var(--line); position: relative; z-index: 1; width: 100%; max-width: 440px; }
/* stats */
.hero-stats { width: 100%; max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line2); display: grid; grid-template-columns: repeat(4,1fr); margin-top: 56px; position: relative; z-index: 1; }
.hs { padding: 22px 16px; text-align: center; border-right: 1px solid var(--line2); }
.hs:last-child { border-right: none; }
.hs-n { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.hs-n em { font-style: normal; color: var(--vi); }
.hs-l { font-size: 0.88rem; font-weight: 500; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ─── SECTION COMMONS ──────────────────── */
section { border-bottom: 1px solid var(--line2); }
.sec-h { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: #fff; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 12px; }
.sec-d { font-size: 1rem; color: var(--mid); line-height: 1.75; max-width: 560px; }

/* ─── PLATFORMS ─────────────────────────── */
#platforms { background: var(--bg2); padding: 60px 36px; }
.plat-wrap { max-width: var(--max); margin: 0 auto; text-align: center; }
.plat-grid { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 36px; }
.plat-pill { display: flex; align-items: center; gap: 9px; background: var(--card); border: 1px solid var(--line2); border-radius: 100px; padding: 10px 20px; font-size: 0.95rem; font-weight: 600; color: var(--mid); white-space: nowrap; transition: all .2s; }
.plat-pill:hover { border-color: rgba(108,71,255,.4); color: var(--text); }
.plat-ico { width: 22px; height: 22px; border-radius: 5px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ─── FEATURES ──────────────────────────── */
#features { background: var(--bg); padding: 80px 36px; }
.feat-wrap { max-width: var(--max); margin: 0 auto; }
.feat-head { margin-bottom: 48px; }
.feat-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line2); border: 1px solid var(--line2); }
.fc { background: var(--bg2); padding: 32px 28px; display: flex; gap: 18px; transition: background .2s; position: relative; }
.fc::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--vi); transform:scaleX(0); transform-origin:left; transition:transform .3s; }
.fc:hover { background: var(--bg3); }
.fc:hover::after { transform: scaleX(1); }
.fc-ico { width: 44px; height: 44px; background: var(--vi3); border: 1px solid rgba(108,71,255,.3); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.fc-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.3; }
.fc-text { font-size: 0.94rem; color: var(--mid); line-height: 1.7; }

/* ─── HOW IT WORKS ──────────────────────── */
#how { background: var(--bg2); padding: 80px 36px; }
.how-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.how-right { display: flex; flex-direction: column; gap: 0; margin-top: 8px; }
.how-step { display: flex; gap: 16px; padding: 24px 0; border-bottom: 1px solid var(--line2); }
.how-step:last-child { border-bottom: none; }
.hs-num { width: 36px; height: 36px; background: var(--vi3); border: 1.5px solid rgba(108,71,255,.35); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: var(--vi); flex-shrink: 0; margin-top: 1px; }
.hs-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.hs-desc { font-size: 0.92rem; color: var(--mid); line-height: 1.65; }
.hs-tag { display: inline-block; margin-top: 8px; font-size: 0.88rem; font-weight: 700; color: var(--vi); background: var(--vi3); border: 1px solid rgba(108,71,255,.2); padding: 2px 10px; border-radius: 4px; }

/* ─── PRICING ────────────────────────────── */
#pricing { background: var(--bg); padding: 80px 36px; }
.pr-wrap { max-width: var(--max); margin: 0 auto; }
.pr-note { background: var(--vi4); border-left: 3px solid var(--vi); padding: 16px 20px; border-radius: 0 6px 6px 0; margin-bottom: 32px; }
.pr-note p { font-size: 0.96rem; color: var(--mid); line-height: 1.75; }
.pr-note strong { color: var(--text); font-weight: 600; }
.pr-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line2); border: 1px solid var(--line2); margin-bottom: 32px; }
.prs { background: var(--bg2); padding: 24px 20px; }
.prs-n { font-size: 2.2rem; font-weight: 800; color: rgba(108,71,255,.45); line-height: 1; margin-bottom: 10px; }
.prs-t { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.prs-d { font-size: 0.9rem; color: var(--mid); line-height: 1.6; }
.ptbl { width: 100%; border-collapse: collapse; min-width: 520px; }
.ptbl th { font-size: 0.88rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--mid); text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line2); }
.ptbl td { font-size: 0.95rem; color: var(--mid); padding: 14px 16px; border-bottom: 1px solid var(--line2); }
.ptbl tr:last-child td { border-bottom: none; }
.ptbl tr.hl td { background: var(--vi4); }
.ptbl tr:hover td { background: rgba(255,255,255,.02); }
.pcost { color: var(--vi); font-weight: 700; }
.pr-cta { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── REVIEWS ────────────────────────────── */
#reviews { background: var(--bg2); padding: 80px 36px; }
.rev-wrap { max-width: var(--max); margin: 0 auto; }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.rc { background: var(--card); border: 1px solid var(--line2); border-radius: 10px; padding: 26px; transition: border-color .2s, transform .2s; position: relative; }
.rc:hover { border-color: rgba(108,71,255,.35); transform: translateY(-2px); }
.rc-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.rc-star { color: #f59e0b; font-size: 0.9rem; }
.rc-text { font-size: 0.95rem; color: var(--mid); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.rc-user { display: flex; align-items: center; gap: 10px; }
.rc-av { width: 36px; height: 36px; background: var(--vi3); border: 1.5px solid rgba(108,71,255,.35); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: var(--vi); flex-shrink: 0; }
.rc-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.rc-meta { font-size: 0.88rem; color: var(--muted); }

/* ─── BLOG ───────────────────────────────── */
#blog { background: var(--bg); padding: 80px 36px; }
.blog-wrap { max-width: var(--max); margin: 0 auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.bc { background: var(--card); border: 1px solid var(--line2); border-radius: 10px; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.bc:hover { border-color: rgba(108,71,255,.35); transform: translateY(-2px); }
.bc-ph { width: 100%; height: 164px; display: flex; align-items: center; justify-content: center; }
.bc-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.bc-tag { font-size: 0.88rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--vi); }
.bc-date { font-size: 0.88rem; color: var(--muted); }
.bc-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.bc-title { font-size: 0.98rem; font-weight: 700; color: #fff; line-height: 1.4; margin-bottom: 8px; }
.bc-desc { font-size: 0.9rem; color: var(--mid); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.bc-read { font-size: 0.88rem; color: var(--vi); font-weight: 600; }

/* ─── INSTALL ────────────────────────────── */
#how-to-install { background: var(--bg2); padding: 80px 36px; }
.inst-wrap { max-width: var(--max); margin: 0 auto; }
.inst-tabs { display: flex; gap: 0; border: 1px solid var(--line2); margin-bottom: 32px; width: fit-content; }
.itab { padding: 10px 26px; font-size: 0.9rem; font-weight: 600; color: var(--muted); background: transparent; border: none; cursor: pointer; font-family: var(--f); transition: all .2s; border-right: 1px solid var(--line2); }
.itab:last-child { border-right: none; }
.itab.active { background: var(--vi); color: #fff; font-weight: 700; }
.inst-content { display: none; }
.inst-content.active { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line2); border: 1px solid var(--line2); }
.is { background: var(--bg); padding: 26px 24px; display: flex; gap: 16px; }
.is-n { width: 32px; height: 32px; background: var(--vi3); border: 1.5px solid rgba(108,71,255,.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 800; color: var(--vi); flex-shrink: 0; margin-top: 2px; }
.is-t { font-size: 0.96rem; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.is-d { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }
.is-d ul { margin: 8px 0 0 18px; }
.is-d ul li { margin-bottom: 5px; font-size: 0.88rem; }

/* ─── FAQ ────────────────────────────────── */
#faq { background: var(--bg); padding: 80px 36px; }
.faq-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--line2); }
.faq-q { width: 100%; background: none; border: none; text-align: left; padding: 18px 0; font-family: var(--f); font-size: 0.98rem; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color .2s; }
.faq-q:hover { color: var(--vi); }
.faq-chev { flex-shrink: 0; color: var(--muted); transition: transform .25s, color .2s; }
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--vi); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-in { padding: 0 0 18px; font-size: 0.94rem; color: var(--mid); line-height: 1.8; }
/* about panel */
.faq-about { background: var(--card); border: 1px solid var(--line2); border-radius: 10px; padding: 32px; }
.faq-about h3 { font-size: 1.4rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -.01em; line-height: 1.2; }
.faq-about p { font-size: 0.94rem; color: var(--mid); line-height: 1.75; margin-bottom: 14px; }
.faq-about p:last-of-type { margin-bottom: 24px; }

/* ─── ABOUT (SEO text) ───────────────────── */
#about { background: var(--bg2); padding: 80px 36px; }
.about-wrap { max-width: 760px; margin: 0 auto; }
.about-wrap h2 { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -.015em; margin-bottom: 14px; line-height: 1.25; }
.about-wrap p { font-size: 0.98rem; color: var(--mid); line-height: 1.8; margin-bottom: 16px; }
.about-wrap ul { margin: 0 0 16px 20px; }
.about-wrap ul li { font-size: 0.98rem; color: var(--mid); line-height: 1.75; margin-bottom: 8px; }
.about-wrap ul li::marker { color: var(--vi); }

/* ─── CONTACT ────────────────────────────── */
#contact-us { background: var(--bg); padding: 80px 36px; }
.ct-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.ct-left h2 { font-size: 2rem; font-weight: 800; color: #fff; letter-spacing: -.02em; margin-bottom: 12px; line-height: 1.15; }
.ct-left p { font-size: 0.98rem; color: var(--mid); line-height: 1.75; margin-bottom: 28px; }
.ct-items { display: flex; flex-direction: column; gap: 12px; }
.ct-item { display: flex; align-items: center; gap: 14px; padding: 16px 18px; background: var(--card); border: 1px solid var(--line2); border-radius: 8px; }
.ct-item-label { font-size: 0.88rem; color: var(--muted); margin-bottom: 2px; }
.ct-item-val { font-size: 0.98rem; font-weight: 700; color: #fff; }
.ct-item-val a { color: #fff; text-decoration: none; }
.ct-card { background: var(--card); border: 1px solid var(--line2); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; }
.ct-card-bar { height: 3px; background: linear-gradient(90deg, var(--vi), rgba(108,71,255,.15)); }
.ct-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ct-card-body h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ct-card-body p { font-size: 0.92rem; color: var(--mid); line-height: 1.65; margin-bottom: 20px; }
.ct-checklist { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; flex: 1; }
.ct-check { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--mid); }

/* ─── FOOTER ─────────────────────────────── */
footer { background: var(--bg2); border-top: 1px solid var(--line2); padding: 32px 36px; }
.ft { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.ft-logo { font-size: 1rem; font-weight: 800; color: #fff; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.ft-links { display: flex; gap: 20px; flex-wrap: wrap; }
.ft-links a { font-size: 0.88rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.ft-links a:hover { color: var(--vi); }
.ft-copy { font-size: 0.88rem; color: var(--muted); }

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:900px){
  nav .nav-ul, nav .nav-right { display: none; }
  .burger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img-wrap { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .feat-grid { grid-template-columns: 1fr; }
  .how-wrap { grid-template-columns: 1fr; }
  .pr-steps { grid-template-columns: repeat(2,1fr); }
  .rev-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .inst-content.active { grid-template-columns: 1fr; }
  .faq-wrap { grid-template-columns: 1fr; }
  .ct-wrap { grid-template-columns: 1fr; }
  .ft { flex-direction: column; align-items: flex-start; }
}
@media(max-width:600px){
  .about-wrap [style*="grid-template-columns:repeat(3"]{grid-template-columns:1fr!important}
  .about-wrap [style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr!important}
  body { overflow-x: hidden; }
  .hero-inner { gap: 28px; grid-template-columns: 1fr !important; }
  .hero-inner > div:first-child { width: 100%; display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-bullets { width: 100%; align-items: flex-start; text-align: left; }
  .hero-btns { width: 100%; align-items: stretch; }
  .hero-btns > .btn-dl { width: 100% !important; justify-content: center; }
  .hero-btns-row { width: 100%; flex-direction: column; }
  .hero-btns-row a { width: 100% !important; justify-content: center; }
  .hero-btns > a { width: 100% !important; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .pr-steps { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  #hero, #platforms, #features, #how, #pricing, #reviews, #blog, #how-to-install, #faq, #about, #contact-us { padding: 56px 20px; }
  footer { padding: 28px 20px; }
  .nav-i { padding: 0 16px; }
  .ft-links { flex-wrap: wrap; gap: 12px; }
}
@media(prefers-reduced-motion:reduce){ *{ animation:none!important; transition:none!important } }
@media(max-width:900px){
  .about-wrap > div[style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr 1fr !important; }
  .about-wrap > div[style*="grid-template-columns:1fr 1fr"] { grid-template-columns: 1fr !important; }
}

/* ─── RESPONSIBLE GAMING RIBBON ── */
.rg-ribbon{background:#0d1222;border-bottom:1px solid rgba(108,71,255,.2);padding:7px 36px;display:flex;align-items:center;justify-content:center;gap:10px;position:sticky;top:0;z-index:101}
.rg-badge{background:var(--vi);color:#fff;font-size:0.78rem;font-weight:800;padding:2px 8px;border-radius:4px;letter-spacing:.04em;flex-shrink:0}
.rg-text{font-size:0.82rem;color:var(--muted);text-align:center}
@media(max-width:600px){.rg-ribbon{padding:7px 16px}.rg-text{font-size:0.78rem}}


/* ─── FOOTER DISCLAIMER ─────────────────── */
.ft-disclaimer{border-top:1px solid var(--line2);padding:20px 36px;background:rgba(0,0,0,.2)}
.ft-disclaimer-inner{max-width:var(--max);margin:0 auto;display:flex;gap:14px;align-items:flex-start}
.ft-18{background:var(--vi);color:#fff;font-size:0.78rem;font-weight:800;padding:2px 8px;border-radius:4px;flex-shrink:0;margin-top:2px;letter-spacing:.04em}
.ft-disclaimer p{font-size:0.84rem;color:var(--muted);line-height:1.7}
.ft-disclaimer a{color:var(--vi);text-decoration:none}
.ft-disclaimer a:hover{text-decoration:underline}
@media(max-width:600px){.ft-disclaimer{padding:18px 20px}}




#comments {
	display: none;
}

/* ========== ОСНОВНЫЕ СТИЛИ ДЛЯ МЕНЮ ЯЗЫКОВ ========== */
#primary-menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

#primary-menu > .pll-parent-menu-item {
    position: relative;
    list-style: none;
}

/* Кнопка переключателя (RU, EN и т.д.) */
#primary-menu > .pll-parent-menu-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Стрелка вниз */
#primary-menu > .pll-parent-menu-item > a:after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

/* При наведении */
#primary-menu > .pll-parent-menu-item:hover > a {
    background: rgba(255, 255, 255, 0.4);
}

/* Выпадающий список (десктоп - при наведении) */
#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0; /* Выравниваем по правому краю */
    min-width: 100px;
    background: #d9f1fe;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 0;
    margin: 5px 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
}

/* Показываем подменю при наведении (десктоп) */
#primary-menu > .pll-parent-menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Стили для пунктов выпадающего списка */
#primary-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

#primary-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#primary-menu .sub-menu li a:hover {
    background: rgba(255, 215, 225, 0.15);
    color: var(--gold, #6d8efe);
}

/* Активный язык (текущий) */
#primary-menu .sub-menu .current-lang a {
    color: var(--gold, #6d8efe);
    background: rgba(255, 215, 225, 0.1);
    position: relative;
}

#primary-menu .sub-menu .current-lang a:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: var(--gold, #6d8efe);
}

/* ========== МОБИЛЬНАЯ ВЕРСИЯ ========== */
@media (max-width: 768px) {
	#primary-menu {
	margin-left: auto;
}
        #primary-menu > .pll-parent-menu-item {
        width: 100%;
    }
    
    #primary-menu > .pll-parent-menu-item > a {
        justify-content: space-between;
        background: rgba(255, 255, 255, 0.05);
    }
    
    /* Скрываем подменю по умолчанию на мобилке */
    #primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.03);
        margin-top: 5px;
        margin-bottom: 10px;
        padding: 5px 0;
        border-left: 2px solid rgba(255, 215, 0, 0.3);
        display: none; /* Скрыто по умолчанию */
    }
    
    /* Показываем подменю когда есть класс .open */
    #primary-menu > .pll-parent-menu-item.open .sub-menu {
        display: block;
		position: absolute;
background: white;
border: none;
    }
    
    /* Стили для пунктов в мобильной версии */
    #primary-menu .sub-menu li a {
        padding: 10px 20px 10px 30px;
        white-space: normal;
    }
    
    /* Убираем эффект при наведении на мобилке */
    #primary-menu .sub-menu li a:hover {
        padding-left: 30px;
    }
    
    /* Анимация стрелки при открытии */
    #primary-menu > .pll-parent-menu-item.open > a:after {
        transform: rotate(180deg);
    }
}

/* ========== АДАПТАЦИЯ ДЛЯ ПЛАНШЕТОВ ========== */
@media (min-width: 769px) and (max-width: 1024px) {
    #primary-menu .sub-menu {
        right: 0;
    }
}


.entry-header {
	margin-bottom: 32px;
}


.type-post {
	padding-top: 60px;
}

.type-post h1 {
	font-size: 36px;
	margin-bottom: 16px;
}
.type-post h2 {
	font-size: 28px;
	margin: 16px 0;
	display: block;
}
.type-post h3 {
	font-size: 24px;
	margin: 16px 0;
	display: block;
}

.skip-link {
display: none;
}