@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --c-nav: #1f1a2b;
  --c-nav-2: #261f38;
  --c-bg: #0e0a18;
  --c-bg-card: #18122e;
  --c-bg-card2: #201840;
  --c-green: #9ccc65;
  --c-green-h: #aad678;
  --c-gold: #ffb300;
  --c-gold-h: #ffc234;
  --c-text: #e8e0f5;
  --c-text-muted: #a090c0;
  --c-border: #2e2450;
  --c-plus: #9ccc65;
  --c-minus: #f06292;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --trans: .22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--c-bg); }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-green); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--c-green-h); }

img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: .6em;
  text-wrap: balance;
}
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.x9f2k { display: none; height: 0; overflow: hidden; }
.wp3r7 { visibility: hidden; position: absolute; width: 0; height: 0; }
.p8qz1 { opacity: 0; pointer-events: none; position: absolute; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.container--wide { max-width: 1440px; }

.box { border-radius: var(--radius); }

.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: 50px; font-size: .9rem;
  font-weight: 600; cursor: pointer; border: none; outline: none;
  text-decoration: none; transition: transform var(--trans), box-shadow var(--trans), background var(--trans), color var(--trans);
  white-space: nowrap; line-height: 1.2; font-family: 'Poppins', sans-serif;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0);
  transition: background var(--trans);
}
.btn:hover::after { background: rgba(255,255,255,.08); }
.btn:active { transform: scale(.97); }

.btn--green {
  background: var(--c-green); color: #0e0a18;
  box-shadow: 0 4px 18px rgba(156,204,101,.35);
}
.btn--green:hover { background: var(--c-green-h); box-shadow: 0 6px 24px rgba(156,204,101,.55); transform: translateY(-2px); color: #0e0a18; }

.btn--gold {
  background: var(--c-gold); color: #0e0a18;
  box-shadow: 0 4px 18px rgba(255,179,0,.35);
}
.btn--gold:hover { background: var(--c-gold-h); box-shadow: 0 6px 24px rgba(255,179,0,.55); transform: translateY(-2px); color: #0e0a18; }

.btn--outline {
  background: transparent; color: var(--c-green);
  border: 2px solid var(--c-green);
}
.btn--outline:hover { background: var(--c-green); color: #0e0a18; transform: translateY(-2px); }

.btn--lg { padding: 14px 32px; font-size: 1rem; }
.btn--sm { padding: 7px 16px; font-size: .8rem; }
.btn--pulse { animation: pulse-btn 2.5s infinite; }

@keyframes pulse-btn {
  0%,100% { box-shadow: 0 4px 18px rgba(255,179,0,.35); }
  50% { box-shadow: 0 4px 30px rgba(255,179,0,.75); }
}

.site-header {
  background: var(--c-nav);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(156,204,101,.12);
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 12px 0; flex-wrap: wrap;
}
.header-logo img { height: 60px; width: auto; }
.header-logo { flex-shrink: 0; }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 8px;
  color: var(--c-text-muted); font-size: .88rem; font-weight: 500;
  transition: color var(--trans), background var(--trans);
}
.header-nav a:hover, .header-nav a.active { color: var(--c-green); background: rgba(156,204,101,.08); }
.header-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.burger {
  display: none; width: 40px; height: 40px; flex-direction: column;
  justify-content: center; align-items: center; gap: 5px;
  background: transparent; border: none; cursor: pointer; padding: 4px;
  border-radius: 8px; transition: background var(--trans);
}
.burger:hover { background: rgba(255,255,255,.07); }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--c-text); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--c-nav); padding: 80px 24px 32px;
  flex-direction: column; gap: 6px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 18px; border-radius: var(--radius-sm);
  color: var(--c-text); font-size: 1rem; font-weight: 500;
  transition: background var(--trans), color var(--trans);
  border: 1px solid transparent;
}
.mobile-menu a:hover { background: rgba(156,204,101,.1); color: var(--c-green); border-color: rgba(156,204,101,.2); }
.mobile-menu svg { width: 20px; height: 20px; flex-shrink: 0; }
.mobile-menu-actions { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu-actions .btn { width: 100%; justify-content: center; }
.mobile-close {
  position: fixed; top: 18px; right: 20px;
  background: rgba(255,255,255,.07); border: none; cursor: pointer;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text); font-size: 1.4rem; z-index: 1000;
  transition: background var(--trans);
}
.mobile-close:hover { background: rgba(255,255,255,.15); }

