*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --c-bg: #0b0c0d;
  --c-bg2: #111315;
  --c-bg3: #181a1c;
  --c-surface: #1a1c1e;
  --c-border: #2a2d30;
  --c-text: #e8e9ea;
  --c-muted: #8a9099;
  --c-accent: #bbeb00;
  --c-accent2: #d4ff1a;
  --c-btn-dark: #1f2021;
  --c-btn-dark2: #2a2d2e;
  --c-white: #ffffff;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.65);
  --font-main: "Inter", "Roboto", Arial, sans-serif;
  --font-head: "Montserrat", "Inter", Arial, sans-serif;
  --trans: 0.22s ease;
}
html {
  scroll-behavior: smooth;
  background: var(--c-bg);
}
body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color var(--trans);
}
a:hover {
  color: var(--c-accent2);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-white);
}
h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}
p {
  margin-bottom: 1rem;
}
ul,
ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
li {
  margin-bottom: 0.35rem;
}
button {
  cursor: pointer;
  font-family: var(--font-main);
}

.xw9k2 {
  display: none;
}
.mq3p7 {
  visibility: hidden;
  position: absolute;
  left: -9999px;
}
.dn4r1 {
  height: 0;
  overflow: hidden;
}

.g-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.g-sect {
  padding: 70px 0;
}
.g-sect--sm {
  padding: 48px 0;
}
.g-flex {
  display: flex;
  align-items: center;
}
.g-flex--between {
  justify-content: space-between;
}
.g-flex--center {
  justify-content: center;
}
.g-flex--col {
  flex-direction: column;
}
.g-gap8 {
  gap: 8px;
}
.g-gap12 {
  gap: 12px;
}
.g-gap16 {
  gap: 16px;
}
.g-gap24 {
  gap: 24px;
}
.g-gap32 {
  gap: 32px;
}
.g-gap40 {
  gap: 40px;
}
.g-text-center {
  text-align: center;
}
.g-mb8 {
  margin-bottom: 8px;
}
.g-mb12 {
  margin-bottom: 12px;
}
.g-mb16 {
  margin-bottom: 16px;
}
.g-mb24 {
  margin-bottom: 24px;
}
.g-mb32 {
  margin-bottom: 32px;
}
.g-mb40 {
  margin-bottom: 40px;
}
.g-mb48 {
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.3;
}
.btn--login {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--login:hover {
  background: var(--c-btn-dark2);
  color: var(--c-white);
  transform: translateY(-1px);
}
.btn--reg {
  background: var(--c-accent);
  color: #0b0c0d;
  font-weight: 700;
}
.btn--reg:hover {
  background: var(--c-accent2);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(187, 235, 0, 0.35);
}
.btn--hero {
  padding: 14px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
  background: var(--c-accent);
  color: #0b0c0d;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.btn--hero:hover {
  background: var(--c-accent2);
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(187, 235, 0, 0.45);
}
.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.sec-title {
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 10px;
}
.sec-sub {
  color: var(--c-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}
.sec-head {
  margin-bottom: 40px;
}
.accent-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--c-accent);
  border-radius: 2px;
  margin-bottom: 18px;
}

#header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.hdr-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hdr-logo img {
  height: 68px;
  width: auto;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  justify-content: center;
}
.hdr-nav a {
  color: var(--c-muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: var(--radius-xs);
  transition: all var(--trans);
}
.hdr-nav a:hover {
  color: var(--c-white);
  background: rgba(255, 255, 255, 0.06);
}
.hdr-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.hdr-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-muted);
  padding: 5px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  border: 1px solid var(--c-border);
}
.hdr-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ade80;
  box-shadow: 0 0 6px #3ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
