:root {
  --c-bg: #0b0c0d;
  --c-bg-2: #111315;
  --c-bg-3: #161819;
  --c-bg-card: #13151700;
  --c-accent: #bbeb00;
  --c-accent-hover: #d4ff00;
  --c-btn-dark: #1f2021;
  --c-btn-dark-hover: #2a2d2e;
  --c-text: #e8eaec;
  --c-text-muted: #8a9099;
  --c-border: #222528;
  --c-border-accent: #bbeb0033;
  --c-header: #0b0c0d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
  --font-main: "Inter", "Roboto", Arial, sans-serif;
  --font-heading: "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;
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

.x7k2m-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.q9p3n-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.q9p3n-btn--dark {
  background: var(--c-btn-dark);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.q9p3n-btn--dark:hover {
  background: var(--c-btn-dark-hover);
  color: var(--c-text);
  transform: translateY(-1px);
}

.q9p3n-btn--accent {
  background: var(--c-accent);
  color: #0b0c0d;
}
.q9p3n-btn--accent:hover {
  background: var(--c-accent-hover);
  color: #0b0c0d;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px #bbeb0055;
}

.q9p3n-btn--lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-md);
}

.r4t8x-section {
  padding: 64px 0;
}
.r4t8x-section--sm {
  padding: 40px 0;
}

.m2f6q-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(22px, 4vw, 34px);
  color: var(--c-text);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.m2f6q-subheading {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-accent);
  margin-bottom: 10px;
}

.l5d9k-card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition:
    border-color var(--transition),
    transform var(--transition);
}
.l5d9k-card:hover {
  border-color: var(--c-border-accent);
  transform: translateY(-3px);
}

.hdr-z3k8p {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(12px);
}

.hdr-z3k8p__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  height: 66px;
}

.hdr-z3k8p__logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.hdr-z3k8p__nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hdr-z3k8p__nav a {
  color: var(--c-text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--transition),
    background var(--transition);
}
.hdr-z3k8p__nav a:hover {
  color: var(--c-text);
  background: var(--c-bg-3);
}

.hdr-z3k8p__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hdr-z3k8p__online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 4px 12px;
}

.hdr-z3k8p__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: v9w2j-pulse 1.8s ease infinite;
}

@keyframes v9w2j-pulse {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 #22c55e55;
  }
  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 5px #22c55e00;
  }
}

.hdr-z3k8p__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
}

.hdr-z3k8p__burger span {
  display: block;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.hdr-z3k8p__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hdr-z3k8p__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.hdr-z3k8p__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hdr-z3k8p__mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-top: 1px solid var(--c-border);
  background: var(--c-header);
}

.hdr-z3k8p__mobile-menu a {
  color: var(--c-text-muted);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
  display: block;
}
.hdr-z3k8p__mobile-menu a:last-of-type {
  border-bottom: none;
}
.hdr-z3k8p__mobile-menu.is-open {
  display: flex;
}

.hero-b4m9c {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-bg);
}

.hero-b4m9c__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
}

.hero-b4m9c__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0b0c0dee 55%, #0b0c0d99 100%);
  z-index: 1;
}

.hero-b4m9c__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-b4m9c__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #bbeb0022;
  border: 1px solid var(--c-border-accent);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--c-accent);
  margin-bottom: 20px;
  letter-spacing: 0.06em;
}

.hero-b4m9c__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 18px;
}

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

.hero-b4m9c__text {
  font-size: 16px;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 500px;
}

.hero-b4m9c__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-b4m9c__bonus-info {
  font-size: 12px;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* BREADCRUMBS */
.brd-c5x7v {
  padding: 14px 0;
  border-bottom: 1px solid var(--c-border);
}

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

.brd-c5x7v__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-text-muted);
}
.brd-c5x7v__item a {
  color: var(--c-text-muted);
}
.brd-c5x7v__item a:hover {
  color: var(--c-accent);
}
.brd-c5x7v__item--active {
  color: var(--c-accent);
}
.brd-c5x7v__sep {
  color: var(--c-border);
  font-size: 16px;
}

/* PROS CONS */
.pc-v8n3w {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pc-v8n3w__col {
  border-radius: var(--radius-md);
  padding: 28px;
}
.pc-v8n3w__col--pros {
  background: #0e1f0a;
  border: 1px solid #22c55e33;
}
.pc-v8n3w__col--cons {
  background: #1f0c0a;
  border: 1px solid #ef444433;
}

.pc-v8n3w__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-v8n3w__col--pros .pc-v8n3w__title {
  color: #22c55e;
}
.pc-v8n3w__col--cons .pc-v8n3w__title {
  color: #ef4444;
}

.pc-v8n3w__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pc-v8n3w__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--c-text);
}

.pc-v8n3w__icon {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 16px;
}

.vid-q2r6s__wrap {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  aspect-ratio: 16/9;
  background: var(--c-bg-3);
}

