@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --color-bg:#212121;
  --color-primary:#f5b817;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-bg);
  background-color: #fafbfb;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: #1475ad;
}

section a:not([class]) {
  text-decoration: underline;
}

ol, ul {
  list-style-position: inside;
  margin: 1rem 0;
}

.pageLayout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.verticalSpace > :not(:last-child) {
  margin-bottom: 15px;
}

.headerBar {
  background-color: var(--color-bg);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.brandLogo img {
  height: auto;
}

.menuContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
}

.menuContainer li {
  margin: 0 8px;
}

.menuContainer a {
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.menuContainer a:hover {
  color: var(--color-primary);
}

.primaryBtn {
  display: inline-block;
  padding: 8px 15px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mainAction {
  background-color: var(--color-primary);
  color: var(--color-bg);
}

.mainAction:hover {
  background-color: #e7d798;
}

.burgerToggle {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 30px;
  flex: 0 0 30px;
  height: 22px;
  cursor: pointer;
  z-index: 102;
}

.toggleLine {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.burgerToggle.active .toggleLine:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg);
  -ms-transform: translateY(9px) rotate(45deg);
  transform: translateY(9px) rotate(45deg);
}

.burgerToggle.active .toggleLine:nth-child(2) {
  opacity: 0;
}

.burgerToggle.active .toggleLine:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg);
  -ms-transform: translateY(-9px) rotate(-45deg);
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-menu__cta {
  margin-top: 20px;
  display: inline-block;
}

.mainContent {
  padding: 0 0 30px 0;
}

.introSection {
  background-image: url(../brand-images/download-banner-main.webp);
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  position: relative;
  margin-bottom: 30px;
}

.introSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.introWrap {
  position: relative;
  z-index: 1;
}

.introHeading {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.introText {
  max-width: 800px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
  font-size: 1.1rem;
}

section {
  margin-bottom: 50px;
}

.sectionTitle {
  font-size: 1.8rem;
  color: var(--color-bg);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.sectionTitle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--color-primary);
}

.benefitsBody, .featureBody, .appBody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}

.benefitsText, .featureText, .appText {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.benefitsImage, .featureImage, .appImage {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.guideWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.scrollTopBtn {
  position: fixed;
  bottom: 40px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: var(--color-bg);
  padding: 10px 15px;
  border-radius: 50%;
  border: none;
  -webkit-box-shadow: 0 1px 4px rgba(245, 184, 23, 0.9);
  box-shadow: 0 1px 4px rgba(245, 184, 23, 0.9);
  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-transition: ease-in 0.15s;
  transition: ease-in 0.15s;
  visibility: hidden;
  opacity: 0;
}

.scrollTopBtn.active {
  -webkit-transition: ease-out 0.15s;
  transition: ease-out 0.15s;
  visibility: visible;
  opacity: 1;
}

.scrollTopBtn:after {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: block;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M9.29 6.71a1 1 0 0 0 0 1.41L13.17 12l-3.88 3.88a1 1 0 1 0 1.41 1.41l4.59-4.59a1 1 0 0 0 0-1.41L10.7 6.7a1 1 0 0 0-1.41 0z' fill='%232c2b2a'/%3E%3C/svg%3E%0A") no-repeat center/contain;
}

.stepsList {
  list-style: none;
  counter-reset: item;
  padding-left: 20px;
}

.stepsList li {
  margin-bottom: 10px;
  counter-increment: item;
  position: relative;
}

.stepsList li::before {
  content: counter(item) ".";
  position: absolute;
  left: -20px;
  font-weight: 700;
  color: var(--color-primary);
}

.guideImage {
  margin-top: 30px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.factsList {
  list-style-type: none;
}

.factsList li {
  padding: 10px 0;
  position: relative;
  padding-left: 30px;
  border-bottom: 1px solid #e7e7e7;
}

.factsList li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 1.2rem;
}

.footerSection {
  background-color: var(--color-bg);
  color: #fff;
  padding: 40px 0 20px;
}

.footerWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.footerInfo h3 {
  margin-bottom: 15px;
  font-size: 1rem;
  color: var(--color-primary);
}

.footerLinks {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

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

.footerLinks a {
  color: #c8cbd0;
}

.footerLinks a:hover {
  color: #fff;
}

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

.socialButton {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #989a9f;
  position: relative;
}

.socialButton::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.facebookBtn::before {
  content: "f";
  font-weight: 700;
  color: var(--color-bg);
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

.twitterBtn::before {
  content: "t";
  font-weight: 700;
  color: var(--color-bg);
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

.instagramBtn::before {
  content: "i";
  font-weight: 700;
  color: var(--color-bg);
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

.youtubeBtn::before {
  content: "y";
  font-weight: 700;
  color: var(--color-bg);
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

.telegramBtn::before {
  content: "t";
  font-weight: 700;
  color: var(--color-bg);
  text-align: center;
  font-size: 20px;
  line-height: 40px;
}

.footerCopy {
  text-align: center;
  margin-top: 20px;
  color: #989a9f;
  font-size: 0.9rem;
}

@media (max-width: 800px) {
  .menuContainer li {
    margin: 0 4px;
  }
}
@media (max-width: 768px) {
  .burgerToggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .benefitsBody, .featureBody, .appBody {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .benefitsImage, .featureImage, .appImage {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    margin-bottom: 20px;
  }
  .introHeading {
    font-size: 1.8rem;
  }
  .sectionTitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .topbarAction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 0 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .popupMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 101;
    padding-top: 80px;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
  .popupMenu.active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .popupItems {
    list-style: none;
    padding: 0;
    margin: 0;
    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;
  }
  .popupItems li {
    margin: 15px 0;
  }
  .popupItems a {
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 700;
  }
  .popupItems a:hover {
    color: var(--color-primary);
  }
}