﻿:root {
  --font-main: "Montserrat", "Segoe UI", "Arial", sans-serif;
  --font-accent: "Montserrat", "Segoe UI", "Arial", sans-serif;
  --radius-lg: 24px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 60px rgba(15, 20, 30, 0.18);
  --shadow-tight: 0 10px 24px rgba(12, 15, 22, 0.2);
  --border-light: 1px solid rgba(255, 255, 255, 0.12);
  --border-dark: 1px solid rgba(10, 12, 18, 0.14);
}

html[data-theme="dark"] {
  --bg: #000000;
  --bg-alt: #000000;
  --surface: rgba(18, 22, 33, 0.82);
  --surface-strong: rgba(21, 26, 39, 0.94);
  --text: #eef2ff;
  --text-muted: rgba(238, 242, 255, 0.86);
  --accent: #04bd7e;
  --accent-strong: #04d88f;
  --stroke: rgba(255, 255, 255, 0.08);
  --card-border: var(--border-light);
}

html[data-theme="light"] {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --surface: rgba(244, 252, 247, 0.92);
  --surface-strong: rgba(249, 255, 251, 0.96);
  --text: #1b202b;
  --text-muted: rgba(27, 32, 43, 0.86);
  --accent: #04bd7e;
  --accent-strong: #027a5e;
  --stroke: rgba(9, 18, 15, 0.10);
  --card-border: var(--border-dark);
}

/* Варианты светлой подложки по страницам (для выбора общей палитры позже). */
html[data-theme="light"] body[data-page="index"] {
  --surface: rgba(244, 252, 247, 0.92);
  --surface-strong: rgba(249, 255, 251, 0.96);
  --stroke: rgba(9, 18, 15, 0.10);
}

html[data-theme="light"] body[data-page="faq"] {
  --surface: rgba(244, 252, 247, 0.92);
  --surface-strong: rgba(249, 255, 251, 0.96);
  --stroke: rgba(9, 18, 15, 0.10);
}

html[data-theme="light"] body[data-page="contacts"] {
  --surface: rgba(244, 252, 247, 0.92);
  --surface-strong: rgba(249, 255, 251, 0.96);
  --stroke: rgba(9, 18, 15, 0.10);
}

