:root {
  --c-bg: #181819;
  --c-header: #232323;
  --c-accent: #eb880c;
  --c-accent-dark: #c97209;
  --c-btn-dark: #181819;
  --c-text: #e8e8e8;
  --c-text-muted: #9a9a9a;
  --c-border: #2e2e2e;
  --c-card: #1e1e20;
  --c-card-hover: #242426;
  --radius: 10px;
  --radius-sm: 6px;
  --font-main: "Montserrat", "Inter", Arial, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--c-bg);
  color: var(--c-text);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--c-accent);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #ffa033;
}

.bx-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.bx-section {
  padding: 56px 0;
}

.bx-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.bx-subtitle {
  color: var(--c-text-muted);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.bx-accent {
  color: var(--c-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    background 0.15s;
  letter-spacing: 0.03em;
  text-decoration: none;
  padding: 10px 20px;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.btn:active {
  transform: translateY(0);
}

.btn--login {
  background: var(--c-btn-dark);
  color: #fff;
  border: 1px solid var(--c-border);
}

.btn--login:hover {
  background: #242426;
  color: #fff;
}

.btn--signup {
  background: var(--c-accent);
  color: #fff;
}

.btn--signup:hover {
  background: var(--c-accent-dark);
  color: #fff;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--c-accent);
  color: var(--c-accent);
}

.btn--outline:hover {
  background: var(--c-accent);
  color: #fff;
}

#bx-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #2a2a2a;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.bx-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  height: 66px;
}

.bx-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.bx-logo img {
  height: 38px;
  width: auto;
}

.bx-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.bx-logo-text span {
  color: var(--c-accent);
}

.bx-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex-wrap: wrap;
}

.bx-nav a {
  color: #c8c8c8;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition:
    color 0.2s,
    background 0.2s;
  text-decoration: none;
}

.bx-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.bx-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bx-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}

.bx-online-dot {
  width: 7px;
  height: 7px;
  background: #27ae60;
  border-radius: 50%;
  animation: bxPulse 1.8s ease-in-out infinite;
}

@keyframes bxPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.25);
  }
}

.bx-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bx-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}

.bx-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bx-burger.active span:nth-child(2) {
  opacity: 0;
}

.bx-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bx-mobile-menu {
  display: none;
  background: var(--c-header);
  border-top: 1px solid #2a2a2a;
  padding: 16px;
}

.bx-mobile-menu.open {
  display: block;
}

.bx-mobile-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.bx-mobile-nav a {
  display: block;
  color: #c8c8c8;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s;
}

.bx-mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.bx-mobile-btns {
  display: flex;
  gap: 10px;
}

.bx-mobile-btns .btn {
  flex: 1;
}

#bx-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bx-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0e0e0f 0%, #1a1207 60%, #251504 100%);
  z-index: 0;
}

.bx-hero-bg-img {
  position: absolute;
  inset: 0;
  background-image: url("/llban.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  z-index: 1;
}

.bx-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 25, 0.92) 0%,
    rgba(24, 24, 25, 0.6) 60%,
    rgba(24, 24, 25, 0.2) 100%
  );
  z-index: 2;
}

.bx-hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.bx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(235, 136, 12, 0.15);
  border: 1px solid rgba(235, 136, 12, 0.35);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.bx-hero-h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.bx-hero-h1 span {
  color: var(--c-accent);
}

.bx-hero-desc {
  color: #c8c8c8;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}

.bx-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bx-hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.bx-hero-stat {
  display: flex;
  flex-direction: column;
}

.bx-hero-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-accent);
}

.bx-hero-stat-label {
  font-size: 0.75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#bx-breadcrumbs {
  background: #1c1c1e;
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}

.bx-bc-list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.bx-bc-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text-muted);
}

.bx-bc-list li::after {
  content: "›";
  color: #555;
}

.bx-bc-list li:last-child::after {
  display: none;
}

.bx-bc-list a {
  color: var(--c-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.bx-bc-list a:hover {
  color: var(--c-accent);
}

.bx-bc-list li:last-child {
  color: var(--c-accent);
  font-weight: 600;
}

#bx-advantages {
  padding: 60px 0;
}

.bx-advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.bx-adv-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.bx-adv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border-color: rgba(235, 136, 12, 0.3);
}

.bx-adv-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1;
}