.hdr-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.hdr-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s;
}
.hdr-burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-burger.is-open span:nth-child(2) {
  opacity: 0;
}
.hdr-burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mob-menu {
  display: none;
  position: fixed;
  top: 66px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 66px);
  background: var(--c-bg);
  z-index: 199;
  padding: 24px 20px;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  border-top: 1px solid var(--c-border);
}
.mob-menu.is-open {
  display: flex;
}
.mob-menu a {
  color: var(--c-text);
  font-size: 1rem;
  font-weight: 500;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border);
  transition: all var(--trans);
}
.mob-menu a:hover {
  background: var(--c-surface);
  color: var(--c-accent);
}
.mob-menu-btns {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.mob-menu-btns .btn {
  flex: 1;
  justify-content: center;
}

#hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(/ba.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11, 12, 13, 0.92) 0%,
    rgba(11, 12, 13, 0.65) 60%,
    rgba(11, 12, 13, 0.25) 100%
  );
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(187, 235, 0, 0.12);
  border: 1px solid rgba(187, 235, 0, 0.3);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 20px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-accent);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: 620px;
}
.hero-title span {
  color: var(--c-accent);
}
.hero-desc {
  color: #c8cdd4;
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.88rem;
  color: var(--c-muted);
}
.hero-bonus strong {
  color: var(--c-accent);
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat-val {
  font-size: 1.45rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--c-white);
}
.hero-stat-lbl {
  font-size: 0.76rem;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}
.info-table tr {
  border-bottom: 1px solid var(--c-border);
}
.info-table tr:last-child {
  border-bottom: none;
}
.info-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.info-table td {
  padding: 13px 20px;
  font-size: 0.93rem;
  line-height: 1.5;
  text-align: left;
}
.info-table td:first-child {
  color: var(--c-muted);
  font-weight: 500;
  width: 200px;
  border-right: 1px solid var(--c-border);
  white-space: nowrap;
}
.info-table td:last-child {
  color: var(--c-text);
  font-weight: 400;
}
.info-table td .tag {
  display: inline-block;
  background: rgba(187, 235, 0, 0.14);
  color: var(--c-accent);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 2px 3px 2px 0;
}

.pros-cons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.pros-block,
.cons-block {
  flex: 1;
  min-width: 260px;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.pros-block {
  border-top: 3px solid #3ade80;
}
.cons-block {
  border-top: 3px solid #f87171;
}
.pc-title {
  font-size: 1.05rem;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-title .ico {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.ico--plus {
  background: rgba(58, 222, 128, 0.15);
  color: #3ade80;
}
.ico--minus {
  background: rgba(248, 113, 113, 0.15);
  color: #f87171;
}
.pc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--c-text);
}
.pc-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.42em;
}
.pros-block .pc-list li::before {
  background: #3ade80;
}
.cons-block .pc-list li::before {
  background: #f87171;
}

.adv-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.adv-card {
  flex: 1;
  min-width: 220px;
  max-width: calc(33.33% - 12px);
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: all var(--trans);
}
.adv-card:hover {
  border-color: rgba(187, 235, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(187, 235, 0, 0.08);
}
.adv-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(187, 235, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 1.3rem;
}
.adv-title {
  font-size: 0.97rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}
.adv-text {
  font-size: 0.85rem;
  color: var(--c-muted);
  line-height: 1.55;
}

.screens-wrap {
  position: relative;
}
.screens-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.screens-grid::-webkit-scrollbar {
  height: 5px;
}
.screens-grid::-webkit-scrollbar-track {
  background: transparent;
}
.screens-grid::-webkit-scrollbar-thumb {
  background: var(--c-border);
  border-radius: 3px;
}
.screen-item {
  flex: 0 0 calc(33.33% - 11px);
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  cursor: pointer;
  transition: all var(--trans);
}
.screen-item:hover {
  border-color: rgba(187, 235, 0, 0.45);
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.screen-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.screen-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
}
.screen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  transition: all var(--trans);
  padding: 0;
}
.screen-dot.active {
  background: var(--c-accent);
  width: 22px;
  border-radius: 4px;
}

