@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../fontstore/Roboto-Black.woff2) format("woff2");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../fontstore/Roboto-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  font-display: swap;
  src: url(../fontstore/Roboto-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-yellow:#FCC40D;
  --secondary-bg:#1C1E2A;
  --color-green:#3e8320;
}

body {
  font-family: Roboto, Arial, sans-serif;
  color: #fff;
  line-height: 1.6;
  background-size: cover;
  background-image: url(../gallery/background-texture.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ol, ul {
  list-style-position: inside;
  padding-left: 1rem;
}

.contentWrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid #333;
}

.sectionTitle {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--color-yellow);
}

.sectionText {
  margin-bottom: 30px;
  color: #e0e0e0;
}

section a:not([class]) {
  color: var(--color-yellow);
  font-weight: 500;
  text-decoration: underline;
}

.siteHeader {
  background-color: rgba(28, 28, 28, 0.8);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.siteHeader:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  backdrop-filter: blur(16px);
}

.headerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 5;
}

.logoImage img {
  height: 40px;
}

.headerMenu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 30px;
}

.menuLink {
  color: #e0e0e0;
  font-weight: 500;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  text-transform: uppercase;
}

.menuLink:hover {
  color: #e2e1ab;
}

.headerButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  padding-left: 15px;
}

.headerButton {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.buttonPrimary {
  background-color: var(--color-green);
  color: #fff;
}

.buttonPrimary:hover {
  background-color: #3d8c1a;
}

.buttonSecondary {
  color: #000;
  background-color: var(--color-yellow);
}

.buttonSecondary:hover {
  background-color: rgba(252, 196, 13, 0.8);
}

.menuToggle {
  display: none;
  background: 0 0;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 8px;
  position: relative;
  z-index: 1050;
}

.menuToggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #50a528;
  margin: 5px 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
}

.mobile-menu-toggle--active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(3px, 5px);
  -ms-transform: rotate(45deg) translate(3px, 5px);
  transform: rotate(45deg) translate(3px, 5px);
}

.mobile-menu-toggle--active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle--active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(5px, -7px);
  -ms-transform: rotate(-45deg) translate(5px, -7px);
  transform: rotate(-45deg) translate(5px, -7px);
}

.heroSection {
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
}

.heroSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(10, 10, 12, 0.85)), to(rgba(10, 10, 12, 0.6)));
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.85) 0, rgba(10, 10, 12, 0.6) 100%);
}

.heroContainer {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.heroContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
}

.heroTitle {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--color-yellow);
}

.heroText {
  font-size: 18px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.heroButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.heroButton {
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 700;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.heroBtnPrimary {
  background-color: var(--color-green);
  color: #fff;
}

.heroBtnPrimary:hover {
  background-color: #3d8c1a;
}

.heroBtnSecondary {
  color: #000;
  background-color: var(--color-yellow);
}

.heroBtnSecondary:hover {
  background-color: rgba(252, 196, 13, 0.8);
}

.heroImage {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.heroImage img {
  border-radius: 6px;
}

.heroImage img {
  max-width: 300px;
}

.scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #50a528;
  color: #fff;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scrollTop.visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.scrollTop:hover {
  background-color: #3d8c1a;
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}

.topicsSection {
  background-color: #0a0a0c;
  padding: 30px 15px;
}

.topicsContainer {
  background-color: var(--secondary-bg);
  border-radius: 8px;
  padding: 25px 30px;
  border: 1px solid #333;
}

.topicsTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-yellow);
  position: relative;
  padding-left: 15px;
}

.topicsTitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #50a528;
  border-radius: 2px;
}

.topicsList {
  list-style: none;
  padding: 0;
}

.topicItem {
  margin-bottom: 15px;
  position: relative;
  padding-left: 20px;
}

.topicItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #50a528;
  border-radius: 50%;
}

.topicLink {
  color: #e0e0e0;
  font-weight: 500;
  -webkit-transition: color 0.3s, padding-left 0.3s;
  transition: color 0.3s, padding-left 0.3s;
  display: block;
}

.topicLink:hover {
  color: #e2e1ab;
  padding-left: 5px;
}