.bx-adv-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.bx-adv-text {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

#bx-screenshots {
  padding: 60px 0;
  background: #1a1a1c;
}

.bx-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.bx-screenshot-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.bx-screenshot-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.bx-screenshot-item img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bx-screenshots-slider {
  display: none;
}

#bx-app {
  padding: 60px 0;
}

.bx-app-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-top: 32px;
}

.bx-app-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.bx-app-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  background: var(--c-card);
}

.bx-app-table th,
.bx-app-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
}

.bx-app-table th {
  color: var(--c-text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #1c1c1e;
}

.bx-app-table td:first-child {
  color: var(--c-text-muted);
  font-size: 0.82rem;
}

.bx-app-table td:last-child {
  color: #fff;
  font-weight: 600;
}

.bx-app-table tr:last-child td {
  border-bottom: none;
}

.bx-app-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.bx-app-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bx-app-btns-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.bx-app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-decoration: none;
  transition:
    border-color 0.2s,
    transform 0.2s,
    background 0.2s;
  cursor: pointer;
}

.bx-app-btn:hover {
  border-color: var(--c-accent);
  transform: translateY(-2px);
  background: var(--c-card-hover);
}

.bx-app-btn-icon {
  font-size: 1.7rem;
  flex-shrink: 0;
}

.bx-app-btn-info {
}

.bx-app-btn-label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.bx-app-btn-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

#bx-demo {
  padding: 60px 0;
  background: #1a1a1c;
}

.bx-demo-wrap {
  margin-top: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  position: relative;
  background: #000;
}

.bx-demo-wrap iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

.bx-demo-disclaimer {
  background: #1c1c1e;
  border-top: 1px solid var(--c-border);
  padding: 12px 20px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  text-align: center;
}

#bx-review {
  padding: 60px 0;
}

.bx-review-wrap {
  margin-top: 32px;
}

.bx-author-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
}

.bx-author-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--c-accent), #c97209);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.bx-author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}

.bx-author-bio {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.bx-author-link {
  margin-left: auto;
  flex-shrink: 0;
}

.bx-content-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  line-height: 1.75;
  color: var(--c-text);
  font-size: 0.95rem;
}

.bx-content-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 24px 0 10px;
  letter-spacing: -0.01em;
}

.bx-content-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 20px 0 8px;
}

.bx-content-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ddd;
  margin: 16px 0 6px;
}

.bx-content-body p {
  margin-bottom: 14px;
  color: var(--c-text);
}

.bx-content-body ul,
.bx-content-body ol {
  margin: 10px 0 14px 20px;
  color: var(--c-text);
}

.bx-content-body li {
  margin-bottom: 6px;
}

.bx-content-body a {
  color: var(--c-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bx-content-body strong {
  color: #fff;
  font-weight: 700;
}

.bx-content-body em {
  color: #c8c8c8;
}

.bx-content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
  border: 1px solid var(--c-border);
}

.bx-content-body table th,
.bx-content-body table td {
  padding: 10px 14px;
  text-align: left;
  border: 1px solid var(--c-border);
}

.bx-content-body table th {
  background: #1c1c1e;
  color: var(--c-text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.bx-content-body table tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.bx-content-body blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 10px 16px;
  margin: 14px 0;
  background: rgba(235, 136, 12, 0.06);
  color: #c8c8c8;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bx-content-body img {
  border-radius: var(--radius-sm);
  margin: 14px 0;
  max-width: 100%;
}

.bx-content-body hr {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 20px 0;
}

#bx-faq {
  padding: 60px 0;
  background: #1a1a1c;
}

.bx-faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bx-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.bx-faq-item.open {
  border-color: rgba(235, 136, 12, 0.3);
}

.bx-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}

.bx-faq-q:hover {
  color: var(--c-accent);
}

.bx-faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(235, 136, 12, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    transform 0.3s,
    background 0.2s;
}

.bx-faq-item.open .bx-faq-icon {
  transform: rotate(45deg);
  background: var(--c-accent);
  color: #fff;
}

.bx-faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.2s;
}

.bx-faq-item.open .bx-faq-a {
  max-height: 600px;
}

.bx-faq-a-inner {
  padding: 0 22px 18px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

#bx-footer {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}

.bx-footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.bx-footer-brand {
}

.bx-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 14px;
}

.bx-footer-logo img {
  height: 32px;
  width: auto;
}