html[data-theme="light"] body[data-page="privacy"],
html[data-theme="light"] body[data-page="terms"],
html[data-theme="light"] body[data-page="rules"] {
  --surface: rgba(244, 252, 247, 0.92);
  --surface-strong: rgba(249, 255, 251, 0.96);
  --stroke: rgba(9, 18, 15, 0.10);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

body[data-page="test"] {
  background:
    radial-gradient(60vw 70vh at 12% 30%, rgba(255, 218, 64, 0.10), transparent 58%),
    radial-gradient(58vw 70vh at 88% 30%, rgba(0, 235, 207, 0.10), transparent 58%),
    linear-gradient(135deg, #00151b 0%, #002d31 52%, #001019 100%);
}

body[data-bg-theme="dark"] {
  background:
    radial-gradient(60vw 70vh at 12% 30%, rgba(255, 218, 64, 0.10), transparent 58%),
    radial-gradient(58vw 70vh at 88% 30%, rgba(0, 235, 207, 0.10), transparent 58%),
    linear-gradient(135deg, #00151b 0%, #002d31 52%, #001019 100%);
}

html[data-theme="light"] body[data-bg-theme="dark"] {
  background:
    radial-gradient(60vw 70vh at 12% 30%, rgba(255, 218, 64, 0.10), transparent 58%),
    radial-gradient(58vw 70vh at 88% 30%, rgba(0, 235, 207, 0.10), transparent 58%),
    linear-gradient(135deg, #00151b 0%, #002d31 52%, #001019 100%);
}

html[data-theme="light"] body[data-page="test"] {
  background:
    radial-gradient(60vw 70vh at 12% 30%, rgba(190, 163, 0, 0.08), transparent 58%),
    radial-gradient(58vw 70vh at 88% 30%, rgba(0, 141, 123, 0.08), transparent 58%),
    linear-gradient(135deg, #dfe8e7 0%, #b8ddd8 55%, #d7ece8 100%);
}

body[data-page="test"][data-bg-theme="dark"] {
  background:
    radial-gradient(60vw 70vh at 12% 30%, rgba(255, 218, 64, 0.10), transparent 58%),
    radial-gradient(58vw 70vh at 88% 30%, rgba(0, 235, 207, 0.10), transparent 58%),
    linear-gradient(135deg, #00151b 0%, #002d31 52%, #001019 100%);
}

html[data-theme="light"] body[data-bg-theme="dark"] .hero-content h1,
html[data-theme="light"] body[data-bg-theme="dark"] .hero-content > p,
html[data-theme="light"] body[data-bg-theme="dark"] main > .container > .section > h2,
html[data-theme="light"] body[data-bg-theme="dark"] main > .container > .section > p,
html[data-theme="light"] body[data-bg-theme="dark"] main > .container > .section > .note {
  color: #eef2ff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] body[data-bg-theme="dark"] .hero-content > p,
html[data-theme="light"] body[data-bg-theme="dark"] main > .container > .section > p,
html[data-theme="light"] body[data-bg-theme="dark"] main > .container > .section > .note {
  color: rgba(238, 242, 255, 0.88);
}

/* В светлой UI-теме усиливаем читаемость текста на светлых подложках. */
html[data-theme="light"] .hero p,
html[data-theme="light"] .card p,
html[data-theme="light"] .note,
html[data-theme="light"] .faq-answer,
html[data-theme="light"] .legal-text pre {
  color: rgba(27, 32, 43, 0.90);
}

html[data-theme="light"] .site-nav a,
html[data-theme="light"] .footer-links a,
html[data-theme="light"] .stat-label,
html[data-theme="light"] .faq-item summary {
  font-weight: 600;
}

html[data-theme="light"] .stat-label {
  color: rgba(27, 32, 43, 0.84);
}

html[data-theme="light"] .hero-panel .stat .stat-value {
  color: rgba(27, 32, 43, 0.96);
}

body.scene-loading .page,
body.scene-loading #bg-shader-bg,
body.scene-loading #bg-shader-logo {
  opacity: 0;
}

body[data-page="test"] .page,
body[data-page="test"] #bg-shader-bg,
body[data-page="test"] #bg-shader-logo {
  transition: opacity 0.22s ease;
}

body[data-page="test"].bg-fallback-force #bg-shader-bg {
  opacity: 0 !important;
}

#bg-shader,
#bg-shader-bg,
#bg-shader-logo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#bg-shader,
#bg-shader-bg {
  z-index: 0;
}

#bg-shader-logo {
  z-index: 1;
}

.page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: var(--surface);
  border-bottom: 1px solid var(--stroke);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  text-decoration: none;
  color: inherit;
  display: grid;
  grid-template-columns: 64px auto;
  align-items: center;
  column-gap: 12px;
}

.brand-title {
  font-family: var(--font-accent);
  font-size: 20px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.brand-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex: 0 0 auto;
  grid-row: 1 / 3;
}

.brand-title {
  grid-column: 2;
}

.brand-sub {
  grid-column: 2;
}

.brand:not(:has(.brand-sub)) {
  grid-template-rows: 1fr;
}

.brand:not(:has(.brand-sub)) .brand-logo {
  grid-row: 1;
}

.brand:not(:has(.brand-sub)) .brand-title {
  align-self: center;
}

.site-nav {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 8px;
  justify-content: center;
  align-items: center;
  justify-self: center;
}

.site-nav a[data-page="index"] { grid-column: 1; grid-row: 1; }
.site-nav a[data-page="faq"] { grid-column: 2; grid-row: 1; }
.site-nav a[data-page="contacts"] { grid-column: 3; grid-row: 1; }
.site-nav a[data-page="privacy"] { grid-column: 1; grid-row: 2; }
.site-nav a[data-page="rules"] { grid-column: 2; grid-row: 2; }
.site-nav a[data-page="terms"] { grid-column: 3; grid-row: 2; }

.site-nav a {
  text-decoration: none;
  color: inherit;
  font-family: var(--font-accent);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: var(--accent);
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.06);
}

.controls {
  display: grid;
  grid-auto-flow: row;
  gap: 8px;
  justify-items: end;
  align-items: center;
}

.toggle-group {
  display: inline-flex;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  overflow: hidden;
  background: var(--surface-strong);
}

.toggle-btn {
  border: none;
  background: transparent;
  color: inherit;
  font-family: var(--font-accent);
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  cursor: pointer;
  text-transform: uppercase;
}

.toggle-btn.toggle-icon {
  width: 31px;
  height: 27px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: normal;
  text-transform: none;
}

.toggle-btn.is-active {
  background: var(--accent);
  color: #0b0f18;
}

