:root {
  --bg-primary: #0a0a18;
  --bg-secondary: #111127;
  --bg-card: #161632;
  --bg-card-hover: #1c1c3a;
  --color-pink: #e91e8c;
  --color-gold: #ffc728;
  --color-orange: #ff6d00;
  --color-green: #00c853;
  --color-text: #dde1f0;
  --color-muted: #7a80a8;
  --color-border: #222248;
  --color-link: #ffc728;
  --radius: 14px;
  --radius-sm: 8px;
  --transition: 0.28s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.35);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--color-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a { color: var(--color-link); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-pink); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 0.6rem; }

p { margin-bottom: 0.9rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 0.9rem; }
li { margin-bottom: 0.3rem; }

.wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 18px; }
main { flex: 1; }

.sr-hidden { display: none !important; }
.sr-visually { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.e7k2m-spacer { display: block; height: 1px; }
.n9p4q-faux { visibility: hidden; pointer-events: none; }

/* ===== HEADER ===== */
.x3j7r-header {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.x3j7r-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  max-width: 1200px;
  margin: 0 auto;
}

.x3j7r-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.x3j7r-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.x3j7r-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.x3j7r-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  color: var(--color-text);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.x3j7r-nav a:hover { background: var(--bg-card); color: var(--color-gold); }

.x3j7r-nav svg { width: 16px; height: 16px; flex-shrink: 0; }

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

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

.x3j7r-online-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.x3j7r-lang {
  position: relative;
}

.x3j7r-lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background var(--transition);
  white-space: nowrap;
}

.x3j7r-lang-btn:hover { background: var(--bg-card-hover); }
.x3j7r-lang-btn svg { width: 12px; height: 12px; }

.x3j7r-lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-width: 130px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 100;
}

.x3j7r-lang-dropdown.open { display: block; }

.x3j7r-lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition);
}

.x3j7r-lang-dropdown a:hover { background: var(--bg-card); }
.x3j7r-lang-dropdown a span { font-size: 1.1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.btn:active { transform: translateY(0); filter: brightness(0.95); }

.btn-demo {
  background: var(--color-orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255,109,0,0.4);
}

.btn-money {
  background: var(--color-gold);
  color: #0a0a18;
  box-shadow: 0 4px 14px rgba(255,199,40,0.4);
}

.btn-register {
  background: var(--color-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,200,83,0.4);
}

.btn-pink {
  background: var(--color-pink);
  color: #fff;
  box-shadow: 0 4px 14px rgba(233,30,140,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}

.btn-outline:hover { background: var(--color-gold); color: #0a0a18; }

.btn-lg { padding: 13px 28px; font-size: 1rem; border-radius: var(--radius); }
.btn-sm { padding: 6px 12px; font-size: 0.8rem; }

/* Burger */
.x3j7r-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

.x3j7r-burger span {
  display: block;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.x3j7r-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.x3j7r-burger.active span:nth-child(2) { opacity: 0; }
.x3j7r-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.x3j7r-mobile-menu {
  display: none;
  background: var(--bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 12px 18px 18px;
}

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

.x3j7r-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 12px;
}

.x3j7r-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--color-text);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--transition);
}

.x3j7r-mobile-nav a:hover { background: var(--bg-card); }
.x3j7r-mobile-nav svg { width: 18px; height: 18px; }

.x3j7r-mobile-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.x3j7r-mobile-btns .btn { flex: 1; min-width: 100px; justify-content: center; }

/* ===== HERO ===== */
.q8r2t-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.q8r2t-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/banner-ssugar.png');
  background-size: cover;
  background-position: center top;
  z-index: 0;
}

.q8r2t-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,24,0.88) 40%, rgba(10,10,24,0.4) 100%);
  z-index: 1;
}

.q8r2t-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 18px;
  max-width: 600px;
  margin: 0 auto 0 0;
  padding-left: clamp(18px, 5vw, 80px);
}

.q8r2t-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(233,30,140,0.18);
  border: 1px solid rgba(233,30,140,0.4);
  color: var(--color-pink);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.q8r2t-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  margin-bottom: 14px;
}