.demo-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  background: var(--c-surface);
}
.demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--c-border);
}
.demo-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.demo-badge {
  background: rgba(187, 235, 0, 0.12);
  color: var(--c-accent);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 0.76rem;
  font-weight: 700;
}
.demo-title {
  font-size: 1rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-white);
}
.demo-frame {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
  background: #000;
}

.content-block {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 40px;
}
.content-block h1,
.content-block h2,
.content-block h3,
.content-block h4,
.content-block h5,
.content-block h6 {
  font-family: var(--font-head);
  color: var(--c-white);
  margin-bottom: 0.7rem;
  margin-top: 1.8rem;
}
.content-block h1:first-child,
.content-block h2:first-child,
.content-block h3:first-child {
  margin-top: 0;
}
.content-block p {
  color: #c4c9d0;
  line-height: 1.75;
  margin-bottom: 1.1rem;
}
.content-block ul,
.content-block ol {
  color: #c4c9d0;
  margin-bottom: 1.1rem;
  padding-left: 1.5rem;
}
.content-block li {
  margin-bottom: 0.4rem;
  line-height: 1.65;
}
.content-block a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.content-block strong,
.content-block b {
  color: var(--c-white);
  font-weight: 700;
}
.content-block em,
.content-block i {
  color: var(--c-accent2);
}
.content-block blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 14px 20px;
  background: rgba(187, 235, 0, 0.06);
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  margin: 1.2rem 0;
  color: #d4d9e0;
  font-style: italic;
}
.content-block table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.91rem;
}
.content-block table th {
  background: rgba(187, 235, 0, 0.12);
  color: var(--c-accent);
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
  font-weight: 700;
}
.content-block table td {
  padding: 9px 14px;
  border: 1px solid var(--c-border);
  color: #c4c9d0;
}
.content-block table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}
.content-block hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 1.8rem 0;
}
.content-block code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.85em;
  color: var(--c-accent);
}
.content-block pre {
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-sm);
  padding: 18px;
  overflow-x: auto;
  margin: 1.2rem 0;
}
.content-block pre code {
  background: none;
  padding: 0;
  font-size: 0.88rem;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--c-bg3, #181a1c);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 28px;
}
.author-ava {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(187, 235, 0, 0.15);
  border: 2px solid rgba(187, 235, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-family: var(--font-head);
  font-weight: 900;
  color: var(--c-accent);
  flex-shrink: 0;
}
.author-info {
  flex: 1;
}
.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-white);
  margin-bottom: 2px;
}
.author-name a {
  color: var(--c-accent);
  text-decoration: none;
}
.author-name a:hover {
  text-decoration: underline;
}
.author-bio {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.5;
}
.author-badge {
  font-size: 0.74rem;
  background: rgba(187, 235, 0, 0.12);
  color: var(--c-accent);
  padding: 2px 8px;
  border-radius: 3px;
  font-weight: 600;
  margin-left: 8px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--c-surface);
  transition: border-color var(--trans);
}
.faq-item.is-open {
  border-color: rgba(187, 235, 0, 0.35);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.97rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--c-white);
  user-select: none;
  transition: color var(--trans);
}
.faq-q:hover {
  color: var(--c-accent);
}
.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(187, 235, 0, 0.1);
  border: 1px solid rgba(187, 235, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--trans);
}
.faq-icon::before {
  content: "+";
  color: var(--c-accent);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  transition: transform var(--trans);
}
.faq-item.is-open .faq-icon {
  background: var(--c-accent);
  border-color: var(--c-accent);
}
.faq-item.is-open .faq-icon::before {
  content: "−";
  color: #0b0c0d;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
    padding var(--trans);
}
.faq-a-inner {
  padding: 0 22px 20px;
  color: #b0b7c0;
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item.is-open .faq-a {
  max-height: 600px;
}

#footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 52px 0 24px;
}
.ftr-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--c-border);
}
.ftr-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ftr-col--logo {
  flex: 1.2;
  min-width: 220px;
}
.ftr-col--nav {
  flex: 1;
  min-width: 140px;
}
.ftr-col--pay {
  flex: 2;
  min-width: 240px;
}
.ftr-logo img {
  height: 34px;
  width: auto;
  margin-bottom: 6px;
}
.ftr-desc {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.6;
  max-width: 280px;
}
.ftr-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.ftr-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-nav a {
  font-size: 0.86rem;
  color: var(--c-muted);
  transition: color var(--trans);
}
.ftr-nav a:hover {
  color: var(--c-accent);
}
.pay-logos,
.prov-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.pay-logo,
.prov-logo {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--c-muted);
  letter-spacing: 0.03em;
  transition: all var(--trans);
}
.pay-logo:hover,
.prov-logo:hover {
  border-color: rgba(187, 235, 0, 0.3);
  color: var(--c-text);
}
.ftr-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.ftr-copy {
  font-size: 0.78rem;
  color: #555b62;
  line-height: 1.6;
  max-width: 700px;
}
.ftr-copy a {
  color: #666d74;
}
.ftr-copy a:hover {
  color: var(--c-muted);
}
.ftr-legal-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.legal-badge {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xs);
  padding: 6px 12px;
  font-size: 0.72rem;
  color: #555b62;
  font-weight: 600;
  text-align: center;
}

#widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: linear-gradient(90deg, #0e1000 0%, #141800 50%, #0e1000 100%);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: slide-up 0.6s 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}
@keyframes slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
.widget-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.widget-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.widget-offer {
  font-size: 1.05rem;
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--c-white);
}
.widget-offer span {
  color: var(--c-accent);
}
.widget-sub {
  font-size: 0.78rem;
  color: #8a9099;
}
.widget-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.widget-close {
  background: none;
  border: 1px solid var(--c-border);
  color: var(--c-muted);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  flex-shrink: 0;
}
.widget-close:hover {
  border-color: var(--c-text);
  color: var(--c-text);
}

.wp-content-a3f2d,
.wp-block-a8e9c,
.elementor-x2k9p,
.site-footer-xn3,
.wp-caption-z4l {
  display: none !important;
  visibility: hidden !important;
}
.entry-content-xq2 {
  margin: 0;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.anim-fiu {
  opacity: 0;
  animation: fade-in-up 0.55s ease forwards;
}
.anim-fiu--d1 {
  animation-delay: 0.1s;
}
.anim-fiu--d2 {
  animation-delay: 0.22s;
}
.anim-fiu--d3 {
  animation-delay: 0.36s;
}
.is-visible.anim-scroll {
  animation: fade-in-up 0.55s ease forwards;
}

@media (max-width: 900px) {
  .hdr-nav {
    display: none;
  }
  .hdr-burger {
    display: flex;
  }
  .adv-card {
    max-width: calc(50% - 9px);
    min-width: 180px;
  }
  .screen-item {
    flex: 0 0 80%;
  }
  .content-block {
    padding: 24px 20px;
  }
  .ftr-top {
    gap: 28px;
  }
  .pros-cons {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .g-sect {
    padding: 48px 0;
  }
  .hero-inner {
    padding: 56px 16px;
  }
  .hero-title {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
  .hdr-right {
    gap: 7px;
  }
  .btn {
    padding: 8px 14px;
    font-size: 0.82rem;
  }
  .adv-card {
    max-width: 100%;
    min-width: 100%;
  }
  .screen-item {
    flex: 0 0 92%;
  }
  .demo-frame {
    height: 380px;
  }
  .widget-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .widget-actions {
    width: 100%;
    justify-content: center;
  }
  .info-table td:first-child {
    width: 140px;
    font-size: 0.85rem;
  }
  .info-table td {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .author-card {
    flex-direction: column;
    text-align: center;
  }
  .ftr-top {
    flex-direction: column;
  }
}