.toc__link--active {
  color: #e2e1ab;
  font-weight: 700;
  padding-left: 5px;
}

.companyInfo {
  background-color: var(--secondary-bg);
}

.infoTable {
  width: 100%;
  margin-top: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.tableRow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #333;
}

.tableRow:last-child {
  border-bottom: none;
}

.tableCell {
  padding: 15px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.tableHeaderCell {
  background-color: #0a0a0c;
  font-weight: 700;
  width: 30%;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30%;
  flex: 0 0 30%;
}

.stepsGuide {
  background-color: #0a0a0c;
}

.stepList {
  margin-top: 40px;
}

.stepItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
  position: relative;
  gap: 30px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.stepNumber {
  background-color: #50a528;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.stepContent {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.stepTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-yellow);
}

.stepText {
  margin-bottom: 15px;
}

.stepSubList {
  list-style-type: disc;
  margin-bottom: 20px;
}

.stepSubList li::marker {
  color: var(--color-yellow);
}

.stepSubList li {
  margin-bottom: 10px;
}

.steps__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 300px;
  flex: 0 0 300px;
}

.steps__image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.paymentOptions {
  background-color: var(--secondary-bg);
}

.paymentContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
}

.paymentImage {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 45%;
  flex: 0 0 45%;
}

.paymentImage img {
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.paymentText {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.payment-methods__list {
  margin: 20px 0;
}

.payment-methods__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 5px;
}

.appInfo {
  background-color: #0a0a0c;
}

.appText {
  margin-bottom: 40px;
}

.appFeatures {
  margin-bottom: 40px;
  padding: 30px;
  background-color: var(--secondary-bg);
  border-radius: 8px;
}

.featuresTitle {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--color-yellow);
}

.featuresText {
  color: #e0e0e0;
}

.appDownload {
  background-color: var(--secondary-bg);
  padding: 60px 0;
}

.downloadList {
  margin: 20px 0;
  counter-reset: app-list;
  list-style: none;
}

.downloadList li {
  counter-increment: app-list;
  margin-bottom: 15px;
  position: relative;
}

.downloadList li::before {
  content: counter(app-list) ".";
  font-weight: 700;
  color: var(--color-yellow);
  margin-right: 10px;
}

.sectionImage {
  border-radius: 8px;
  margin-bottom: 30px;
}

.siteFooter {
  background-color: #0a0a0c;
  padding: 50px 0 30px;
  border-bottom: none;
}

.footerContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footerLogo {
  text-align: center;
  margin-bottom: 30px;
}

.footerLogo img {
  height: 50px;
  margin-bottom: 10px;
}

.footerTitle {
  font-size: 18px;
  font-weight: 700;
  color: #e2e1ab;
}

.footerBadges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footerBadge {
  height: 28px;
}

.footerBadge img {
  height: 100%;
}

.footerCopyright {
  color: #888;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1024px) {
  .heroTitle {
    font-size: 36px;
  }
  .heroImage img {
    max-width: 250px;
  }
  .sectionTitle {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .menuToggle {
    display: block;
  }
  .headerMenu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0a0a0c;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1000;
    padding: 60px 20px;
  }
  .header__menu--active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .headerMenu li {
    margin: 15px 0;
  }
  .menuLink {
    font-size: 20px;
  }
  .scrollTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
  .heroContainer, .paymentContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .heroContent, .paymentImage, .paymentText {
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
  }
  .heroImage {
    margin-top: 30px;
  }
  .heroTitle {
    font-size: 32px;
  }
  .stepItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .steps__image {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
}
@media (max-width: 767.98px) {
  .headerBox {
    padding-right: 10px;
  }
}
@media (max-width: 480px) {
  .headerButtons {
    gap: 10px;
  }
  .headerButton {
    padding: 8px 15px;
    font-size: 14px;
  }
  .heroButton {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    text-align: center;
  }
  .heroTitle {
    font-size: 28px;
  }
  .sectionTitle {
    font-size: 24px;
  }
  .tableRow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tableHeaderCell {
    width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .topicsTitle {
    font-size: 20px;
  }
  .topicItem {
    margin-bottom: 12px;
  }
  .scrollTop {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
  }
  .footerBadges {
    gap: 15px;
  }
}