.q8r2t-hero h1 span { color: var(--color-gold); }

.q8r2t-hero-desc {
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 28px;
  max-width: 480px;
  line-height: 1.7;
}

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

.q8r2t-hero-badges {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.q8r2t-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.q8r2t-badge-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-gold);
}

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

/* ===== BREADCRUMBS ===== */
.m4n8p-breadcrumbs {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 0;
}

.m4n8p-breadcrumbs ol {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.m4n8p-breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--color-muted);
  margin: 0;
}

.m4n8p-breadcrumbs li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--color-muted);
  border-top: 1.5px solid var(--color-muted);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.m4n8p-breadcrumbs a { color: var(--color-gold); text-decoration: none; }
.m4n8p-breadcrumbs a:hover { color: var(--color-pink); }

/* ===== MAIN CONTENT AREA ===== */
.f2k9x-main { padding: 48px 0; }

.f2k9x-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* ===== CARD / BLOCK ===== */
.card {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition);
}

.card:hover { box-shadow: 0 6px 32px rgba(0,0,0,0.5); }

.card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.card-title svg { width: 22px; height: 22px; color: var(--color-pink); flex-shrink: 0; }
.card-title span { color: var(--color-gold); }

/* ===== TOC ===== */
.z7x3k-toc {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-pink);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.z7x3k-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 6px;
}

.z7x3k-toc li { margin: 0; }

.z7x3k-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.z7x3k-toc a:hover { background: var(--bg-card-hover); color: var(--color-gold); }
.z7x3k-toc a svg { width: 16px; height: 16px; color: var(--color-pink); flex-shrink: 0; }
.z7x3k-toc-num {
  width: 22px;
  height: 22px;
  background: var(--color-pink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== INFO TABLE ===== */
.p6m3n-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.p6m3n-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.p6m3n-table tr { border-bottom: 1px solid var(--color-border); }
.p6m3n-table tr:last-child { border-bottom: none; }

.p6m3n-table td {
  padding: 12px 16px;
  font-size: 0.9rem;
  vertical-align: middle;
  text-align: left;
}

.p6m3n-table td:first-child {
  color: var(--color-muted);
  font-weight: 600;
  width: 46%;
  display: flex;
  align-items: center;
  gap: 8px;
}

.p6m3n-table td:last-child { color: var(--color-text); font-weight: 700; }
.p6m3n-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }
.p6m3n-table td svg { width: 16px; height: 16px; color: var(--color-pink); flex-shrink: 0; }

.p6m3n-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.p6m3n-badge-gold { background: rgba(255,199,40,0.15); color: var(--color-gold); border: 1px solid rgba(255,199,40,0.3); }
.p6m3n-badge-green { background: rgba(0,200,83,0.15); color: var(--color-green); border: 1px solid rgba(0,200,83,0.3); }
.p6m3n-badge-pink { background: rgba(233,30,140,0.15); color: var(--color-pink); border: 1px solid rgba(233,30,140,0.3); }

/* ===== SCREENSHOTS ===== */
.s1f4r-slider-wrap { position: relative; overflow: hidden; }

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

.s1f4r-slide {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.s1f4r-slide:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.5); }

.s1f4r-slide img { width: 100%; height: 200px; object-fit: cover; }

.s1f4r-slide-caption {
  background: var(--bg-card-hover);
  padding: 10px 14px;
  font-size: 0.82rem;
  color: var(--color-muted);
  font-weight: 600;
}

.s1f4r-mobile-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.s1f4r-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  border: none;
}

.s1f4r-dot.active { background: var(--color-pink); transform: scale(1.3); }