main {
  flex: 1;
  padding: 48px 0 64px;
}

body[data-page="privacy"] main,
body[data-page="terms"] main,
body[data-page="rules"] main {
  padding-top: 16px;
}

body[data-page="privacy"] .section h2,
body[data-page="terms"] .section h2,
body[data-page="rules"] .section h2 {
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
  margin-bottom: 36px;
}

.hero-content,
.hero-panel {
  min-width: 0;
}

.hero h1 {
  font-family: var(--font-accent);
  font-size: clamp(28px, 5vw, 42px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 30px;
}

.hero p {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.35;
}

.hero-panel {
  background: var(--surface);
  border: var(--card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-panel .stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--stroke);
  gap: 12px;
}

.hero-panel .stat:last-child {
  border-bottom: none;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.cta .btn {
  flex: 1 1 240px;
  justify-content: center;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-value {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 600;
}

.stat-value a {
  color: var(--accent-strong);
  text-decoration: none;
}

.stat-value a:hover {
  text-decoration: underline;
}

body[data-page="index"] .hero-panel .stat .stat-label {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="index"] .hero-panel .stat .stat-value {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 350;
  letter-spacing: normal;
  text-transform: none;
}

body[data-page="faq"] .hero-panel .stat .stat-label {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="faq"] .hero-panel .stat .stat-value {
  font-family: var(--font-main);
  font-size: 17px;
  font-weight: 350;
  letter-spacing: normal;
  text-transform: none;
}

.section {
  margin-bottom: 36px;
}

.section h2 {
  font-family: var(--font-accent);
  font-size: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-tight);
}

.card h3 {
  margin-top: 0;
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 16px;
}

body[data-page="index"] .section-plans .card h3 {
  text-shadow: 0 1px 8px rgba(228, 173, 22, 0.20);
}

body[data-page="index"] .section-plans .card:nth-child(1) h3 {
  color: #d9a52a;
}

body[data-page="index"] .section-plans .card:nth-child(2) h3 {
  color: #e0ad22;
}

body[data-page="index"] .section-plans .card:nth-child(3) h3 {
  color: #e7b51b;
}

body[data-page="index"] .section-plans .card:nth-child(4) h3 {
  color: #efbe14;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.5;
}

.card p + p {
  margin-top: 8px;
}

body[data-page="index"] .section-plans .card p {
  line-height: 1.2;
}

body[data-page="index"] .section-plans .card p + p {
  margin-top: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.btn.primary {
  background: var(--accent);
  color: #0b0f18;
}

.btn.ghost {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.btn.btn-gold {
  background: #ffcb00;
  color: #1b202b;
  border-color: #ffcb00;
}

.page-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--stroke);
  background: var(--surface);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-text {
  background: var(--surface);
  border: var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.legal-text pre {
  margin: 0;
  white-space: pre-wrap;
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 1.08em;
  color: var(--text-muted);
  line-height: 1.65;
}

.legal-text pre strong,
.legal-text pre b {
  font-family: inherit;
  font-weight: 700;
  color: var(--text);
}

.note {
  color: var(--text-muted);
  font-size: 1.08em;
  font-weight: 500;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 0;
  background: var(--surface);
  border: var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-tight);
  padding: 6px 18px;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 16px 0;
  box-shadow: none;
}

html[data-theme="light"] .faq-item {
  border-bottom-color: rgba(27, 32, 43, 0.16);
}

html[data-theme="light"] .faq-item summary {
  color: rgba(27, 32, 43, 0.92);
  text-shadow: none;
}

html[data-theme="light"] .faq-item summary::after {
  color: rgba(27, 32, 43, 0.82);
}

html[data-theme="light"] .faq-answer {
  color: rgba(27, 32, 43, 0.90);
  text-shadow: none;
}

html[data-theme="light"] .faq-answer p {
  margin: 0;
}

html[data-theme="light"] .faq-answer p + p {
  margin-top: 10px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 14px;
  padding-bottom: 10px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.42;
}

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 700;
  color: currentColor;
  margin-left: 12px;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  margin-top: 16px;
  display: grid;
  gap: 12px;
  color: var(--text-muted);
  font-size: 1.08em;
  font-weight: 500;
  line-height: 1.65;
}

.faq-os {
  display: grid;
  gap: 12px;
}

.faq-os-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-os-tab {
  border: 1px solid rgba(4, 189, 126, 0.45);
  background: rgba(4, 189, 126, 0.78);
  color: #0b0f18;
  border-radius: 999px;
  padding: 8px 16px;
  font-family: var(--font-accent);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  opacity: 0.52;
}

.faq-os-tab.is-active {
  border-color: rgba(4, 189, 126, 0.95);
  background: var(--accent);
  color: #0b0f18;
  opacity: 1;
  box-shadow: 0 8px 20px rgba(4, 189, 126, 0.18);
}

.faq-os-tab:hover {
  opacity: 0.82;
  transform: translateY(-1px);
}

.faq-os-tab:focus-visible {
  outline: 2px solid rgba(4, 189, 126, 0.35);
  outline-offset: 2px;
}

html[data-theme="light"] body[data-bg-theme="dark"] .faq-item summary::before {
  opacity: 0.42;
}

.faq-os-answer {
  display: none;
}

.faq-os-answer.is-active {
  display: block;
}

.faq-media {
  margin: 0;
  display: grid;
  gap: 8px;
}

.faq-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
}

.faq-media figcaption {
  font-size: 13px;
  color: var(--text-muted);
}

.faq-video video {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: #000;
}

@media (max-width: 960px) {
  .header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 12px 0;
  }

  .brand-title {
    font-size: 16px;
    letter-spacing: 0.14em;
  }

  .controls {
    width: 100%;
    justify-items: start;
  }

  .site-nav {
    grid-template-columns: repeat(3, max-content);
    column-gap: 8px;
    row-gap: 6px;
    justify-content: center;
  }

  .site-nav a {
    font-size: 12px;
    padding: 7px 10px;
    letter-spacing: 0.09em;
  }

  body[data-page="test"] .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 16px;
    margin-bottom: 20px;
  }

  body[data-page="test"] .hero-content {
    max-width: 100%;
  }

  body[data-page="test"] .hero-panel {
    width: 100%;
    max-width: 100%;
    padding: 16px 18px;
  }
}