.vid-q2r6s__wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.lg-t7p4k__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.lg-t7p4k__card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.lg-t7p4k__card:hover {
  border-color: var(--c-border-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px #00000055;
}

.lg-t7p4k__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 2px solid var(--c-border);
}

.lg-t7p4k__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 8px;
}

.lg-t7p4k__provider {
  font-size: 11px;
  color: var(--c-text-muted);
  margin-bottom: 14px;
}

.lg-t7p4k__slider-wrap {
  position: relative;
  overflow: hidden;
}
.lg-t7p4k__slider {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}
.lg-t7p4k__slider .lg-t7p4k__card {
  flex: 0 0 calc(50% - 8px);
  min-width: 200px;
}

.lg-t7p4k__nav {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.lg-t7p4k__nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lg-t7p4k__nav-btn:hover {
  background: var(--c-accent);
  color: #0b0c0d;
  border-color: var(--c-accent);
}

.slot-h9v2f {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.slot-h9v2f__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
  color: var(--c-text);
}

.slot-h9v2f__sub {
  font-size: 13px;
  color: var(--c-text-muted);
  margin-bottom: 24px;
}

.slot-h9v2f__reels {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.slot-h9v2f__reel {
  width: 72px;
  height: 80px;
  background: var(--c-bg-3);
  border: 2px solid var(--c-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: all var(--transition);
  overflow: hidden;
}

.slot-h9v2f__reel.is-spinning {
  animation: spin-f3k7r 0.12s linear infinite;
  border-color: var(--c-accent);
}

@keyframes spin-f3k7r {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-4px);
  }
  75% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}

.slot-h9v2f__win {
  background: #bbeb0022;
  border: 1px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: none;
}

.slot-h9v2f__win.is-show {
  display: block;
}

.slot-h9v2f__win-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-accent);
  margin-bottom: 6px;
}

.slot-h9v2f__win-sub {
  font-size: 13px;
  color: var(--c-text-muted);
}

.slot-h9v2f__spin-btn {
  width: 100%;
  margin-top: 4px;
}

/* REVIEW CONTENT */
.rev-c5n8a {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.rev-c5n8a__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 28px;
}

.rev-c5n8a__author-ava {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}

.rev-c5n8a__author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-text);
  margin-bottom: 3px;
}

.rev-c5n8a__author-bio {
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.rev-c5n8a__author-link {
  font-size: 12px;
  color: var(--c-accent);
  margin-top: 3px;
  display: block;
}

.rev-c5n8a__content h1,
.rev-c5n8a__content h2,
.rev-c5n8a__content h3,
.rev-c5n8a__content h4,
.rev-c5n8a__content h5,
.rev-c5n8a__content h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--c-text);
  margin: 28px 0 12px;
  line-height: 1.3;
}
.rev-c5n8a__content h2 {
  font-size: clamp(18px, 3vw, 24px);
}
.rev-c5n8a__content h3 {
  font-size: clamp(16px, 2.5vw, 20px);
}

.rev-c5n8a__content p {
  margin-bottom: 16px;
  color: var(--c-text);
  line-height: 1.7;
}

.rev-c5n8a__content ul,
.rev-c5n8a__content ol {
  padding-left: 24px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rev-c5n8a__content ul li,
.rev-c5n8a__content ol li {
  color: var(--c-text);
  line-height: 1.6;
}

.rev-c5n8a__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  display: block;
  overflow-x: auto;
  text-align: left;
}

.rev-c5n8a__content table th,
.rev-c5n8a__content table td {
  padding: 11px 16px;
  border: 1px solid var(--c-border);
  font-size: 14px;
}

.rev-c5n8a__content table th {
  background: var(--c-bg-3);
  color: var(--c-accent);
  font-family: var(--font-heading);
  font-weight: 600;
}

.rev-c5n8a__content table tr:nth-child(even) {
  background: var(--c-bg-3);
}

.rev-c5n8a__content strong {
  color: #fff;
  font-weight: 700;
}

.rev-c5n8a__content a {
  color: var(--c-accent);
  text-decoration: underline;
}

.rev-c5n8a__content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: var(--c-bg-3);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
}

/* TESTIMONIALS */
.tes-w4m6p__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.tes-w4m6p__card {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 22px;
}

.tes-w4m6p__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.tes-w4m6p__ava {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--c-border);
}

.tes-w4m6p__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--c-text);
  margin-bottom: 2px;
}

.tes-w4m6p__date {
  font-size: 11px;
  color: var(--c-text-muted);
}

.tes-w4m6p__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.tes-w4m6p__stars svg {
  width: 16px;
  height: 16px;
}

.tes-w4m6p__text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.tes-w4m6p__form {
  background: var(--c-bg-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  max-width: 560px;
  margin: 0 auto;
}

.tes-w4m6p__form-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-text);
  margin-bottom: 22px;
}

.tes-w4m6p__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.tes-w4m6p__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-text-muted);
}