.s1f4r-arrows {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.s1f4r-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.s1f4r-arrow:hover { background: var(--color-pink); }
.s1f4r-arrow svg { width: 18px; height: 18px; }

/* ===== APP BLOCK ===== */
.k9d2p-app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.k9d2p-app-table { overflow-x: auto; }

.k9d2p-table {
  width: 100%;
  border-collapse: collapse;
}

.k9d2p-table tr { border-bottom: 1px solid var(--color-border); }
.k9d2p-table tr:last-child { border-bottom: none; }

.k9d2p-table td {
  padding: 10px 14px;
  font-size: 0.875rem;
  text-align: left;
}

.k9d2p-table td:first-child { color: var(--color-muted); font-weight: 600; width: 50%; }
.k9d2p-table td:last-child { color: var(--color-text); font-weight: 700; }
.k9d2p-table tr:nth-child(odd) td { background: rgba(255,255,255,0.02); }

.k9d2p-download-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.k9d2p-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card-hover);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  text-decoration: none;
  color: var(--color-text);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.k9d2p-store-btn:hover { background: var(--bg-primary); border-color: var(--color-pink); transform: translateY(-2px); color: var(--color-text); }

.k9d2p-store-btn svg { width: 28px; height: 28px; flex-shrink: 0; }

.k9d2p-store-label { font-size: 0.7rem; color: var(--color-muted); display: block; }
.k9d2p-store-name { font-size: 1rem; font-weight: 800; color: #fff; display: block; }

/* ===== VIDEO ===== */
.v3m8x-video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.v3m8x-video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ===== DEMO ===== */
.d5k1w-demo-box {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
}

.d5k1w-demo-header {
  background: var(--bg-card-hover);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 10px;
}

.d5k1w-demo-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.d5k1w-demo-title { font-size: 1rem; font-weight: 800; color: #fff; }
.d5k1w-demo-sub { font-size: 0.78rem; color: var(--color-muted); }

.d5k1w-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.d5k1w-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.d5k1w-demo-footer {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 10px;
}

.d5k1w-demo-footer p { font-size: 0.82rem; color: var(--color-muted); margin: 0; }

/* ===== FAQ ===== */
.r9c5v-faq { display: flex; flex-direction: column; gap: 10px; }

.r9c5v-item {
  background: var(--bg-card-hover);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.r9c5v-item.open { border-color: var(--color-pink); }

.r9c5v-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  user-select: none;
}

.r9c5v-question-left { display: flex; align-items: center; gap: 10px; }
.r9c5v-q-icon { color: var(--color-pink); flex-shrink: 0; }
.r9c5v-q-icon svg { width: 18px; height: 18px; }

.r9c5v-chevron {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-muted);
}

.r9c5v-chevron svg { width: 18px; height: 18px; }
.r9c5v-item.open .r9c5v-chevron { transform: rotate(180deg); }

.r9c5v-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.r9c5v-item.open .r9c5v-answer { max-height: 400px; }

.r9c5v-answer-inner {
  padding: 0 20px 18px 48px;
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.7;
}

.a2n7k-author {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.a2n7k-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-pink);
  flex-shrink: 0;
}

.a2n7k-info { flex: 1; }
.a2n7k-name { font-size: 1.15rem; font-weight: 800; color: #fff; margin-bottom: 4px; }
.a2n7k-role { font-size: 0.82rem; color: var(--color-pink); font-weight: 700; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em; }
.a2n7k-bio { font-size: 0.9rem; color: var(--color-text); line-height: 1.7; margin-bottom: 14px; }

.a2n7k-socials { display: flex; gap: 8px; flex-wrap: wrap; }

.a2n7k-social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform var(--transition), filter var(--transition);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: var(--bg-card-hover);
}

.a2n7k-social:hover { transform: translateY(-2px); filter: brightness(1.2); color: var(--color-text); }
.a2n7k-social svg { width: 16px; height: 16px; }

/* ===== REVIEW CONTENT BLOCK ===== */
.q8j3-review-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
}