.hero-section {
  position: relative; overflow: hidden;
  padding: 0;
  background: var(--c-nav);
}
.hero-banner {
  position: relative; min-height: 360px;
  background: url('/hero-banner.png') center/cover no-repeat;
  display: flex; align-items: center;
}
.hero-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(14,10,24,.92) 0%, rgba(14,10,24,.6) 60%, rgba(14,10,24,.3) 100%);
}
.hero-banner-inner {
  position: relative; z-index: 1; padding: 48px 0;
  max-width: 580px;
}
.hero-banner-inner .h1-tag { font-size: clamp(1.6rem,3.5vw,2.5rem); color: #fff; margin-bottom: .4em; }
.hero-intro { color: var(--c-text-muted); font-size: 1rem; margin-bottom: 1.6em; max-width: 460px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.spoiler-toggle {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 1em;
  color: var(--c-text-muted); font-size: .85rem; cursor: pointer;
  background: none; border: none; font-family: 'Poppins',sans-serif;
  transition: color var(--trans);
}
.spoiler-toggle:hover { color: var(--c-green); }
.spoiler-toggle svg { transition: transform var(--trans); }
.spoiler-toggle.is-open svg { transform: rotate(180deg); }
.spoiler-content { overflow: hidden; max-height: 0; transition: max-height .4s ease; }
.spoiler-content.is-open { max-height: 400px; }
.spoiler-inner { padding: .8em 0; color: var(--c-text-muted); font-size: .92rem; }

.hero-main {
  padding: 40px 0 60px;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 32px; align-items: start;
}
.hero-grid--single { grid-template-columns: 1fr; max-width: 600px; }
.demo-block {
  background: var(--c-bg-card); border-radius: var(--radius);
  border: 1px solid var(--c-border);
  overflow: hidden; box-shadow: var(--shadow);
}
.demo-frame-wrap {
  position: relative; width: 100%;
  padding-top: 75%;
  background: #000;
  overflow: hidden;
}
.demo-frame-wrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none;
}
.demo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #1a1030 0%, #0e0a18 100%);
  color: var(--c-text-muted); gap: 12px;
  cursor: pointer; transition: background var(--trans);
}
.demo-placeholder:hover { background: linear-gradient(135deg, #201840 0%, #18122e 100%); }
.demo-placeholder-icon { font-size: 3rem; filter: drop-shadow(0 0 12px rgba(156,204,101,.5)); }
.demo-placeholder-text { font-size: 1rem; font-weight: 600; color: var(--c-green); }
.demo-actions {
  display: flex; gap: 10px; padding: 14px 16px;
  background: rgba(0,0,0,.3); flex-wrap: wrap; justify-content: center;
}
.demo-age {
  text-align: center; padding: 8px 16px 12px;
  font-size: .78rem; color: var(--c-text-muted);
  border-top: 1px solid rgba(255,255,255,.05);
}
.demo-age strong { color: var(--c-gold); }

.info-table-block {
  background: var(--c-bg-card); border-radius: var(--radius);
  border: 1px solid var(--c-border); overflow: hidden;
  box-shadow: var(--shadow);
}
.info-table-title {
  padding: 16px 20px; font-size: 1rem; font-weight: 700;
  background: rgba(0,0,0,.25); border-bottom: 1px solid var(--c-border);
  color: #fff;
}
.info-table {
  width: 100%; border-collapse: collapse;
}
.info-table tr { border-bottom: 1px solid rgba(255,255,255,.05); }
.info-table tr:last-child { border-bottom: none; }
.info-table td {
  padding: 10px 16px; font-size: .88rem;
  vertical-align: middle;
}
.info-table td:first-child {
  color: var(--c-text-muted); font-weight: 500;
  width: 46%; display: flex; align-items: center; gap: 8px;
}
.info-table td:last-child { color: var(--c-text); font-weight: 600; }
.info-table tr:nth-child(odd) td { background: rgba(255,255,255,.015); }
.info-table svg { flex-shrink: 0; }

.breadcrumbs-row {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumbs {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; list-style: none;
  font-size: .83rem;
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); }
.breadcrumbs li a { color: var(--c-text-muted); }
.breadcrumbs li a:hover { color: var(--c-green); }
.breadcrumbs li.active { color: var(--c-green); font-weight: 500; }
.breadcrumbs-sep { opacity: .4; }

.content-section { padding: 60px 0; }
.section-title {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 1.4em;
}
.section-title svg { color: var(--c-gold); flex-shrink: 0; }
.section-title-line { flex: 1; height: 1px; background: var(--c-border); }

.toc-block {
  background: var(--c-bg-card); border-radius: var(--radius);
  border: 1px solid var(--c-border); padding: 28px 28px;
  margin-bottom: 40px; box-shadow: var(--shadow);
}
.toc-title { font-size: 1.1rem; margin-bottom: 1em; display: flex; align-items: center; gap: 8px; }
.toc-list { list-style: none; columns: 2; gap: 24px; }
.toc-list li { break-inside: avoid; margin-bottom: 6px; }
.toc-list a {
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--c-text-muted); font-size: .88rem; font-weight: 500;
  transition: color var(--trans);
  padding: 4px 0;
}
.toc-list a:hover { color: var(--c-green); }
.toc-list svg { margin-top: 2px; flex-shrink: 0; }

.demo-section-block { margin-bottom: 48px; }
.demo-section-frame {
  background: var(--c-bg-card); border-radius: var(--radius);
  border: 1px solid var(--c-border); overflow: hidden;
  box-shadow: var(--shadow); max-width: 820px; margin: 0 auto;
}

.pros-cons-block { margin-bottom: 48px; }
.pros-cons-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros-card, .cons-card {
  border-radius: var(--radius); padding: 24px;
  border: 1px solid; overflow: hidden;
}
.pros-card {
  background: rgba(156,204,101,.06);
  border-color: rgba(156,204,101,.25);
}
.cons-card {
  background: rgba(240,98,146,.06);
  border-color: rgba(240,98,146,.25);
}
.pros-cons-title {
  display: flex; align-items: center; gap: 10px;
  font-size: 1rem; font-weight: 700; margin-bottom: 1em;
}
.pros-cons-title.pros { color: var(--c-plus); }
.pros-cons-title.cons { color: var(--c-minus); }
.pros-cons-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-cons-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: var(--c-text); line-height: 1.5;
}
.pros-cons-list li::before {
  content: ''; flex-shrink: 0; margin-top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem;
}
.pros-card .pros-cons-list li::before {
  background: rgba(156,204,101,.2); color: var(--c-plus);
  content: '✓';
}
.cons-card .pros-cons-list li::before {
  background: rgba(240,98,146,.2); color: var(--c-minus);
  content: '✕';
}