@media (max-width: 1024px) and (orientation: portrait) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 18px;
  }

  .hero-panel {
    width: 100%;
    max-width: 100%;
  }

  .grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand"
      "nav controls";
    align-items: start;
    column-gap: 12px;
    row-gap: 10px;
    padding: 12px 0;
  }

  .brand {
    grid-area: brand;
  }

  .site-nav {
    grid-area: nav;
    width: 100%;
  }

  .controls {
    grid-area: controls;
    width: auto;
    justify-self: end;
    justify-items: end;
    align-self: start;
    gap: 6px;
  }

  .container {
    width: min(1120px, 94vw);
  }

  .brand {
    grid-template-columns: 64px auto;
    column-gap: 10px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .brand-title {
    font-size: 14px;
    letter-spacing: 0.12em;
    line-height: 1.2;
  }

  .brand-sub {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .site-nav {
    grid-template-columns: repeat(3, max-content);
    justify-content: flex-start;
    row-gap: 6px;
    column-gap: 8px;
  }

  .controls {
    gap: 8px;
    justify-items: start;
  }

  .toggle-btn {
    padding: 5px 9px;
  }

  .toggle-btn.toggle-icon {
    width: 28px;
    height: 24px;
    font-size: 12px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta {
    gap: 10px;
  }

  .cta .btn {
    flex: 1 1 100%;
  }

  main {
    padding: 28px 0 48px;
  }

  .hero {
    gap: 18px;
    margin-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(24px, 8vw, 34px);
    letter-spacing: 0.1em;
  }

  .hero-panel {
    padding: 16px;
    border-radius: 18px;
  }

  .hero-panel .stat {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 6px;
    padding: 10px 0;
  }

  .hero-panel .stat .stat-value {
    font-size: 15px;
    line-height: 1.25;
    word-break: break-word;
  }

  body[data-page="test"] #bg-shader-logo {
    opacity: 0.82;
  }

  body[data-page="test"] .hero h1 {
    margin-bottom: 10px;
  }

  body[data-page="test"] .hero p {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.45;
    max-width: 26ch;
  }

  body[data-page="index"] .hero p,
  body[data-page="faq"] .hero p {
    margin-bottom: 10px;
    line-height: 1.32;
  }

  body[data-page="index"] .hero .hero-content p + p,
  body[data-page="faq"] .hero .hero-content p + p {
    margin-top: -2px;
  }
}

html[data-lang="ru"] [data-lang="en"] {
  display: none !important;
}

html[data-lang="en"] [data-lang="ru"] {
  display: none !important;
}