.q8j3-review-text h2 { font-size: 1.5rem; margin: 1.6rem 0 0.7rem; color: #fff; }
.q8j3-review-text h3 { font-size: 1.2rem; margin: 1.3rem 0 0.6rem; color: var(--color-gold); }
.q8j3-review-text h4 { font-size: 1rem; margin: 1.1rem 0 0.5rem; color: var(--color-text); }
.q8j3-review-text p { margin-bottom: 1rem; }
.q8j3-review-text ul, .q8j3-review-text ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.q8j3-review-text li { margin-bottom: 0.4rem; }
.q8j3-review-text a { color: var(--color-gold); text-decoration: underline; }
.q8j3-review-text a:hover { color: var(--color-pink); }
.q8j3-review-text strong { color: #fff; font-weight: 700; }
.q8j3-review-text em { color: var(--color-pink); font-style: italic; }

.q8j3-review-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.875rem;
  overflow-x: auto;
  display: block;
}

.q8j3-review-text table thead tr { background: rgba(233,30,140,0.15); }
.q8j3-review-text table th, .q8j3-review-text table td { padding: 10px 14px; border: 1px solid var(--color-border); text-align: left; }
.q8j3-review-text table th { font-weight: 700; color: var(--color-gold); }
.q8j3-review-text table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

.q8j3-review-text blockquote {
  border-left: 4px solid var(--color-pink);
  padding: 12px 18px;
  margin: 1.2rem 0;
  background: rgba(233,30,140,0.07);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

/* ===== SECTION DIVIDER ===== */
.sr-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sr-section-title h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.sr-section-title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--color-pink), transparent);
}

.sr-section-icon {
  width: 36px;
  height: 36px;
  background: rgba(233,30,140,0.15);
  border: 1px solid rgba(233,30,140,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-pink);
}

.sr-section-icon svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
.y4r8m-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 0;
  margin-top: auto;
}

.y4r8m-footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.y4r8m-footer-logo img { height: 40px; margin-bottom: 14px; }
.y4r8m-footer-desc { font-size: 0.875rem; color: var(--color-muted); line-height: 1.7; margin-bottom: 16px; }

.y4r8m-footer-col h4 {
  font-size: 0.875rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.y4r8m-footer-links { list-style: none; padding: 0; margin: 0; }
.y4r8m-footer-links li { margin-bottom: 8px; }

.y4r8m-footer-links a {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.y4r8m-footer-links a:hover { color: var(--color-gold); }

.y4r8m-footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}

.y4r8m-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.y4r8m-payments {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.y4r8m-payment-icon {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-muted);
  white-space: nowrap;
}

.y4r8m-trust-logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.y4r8m-trust-icon {
  background: var(--bg-card);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--color-green);
  white-space: nowrap;
}

.y4r8m-provider-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.y4r8m-provider-badge svg { width: 14px; height: 14px; }

.y4r8m-copyright {
  padding: 14px 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-muted);
  border-top: 1px solid var(--color-border);
  line-height: 1.6;
}

.y4r8m-copyright a { color: var(--color-muted); text-decoration: underline; }

.y4r8m-legal {
  margin-top: 8px;
  font-size: 0.72rem;
  color: rgba(122,128,168,0.7);
}

/* ===== BOTTOM WIDGET ===== */
.b6w1n-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #0f0f22 0%, #1a1040 50%, #0f0f22 100%);
  border-top: 2px solid var(--color-pink);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 -4px 24px rgba(233,30,140,0.25);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.b6w1n-widget.visible { transform: translateY(0); }

.b6w1n-widget-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

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

.b6w1n-widget-bonus {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 800;
  color: var(--color-gold);
}

.b6w1n-widget-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.b6w1n-close {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
  flex-shrink: 0;
}

.b6w1n-close:hover { color: #fff; }
.b6w1n-close svg { width: 18px; height: 18px; }

.c3p7q-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.c3p7q-lightbox.open { display: flex; }

.c3p7q-lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.c3p7q-lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background var(--transition);
}

.c3p7q-lb-close:hover { background: rgba(255,255,255,0.2); }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.anim-fade-up { animation: fadeInUp 0.55s ease both; }
.anim-fade { animation: fadeIn 0.45s ease both; }