.bx-footer-logo-text {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.bx-footer-logo-text span {
  color: var(--c-accent);
}

.bx-footer-tagline {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.bx-footer-support {
  font-size: 0.8rem;
  color: var(--c-text-muted);
}

.bx-footer-support a {
  color: var(--c-accent);
}

.bx-footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.bx-footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bx-footer-nav a {
  font-size: 0.85rem;
  color: #999;
  text-decoration: none;
  transition: color 0.2s;
}

.bx-footer-nav a:hover {
  color: var(--c-accent);
}

.bx-footer-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.bx-payment-badge {
  background: #252525;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #ccc;
  white-space: nowrap;
  transition: border-color 0.2s;
}

.bx-payment-badge:hover {
  border-color: var(--c-accent);
  color: #fff;
}

.bx-footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.bx-provider-badge {
  background: #252525;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  font-size: 0.73rem;
  font-weight: 700;
  color: #ccc;
}

.bx-footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.bx-footer-copy {
  font-size: 0.77rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.bx-footer-legal {
  font-size: 0.73rem;
  color: #666;
  max-width: 500px;
  line-height: 1.55;
  text-align: right;
}

#bx-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #1a1007, #251504);
  border-top: 2px solid var(--c-accent);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(0);
  transition: transform 0.3s;
}

.bx-widget-text {
  display: flex;
  flex-direction: column;
}

.bx-widget-label {
  font-size: 0.72rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bx-widget-bonus {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.bx-widget-bonus span {
  color: var(--c-accent);
}

.bx-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
  flex-shrink: 0;
}

.bx-widget-close:hover {
  color: #fff;
}

.bx-widget-btn {
  background: var(--c-accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 800;
  padding: 10px 22px;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.02em;
  transition:
    background 0.2s,
    transform 0.15s;
}

.bx-widget-btn:hover {
  background: var(--c-accent-dark);
  color: #fff;
  transform: translateY(-1px);
}

.bx-widget.hidden {
  transform: translateY(100%);
}

.wp-content-hidden {
  display: none;
}

.entry-content {
  display: none;
}
.post-thumbnail {
  display: none;
}
.elementor-widget-wrap {
  display: none;
}
.wp-block-group {
  display: none;
}

@media (max-width: 900px) {
  .bx-nav {
    display: none;
  }
  .bx-burger {
    display: flex;
  }
  .bx-online {
    display: none;
  }
  .bx-header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .bx-hero-h1 {
    font-size: 1.7rem;
  }
  #bx-hero {
    min-height: 360px;
  }

  .bx-screenshots-grid {
    display: none;
  }
  .bx-screenshots-slider {
    display: block;
  }

  .bx-app-inner {
    grid-template-columns: 1fr;
  }

  .bx-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bx-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .bx-section {
    padding: 40px 0;
  }
  #bx-hero {
    min-height: 320px;
  }
  .bx-hero-stats {
    gap: 16px;
  }
  .bx-advantages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bx-footer-grid {
    grid-template-columns: 1fr;
  }
  .bx-footer-bottom {
    flex-direction: column;
  }
  .bx-footer-legal {
    text-align: left;
  }
  .bx-demo-wrap iframe {
    height: 320px;
  }
  .bx-widget-text {
    display: none;
  }

  .bx-content-body {
    padding: 18px 16px;
  }
}

@media (max-width: 400px) {
  .bx-advantages-grid {
    grid-template-columns: 1fr;
  }
}

.bx-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
}

.bx-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.bx-slider-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.bx-slider-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bx-slider-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0 4px;
}

.bx-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-border);
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}

.bx-slider-dot.active {
  background: var(--c-accent);
  transform: scale(1.3);
}

.bx-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  z-index: 10;
  transition: background 0.2s;
}

.bx-slider-arrow:hover {
  background: rgba(235, 136, 12, 0.7);
}

.bx-slider-arrow--prev {
  left: 10px;
}
.bx-slider-arrow--next {
  right: 10px;
}

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

.bx-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.bx-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin: 0;
}

body {
  padding-bottom: 60px;
}

.bx-xs9a2f {
  display: none;
}
.bx-hidden-wp-nav {
  visibility: hidden;
  position: absolute;
}
.wp-post-image {
  display: none;
}
.bx-q7r3m {
  color: transparent;
  font-size: 0;
}