.tes-w4m6p__field input,
.tes-w4m6p__field textarea {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--c-text);
  font-family: var(--font-main);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}

.tes-w4m6p__field input:focus,
.tes-w4m6p__field textarea:focus {
  border-color: var(--c-accent);
}

.tes-w4m6p__field textarea {
  resize: vertical;
  min-height: 100px;
}

.tes-w4m6p__success {
  display: none;
  background: #0e1f0a;
  border: 1px solid #22c55e55;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: #22c55e;
  font-size: 14px;
  margin-top: 14px;
  text-align: center;
}

.tes-w4m6p__success.is-show {
  display: block;
}

.ftr-u6b2q {
  background: var(--c-header);
  border-top: 1px solid var(--c-border);
  padding: 48px 0 24px;
}

.ftr-u6b2q__top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.ftr-u6b2q__logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.ftr-u6b2q__desc {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.ftr-u6b2q__col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text);
  margin-bottom: 14px;
}

.ftr-u6b2q__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ftr-u6b2q__nav a {
  font-size: 14px;
  color: var(--c-text-muted);
}
.ftr-u6b2q__nav a:hover {
  color: var(--c-accent);
}

.ftr-u6b2q__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ftr-u6b2q__provider-badge {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--c-text-muted);
  letter-spacing: 0.04em;
}

.ftr-u6b2q__payments {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--c-border);
}

.ftr-u6b2q__payments-title {
  font-size: 12px;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.ftr-u6b2q__payment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ftr-u6b2q__payment-badge {
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text);
}

.ftr-u6b2q__bottom {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.ftr-u6b2q__legal {
  color: var(--c-text-muted);
  font-size: 11px;
}

.wgt-x5c3r {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--c-btn-dark);
  border-top: 2px solid var(--c-accent);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wgt-x5c3r__text {
  font-size: 13px;
  color: var(--c-text-muted);
  line-height: 1.4;
}

.wgt-x5c3r__bonus {
  font-size: 15px;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--c-accent);
}

.wgt-x5c3r__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wgt-x5c3r__close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  line-height: 1;
}
.wgt-x5c3r__close:hover {
  color: var(--c-text);
}

body.has-widget {
  padding-bottom: 68px;
}

.s-head-r9f4b {
  margin-bottom: 36px;
}
.s-head-r9f4b--center {
  text-align: center;
}

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

.wp-block-group {
  display: block;
}
.wp-block-image {
  margin: 0;
}
.entry-content {
  display: block;
}
.site-main {
  display: block;
}
.elementor-widget-container {
  display: block;
}

.xf94n-decoy {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.zp3m-unused-wrap {
  visibility: hidden;
  display: none;
}
.kv71x-placeholder {
  display: none;
}
.mn8f-ghost-nav {
  display: none;
}

.td2x-nav-shadow {
  box-shadow: 0 4px 32px #00000088;
}
.qr9j-badge-outline {
  border: 2px dashed var(--c-accent);
}
.bv3k-icon-circle {
  border-radius: 50%;
  background: var(--c-bg-3);
  padding: 10px;
}
.np7w-floating-label {
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 11px;
}
.ox5c-list-arrow li::before {
  content: "→ ";
  color: var(--c-accent);
}

@media (max-width: 1024px) {
  .ftr-u6b2q__top {
    grid-template-columns: 1fr 1fr;
  }
  .lg-t7p4k__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tes-w4m6p__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hdr-z3k8p__inner {
    grid-template-columns: auto 1fr auto;
  }
  .hdr-z3k8p__nav {
    display: none;
  }
  .hdr-z3k8p__burger {
    display: flex;
  }
  .hdr-z3k8p__online {
    display: none;
  }

  .pc-v8n3w {
    grid-template-columns: 1fr;
  }
  .lg-t7p4k__grid {
    display: none;
  }
  .lg-t7p4k__slider-wrap {
    display: block;
  }
  .lg-t7p4k__nav {
    display: flex;
  }
  .tes-w4m6p__grid {
    grid-template-columns: 1fr;
  }
  .ftr-u6b2q__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .rev-c5n8a {
    padding: 24px 18px;
  }
  .wgt-x5c3r {
    flex-wrap: wrap;
    gap: 8px;
  }
  .wgt-x5c3r__text {
    width: 100%;
  }
  .r4t8x-section {
    padding: 44px 0;
  }
  .hero-b4m9c {
    min-height: 400px;
  }
}

@media (max-width: 480px) {
  .hero-b4m9c__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .slot-h9v2f {
    padding: 24px 16px;
  }
  .slot-h9v2f__reels {
    gap: 6px;
  }
  .slot-h9v2f__reel {
    width: 60px;
    height: 68px;
    font-size: 28px;
  }
  .tes-w4m6p__form {
    padding: 20px 16px;
  }
  .rev-c5n8a__content table {
    font-size: 12px;
  }
}