[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

.sr-block { margin-bottom: 28px; }
.sr-block:last-child { margin-bottom: 0; }

.wp-widget-area { display: none; }
.elementor-hidden-desktop { display: none; }
.j8m4x-faux-el { visibility: hidden; position: absolute; pointer-events: none; }
.m3k9p-unused { overflow: hidden; max-height: 0; }

@media (max-width: 900px) {
  .y4r8m-footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
  .k9d2p-app-grid { grid-template-columns: 1fr; }
  .s1f4r-slides { grid-template-columns: 1fr; }
  .s1f4r-mobile-nav { display: flex; }
  .s1f4r-arrows { display: flex; }
}

@media (max-width: 768px) {
  .x3j7r-nav { display: none; }
  .x3j7r-burger { display: flex; }
  .x3j7r-online { display: none; }
  .card { padding: 18px; }
  .z7x3k-toc ol { grid-template-columns: 1fr; }
  .a2n7k-author { flex-direction: column; align-items: center; text-align: center; }
  .a2n7k-socials { justify-content: center; }
  .y4r8m-footer-main { grid-template-columns: 1fr; gap: 20px; }
  .y4r8m-footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .b6w1n-widget { flex-direction: column; align-items: flex-start; gap: 8px; }
  .b6w1n-widget-right { width: 100%; }
  .b6w1n-widget-right .btn { flex: 1; justify-content: center; }
  .q8r2t-hero-content { padding: 40px 18px; }
  .q8r2t-hero h1 { font-size: 1.8rem; }
  .d5k1w-demo-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .q8r2t-hero-btns { flex-direction: column; }
  .q8r2t-hero-badges { gap: 10px; }
  .q8r2t-badge-val { font-size: 1.1rem; }
  .x3j7r-header-inner { padding: 8px 14px; }
  h1 { font-size: 1.5rem; }
  .card { padding: 14px; }
}

/* === ОСНОВНЫЕ ФИКСЫ ДЛЯ ШИРИНЫ И ОТСТУПОВ === */

main {
  padding: 40px 0;
}

/* Общий контейнер для всех sr-block */
.sr-block {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}

/* Для карточек внутри — убираем лишние отступы слева/справа */
.card {
  padding: 28px;
  margin-bottom: 28px;
}

/* Hero — тоже должен быть в контейнере */
.q8r2t-hero-content {
  max-width: 620px;
  padding-left: clamp(18px, 5vw, 80px);
}

/* Breadcrumbs */
.m4n8p-breadcrumbs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Таблицы и слайдеры — чтобы не вылезали */
.p6m3n-table-wrap,
.s1f4r-slider-wrap,
.k9d2p-app-grid,
.v3m8x-video-wrap,
.d5k1w-iframe-wrap {
  max-width: 100%;
}

/* Убираем лишние отступы у демо-блока */
.d5k1w-demo-box {
  margin: 0 auto;
  max-width: 100%;
}

/* Для очень широких экранов (чтобы не было огромных пустых полей по бокам) */
@media (min-width: 1400px) {
  .sr-block,
  .m4n8p-breadcrumbs .container {
    max-width: 1280px;
  }
}
/* Фикс для мобильных — блок обзора */
@media (max-width: 768px) {
  .q8j3-review-text {
    overflow-x: hidden;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .q8j3-review-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.8rem;
  }

  .q8j3-review-text img {
    max-width: 100%;
    height: auto;
  }

  .q8j3-review-text pre,
  .q8j3-review-text code {
    white-space: pre-wrap;
    word-break: break-all;
  }

  /* Убираем лишние padding у card на мобиле */
  #review.card {
    padding: 14px;
    overflow: hidden;
  }
}
#review {
  display: block !important;
  visibility: visible !important;
  opacity: 1;
}

/* ============ DEMO MOBILE FIX ============ */
@media (max-width: 768px) {
  .d5k1w-iframe-wrap {
    padding-bottom: 0;
    height: 620px;
  }
}

@media (max-width: 480px) {
  .d5k1w-iframe-wrap {
    height: 580px;
  }
}

@media (max-width: 380px) {
  .d5k1w-iframe-wrap {
    height: 540px;
  }
}