.screenshots-block { margin-bottom: 48px; }
.screenshots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.screenshot-item {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer; transition: transform var(--trans), box-shadow var(--trans);
  position: relative;
}
.screenshot-item:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.5); }
.screenshot-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.screenshot-overlay {
  position: absolute; inset: 0;
  background: rgba(14,10,24,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
}
.screenshot-item:hover .screenshot-overlay { background: rgba(14,10,24,.5); }
.screenshot-overlay svg { opacity: 0; transition: opacity var(--trans); color: #fff; }
.screenshot-item:hover .screenshot-overlay svg { opacity: 1; }

.screenshots-slider { display: none; }

.review-block {
  margin-bottom: 48px;
  background: var(--c-bg-card); border-radius: var(--radius);
  border: 1px solid var(--c-border); padding: 32px 32px;
  box-shadow: var(--shadow);
}
.review-content { font-size: .95rem; line-height: 1.75; }
.review-content h2, .review-content h3 { color: #fff; margin-top: 1.5em; }
.review-content p { color: var(--c-text); margin-bottom: 1em; }
.review-content ul, .review-content ol { padding-left: 1.5em; margin-bottom: 1em; color: var(--c-text); }
.review-content li { margin-bottom: .4em; }
.review-content a { color: var(--c-green); }
.review-content a:hover { color: var(--c-green-h); }
.review-content table {
  width: 100%; border-collapse: collapse; margin: 1.5em 0;
  overflow-x: auto; display: block;
}
.review-content table thead th {
  background: var(--c-nav); color: #fff; font-weight: 600;
  padding: 12px 16px; text-align: left; font-size: .88rem;
  border: 1px solid var(--c-border);
}
.review-content table tbody td {
  padding: 10px 16px; border: 1px solid var(--c-border);
  font-size: .88rem; color: var(--c-text);
}
.review-content table tbody tr:nth-child(odd) td { background: rgba(255,255,255,.02); }
.review-content blockquote {
  border-left: 3px solid var(--c-green); padding: .8em 1.2em;
  background: rgba(156,204,101,.05); border-radius: 0 8px 8px 0;
  margin: 1.2em 0; font-style: italic; color: var(--c-text-muted);
}
.review-content strong { color: #fff; }
.review-content code {
  background: rgba(255,255,255,.07); border-radius: 4px;
  padding: 2px 6px; font-size: .85em; color: var(--c-gold);
}
.review-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 1em 0; }

.faq-block { margin-bottom: 48px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--c-bg-card); border-radius: var(--radius);
  border: 1px solid var(--c-border); overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.is-open { border-color: rgba(156,204,101,.35); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer; gap: 12px;
  font-weight: 600; font-size: .95rem; color: #fff;
  user-select: none; transition: background var(--trans);
  background: none; border: none; width: 100%; text-align: left;
  font-family: 'Poppins', sans-serif;
}
.faq-question:hover { background: rgba(255,255,255,.03); }
.faq-arrow {
  flex-shrink: 0; width: 24px; height: 24px;
  border-radius: 50%; background: rgba(156,204,101,.1);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans), transform var(--trans);
  color: var(--c-green);
}
.faq-item.is-open .faq-arrow { background: var(--c-green); color: #0e0a18; transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 22px 18px; color: var(--c-text-muted); font-size: .92rem; line-height: 1.7; }
.faq-item.is-open .faq-answer { display: block; }

.author-block {
  margin-bottom: 48px;
  background: var(--c-bg-card); border-radius: var(--radius);
  border: 1px solid var(--c-border); padding: 28px 28px;
  box-shadow: var(--shadow);
}
.author-inner { display: flex; gap: 24px; align-items: flex-start; }
.author-photo {
  width: 88px; height: 88px; border-radius: 50%; flex-shrink: 0;
  object-fit: cover; border: 3px solid var(--c-green);
  box-shadow: 0 0 20px rgba(156,204,101,.3);
}
.author-info { flex: 1; }
.author-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.author-position { font-size: .83rem; color: var(--c-gold); font-weight: 500; margin-bottom: .6em; }
.author-bio { font-size: .88rem; color: var(--c-text-muted); line-height: 1.65; margin-bottom: .8em; }
.author-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .8rem; color: var(--c-text-muted);
}
.author-meta span { display: flex; align-items: center; gap: 5px; }
.author-social { display: flex; gap: 8px; margin-top: 10px; }
.author-social a {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted); transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.author-social a:hover { background: rgba(156,204,101,.15); border-color: var(--c-green); color: var(--c-green); }
.author-social svg { width: 16px; height: 16px; }

.site-footer {
  background: var(--c-nav); margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-main { padding: 48px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 220px 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: .83rem; color: var(--c-text-muted); line-height: 1.65; }
.footer-col-title { font-size: .88rem; font-weight: 700; color: #fff; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .83rem; color: var(--c-text-muted); transition: color var(--trans); }
.footer-links a:hover { color: var(--c-green); }
.footer-badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.footer-badge {
  background: rgba(255,255,255,.05); border: 1px solid var(--c-border);
  border-radius: 8px; padding: 6px 14px;
  font-size: .76rem; font-weight: 600; color: var(--c-text-muted);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.footer-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-payments { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.footer-payment-item {
  background: rgba(255,255,255,.05); border: 1px solid var(--c-border);
  border-radius: 6px; padding: 5px 12px;
  font-size: .76rem; font-weight: 700; color: #fff;
  letter-spacing: .02em;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted); transition: all var(--trans);
}
.footer-social a:hover { background: rgba(156,204,101,.15); border-color: var(--c-green); color: var(--c-green); }
.footer-social svg { width: 16px; height: 16px; }
.footer-provider { margin-top: 16px; display: flex; align-items: center; gap: 8px; font-size: .8rem; color: var(--c-text-muted); }
.footer-provider a { color: var(--c-text-muted); }
.footer-provider a:hover { color: var(--c-green); }
.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.05);
  font-size: .78rem; color: var(--c-text-muted);
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap;
  justify-content: space-between;
}
.footer-legal { max-width: 700px; line-height: 1.6; }
.footer-legal a { color: var(--c-text-muted); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--c-green); }
.footer-copy { white-space: nowrap; }

.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.88); display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: fixed; top: 20px; right: 20px; z-index: 10000;
  background: rgba(255,255,255,.1); border: none; color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.4rem; transition: background var(--trans);
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

.text-muted { color: var(--c-text-muted); }
.text-gold { color: var(--c-gold); }
.text-green { color: var(--c-green); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }

.info-page-content { padding: 48px 0; max-width: 820px; }
.info-page-content h2 { margin-top: 1.8em; }
.info-page-content h3 { margin-top: 1.4em; color: var(--c-green); }
.info-page-content p { color: var(--c-text); }
.info-page-content ul, .info-page-content ol { padding-left: 1.5em; margin-bottom: 1em; color: var(--c-text); }
.info-page-content li { margin-bottom: .4em; }
.info-page-content a { color: var(--c-green); }

.wp-content-dummy { display: none; }
.elementor-section { display: none; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

.swiper-screenshots { display: none; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .info-table-block { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .toc-list { columns: 1; }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .header-actions .btn { display: none; }
  .burger { display: flex; }
  .screenshots-grid { display: none; }
  .screenshots-slider { display: block; }
  .pros-cons-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-banner { min-height: 260px; }
  .hero-banner-inner { padding: 32px 0; }
  .demo-section-frame { max-width: 100%; }
  .author-inner { flex-direction: column; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-social { justify-content: center; }
  .footer-bottom { flex-direction: column; }
  .review-block { padding: 20px 16px; }
  .toc-block { padding: 20px 16px; }
  .author-block { padding: 20px 16px; }
  .faq-question { font-size: .9rem; padding: 15px 16px; }
  .faq-answer { padding: 0 16px 14px; }
  .info-table td:first-child { width: 50%; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .container { padding: 0 14px; }
  .hero-cta { gap: 8px; }
  .btn--lg { padding: 12px 22px; font-size: .9rem; }
  .content-section { padding: 40px 0; }
  .hero-main { padding: 28px 0 48px; }
}

.ql9a3 { display: none; width: 0; height: 0; pointer-events: none; }
.z7mp5 { float: left; clear: both; }
.r4xn8 { word-spacing: normal; }
