@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* base start */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: "Inter", sans-serif;
  scrollbar-width: thin;
  scrollbar-color: #EFD0A3 #323B4C;
}
h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span {
    margin: 0px;
  }
button,
input,
textarea,
select {
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

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

html {
  width: 100%;
  overflow: hidden auto;
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  min-height: 100vh;
}
/* base end */

/* scrollbar start */
::-webkit-scrollbar {
  width: 0.52vw;
  height: 0.52vw;
}

::-webkit-scrollbar-track {
  background: #2b2b2f;
}

::-webkit-scrollbar-thumb {
  background:#EFD0A3;
  border-radius: 0.52vw;
  border: 0.104vw solid #EFD0A3;
}

::-webkit-scrollbar-thumb:hover {
  background: #EFD0A3;
}
/* scrollbar end */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/* header start */
.site-header {
  width: 100%;
  background: #3c4555;
  position: relative;
  z-index: 100;
  padding: .5vw 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-header__inner {
  width: 100%;
  max-width: 63vw;
  display: flex;
  align-items: center;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  width: 130px;
  height: auto;
  display: block;
}

.site-header__nav-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0 38px;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.site-header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.site-header__nav-link:hover {
  color: #EFD0A3;
}

.site-header__nav-arrow {
  display: inline-block;
  margin-left: 7px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.site-header__nav-item:hover .site-header__nav-arrow {
  transform: rotate(180deg);
}

.site-header__dropdown {
  position: absolute;
  top: calc(100% + 19px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 230px;
  background: #1E2530;
  border-radius: 0 0 10px 10px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 29px rgba(0, 0, 0, 0.3);
}

.site-header__nav-item:hover .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header__dropdown-list {
  display: flex;
  flex-direction: column;
}

.site-header__dropdown-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__dropdown-list > li:last-child {
  border-bottom: none;
}

.site-header__dropdown-list a {
  display: block;
  padding: 10px 23px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header__dropdown-list a:hover {
  color: #EFD0A3;
  background: rgba(239, 208, 163, 0.12);
}

.site-header__dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 23px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-header__dropdown-toggle:hover {
  color: #EFD0A3;
  background: rgba(239, 208, 163, 0.12);
}

.site-header__dropdown-arrow {
  display: inline-block;
  margin-left: 8px;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.site-header__dropdown-accordion.is-open .site-header__dropdown-arrow {
  transform: rotate(180deg);
}

.site-header__dropdown-sublist {
  display: none;
  padding-left: 19px;
  padding-bottom: 6px;
}

.site-header__dropdown-accordion.is-open .site-header__dropdown-sublist {
  display: block;
}

.site-header__dropdown-sublist a {
  padding: 7px 23px;
  font-size: 12px;
}

.site-header__dropdown--mega {
  min-width: 538px;
  left: 50%;
  top: calc(100% + 19px);
  transform: translateX(-50%) translateY(8px);
  padding: 19px 29px;
  background: #1E2530;
  border-radius: 0 0 10px 10px;
}

.site-header__nav-item:hover .site-header__dropdown--mega {
  transform: translateX(-50%) translateY(0);
}

.site-header__mega-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.site-header__mega-accordion {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__mega-accordion:last-child {
  border-bottom: none;
}

.site-header__mega-accordion .site-header__mega-list {
  display: none;
  padding-top: 4px;
  padding-bottom: 10px;
}

.site-header__mega-accordion.is-open .site-header__mega-list {
  display: flex;
}

.site-header__mega-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
  padding: 12px 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}

.site-header__mega-title:hover {
  color: #EFD0A3;
}

.site-header__mega-arrow {
  display: inline-block;
  margin-left: 6px;
  flex-shrink: 0;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.9);
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.site-header__mega-accordion.is-open .site-header__mega-arrow {
  transform: rotate(180deg);
}

.site-header__mega-list {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
}

.site-header__mega-list a {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  transition: color 0.2s ease;
}

.site-header__mega-list a:hover {
  color: #EFD0A3;
}

.site-header__right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 29px;
}

.site-header__contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.site-header__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.site-header__contact-phone {
  font-size: 16px;
}

.site-header__contact-email {
  font-size: 13px;
}

.site-header__contact-row a {
  color: inherit;
  transition: color 0.2s ease;
}

.site-header__contact-icon-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__contact-row a:hover {
  color: #EFD0A3;
}

.site-header__lang {
  display: flex;
  flex-direction: column;
  gap: 3px;
  align-items: flex-end;
  padding-left: 19px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header__contact-icon {
  width: 14px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
}

.site-header__lang-item {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  transition: color 0.2s ease;
}

.site-header__lang-item:hover {
  color: #EFD0A3;
}

.site-header__lang-item--active {
  color: #EFD0A3;
  font-weight: 500;
}

/* header end */

/* ========== INDEX PAGE ========== */

/* banner start */
.banner {
  width: 100%;
  padding: 4vw 2vw 10vw 2vw;
  position: relative;
  overflow: hidden;
  background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
  display: flex;
  justify-content: center;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/декор (9).png") center/cover no-repeat;
  pointer-events: none;
}

.banner__inner {
  width: 100%;
  max-width: 63vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.banner__info {
  width: 100%;
}

.banner__title {
  color: #FFFFFF;
  font-size: 2.5vw;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: 1.5vw;
}

.banner__features {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  margin-bottom: 1vw;
}

.banner__feature {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1vw;
  font-weight: 400;
}

.banner__check {
  width: 1.2vw;
  height: 1.2vw;
  object-fit: contain;
  flex-shrink: 0;
}

.banner__support {
  color: #FADCA4;
  font-size: 1.1vw;
  margin-bottom: 1.2vw;
  font-weight: 800;
}

.banner__tg-wrap {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.banner__tg-btn {
  display: inline-block;
  padding: 0.5vw .75vw;
  background: #fff;
  color: #1E2530;
  font-size: 1vw;
  font-weight: 500;
  border-radius: 0.5vw;
  border: 1px solid #5A6068;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0px 2px 20px 0px #FFFFFF1A;
}

.banner__tg-btn:hover {
  background: #EFD0A3;
  border-color: #EFD0A3;
  color: #1E2530;
}

.banner__tg-note {
  color: #9DA3AF;
  font-size: 0.75vw;
  font-style: italic;
}

.banner__widget {
  flex-shrink: 0;
  width: 19.7vw;
  background: #363C44;
  border-radius: 0.9vw;
  padding: 1vw;
  box-shadow: 0 0.4vw 2vw rgba(0, 0, 0, 0.3);
  overflow: visible;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.banner__widget-toggle {
  display: flex;
  background: #EFD0A3;
  padding: .5vw 1vw;
  margin: 0;
  border-radius: 10px;
}

.banner__toggle-btn {
  flex: 1;
  padding: 0.6vw 1vw;
  font-size: 0.85vw;
  color: #9B7B4F;
  transition: all 0.2s;
  background: transparent;
}

.banner__toggle-btn:first-child {
  border-radius: 10px;
}

.banner__toggle-btn:last-child {
  border-radius: 0 0.4vw 0.4vw 0;
}

.banner__toggle-btn--active {
  background: #FFFFFF;
  color: #1E2530;
  font-weight: 600;
  border: none;
  margin: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.banner__widget-body {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  background: #363C44;
  margin-top: 3vw;
}

.banner__widget-inputs {
  display: flex;
  align-items: flex-end;
}

.banner__widget-row {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  flex: 1;
  min-width: 0;
}

.banner__widget-label {
  color: #B0B0B0;
  font-size: 0.78vw;
  text-align: center;
}

.banner__currency-field {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 0.5vw;
  overflow: visible;
  padding: .5vw;
}

.banner__widget-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  font-size: 0.95vw;
  color: #363C44;
}

.banner__widget-input::placeholder {
  color: #B0B0B0;
}

.banner__currency-trigger {
  display: flex;
  align-items: center;
  gap: 0.35vw;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  border-left: 1px solid #E5E7EB;
  user-select: none;
  background: transparent;
  border-radius: 0 0.5vw 0.5vw 0;
}

.banner__currency-icon {
  width: 1.1vw;
  height: 1.1vw;
  object-fit: contain;
}

.banner__currency-text {
  font-size: 0.82vw;
  color: #363C44;
  font-weight: 600;
}

.banner__currency-arrow {
  font-size: 0.45vw;
  color: #363C44;
  margin-left: 0.2vw;
  transition: transform 0.2s;
}

.banner__currency-trigger.is-open .banner__currency-arrow {
  transform: rotate(180deg);
}

.banner__currency-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  min-width: 100%;
  background: #fff;
  border: 1px solid #D0D0D0;
  border-radius: 0.4vw;
  box-shadow: 0 0.3vw 1vw rgba(0, 0, 0, 0.15);
  margin-top: 0.2vw;
  padding: 0.3vw 0;
  z-index: 1000;
  display: none;
  list-style: none;
}

.banner__currency-trigger.is-open .banner__currency-dropdown {
  display: block;
}

.banner__currency-dropdown li {
  padding: 0.4vw 0.75vw;
  font-size: 0.8vw;
  color: #363C44;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.4vw;
  transition: background 0.15s;
}

.banner__dropdown-icon {
  width: 1vw;
  height: 1vw;
  object-fit: contain;
}

.banner__currency-dropdown li:hover {
  background: #F3F4F6;
}

.banner__swap-btn {
  width: 2.2vw;
  height: 2.2vw;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  transition: opacity 0.2s;
}

.banner__swap-btn:hover {
  opacity: 0.8;
}

.banner__swap-icon {
  width: 1.1vw;
  height: 1.1vw;
  object-fit: contain;
  filter: brightness(0) invert(0.75);
}

.banner__widget-rate {
  color: #FFFFFF80;
  font-size: 0.72vw;
  font-weight: 500;
  text-align: center;
}
.banner__widget-rate-value{
  color: #FFF;
}
.banner__widget-submit {
  width: 100%;
  padding: 0.8vw 1.2vw;
  border: 1px solid #fff;
  border-radius: 0.5vw;
  color: #fff;
  font-size: 0.88vw;
  font-weight: 500;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0px 2px 20px 0px #FFFFFF1A;
}

.banner__widget-submit:hover {
  background: #5A626E;
  border-color: rgba(255, 255, 255, 0.45);
}

/* banner end */

/* mh stats start */
.mh {
  width: 100%;
  padding: 0vw 2vw;
  display: flex;
  justify-content: center;
  margin-top: 5vw;
}

.mh__inner {
  width: 100%;
  max-width: 55vw;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2vw;
}

.mh__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8vw;
}

.mh__icon {
  width: 1.7vw;
  height: 1.7vw;
  object-fit: contain;
}

.mh__text {
  font-size: 0.9vw;
  line-height: 1.4;
  margin: 0;
  color: #6B7280;
}

.mh__text span {
  color: #1E2530;
  font-weight: 700;
}

/* mh stats end */

/* about section start */
.about-section {
  width: 100%;
  overflow: hidden;
  padding: 0vw 2vw;
  margin-top: 5vw;
}

.about-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  display: flex;
  /* min-height: 32vw; */
  border-radius: 0.5vw;
  overflow: hidden;
  gap: 1vw;
  height: auto;
}

.about-section__left {
  /* flex: 0 0 50%; */
  /* background: #1a1d24; */
  /* padding: 4vw 3vw 4vw 4vw; */
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  width: 50%;
}

.about-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 100%;
  /* margin: 0 0 0.5vw 0; */
}

.about-section__text {
  color: #1E2530;
  font-size: 1vw;
  line-height: 100%;
  margin: 0;
  font-weight: 400;
}

.about-section__intro {
  color: #1E2530;
  font-size: 1vw;
  margin: 0;
  font-weight: 600;
}

.about-section__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: #1E2530;
  font-size: 1vw;
  line-height: 100%;
}

.about-section__list li {
  margin-bottom: .5vw;
  display: flex;
  align-items: center;
  gap: .5vw;
}

.about-section__num {
  flex-shrink: 0;
  width: 1.6vw;
  height: 1.6vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2D333B;
  color: #E5E7EB;
  font-size: 0.85vw;
  font-weight: 600;
  border-radius: 50%;
}

.about-section__right {
  /* flex: 1; */
  /* min-height: 32vw; */
  overflow: hidden;
  width: 50%;
}

.about-section__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* about section end */

/* trust section start */
.trust-section {
  width: 100%;
  padding: 0vw 2vw;
  /* background: #fff; */
  margin-top: 6vw;
}

.trust-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
}

.trust-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  line-height: 100%;
  margin: 0 0 0.8vw 0;
}

.trust-section__subtitle {
  color: #1E2530;
  font-size: 1.1vw;
  font-weight: 300;
  text-align: center;
  margin: 0 0 2vw 0;
}

.trust-section__scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.8vw;
  scrollbar-width: thin;
  scrollbar-color: #EFD0A3 #E8ECF0;
}

.trust-section__scroll-wrap::-webkit-scrollbar {
  height: 0.4vw;
}

.trust-section__scroll-wrap::-webkit-scrollbar-track {
  background: #E8ECF0;
  border-radius: 0.4vw;
}

.trust-section__scroll-wrap::-webkit-scrollbar-thumb {
  background: #EFD0A3;
  border-radius: 0.4vw;
}

.trust-section__scroll-wrap::-webkit-scrollbar-thumb:hover {
  background: #e5c892;
}

.trust-section__cards {
  display: flex;
  align-items: stretch;
  gap: 1vw;
  padding: 0 0.5vw;
}

.trust-section__card {
  flex: 0 0 28vw;
  min-width: 28vw;
  background: #FAFCFF;
  border-radius: 0.6vw;
  display: flex;
  flex-direction: column;
}

.trust-section__card-body {
  flex: 1;
  min-height: 0;
  padding: 1.5vw 1vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.trust-section__card-img-wrap {
  height: 10vw;
  overflow: hidden;
  border-radius: 0 0 0.6vw 0.6vw;
  flex-shrink: 0;
}

.trust-section__card-header {
  display: flex;
  align-items: center;
  gap: 0.8vw;
}

.trust-section__num {
  flex-shrink: 0;
  width: 1.8vw;
  height: 1.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FF8D00;
  color: #fff;
  font-size: 1vw;
  font-weight: 700;
  border-radius: 50%;
}

.trust-section__card-title {
  color: #1E2530;
  font-size: 1vw;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.trust-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #4B5563;
  font-size: 0.85vw;
  line-height: 1.6;
}

.trust-section__list li {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  /* margin-bottom: 0.4vw; */
}

.trust-section__check {
  width: 1vw;
  height: 1vw;
  flex-shrink: 0;
  object-fit: contain;
}

.trust-section__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* trust section end */

/* reviews section start */
.reviews-section {
  width: 100%;
  padding: 0 5vw;
  background: #fff;
  margin-top: 7vw;
}

.reviews-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
}

.reviews-section__title {
  color: #1E2530;
  font-size: 1.8vw;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2vw 0;
}

.reviews-section__nav {
  position: absolute;
  top: 3vw;
  right: 0;
  display: flex;
  gap: 0.5vw;
}

.reviews-section__arrow {
  width: 1.25vw;
  height: 1.25vw;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.reviews-section__arrow svg {
  width: 100%;
  height: 100%;
  transition: stroke 0.2s, fill 0.2s;
}

.reviews-section__arrow:hover svg circle {
  stroke: #EFD0A3 !important;
}

.reviews-section__arrow:hover svg path {
  fill: #EFD0A3 !important;
}

.reviews-section__arrow:hover {
  opacity: 0.9;
}

.reviews-section__carousel {
  margin-bottom: 2vw;
}

.reviews-section__carousel .owl-stage-outer {
  padding: 1vw 0;
}

.reviews-section__carousel .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

.reviews-section__carousel .owl-item {
  display: flex !important;
  align-items: stretch !important;
}


.reviews-section__carousel .owl-item.center .reviews-section__card {
  background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
}

.reviews-section__carousel .owl-item.center .reviews-section__name,
.reviews-section__carousel .owl-item.center .reviews-section__date,
.reviews-section__carousel .owl-item.center .reviews-section__text,
.reviews-section__carousel .owl-item.center .reviews-section__link {
  color: #fff !important;
}

.reviews-section__carousel .owl-item.center .reviews-section__stars {
  color: #FFB800 !important;
}

.reviews-section__carousel .owl-item.center .reviews-section__link:hover {
  color: #EFD0A3 !important;
}

.reviews-section__card {
  background: #FAFCFF;
  border-radius: 0.6vw;
  padding: 1vw;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6vw;
  width: 100%;
  flex: 1;
  transition: background 0.3s;
}

.reviews-section__avatar {
  width: 4vw !important;
  height: 4vw !important;
  min-width: 4vw !important;
  min-height: 4vw !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center 40% !important;
  flex-shrink: 0 !important;
  display: block !important;
}

.reviews-section__name {
  color: #1E2530;
  font-size: 1vw;
  font-weight: 600;
  margin: 0;
}

.reviews-section__date {
  color: #6B7280;
  font-size: 0.75vw;
  margin: 0;
}

.reviews-section__text {
  color: #4B5563;
  font-size: 0.85vw;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.reviews-section__stars {
  color: #FFB800;
  font-size: 1vw;
  letter-spacing: 0.1em;
}

.reviews-section__link {
  color: #363C44;
  font-size: 0.8vw;
  text-decoration: underline;
  transition: color 0.2s;
  margin-top: 2vw;
}

.reviews-section__link:hover {
  color: #EFD0A3;
}

.reviews-section__btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.7vw 2vw;
  /* background: #EFD0A3; */
  color: #1E2530;
  font-size: 0.9vw;
  font-weight: 600;
  border-radius: 0.5vw;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
}

.reviews-section__btn:hover {
  background: #e5c892;
  color: #1E2530;
}

.reviews-section__carousel .owl-nav {
  display: none;
}

/* reviews section end */

/* offices section start */
.about-offices-section {
  width: 100%;
  padding: 0 2vw;
  margin-top: 7vw;
}

.about-offices-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.about-offices-section__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1e252e;
  text-align: center;
  margin: 0 0 2.5vw;
}

.about-offices-section__grid {
  display: flex;
  gap: 2vw;
  align-items: stretch;
}

.about-offices-section__left {
  flex: 1;
  background: rgba(246, 251, 255, 1);
  padding: 2vw 1vw;
  border-radius: 0.6vw;
}

.about-offices-section__subtitle {
  font-size: 1.2vw;
  font-weight: 700;
  color: #1e252e;
  margin: 0 0 1vw;
}

.about-offices-section__desc {
  font-size: 0.95vw;
  color: #374151;
  line-height: 1.5;
  margin: 0 0 1.5vw;
}

.about-offices-section__info {
  display: flex;
  align-items: flex-start;
  gap: 0.8vw;
  margin-bottom: 1.5vw;
}

.about-offices-section__check {
  color: #6e7278;
  font-size: 1vw;
  flex-shrink: 0;
  margin-top: 0.2vw;
}

.about-offices-section__info strong {
  color: #1e252e;
}

.about-offices-section__list-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 0.5vw;
  margin-bottom: 1.5vw;
  /* background: #fff; */
  background: rgba(250, 252, 255, 1);
  padding: 1vw;
}

.about-offices-section__list-title {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  /* padding: 1vw 1.2vw; */
  font-size: 1vw;
  font-weight: 600;
  color: #1e252e;
  cursor: pointer;
  list-style: none;
}

.about-offices-section__list-title::-webkit-details-marker {
  display: none;
}

.about-offices-section__list-arrow {
  font-size: 0.7vw;
  color: #1e252e;
  transition: transform 0.2s ease;
}

.about-offices-section__list-wrap:not([open]) .about-offices-section__list-arrow {
  transform: rotate(180deg);
}

.about-offices-section__list-scroll {
  height: 6vw;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-offices-section__list-scroll::-webkit-scrollbar {
  display: none;
}

.about-offices-section__list {
  /* padding: 0.8vw 1.2vw 1.2vw 2.5vw; */
  margin: 0;
  list-style: none;
  padding-left: 1vw;
  margin-top: 1vw;
}

.about-offices-section__list li {
  position: relative;
  font-size: 0.85vw;
  color: #1e252e;
  /* padding: 0.5vw 0 0.5vw 1.2vw; */
  line-height: 100%;
  /* min-height: 1.8vw; */
  list-style: disc;
  font-weight: 500;
}



.about-offices-section__actions {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}

.about-offices-section__btn {
  display: inline-block;
  padding: 0.8vw 1.5vw;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
  color: #1E2530;
  font-size: 0.95vw;
  font-weight: 600;
  border-radius: 0.5vw;
  transition: background 0.2s, transform 0.2s;
}

.about-offices-section__btn:hover {
  background: #e5c892;
  transform: translateY(-1px);
}

.about-offices-section__link {
  font-size: 0.95vw;
  color: rgba(50, 59, 76, 1);
  transition: color 0.2s;
  font-weight: 500;
  text-decoration: underline;
}

.about-offices-section__link:hover {
  color: #2563eb;
}

.about-offices-section__right {
  flex: 1;
  background: #1e252e;
  padding: 2vw 1vw;
  border-radius: 0.6vw;
}

.about-offices-section__map-title {
  font-size: 1.2vw;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5vw;
}

.about-offices-section__map-hint {
  font-size: 0.85vw;
  color: #9ca3af;
  margin: 0 0 1vw;
}

.about-offices-section__map-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 0.4vw;
}

.about-offices-section__map {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* offices section end */

/* steps section start - index (light) */
.index-steps-section {
  width: 100%;
  padding: 0 5vw;
  margin-top: 7vw;
}

.index-steps-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.index-steps-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 3vw 0;
}

.index-steps-section__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 1vw;
  position: relative;
  margin-bottom: 3vw;
}

.index-steps-section__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 1.5vw;
  left: 0;
  width: 107%;
  height: 1px;
  background: #D1D5DB;
  z-index: 0;
}

.index-steps-section__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1.5vw;
  left: calc(107% + 0vw);
  width: 0;
  height: 0;
  border-top: 0.25vw solid transparent;
  border-bottom: 0.25vw solid transparent;
  border-left: 0.4vw solid #374151;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.index-steps-section__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  position: relative;
  z-index: 1;
}

.index-steps-section__num {
  width: 3vw;
  height: 3vw;
  min-width: 3vw;
  min-height: 3vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1E2530;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2vw;
  font-weight: 700;
  margin-bottom: 1.2vw;
  flex-shrink: 0;
  position: relative;
}

.index-steps-section__num::after {
  content: "";
  position: absolute;
  inset: -0.2vw;
  border-radius: 50%;
  border: 2px solid rgba(239, 152, 26, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.index-steps-section__item:hover .index-steps-section__num::after {
  opacity: 1;
}

.index-steps-section__content {
  flex: 1;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.index-steps-section__heading {
  color: #EF981A;
  font-size: 1.1vw;
  font-weight: 700;
  margin: 0 0 0.8vw 0;
  line-height: 120%;
  width: 100%;
  text-align: left;
}

.index-steps-section__text {
  color: #1E2530;
  font-size: 0.85vw;
  line-height: 120%;
  margin: 0;
  text-align: left;
  width: 100%;
}

.index-steps-section__btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5vw;
  color: #1E2530;
  font-size: 1.1vw;
  font-weight: 500;
  border-radius: 0.5vw;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
}

.index-steps-section__btn:hover {
  background: #EFD0A3;
  color: #1E2530;
}

/* about steps section (about.html) */
.about-steps-section {
  width: 100%;
  padding: 5vw 2vw;
  background: #2c323f;
  position: relative;
  overflow: hidden;
  margin-top: 7vw;
}

.about-steps-section .about-steps-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}


.about-steps-section__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  pointer-events: none;
  z-index: 0;
}

.about-steps-section__decor img {
  width: 100%;
  height: 100%;
  /* object-fit: contain; */
  object-position: center;
}

.about-steps-section__decor--left {
  left: 0;
}

.about-steps-section__decor--right {
  right: 0;
}

.about-steps-section .about-steps-section__title {
  color: #fff;
  font-size: 2.1vw;
  font-weight: 600;
  margin: 0 0 2.5vw 0;
  text-align: center;
}

.about-steps-section .about-steps-section__list {
  display: flex;
  gap: 1vw;
  align-items: stretch;
  margin-bottom: 2.5vw;
}

.about-steps-section .about-steps-section__item {
  flex: 1;
  position: relative;
  background: #3b414f;
  border-radius: 0.6vw;
  padding: 2.5vw 1vw 1vw 1vw;
  box-shadow: 0 0.4vw 1.2vw rgba(0, 0, 0, 0.2);
  /* min-height: 14vw; */
  overflow: hidden;
}

.about-steps-section .about-steps-section__item:not(:last-child)::before,
.about-steps-section .about-steps-section__item:not(:last-child)::after {
  display: none;
}

.about-steps-section__num-bg {
  position: absolute;
  top: 0;
  left: 1vw;
  font-size: 6.7vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.about-steps-section .about-steps-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-steps-section .about-steps-section__heading {
  color: #fff;
  font-size: 1.25vw;
  font-weight: 600;
  margin-bottom: 1.5vw;
  line-height: 100%;
  text-align: left;
}

.about-steps-section .about-steps-section__text {
  color: rgba(255, 255, 255, 1);
  font-size: 0.85vw;
  line-height: 120%;
  margin: 0;
  text-align: left;
  width: 85%;
}

/* steps section end */

/* about events section start - about.html */
.about-events-section {
  width: 100%;
  padding: 0vw 2vw;
  margin-top: 7vw;
  background: #fff;
}

.about-events-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.about-events-section__title {
  color: #1e252e;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5vw 0;
}

.about-events-section__cards {
  display: flex;
  gap: 1vw;
  justify-content: center;
  flex-wrap: wrap;
}

.about-events-section__card {
  flex: 1;
  min-width: 18vw;
  max-width: 22vw;
  display: flex;
  flex-direction: column;
  border-radius: 0.6vw;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  /* box-shadow: 0 0.2vw 0.8vw rgba(0, 0, 0, 0.08); */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-events-section__card:hover {
  transform: translateY(-0.3vw);
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.15);
}

.about-events-section__card-img-wrap {
  height: 13.7vw; /* ~263px at 1920px viewport */
  overflow: hidden;
}

.about-events-section__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.about-events-section__card-title {
  display: block;
  padding: 1vw;
  color: #1e252e;
  font-size: 0.9vw;
  font-weight: 500;
  text-align: center;
}
/* about events section end */

/* events section start */
.events-section {
  width: 100%;
  padding: 4vw 2vw;
  margin-top: 7vw;
  background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
  position: relative;
  overflow: hidden;
}

.events-section__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30vw;
  pointer-events: none;
  z-index: 0;
}

.events-section__decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.events-section__decor--left {
  left: 0;
}

.events-section__decor--right {
  right: 0;
}

.events-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.events-section__title {
  color: #fff;
  font-size: 1.8vw;
  font-weight: 700;
  text-align: center;
  margin: 0 0 2.5vw 0;
}

.events-section__cards {
  display: flex;
  gap: 1vw;
  justify-content: center;
  flex-wrap: wrap;
}

.events-section__card {
  flex: 1;
  min-width: 18vw;
  max-width: 22vw;
  display: flex;
  flex-direction: column;
  border-radius: 0.6vw;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.events-section__card:hover {
  transform: translateY(-0.3vw);
  box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.35);
}

.events-section__card-img-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.events-section__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.events-section__card-title {
  display: block;
  padding: 1vw;
  color: #fff;
  font-size: .85vw;
  font-weight: 300;
  text-align: center;
}

/* events section end */

/* about multivalute section start - about.html */
.about-multivalute-section {
  width: 100%;
  padding: 0 2vw;
  margin-top: 7vw;
  background: #fff;
}

.about-multivalute-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.about-multivalute-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2vw 0;
  line-height: 1.2;
}

.about-multivalute-section__block {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-bottom: 2vw;
}

.about-multivalute-section__left {
  flex: 1;
  min-width: 0;
}

.about-multivalute-section__subtitle {
  color: #1E2530;
  font-size: 1.2vw;
  font-weight: 600;
  margin: 0 0 1vw 0;
}

.about-multivalute-section__desc {
  color: #1E2530;
  font-size: 1vw;
  line-height: 1.5;
  margin: 0 0 1.2vw 0;
}

.about-multivalute-section__feature {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  margin-bottom: 0.8vw;
}

.about-multivalute-section__feature span {
  font-size: 1vw;
  font-weight: 500;
  color: #1E2530;
}

.about-multivalute-section__check {
  color: #6e7278;
  font-size: 0.9vw;
  flex-shrink: 0;
}

.about-multivalute-section__hint {
  color: #6b7280;
  font-size: 0.85vw;
  line-height: 1.5;
  margin: 0;
}

.about-multivalute-section__right {
  flex: 1;
  min-width: 0;
}

.about-multivalute-section__img-wrap {
  height: 15vw;
  border-radius: 0.6vw;
  overflow: hidden;
  background: #f3f4f6;
}

.about-multivalute-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-multivalute-section__intro {
  color: #EF981A;
  font-size: 1.25vw;
  font-weight: 600;
  text-align: center;
  line-height: 120%;
  margin: 0 0 1.5vw 0;
}

.about-multivalute-section__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 2vw;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.about-multivalute-section__arrow {
  width: 1.25vw;
  height: 1.25vw;
  min-width: 28px;
  min-height: 28px;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.about-multivalute-section__arrow svg {
  width: 100%;
  height: 100%;
  transition: stroke 0.2s, fill 0.2s;
}

.about-multivalute-section__arrow:hover svg circle {
  stroke: #EFD0A3 !important;
}

.about-multivalute-section__arrow:hover svg path {
  fill: #EFD0A3 !important;
}

.about-multivalute-section__arrow:hover {
  opacity: 0.9;
}

.about-multivalute-section__carousel {
  flex: 1;
  min-width: 0;
  padding: 0 0.5vw;
  overflow: hidden;
  max-width: 100%;
}

.about-multivalute-section__carousel .owl-stage-outer {
  overflow: hidden;
}

.about-multivalute-section__carousel .owl-stage {
  display: flex;
}

.about-multivalute-section__carousel .owl-item {
  display: flex;
  align-items: stretch;
}

.about-multivalute-section__carousel .owl-item > div {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.about-multivalute-section__carousel .about-multivalute-section__item {
  width: 100%;
  height: auto;
  min-height: 4.5vw;
}

.about-multivalute-section__item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1vw; */
  min-height: 4.5vw;
  transition: opacity 0.2s;
}

.about-multivalute-section__item:hover {
  opacity: 0.85;
}

.about-multivalute-section__logo {
  max-width: 100%;
  max-height: 2.5vw;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.about-multivalute-section__note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5vw;
  color: rgba(30, 37, 48, 1);
  font-size: 0.8vw;
  line-height: 1.4;
  /* text-align: center; */
  margin: 2vw auto 0;
  max-width: 27vw;
  /* background: #f3f4f6; */
  border: 1px solid #d1d5db;
  border-radius: 20px;
  padding: 0.75vw 1vw;
  background: rgba(250, 252, 255, 1);
  font-weight: 600;
  font-style: italic;
}

.about-multivalute-section__note-img {
  flex-shrink: 0;
  width: 1.25vw;
  height: 1.25vw;
  min-width: 24px;
  min-height: 24px;
  object-fit: contain;
  display: block;
}
/* about multivalute section end */

/* about guarantee section start - about.html */
.about-guarantee-section {
  width: 100%;
  padding: 0vw 2vw;
  margin-top: 7vw;
  background: #fff;
}

.about-guarantee-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.about-guarantee-section__title {
  color: #1e252e;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5vw;
  line-height: 100%;
}

.about-guarantee-section__top {
  display: flex;
  align-items: center;
  gap: 1vw;
  /* margin-bottom: 3vw; */
}

.about-guarantee-section__img-wrap {
  flex: 1;
  min-width: 0;
  border-radius: 0.6vw;
  overflow: hidden;
  /* background: #f3f4f6; */
}

.about-guarantee-section__img-wrap--main {
  aspect-ratio: 16/10;
}

.about-guarantee-section__img-wrap--diagram {
  /* aspect-ratio: 1; */
  max-width: 28vw;
  /* padding: 1vw; */
  /* background: #f3f4f6; */
}

.about-guarantee-section__img-wrap--diagram .about-guarantee-section__img {
  object-fit: contain;
}

.about-guarantee-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-guarantee-section__control {
  flex: 1;
  min-width: 0;
}

.about-guarantee-section__subtitle {
  color: #1e252e;
  font-size: 1.2vw;
  font-weight: 600;
  margin: 0 0 1.2vw;
}

.about-guarantee-section__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-guarantee-section__point {
  margin-bottom: 1.2vw;
}

.about-guarantee-section__point:last-child {
  margin-bottom: 0;
}

.about-guarantee-section__point-header {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 0.3vw;
}

.about-guarantee-section__check {
  color: #6e7278;
  font-size: 0.9vw;
  flex-shrink: 0;
}

.about-guarantee-section__point-header strong {
  font-size: 1vw;
  font-weight: 600;
  color: #1e252e;
}

.about-guarantee-section__point-desc {
  font-size: 0.85vw;
  color: #374151;
  line-height: 1.5;
  margin: 0 0 0 1.8vw;
}

.about-guarantee-section__bottom {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-top: 2vw;
}

.about-guarantee-section__programs {
  flex: 1;
  min-width: 0;
}

.about-guarantee-section__programs-title {
  color: #1e252e;
  font-size: 1.2vw;
  font-weight: 600;
  margin: 0 0 1.2vw;
}

.about-guarantee-section__actions {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  margin-top: 1.5vw;
  flex-wrap: wrap;
}

.about-guarantee-section__btn {
  display: inline-block;
  padding: 0.6vw 1.2vw;
  font-size: 0.95vw;
  font-weight: 600;
  border-radius: 0.5vw;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.about-guarantee-section__btn--primary {
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
  color: #1E2530;
  border: none;
}

.about-guarantee-section__btn--primary:hover {
  background: #e5c892;
  color: #1E2530;
}

.about-guarantee-section__btn--link {
  background: none;
  color: #1e252e;
  font-weight: 500;
  text-decoration: underline;
}

.about-guarantee-section__btn--link:hover {
  color: #2563eb;
}
/* about guarantee section end */

/* multivalute section start */
.multivalute-section {
  width: 100%;
  padding: 0 5vw;
  margin-top: 7vw;
  background: #fff;
}

.multivalute-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.multivalute-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.2vw 0;
  line-height: 100%;
}

.multivalute-section__desc {
  color: #1E2530;
  font-size: 1.1vw;
  line-height: 120%;
  text-align: center;
  margin: 0 0 1.5vw 0;
  font-weight: 300;
}

.multivalute-section__intro {
  color: #EF981A;
  font-size: 1.25vw;
  font-weight: 600;
  text-align: center;
  line-height: 120%;
  margin: 0 0 1.5vw 0;
}

.multivalute-section__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 2vw;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.multivalute-section__arrow {
  width: 1.25vw;
  height: 1.25vw;
  min-width: 28px;
  min-height: 28px;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.multivalute-section__arrow svg {
  width: 100%;
  height: 100%;
  transition: stroke 0.2s, fill 0.2s;
}

.multivalute-section__arrow:hover svg circle {
  stroke: #EFD0A3 !important;
}

.multivalute-section__arrow:hover svg path {
  fill: #EFD0A3 !important;
}

.multivalute-section__arrow:hover {
  opacity: 0.9;
}

.multivalute-section__carousel {
  flex: 1;
  min-width: 0;
  padding: 0 0.5vw;
  overflow: hidden;
  max-width: 100%;
}

.multivalute-section__carousel .owl-stage-outer {
  overflow: hidden;
}

.multivalute-section__carousel .owl-stage {
  display: flex;
}

.multivalute-section__carousel .owl-item {
  display: flex;
  align-items: stretch;
}

.multivalute-section__carousel .owl-item > div {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.multivalute-section__carousel .multivalute-section__item {
  width: 100%;
  height: auto;
  min-height: 4.5vw;
}

.multivalute-section__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1vw;
  min-height: 4.5vw;
  transition: opacity 0.2s;
}

.multivalute-section__item:hover {
  opacity: 0.85;
}

.multivalute-section__logo {
  max-width: 100%;
  max-height: 2.5vw;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.multivalute-section__note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.5vw;
  color: #1E2530;
  font-size: 0.8vw;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  max-width: 27vw;
  margin-left: auto;
  margin-right: auto;
  background: #FAFCFF;
  border-radius: 20px;
  padding: .75vw;
}

.multivalute-section__note-icon {
  flex-shrink: 0;
  color: #1E2530;
  font-size: 1.25vw;
  margin-top: 0.15vw;
}

/* multivalute section end */

/* secure section start */
.secure-section {
  width: 100%;
  padding: 0vw 2vw;
  margin-top: 7vw;
  background: #fff;
}

.secure-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3vw;
  /* background: #fff; */
  border-radius: 0.8vw;
  /* box-shadow: 0 0.3vw 1.5vw rgba(0, 0, 0, 0.08); */
  /* padding: 2.5vw; */
}

.secure-section__left {
  flex: 1;
  min-width: 0;
}

.secure-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 100%;
  margin: 0 0 1.5vw 0;
}

.secure-section__list {
  margin: 0 0 1.8vw 0;
  padding-left: 1vw;
  /* list-style: disc; */
}

.secure-section__list li {
  color: #1E2530;
  font-size: 1.1vw;
  line-height: 160%;
  /* margin-bottom: 0.5vw; */
  position: relative;
  list-style: disc;
  font-weight: 400;
}

.secure-section__list li::marker {
  color: #1E2530;
}

.secure-section__actions {
  display: flex;
  align-items: center;
  gap: 1.5vw;
  flex-wrap: wrap;
}

.secure-section__btn {
  display: inline-block;
  padding: 0.6vw .95vw;
  /* background: #DDC3A6; */
  color: #1E2530;
  font-size: 1.1vw;
  font-weight: 500;
  border-radius: 0.5vw;
  transition: background 0.2s, color 0.2s;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
}

.secure-section__btn:hover {
  background: #EFD0A3;
  color: #1E2530;
}

.secure-section__link {
  color: #1E2530;
  font-size: .85vw;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s;
}

.secure-section__link:hover {
  color: #EF981A;
}

.secure-section__right {
  flex: 1;
  min-width: 0;
}

.secure-section__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.6vw;
  object-fit: cover;
}

/* secure section end */

/* monitoring section start */
.monitoring-section {
  width: 100%;
  padding: 4vw 5vw;
  margin-top: 7vw;
  background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
  position: relative;
  overflow: hidden;
}

.monitoring-section__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20vw;
  pointer-events: none;
  z-index: 0;
}

.monitoring-section__decor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.monitoring-section__decor--left {
  left: 0;
}

.monitoring-section__decor--right {
  right: 0;
}

.monitoring-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.monitoring-section__title {
  color: #fff;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5vw 0;
  line-height: 100%;
}

.monitoring-section__carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.monitoring-section__arrow {
  width: 1.25vw;
  height: 1.25vw;
  min-width: 28px;
  min-height: 28px;
  flex-shrink: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}

.monitoring-section__arrow svg {
  width: 100%;
  height: 100%;
  transition: stroke 0.2s, fill 0.2s;
}

.monitoring-section__arrow:hover svg circle {
  stroke: #EFD0A3 !important;
}

.monitoring-section__arrow:hover svg path {
  fill: #EFD0A3 !important;
}

.monitoring-section__arrow:hover {
  opacity: 0.9;
}

.monitoring-section__carousel {
  flex: 1;
  min-width: 0;
  padding: 0 0.5vw;
  overflow: hidden;
  max-width: 100%;
}

.monitoring-section__carousel .owl-stage-outer {
  overflow: hidden;
}

.monitoring-section__carousel .owl-item {
  display: flex;
  align-items: stretch;
}

.monitoring-section__carousel .owl-item > div {
  display: flex;
  align-items: stretch;
  width: 100%;
}

.monitoring-section__carousel .monitoring-section__item {
  width: 100%;
}

.monitoring-section__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2vw;
  min-height: 5vw;
  /* background: #fff; */
  border-radius: 0.5vw;
  transition: opacity 0.2s;
}

.monitoring-section__item:hover {
  opacity: 0.9;
}

.monitoring-section__logo {
  max-width: 100%;
  max-height: 2.5vw;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}
/* monitoring section end */

/* aml section start */
.aml-section {
  width: 100%;
  padding: 0vw 5vw;
  margin-top: 7vw;
  background: #fff;
}

.aml-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.aml-section__row {
  display: flex;
  align-items: stretch;
  gap: 2vw;
  /* margin-bottom: 4vw; */
}

.aml-section__row:last-child {
  margin-bottom: 0;
}


.aml-section__img-wrap {
  flex: 0 0 48%;
  width: 48%;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.6vw;
  background: #1a1d24;
  aspect-ratio: 4 / 3;
}

.aml-section__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.aml-section__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.aml-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 100%;
  margin: 0 0 1vw 0;
}

.aml-section__intro {
  color: #1E2530;
  font-size: 1.1vw;
  /* font-weight: 700; */
  margin: 0 0 0.8vw 0;
  font-weight: 500;
}

.aml-section__list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.aml-section__list li {
  color: #1E2530;
  font-size: .85vw;
  line-height: 140%;
  /* margin-bottom: 0.5vw; */
  padding-left: 1.2vw;
  position: relative;
  font-weight: 500;
}

.aml-section__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35vw;
  height: 0.35vw;
  min-width: 5px;
  min-height: 5px;
  background: #1E2530;
  border-radius: 50%;
}

.aml-section__list strong {
  font-weight: 700;
  color: #1E2530;
}

.aml-section__text {
  color: #1E2530;
  font-size: 1.1vw;
  line-height: 140%;
  margin: 0 0 0.9vw 0;
  font-weight: 400;
}

.aml-section__text:last-of-type {
  margin-bottom: 1vw;
}

.aml-section__link {
  color: #EF981A;
  font-size: 1.1vw;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
  line-height: 100%;
}

.aml-section__link:hover {
  color: #EFD0A3;
}

/* aml section end */

/* news section start */
.news-section {
  width: 100%;
  padding: 0vw 5vw;
  margin-top: 7vw;
  background: #fff;
}

.news-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.news-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5vw 0;
}

.news-section__cards {
  display: flex;
  gap: 1vw;
  margin-bottom: 2.5vw;
}

.news-section__card {
  flex: 1;
  min-width: 0;
  background: #FAFCFF;
  border-radius: 0.6vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.news-section__card:hover {
  background: #1E2530;
}

.news-section__card:hover .news-section__date,
.news-section__card:hover .news-section__card-title,
.news-section__card:hover .news-section__card-desc {
  color: #fff;
}

.news-section__card:hover .news-section__card-link {
  color: #EFD0A3;
}

.news-section__card:hover .news-section__card-link:hover {
  color: #fff;
}

.news-section__card-img-wrap {
  aspect-ratio: 25 / 10;
  overflow: hidden;
}

.news-section__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-section__card-body {
  padding: 1vw;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-section__date {
  color: #6B7280;
  font-size: 0.75vw;
  margin-bottom: 0.5vw;
  transition: color 0.3s ease;
}

.news-section__card-title {
  color: #1E2530;
  font-size: 1.1vw;
  font-weight: 700;
  margin: 0 0 0.6vw 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.news-section__card-desc {
  color: #6B7280;
  font-size: 0.85vw;
  line-height: 1.5;
  margin: 0 0 0.8vw 0;
  flex: 1;
  transition: color 0.3s ease;
}

.news-section__card-link {
  color: #EF981A;
  font-size: 0.9vw;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.news-section__card-link:hover {
  color: #EFD0A3;
}

.news-section__btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.6vw 1.5vw;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
  color: #1E2530;
  font-size: 1vw;
  font-weight: 500;
  border-radius: 0.5vw;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.news-section__btn:hover {
  background: #EFD0A3;
  color: #1E2530;
}

/* news section end */

/* cta section start */
.cta-section {
  width: 100%;
  padding: 5vw 2vw;
  margin-top: 7vw;
  background: #1A202D;
  position: relative;
  overflow: hidden;
}

.cta-section__decor {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 17vw;
  pointer-events: none;
  z-index: 0;
}

.cta-section__decor img {
  width: 100%;
  /* height: 100%; */
  object-fit: contain;
  object-position: center;
}

.cta-section__decor--left {
  left: -2vw;
}

.cta-section__decor--right {
  right: 0;
  top: auto;
}

.cta-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-section__title {
  color: #fff;
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 100%;
  margin: 0 0 2vw 0;
}

.cta-section__btn {
  display: inline-block;
  padding: 0.7vw .5vw;
  background: #F3F4F6;
  color: #374151;
  font-size: 1.1vw;
  font-weight: 600;
  border-radius: 0.5vw;
  text-align: center;
  transition: background 0.2s, color 0.2s;
  /* box-shadow: 0 0.2vw 0.5vw rgba(0, 0, 0, 0.2); */
  box-shadow: 0px 2px 20px 0px #FFFFFF1A;
}

.cta-section__btn:hover {
  background: #EFD0A3;
  color: #1E2530;
}

/* cta section end */

/* ========== ABOUT PAGE ========== */

/* about hero section start - about.html */
.about-hero {
  width: 100%;
  min-height: 80vh;
  background: #1a1e29;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}

.about-hero__bg {
  position: absolute;
  width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  bottom: 0;
  left: 0;
}

.about-hero__decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 62%;
  pointer-events: none;
  z-index: 1;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 81.5vw;
  display: flex;
  align-items: center;
}

.about-hero__left {
  max-width: 56%;
}

.about-hero__title {
  font-size: 2.5vw;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 1.5vw;
}

.about-hero__desc {
  font-size: 0.85vw;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
  margin: 0 0 2vw;
  font-weight: 500;
  width: 75%;
}

.about-hero__features {
  list-style: none;
  margin: 0 0 2vw;
  padding: 0;
}

.about-hero__features li {
  margin-bottom: 0.8vw;
}

.about-hero__features li:last-child {
  margin-bottom: 0;
}

.about-hero__feature-item {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 1.05vw;
  color: rgba(255, 255, 255, 1);
}

.about-hero__check {
  width: 1.7vw;
  height: 1.7vw;
  min-width: 24px;
  min-height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.about-hero__support {
  font-size: 1.05vw;
  color: #FADCA4;
  margin: 0 0 2vw;
  font-weight: 800;
}

.about-hero__actions {
  display: flex;
  gap: 0.5vw;
  align-items: center;
  flex-wrap: wrap;
}

.about-hero__btn {
  display: inline-block;
  padding: 0.5vw 0.65vw;
  font-size: 1vw;
  font-weight: 600;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}

.about-hero__btn--primary {
  background: #fff;
  color: #1a1e29;
  border: 1px solid #e5e7eb;
}

.about-hero__btn--primary:hover {
  background: #f3f4f6;
  color: #1a1e29;
}

.about-hero__btn--outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.about-hero__btn--outline:hover {
  border-color: #EFD0A3;
  color: #EFD0A3;
}

.about-hero__note {
  font-size: 0.75vw;
  color: #9da3af;
  margin-left: 0.5vw;
  font-style: italic;
}

.about-hero__right {
  min-width: 0;
  width: 50%;
  margin-top: -2vw;
  top: -2vw;
  right: 0;
}

.about-hero__coins {
  width: 100%;
  height: auto;
  display: block;
}
/* about hero section end */

/* contact hero section start - contack.html */
.contact-hero {
  width: 100%;
  padding: 4vw 2vw;
  background: #1a1e29;
  position: relative;
  overflow: hidden;
}

.contact-hero__decor {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  /* max-width: 400px; */
  height: 100%;
  object-fit: cover;
  object-position: right center;
  /* pointer-events: none; */
  z-index: 0;
  /* opacity: 0.4; */
}

.contact-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 63vw;
  margin: 0 auto;
}

.contact-hero__title {
  font-size: 2.5vw;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.5vw;
  line-height: 1.2;
}

.contact-hero__phone-row {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-bottom: 1.2vw;
}

.contact-hero__phone {
  font-size: 1.7vw;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}

.contact-hero__phone:hover {
  color: #EFD0A3;
}

.contact-hero__icons {
  display: flex;
  gap: 0.8vw;
}

.contact-hero__icon-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.contact-hero__icon-link:hover {
  opacity: 0.8;
}

.contact-hero__icon {
  width: 1.5vw;
  height: 1.5vw;
  min-width: 24px;
  min-height: 24px;
  object-fit: contain;
  display: block;
}

.contact-hero__email {
  display: block;
  font-size: 1.1vw;
  color: #fff;
  text-decoration: none;
  margin-bottom: 2vw;
  transition: color 0.2s;
}

.contact-hero__email:hover {
  color: #EFD0A3;
}

.contact-hero__actions {
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
}

.contact-hero__btn {
  display: inline-block;
  padding: 0.6vw 1.5vw;
  font-size: 1vw;
  font-weight: 500;
  border-radius: 0.5vw;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.contact-hero__btn--primary {
  background: #fff;
  color: #1E2530;
  border: 1px solid #e5e7eb;
}

.contact-hero__btn--primary:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
}

.contact-hero__btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid #6b7280;
}

.contact-hero__btn--outline:hover {
  border-color: #fff;
  color: #fff;
}


/* contact hero section end */

/* thank you section start - thank.html */
.thank-you {
  min-height: 60vh;
  background: #292E3B;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vw 2vw;
  width: 100%;
}

.thank-you__decor {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  /* opacity: 0.25; */
}

.thank-you__decor--top {
  top: -28%;
  left: 0;
  width: 40%;
  /* max-width: 200px; */
}

.thank-you__decor--bottom {
  bottom: 0;
  right: 0;
  width: 50%;
  /* max-width: 200px; */
}

.thank-you__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.thank-you__inner {
  text-align: center;
  max-width: 63vw;
}

.thank-you__title {
  font-size: 2.8vw;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5vw;
  line-height: 1.2;
}

.thank-you__desc {
  font-size: 1.1vw;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.thank-you__link {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}

.thank-you__link:hover {
  color: #EFD0A3;
}


/* thank you section end */

/* about stats section start - about.html */
.about-stats {
  width: 100%;
  padding: 0 2vw;
  margin-top: 5vw;
}

.about-stats__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.about-stats__row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2vw;
  margin-bottom: 3vw;
}

.about-stats__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8vw;
}

.about-stats__icon {
  width: 1.7vw;
  height: 1.7vw;
  object-fit: contain;
}

.about-stats__text {
  font-size: 0.9vw;
  line-height: 1.4;
  margin: 0;
  color: #6b7280;
}

.about-stats__text span {
  display: block;
  color: #1e252e;
  font-weight: 700;
  margin-bottom: 0.2vw;
}

.about-stats__note {
  display: flex;
  align-items: center;
  gap: 1vw;
  padding: 1.2vw 1.5vw;
  border-radius: 2vw;
  max-width: 32vw;
  margin: 0 auto;
  background: rgba(250, 252, 255, 1);
}

.about-stats__note-icon {
  flex-shrink: 0;
  width: 1.8vw;
  height: 1.8vw;
  min-width: 24px;
  min-height: 24px;
  object-fit: contain;
}

.about-stats__note-text {
  font-size: 0.9vw;
  color: #1e252e;
  line-height: 1.5;
  font-style: italic;
  text-align: center;
}
/* about stats section end */

/* about honest section start - about.html */
.about-honest {
  width: 100%;
  padding: 5vw 2vw 6vw;
}

.about-honest__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.about-honest__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1e252e;
  text-align: center;
  margin: 0 0 3vw;
}

.about-honest__block {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.about-honest__block--2 {
  margin-top: 4vw;
}

.about-honest__text {
  flex: 1;
  min-width: 0;
}

.about-honest__subtitle {
  font-size: 1.3vw;
  font-weight: 600;
  color: #1e252e;
  margin: 0 0 1vw;
}

.about-honest__intro {
  font-size: 0.95vw;
  color: #374151;
  line-height: 1.5;
  margin: 0 0 1.5vw;
  font-weight: 500;
}

.about-honest__point {
  margin-bottom: 1.2vw;
}

.about-honest__point:last-of-type {
  margin-bottom: 1.5vw;
}

.about-honest__point-header {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 0.3vw;
}

.about-honest__check {
  color: #6e7278;
  font-size: 0.9vw;
  flex-shrink: 0;
}

.about-honest__point-header strong {
  font-size: 1vw;
  font-weight: 600;
  color: #1e252e;
}

.about-honest__point-desc {
  font-size: 0.85vw;
  color: #374151;
  line-height: 1.5;
  margin: 0 0 0 1.8vw;
}

.about-honest__img-wrap {
  flex: 1;
  min-width: 0;
}

.about-honest__img {
  width: 100%;
  height: 100%;
  min-height: 18vw;
  object-fit: cover;
  display: block;
  border-radius: 0.5vw;
}
/* about honest section end */

/* about trust section start - about.html (6 cards grid) */
.about-trust {
  width: 100%;
  padding: 0 2vw;
  margin-top: 7vw;
}

.about-trust__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.about-trust__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1e252e;
  text-align: center;
  margin: 0 0 0.6vw;
}

.about-trust__subtitle {
  font-size: 1.1vw;
  font-weight: 300;
  color: #1e252e;
  text-align: center;
  margin: 0 0 2.5vw;
}

.about-trust__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}

.about-trust__card {
  flex: 1 1 calc(50% - 0.75vw);
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: #fafcff;
  border-radius: 0.6vw;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-trust__card:hover {
  box-shadow: 0 0.4vw 1.2vw rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.about-trust__card-body {
  flex: 1;
  padding: 1.5vw 1.2vw;
}

.about-trust__card-header {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 1vw;
}

.about-trust__num {
  flex-shrink: 0;
  width: 1.8vw;
  height: 1.8vw;
  min-width: 28px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  color: #fff;
  font-size: 1vw;
  font-weight: 700;
  border-radius: 50%;
}

.about-trust__card-title {
  font-size: 1vw;
  font-weight: 700;
  color: #1e252e;
  margin: 0;
}

.about-trust__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-trust__list li {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.9vw;
  color: #374151;
  margin-bottom: 0.4vw;
}

.about-trust__list li:last-child {
  margin-bottom: 0;
}

.about-trust__check {
  color: #6e7278;
  font-size: 0.85vw;
  flex-shrink: 0;
}

.about-trust__card-img-wrap {
  height: 10vw;
  overflow: hidden;
  border-radius: 0 0 0.6vw 0.6vw;
}

.about-trust__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* about trust section end */

/* footer start */
.site-footer {
  width: 100%;
  background: #0E1014;
  padding: 3vw 2vw 2vw;
  /* margin-top: 5vw; */
  position: relative;
  overflow: hidden;
}

.site-footer__bg {
  position: absolute;
  width: 66%;
  height: 100%;
  object-position: bottom;
  pointer-events: none;
  z-index: 0;
  bottom: 0;
}

.site-footer__decor {
  position: absolute;
  right: 23%;
  bottom: 0;
  height: 25vw;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  pointer-events: none;
  z-index: 1;
}

.site-footer__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.site-footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3vw;
  padding-bottom: 2.5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.site-footer__logo img {
  height: auto;
  width: 6.7vw;
}

.site-footer__columns {
  display: flex;
  gap: 4vw;
}

.site-footer__col-title {
  color: #FFFFFF80;
  font-size: .85vw;
  font-weight: 600;
  margin-bottom: 1vw;
}

.site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
}

.site-footer__link {
  font-size: .85vw;
  font-weight: 400;
  transition: color 0.2s;
  color: #FFFFFF;
}

.site-footer__link:hover {
  color: #EFD0A3;
}

.site-footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2vw;
}

.site-footer__right-top {
  display: flex;
  align-items: flex-start;
  gap: 2.5vw;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  color: #FFFFFF;
  font-size: 0.65vw;
  transition: color 0.2s;
  font-weight: 600;
}

.site-footer__contact-item--phone {
  font-size: 0.85vw;
}

.site-footer__contact-item:hover {
  color: #EFD0A3;
}

.site-footer__contact-icon-img {
  width: .75vw;
  height: .75vw;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__lang {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  align-items: flex-start;
}

.site-footer__lang-link {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65vw;
  transition: color 0.2s;
  -webkit-font-smoothing: antialiased;
}

.site-footer__lang-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__lang-link--active {
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__btn {
  padding: .5vw .75vw;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95vw;
  font-weight: 500;
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  width: 100%;
}

.site-footer__btn:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
  padding-top: 1.5vw;
}

.site-footer__copy {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65vw;
}

.site-footer__legal {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.65vw;
  transition: color 0.2s;
}

.site-footer__legal:hover {
  color: #EFD0A3;
}

/* footer end */

/* popup form start */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: #1E2530;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 2vw;
}

.popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.popup-overlay.is-open .popup {
  transform: scale(1);
}

.popup {
  position: relative;
  background: #fff;
  border-radius: 1vw;
  box-shadow: 0 1vw 4vw rgba(0, 0, 0, 0.25);
  max-width: 360px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5vw 2.5vw 2.5vw;
  transform: scale(0.95);
  transition: transform 0.3s;
}

.popup__close {
  position: absolute;
  top: 1.2vw;
  right: 1.2vw;
  width: 2vw;
  height: 2vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #374151;
  font-size: 1.4vw;
  cursor: pointer;
  transition: color 0.2s;
}

.popup__close:hover {
  color: #1E2530;
}

.popup__title {
  font-size: 1.8vw;
  font-weight: 700;
  color: #1E2530;
  text-align: center;
  margin: 0 0 0.6vw 0;
}

.popup__desc {
  font-size: 0.95vw;
  color: #6B7280;
  text-align: center;
  margin: 0 0 1.5vw 0;
  line-height: 1.4;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.popup__input {
  width: 100%;
  padding: 0.9vw 1.2vw;
  border: 1px solid #E5E7EB;
  border-radius: 0.5vw;
  font-size: 1vw;
  color: #1E2530;
  transition: border-color 0.2s;
}

.popup__input::placeholder {
  color: #9CA3AF;
}

.popup__input:focus {
  outline: none;
  border-color: #EFD0A3;
}

.popup__checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.6vw;
  cursor: pointer;
}

.popup__checkbox {
  width: 1.2vw;
  height: 1.2vw;
  margin-top: 0.2vw;
  flex-shrink: 0;
}

.popup__checkbox-text {
  font-size: 0.75vw;
  color: #6B7280;
  line-height: 1.4;
}

.popup__submit {
  width: 100%;
  padding: 1vw 1.5vw;
  background: #EFD0A3;
  color: #1E2530;
  font-size: 1.1vw;
  font-weight: 600;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.popup__submit:hover {
  background: #e5c089;
  color: #1E2530;
}

/* popup form end */

/* ========== BLOG PAGE ========== */

/* blog hero section start - blog.html */
.blog-hero {
  width: 100%;
  padding: 4vw 2vw;
  background: #1a1e29;
  position: relative;
  overflow: hidden;
}

.blog-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 63vw;
  margin: 0 auto;
}

.blog-hero__title {
  font-size: 2.5vw;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1vw;
  line-height: 1.2;
}

.blog-hero__desc {
  font-size: 1vw;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}
/* blog hero section end */

/* blog articles section start - blog.html */
.blog-articles-section {
  width: 100%;
  padding: 5vw 2vw;
  /* margin-top: 5vw; */
  background: #fff;
}

.blog-articles-section__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.blog-articles-section__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  margin: 0 0 2.5vw;
  text-align: left;
}

.blog-articles-section__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  margin-bottom: 2.5vw;
}

.blog-articles-section__card {
  flex: 1 1 calc(33.333% - 0.67vw);
  min-width: 0;
  background: #fff;
  border-radius: 0.6vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.blog-articles-section__card:hover {
  background: #272B33;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-articles-section__card:hover .blog-articles-section__date,
.blog-articles-section__card:hover .blog-articles-section__card-title,
.blog-articles-section__card:hover .blog-articles-section__desc {
  color: #fff;
}

.blog-articles-section__card:hover .blog-articles-section__link {
  color: #EF981A;
}

.blog-articles-section__img-wrap {
  aspect-ratio: 25 / 10;
  overflow: hidden;
}

.blog-articles-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.blog-articles-section__body {
  padding: 1vw;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-articles-section__date {
  color: #6B7280;
  font-size: 0.75vw;
  margin-bottom: 0.5vw;
  transition: color 0.3s ease;
}

.blog-articles-section__card-title {
  color: #1E2530;
  font-size: 1vw;
  font-weight: 700;
  margin: 0 0 0.6vw;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-articles-section__desc {
  color: #6B7280;
  font-size: 0.8vw;
  line-height: 1.5;
  margin: 0 0 0.8vw;
  flex: 1;
  transition: color 0.3s ease;
}

.blog-articles-section__link {
  color: #EF981A;
  font-size: 0.9vw;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blog-articles-section__btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.6vw 1.5vw;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
  color: #1E2530;
  font-size: 1vw;
  font-weight: 500;
  border-radius: 0.5vw;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.blog-articles-section__btn:hover {
  background: #EFD0A3;
  color: #1E2530;
}
/* blog articles section end */

/* ========== PAGETRANS PAGE ========== */

/* trans page start - pagetrans.html */
.trans-page {
  width: 100%;
  min-height: 80vh;
  background: #2f3640;
  position: relative;
  overflow: hidden;
  padding: 4vw 2vw 6vw;
}

.trans-page__bg {
  position: absolute;
  /* inset: 0; */
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  bottom: 0;
}

.trans-page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 3vw;
}

.trans-page__left {
  flex: 1;
  max-width: 69.97%;
}

.trans-page__header {
  font-size: 0.85vw;
  color: #b0b8c0;
  margin-bottom: 1vw;
  font-weight: 400;
}

.trans-page__title {
  font-size: 2.5vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5vw;
}

.trans-page__desc {
  font-size: .85vw;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2vw;
}

.trans-page__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5vw .5vw;
  margin-bottom: 2vw;
}

.trans-page__features li {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 1.05vw;
  color: #fff;
}

.trans-page__check {
  width: 1.7vw;
  height: 1.7vw;
  object-fit: contain;
  flex-shrink: 0;
}

.trans-page__btns {
  display: flex;
  gap: .5vw;
  margin-bottom: 0.5vw;
  align-items: center;
}

.trans-page__btn {
  display: inline-block;
  padding: .5vw .65vw;
  font-size: 1vw;
  font-weight: 600;
  border-radius: 0.5vw;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.trans-page__btn--primary {
  background: #fff;
  color: #1e252e;
}

.trans-page__btn--primary:hover {
  background: #f3f4f6;
  color: #1e252e;
}

.trans-page__btn--outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.trans-page__btn--outline:hover {
  border-color: #EFD0A3;
  color: #EFD0A3;
}

.trans-page__note {
  font-size: 0.75vw;
  color: #9DA3AF;
  display: inline;
  margin-left: 0.5vw;
  font-style: italic;
}

.trans-page__right {
  flex: 0 0 34%;
  min-width: 0;
}

.trans-page__form-panel {
  background: #38404a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.8vw;
  padding: 1vw;
  /* box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.25); */
  backdrop-filter: blur(10px);
}

.trans-page__form-title {
  font-size: 1vw;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5vw;
  text-align: center;
}

.trans-page__required {
  display: inline-block;
  width: 0.5vw;
  height: 0.5vw;
  margin-left: 0.3vw;
  vertical-align: middle;
  object-fit: contain;
  position: absolute;
  top: 0;
}


.trans-page__form {
  display: flex;
  flex-direction: column;
  gap: .75vw;
}

.trans-page__form-row {
  display: flex;
  gap: 1vw;
  align-items: stretch;
}

.trans-page__field {
  flex: 1;
  min-width: 0;
}

.trans-page__field--full {
  flex: 1 1 100%;
}

.trans-page__label {
  display: block;
  font-size: 0.75vw;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.4vw;
  position: relative;
}

.trans-page__input,
.trans-page__textarea {
  width: 100%;
  padding: .5vw 0.65vw;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5vw;
  font-size: 0.75vw;
  color: #9DA3AF;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.trans-page__input {
  height: 3.2em;
}

.trans-page__input::placeholder,
.trans-page__textarea::placeholder {
  color: #b0b8c0;
}

.trans-page__custom-select {
  position: relative;
  width: 100%;
  min-width: 0;
}

.trans-page__select-trigger {
  width: 100%;
  min-height: 3.2em;
  height: 3.2em;
  padding: 0.5vw 2.2vw 0.5vw 0.65vw;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5vw;
  font-size: 0.75vw;
  color: #374151;
  background: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
  box-sizing: border-box;
  position: relative;
}

.trans-page__select-trigger:hover,
.trans-page__select-trigger.is-open {
  border-color: rgba(255, 255, 255, 0.5);
}

.trans-page__select-text {
  flex: 1;
  min-width: 0;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
}

.trans-page__select-arrow {
  position: absolute;
  right: 0.65vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6vw;
  color: #6b7280;
  transition: transform 0.2s;
  pointer-events: none;
}

.trans-page__custom-select.is-open .trans-page__select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.trans-page__select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.2vw;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  max-height: 15vw;
  overflow-y: auto;
  display: none;
}

.trans-page__custom-select.is-open .trans-page__select-dropdown {
  display: block;
}

.trans-page__select-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0.3vw 0;
}

.trans-page__select-dropdown li {
  padding: 0.4vw 0.65vw;
  font-size: 0.75vw;
  color: #374151;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4;
}

.trans-page__select-dropdown li:hover {
  background: #f3f4f6;
}

.trans-page__textarea {
  resize: vertical;
  min-height: 3vw;
}

.trans-page__input:focus,
.trans-page__textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.trans-page__disclaimer,
.trans-page__important {
  font-size: 0.55vw;
  color: #9DA3AF;
  line-height: 100%;
  margin: 0;
  font-style: italic;
}

.trans-page__form-btns {
  display: flex;
  gap: .5vw;
  margin-top: 0.5vw;
  justify-content: space-between;
}

.trans-page__submit {
  width: fit-content;
  /* flex: 1; */
  padding: .5vw .65vw;
  background: #fff;
  color: #1E2530;
  font-size: .75vw;
  font-weight: 600;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s;
}

.trans-page__submit:hover {
  background: #f3f4f6;
}

.trans-page__tg-btn {
  width: fit-content;
  /* flex: 1; */
  padding: 0.5vw .6vw;
  border: 1px solid #fff;
  color: #fff;
  font-size: .85vw;
  font-weight: 600;
  border-radius: 0.5vw;
  text-align: center;
  background: #2f3640;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.trans-page__tg-btn:hover {
  border-color: #EFD0A3;
  color: #EFD0A3;
  background: #3d4550;
}

.trans-page__important {
  margin-top: .5vw;
}

/* trans page end */

/* ========== EXCHANGE PAGE ========== */

/* exchange page start - exchange.html */
.exchange-page {
  width: 100%;
  min-height: 80vh;
  /* background: #2f3640; */
  position: relative;
  overflow: hidden;
  padding: 4vw 2vw 6vw;
  background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
}

.exchange-page__bg {
  position: absolute;
  width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  bottom: 0;
}

.exchange-page__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 1vw;
}

.exchange-page__left {
  flex: 1;
  max-width: 69.97%;
}

.exchange-page__header {
  font-size: 0.85vw;
  color: #b0b8c0;
  margin-bottom: 1vw;
  font-weight: 400;
}

.exchange-page__title {
  font-size: 2.5vw;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.5vw;
}

.exchange-page__desc {
  font-size: 0.85vw;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 2vw;
}

.exchange-page__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5vw 0.5vw;
  margin-bottom: 2vw;
}

.exchange-page__features li {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 1.05vw;
  color: #fff;
}

.exchange-page__check {
  width: 1.7vw;
  height: 1.7vw;
  object-fit: contain;
  flex-shrink: 0;
}

.exchange-page__btns {
  display: flex;
  gap: 0.5vw;
  margin-bottom: 0.5vw;
  align-items: center;
}

.exchange-page__btn {
  display: inline-block;
  padding: 0.5vw 0.65vw;
  font-size: 1vw;
  font-weight: 600;
  border-radius: 0.5vw;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.exchange-page__btn--primary {
  background: #fff;
  color: #1e252e;
}

.exchange-page__btn--primary:hover {
  background: #f3f4f6;
  color: #1e252e;
}

.exchange-page__btn--outline {
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
}

.exchange-page__btn--outline:hover {
  border-color: #EFD0A3;
  color: #EFD0A3;
}

.exchange-page__note {
  font-size: 0.75vw;
  color: #9DA3AF;
  display: inline;
  margin-left: 0.5vw;
  font-style: italic;
}

.exchange-page__right {
  flex: 0 0 36%;
  min-width: 22rem;
}

.exchange-page__calc-panel {
  background: #38404a;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.8vw;
  padding: 2vw 1vw;
  backdrop-filter: blur(10px);
  min-width: 0;
}

.exchange-page__calc-title {
  font-size: 1vw;
  font-weight: 600;
  color: #fff;
  margin: 0 0 1.5vw;
  text-align: center;
}

.exchange-page__tabs {
  display: flex;
  gap: 0;
  margin-bottom: 1.2vw;
  background: rgba(239, 208, 163, 1);
  border-radius: 0.6vw;
  padding: 0.25vw;
  align-items: center;
}

.exchange-page__tab {
  flex: 1;
  padding: 0.5vw 0.8vw;
  font-size: 0.75vw;
  font-weight: 500;
  color: #6b7280;
  background: transparent;
  border: none;
  border-radius: 0.4vw;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.exchange-page__tab:hover {
  background: rgba(255, 255, 255, 0.3);
}

.exchange-page__tab--active {
  background: #fff;
  color: #374151;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.exchange-page__form-wrap {
  width: 100%;
}

.exchange-page__form-panel {
  display: none;
}

.exchange-page__form-panel.is-active {
  display: block;
}

.exchange-page__form {
  display: flex;
  flex-direction: column;
  gap: 0.75vw;
  width: 100%;
}

.exchange-page__form-row {
  display: flex;
  gap: 1vw;
  align-items: stretch;
  flex-wrap: nowrap;
}

.exchange-page__field {
  flex: 1 1 0;
  min-width: 9rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}

.exchange-page__label {
  font-size: 0.7vw;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.4vw;
  position: relative;
}

.exchange-page__required {
  display: inline-block;
  width: 0.5vw;
  height: 0.5vw;
  margin-left: 0.3vw;
  vertical-align: middle;
  object-fit: contain;
  position: absolute;
  top: 0;
  /* right: 0; */
}


.exchange-page__input {
  width: 100%;
  min-width: 0;
  height: 3.2em;
  padding: 0.5vw 0.65vw;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5vw;
  font-size: 0.75vw;
  color: #374151;
  background: #fff;
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.exchange-page__custom-select {
  position: relative;
  width: 100%;
  min-width: 0;
}

.exchange-page__select-trigger {
  width: 100%;
  min-height: 3.2em;
  height: 3.2em;
  padding: 0.5vw 1.2vw 0.5vw 0.65vw;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5vw;
  font-size: 0.75vw;
  color: #374151;
  background: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
  box-sizing: border-box;
  position: relative;
}

.exchange-page__select-trigger:hover,
.exchange-page__select-trigger.is-open {
  border-color: rgba(255, 255, 255, 0.5);
}

.exchange-page__select-text {
  flex: 1;
  min-width: 0;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.4;
  padding-right: 0;
}

.exchange-page__select-arrow {
  position: absolute;
  right: 0.65vw;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6vw;
  color: #6b7280;
  transition: transform 0.2s;
  pointer-events: none;
}

.exchange-page__custom-select.is-open .exchange-page__select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

.exchange-page__select-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 0.2vw;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.5vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10;
  max-height: 15vw;
  overflow-y: auto;
  display: none;
}

.exchange-page__custom-select.is-open .exchange-page__select-dropdown {
  display: block;
}

.exchange-page__select-dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0.3vw 0;
}

.exchange-page__select-dropdown li {
  padding: 0.4vw 0.65vw;
  font-size: 0.75vw;
  color: #374151;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  line-height: 1.4;
}

.exchange-page__select-dropdown li:hover {
  background: #f3f4f6;
}

.exchange-page__input--readonly {
  background: #f9fafb;
  color: #9ca3af;
}

.exchange-page__input::placeholder {
  color: #b0b8c0;
}

.exchange-page__input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
}

.exchange-page__disclaimer {
  font-size: 0.55vw;
  color: #9DA3AF;
  line-height: 100%;
  margin: 0;
  font-style: italic;
}

.exchange-page__form-btns {
  display: flex;
  gap: 0.5vw;
  margin-top: 0.5vw;
  align-items: center;
}

.exchange-page__submit {
  flex: 1;
  padding: 0.5vw 0.65vw;
  background: #fff;
  color: #1E2530;
  font-size: 0.75vw;
  font-weight: 600;
  border: none;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
}

.exchange-page__submit:hover {
  background: #f3f4f6;
}

.exchange-page__tg-btn {
  /* flex: 1; */
  padding: 0.5vw 0.5vw;
  border: 1px solid #fff;
  color: #fff;
  font-size: 0.85vw;
  font-weight: 600;
  border-radius: 0.5vw;
  text-align: center;
  background: transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.exchange-page__tg-btn:hover {
  border-color: #EFD0A3;
  color: #EFD0A3;
}

.exchange-page__footer-note {
  font-size: 0.55vw;
  color: #9DA3AF;
  line-height: 100%;
  margin: 0.5vw 0 0;
  font-style: italic;
}

/* exchange page end */

/* exchange steps section start - exchange.html */
.exchange-steps {
  width: 100%;
  padding: 5vw 2vw 6vw;
}

.exchange-steps__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.exchange-steps__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: rgba(30, 37, 48, 1);
  text-align: center;
  margin-bottom: 0.5vw;
}

.exchange-steps__subtitle {
  font-size: 1vw;
  color: rgba(30, 37, 48, 1);
  text-align: center;
  margin-bottom: 3vw;
  font-weight: 300;
}

.exchange-steps__cards {
  display: flex;
  gap: 1vw;
  align-items: stretch;
}

.exchange-steps__card {
  flex: 1;
  padding: 2.5vw 2vw;
  border-radius: 1.2vw;
  position: relative;
  overflow: hidden;
}

.exchange-steps__card--light {
  /* background: #eadccc; */
  color: #1e252e;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
}

.exchange-steps__card--dark {
  background: #38404a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.exchange-steps__num {
  position: absolute;
  top: 0;
  left: 1.5vw;
  font-size: 6.7vw;
  font-weight: 500;
  opacity: 0.12;
  line-height: 1;
}

.exchange-steps__card--light .exchange-steps__num {
  color: #1e252e;
}

.exchange-steps__card--dark .exchange-steps__num {
  color: #fff;
}

.exchange-steps__card-title {
  font-size: 1.25vw;
  font-weight: 600;
  margin-bottom: 1.5vw;
  position: relative;
  z-index: 1;
  color: inherit;
}

.exchange-steps__card-desc {
  font-size: 0.85vw;
  line-height: 120%;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.exchange-steps__card--light .exchange-steps__card-desc {
  color: #374151;
}

.exchange-steps__card--dark .exchange-steps__card-desc {
  color: rgba(255, 255, 255, 0.9);
}

/* exchange steps section end */

/* exchange currencies section start - exchange.html */
.exchange-currencies {
  width: 100%;
  padding: 0 2vw;
  /* background: #f5f5f5; */
  margin-top: 7vw;
}

.exchange-currencies__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.exchange-currencies__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1e252e;
  text-align: center;
  margin-bottom: 3vw;
}

.exchange-currencies__grid {
  display: flex;
  gap: 1vw;
  align-items: stretch;
}

.exchange-currencies__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exchange-currencies__card {
  background: rgba(250, 252, 255, 1);
  border-radius: 1vw 1vw 0 0;
  padding: 2vw 1vw;
}

.exchange-currencies__card-header {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 1vw;
}

.exchange-currencies__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8vw;
  height: 1.8vw;
  min-width: 28px;
  min-height: 28px;
  background: #f59e0b;
  color: #fff;
  font-size: 1vw;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.exchange-currencies__card-title {
  font-size: 1.25vw;
  font-weight: 600;
  color: #1e252e;
  margin: 0;
}

.exchange-currencies__card-desc {
  font-size: 1vw;
  color: rgba(30, 37, 48, 1);
  line-height: 1.5;
  margin-bottom: 1.5vw;
  font-weight: 500;
}

.exchange-currencies__item {
  display: flex;
  flex-direction: column;
  gap: .5vw;
  margin-bottom: 1.2vw;
}

.exchange-currencies__item:last-of-type {
  margin-bottom: 1.5vw;
}

.exchange-currencies__item-header {
  display: flex;
  align-items: center;
  gap: 0.5vw;
}

.exchange-currencies__check {
  color: #6e7278;
  font-size: 1vw;
  flex-shrink: 0;
}

.exchange-currencies__item-header strong {
  font-size: 1vw;
  color: rgba(30, 37, 48, 1);
  font-weight: 600;
}

.exchange-currencies__item p {
  font-size: 0.8vw;
  color: rgba(30, 37, 48, 1);
  line-height: 1.5;
  margin: 0;
  font-weight: 400;
}

.exchange-currencies__card-note {
  font-size: 0.75vw;
  color: #9ca3af;
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.exchange-currencies__img {
  width: 100%;
  border-radius: 0 0 1vw 1vw;
  overflow: hidden;
  background: rgba(250, 252, 255, 1);
}

.exchange-currencies__img img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  max-height: 16vw;
}

/* exchange currencies section end */

/* exchange example table start - exchange.html */
.exchange-example {
  width: 100%;
  padding: 0 2vw;
  margin-top: 7vw;
}

.exchange-example__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  align-items: center;
  display: flex;
  flex-direction: column;
}

.exchange-example__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1e252e;
  margin: 0 0 1vw;
}

.exchange-example__desc {
  font-size: 1vw;
  color: rgba(30, 37, 48, 1);
  line-height: 1.5;
  margin: 0 0 2vw;
  font-weight: 300;
  text-align: center;
}

.exchange-example__table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.exchange-example__table th,
.exchange-example__table td {
  border: 1px solid #e5e7eb;
  padding: 1vw 1.2vw;
  text-align: left;
}

.exchange-example__table th {
  font-size: 1vw;
  font-weight: 600;
  color: rgba(30, 37, 48, 1);
  /* background: #f9fafb; */
  text-align: center;
  background: rgba(250, 252, 255, 1);
}

.exchange-example__table td {
  font-size: .75vw;
  color: rgba(30, 37, 48, 1);
  font-weight: 400;
  text-align: center;
}

/* exchange example table end */

/* exchange compliance section start - exchange.html (AML/KYC + Office) */
.exchange-compliance {
  width: 100%;
  padding: 0 2vw;
  margin-top: 7vw;
  margin-bottom: 7vw;
}

.exchange-compliance__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.exchange-compliance__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1e252e;
  text-align: center;
  margin: 0 0 3vw;
}

.exchange-compliance__block {
  display: flex;
  align-items: center;
  gap: 1.5vw;
}

.exchange-compliance__block--2 {
  margin-top: 4vw;
}

.exchange-compliance__text {
  flex: 1;
  min-width: 0;
}

.exchange-compliance__subtitle {
  font-size: 1.7vw;
  font-weight: 600;
  color: #1e252e;
  margin: 0 0 1vw;
}

.exchange-compliance__intro {
  font-size: 0.95vw;
  color: #1e252e;
  line-height: 1.5;
  margin: 0 0 1.5vw;
  font-weight: 500;
}

.exchange-compliance__point {
  margin-bottom: 1.2vw;
}

.exchange-compliance__point:last-of-type {
  margin-bottom: 1.5vw;
}

.exchange-compliance__point-header {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 0.3vw;
}

.exchange-compliance__check {
  color: rgba(30, 37, 48, 1);
  font-size: 0.9vw;
  flex-shrink: 0;
}

.exchange-compliance__point-header strong {
  font-size: 1vw;
  font-weight: 600;
  color: #1e252e;
}

.exchange-compliance__point-desc {
  font-size: 1vw;
  color: #374151;
  line-height: 1.5;
  /* margin: 0 0 0 1.8vw; */
  font-weight: 300;
}

.exchange-compliance__link {
  font-size: 0.95vw;
  color: rgba(239, 152, 26, 1);
  text-decoration: underline;
  font-weight: 500;
}

.exchange-compliance__link:hover {
  color: #d97706;
}

.exchange-compliance__img-wrap {
  flex: 1;
  min-width: 0;
}

.exchange-compliance__img {
  width: 100%;
  height: 100%;
  min-height: 18vw;
  object-fit: cover;
  display: block;
}

.exchange-compliance__actions {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-bottom: 1vw;
}

.exchange-compliance__btn {
  padding: 0.5vw 0.7vw;
  font-size: 1.1vw;
  font-weight: 500;
  color: #1a1d24;
  text-decoration: none;
  border: 1px solid #d4d2cf;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
}

.exchange-compliance__btn:hover {
  background: #dddcd9;
}

.exchange-compliance__tg-link {
  font-size: 0.95vw;
  color: #1e252e;
  text-decoration: underline;
  font-weight: 500;
}

.exchange-compliance__tg-link:hover {
  color: #374151;
}

.exchange-compliance__currencies {
  font-size: 0.8vw;
  color: #374151;
  margin: 0;
}

/* exchange compliance section end */

/* trans intro section start - pagetrans.html */
.trans-intro {
  width: 100%;
  /* background: #f5f5f5; */
  padding: 0 2vw;
  margin-top: 7vw;
}

.trans-intro__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.trans-intro__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1E2530;
  text-align: center;
  margin: 0 0 0.6vw;
  line-height: 1.3;
}

.trans-intro__subtitle {
  font-size: 1vw;
  font-weight: 300;
  color: #1E2530;
  text-align: center;
  margin: 0 0 2.5vw;
}

.trans-intro__cards {
  display: flex;
  align-items: stretch;
  gap: 1vw;
}

.trans-intro__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #FAFCFF;
  border-radius: 0.5vw;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.trans-intro__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2vw 1vw;
}

.trans-intro__card-img {
  flex-shrink: 0;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 0.5vw 0.5vw;
}

.trans-intro__card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 8;
}

.trans-intro__card-title {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 1.25vw;
  font-weight: 600;
  color: #1E2530;
  margin: 0 0 1.8vw;
}

.trans-intro__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.7vw;
  height: 1.7vw;
  min-width: 32px;
  min-height: 32px;
  background: #FF9C34;
  color: #fff;
  border-radius: 50%;
  font-size: 1vw;
  font-weight: 600;
}

.trans-intro__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.trans-intro__item {
  /* margin-bottom: 1.8vw; */
}

.trans-intro__item:last-child {
  margin-bottom: 0;
}

.trans-intro__item-header {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  margin-bottom: 0.5vw;
}

.trans-intro__check-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: auto;
  min-height: auto;
  /* background: #f0f0f0; */
  border-radius: 50%;
  flex-shrink: 0;
}

.trans-intro__check {
  color: #000;
  font-size: 1vw;
}

.trans-intro__item-title {
  font-size: 1.05vw;
  font-weight: 600;
  color: #1E2530;
}

.trans-intro__item-desc {
  margin: 0;
  padding-left: calc(1.4vw + 0.8vw + 0.4vw);
  font-size: 1vw;
  color: #1E2530;
  line-height: 1.4;
  font-weight: 300;
}


/* trans intro section end */

/* trans steps section start - pagetrans.html */
.trans-steps {
  width: 100%;
  /* background: #2f3640; */
  position: relative;
  overflow: hidden;
  padding: 5vw 2vw 6vw;
  margin-top: 7vw;
  background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
}

.trans-steps__bg {
  position: absolute;
  width: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
  bottom: 0;
  /* opacity: 0.15; */
}

.trans-steps__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.trans-steps__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 0.6vw;
}

.trans-steps__subtitle {
  font-size: 1vw;
  color: rgba(250, 252, 255, 1);
  text-align: center;
  margin: 0 0 2.5vw;
}

.trans-steps__cards {
  display: flex;
  align-items: stretch;
  gap: 1vw;
}

.trans-steps__card {
  flex: 1;
  position: relative;
  background: #38404a;
  border-radius: 20px;
  padding: 3vw 1vw;
  /* overflow: hidden; */
  display: flex;
  gap: 1.7vw;
  flex-direction: column;
}

.trans-steps__watermark {
  position: absolute;
  top: .7vw;
  left: 0.5vw;
  font-size: 6.7vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.03);
  line-height: 100%;
  pointer-events: none;
}

.trans-steps__card-title {
  position: relative;
  font-size: 1.3vw;
  font-weight: 600;
  color: rgba(255, 255, 255, 1);
  /* margin: 0 0 0.8vw; */
}

.trans-steps__card-desc {
  position: relative;
  margin: 0;
  font-size: 0.85vw;
  color: rgba(255, 255, 255, 0.85);
  line-height: 120%;
}

/* trans steps section end */

/* trans docs section start - pagetrans.html */
.trans-docs {
  width: 100%;
  padding: 0 2vw;
  margin-top: 7vw;
}

.trans-docs__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.trans-docs__block {
  display: flex;
  align-items: stretch;
  gap: 1.5vw;
}

.trans-docs__text {
  flex: 1;
  min-width: 0;
  padding: 2vw 0;
}

.trans-docs__text--documents {
  padding-right: 1vw;
}

.trans-docs__text--check {
  padding-left: 1vw;
}

.trans-docs__img-wrap {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 0.5vw;
}

.trans-docs__card-title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1a1d24;
  margin: 0 0 1vw;
  line-height: 100%;
}

.trans-docs__card-intro {
  font-size: 1vw;
  color: rgba(30, 37, 48, 1);
  line-height: 140%;
  margin: 0 0 1vw;
  font-weight: 500;
}

.trans-docs__list {
  margin: 0 0 1vw;
  padding-left: 1.5vw;
  color: rgba(30, 37, 48, 1);
  font-size: 0.95vw;
  line-height: 1.6;
  list-style-type: disc;
  list-style-position: outside;
}

.trans-docs__list li {
  margin-bottom: 0.3vw;
  list-style: disc;
}


.trans-docs__card-note {
  font-size: 0.85vw;
  color: rgba(30, 37, 48, 1);
  line-height: 1.5;
  margin: 0;
  font-style: italic;
}

.trans-docs__img {
  width: 100%;
  height: 100%;
  min-height: 18vw;
  object-fit: cover;
  display: block;
}

.trans-docs__check-block {
  margin-bottom: 1.2vw;
}

.trans-docs__check-block:last-of-type {
  margin-bottom: 1.5vw;
}

.trans-docs__check-header {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  margin-bottom: 0.4vw;
}

.trans-docs__check-icon {
  color: #6b7280;
  font-size: 0.9vw;
}

.trans-docs__check-title {
  font-size: 1vw;
  font-weight: 600;
  color: #374151;
}

.trans-docs__check-desc {
  margin: 0 0 0 1.8vw;
  font-size: 0.9vw;
  color: #6b7280;
  line-height: 1.5;
}

.trans-docs__actions {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-top: auto;
}

.trans-docs__btn {
  padding: .5vw .7vw;
  /* background: #e8e6e3; */
  color: #1a1d24;
  font-size: 1.1vw;
  font-weight: 500;
  border: 1px solid #d4d2cf;
  border-radius: 0.5vw;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
}

.trans-docs__btn:hover {
  background: #dddcd9;
}

.trans-docs__tg-link {
  font-size: 0.95vw;
  color: rgba(50, 59, 76, 1);
  text-decoration: none;
  transition: color 0.2s;
  text-decoration: underline;
  font-weight: 500;
}

.trans-docs__tg-link:hover {
  text-decoration: underline;
}

/* trans docs section end */

/* trans faq section start - pagetrans.html */
.trans-faq {
  width: 100%;
  padding: 7vw 2vw;
}

.trans-faq__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.trans-faq__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: #1a1d24;
  text-align: center;
  margin: 0 0 2.5vw;
}

.trans-faq__content {
  display: flex;
  gap: 1vw;
  align-items: flex-start;
}

.trans-faq__questions {
  /* flex: 1; */
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 100%;
}

.trans-faq__item {
  /* margin-bottom: 0.8vw; */
  background: rgba(250, 252, 255, 1);
  padding: 1vw;
  border-radius: 20px;
}

.trans-faq__item:last-child {
  margin-bottom: 0;
}

.trans-faq__question {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  width: 100%;
  padding: 1.2vw 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.trans-faq__question-icon {
  flex-shrink: 0;
  width: 1.7vw;
  height: 1.7vw;
  min-width: 32px;
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #374151;
  border-radius: 50%;
}

.trans-faq__question-icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.trans-faq__question-text {
  flex: 1;
  font-size: 1.2vw;
  font-weight: 600;
  color: #1a1d24;
}

.trans-faq__chevron {
  flex-shrink: 0;
  font-size: 0.8vw;
  color: #6b7280;
  transition: transform 0.2s;
}

.trans-faq__item.is-open .trans-faq__chevron {
  transform: rotate(180deg);
}

.trans-faq__answer {
  display: none;
  padding: 0 0 1.2vw 3.5vw;
}

.trans-faq__item.is-open .trans-faq__answer {
  display: block;
}

.trans-faq__answer p {
  margin: 0;
  font-size: 0.95vw;
  color: #4b5563;
  font-weight: 400;
  line-height: 1.4;
}

.trans-faq__images {
  /* flex: 1; */
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  width: 37%;
  flex-shrink: 0;
}

.trans-faq__img-wrap {
  overflow: hidden;
  border-radius: 0.5vw;
}

.trans-faq__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* trans faq section end */

/* blog detail section start */
.blog-detail {
  padding: 2vw 2vw;
  background: #fff;
}

.blog-detail__inner {
  max-width: 63vw;
  margin: 0 auto;
  /* padding: 0 2vw; */
}

.blog-detail__breadcrumb {
  font-size: 0.85vw;
  color: rgba(157, 163, 175, 1);
  margin-bottom: 1.5vw;
}

.blog-detail__breadcrumb a {
  color: rgba(157, 163, 175, 1);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-detail__breadcrumb a:hover {
  color: #2563eb;
}

.blog-detail__breadcrumb-sep {
  margin: 0 0.4vw;
}

.blog-detail__breadcrumb-current {
  /* color: #000; */
}

.blog-detail__title {
  font-size: 2.1vw;
  font-weight: 600;
  color: rgba(30, 37, 48, 1);
  margin: 0 0 1.2vw;
  line-height: 100%;
}

.blog-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
  margin-bottom: 2vw;
  font-size: 0.9vw;
  color: #999;
}

.blog-detail__meta-item {
  margin: 0;
}

.blog-detail__content {
  font-size: .85vw;
  line-height: 1.6;
  color: rgba(30, 37, 48, 1);
  font-weight: 300;
}

.blog-detail__content p {
  margin: 0 0 1.2vw;
}

.blog-detail__content p:last-child {
  margin-bottom: 0;
}

.blog-detail__content a {
  color: rgba(30, 37, 48, 1);
  text-decoration: underline;
}

.blog-detail__content a:hover {
  color: #1d4ed8;
}

.blog-detail__subtitle {
  font-size: 1.7vw;
  font-weight: 600;
  color: rgba(30, 37, 48, 1);
  margin: 2.5vw 0 1vw;
  line-height: 100%;
}

.blog-detail__subtitle--dash::after {
  content: '';
}

.blog-detail__figure {
  width: 50%;
  margin: 2.5vw 0;
}

.blog-detail__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5vw;
  object-fit: cover;
}

.blog-detail__content strong,
.blog-detail__promo {
  font-weight: 700;
  color: rgba(30, 37, 48, 1);
}



/* blog detail related section start */
.blog-detail-related {
  width: 100%;
  padding: 0vw 5vw;
  margin-top: 7vw;
  background: #fff;
  margin-bottom: 5vw;
}

.blog-detail-related__inner {
  width: 100%;
  max-width: 63vw;
  margin: 0 auto;
}

.blog-detail-related__title {
  color: #1E2530;
  font-size: 2.1vw;
  font-weight: 600;
  text-align: center;
  margin: 0 0 2.5vw 0;
}

.blog-detail-related__cards {
  display: flex;
  gap: 1vw;
  margin-bottom: 2.5vw;
}

.blog-detail-related__card {
  flex: 1;
  min-width: 0;
  background: #FAFCFF;
  border-radius: 0.6vw;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.blog-detail-related__card:hover {
  background: #1E2530;
}

.blog-detail-related__card:hover .blog-detail-related__date,
.blog-detail-related__card:hover .blog-detail-related__card-title,
.blog-detail-related__card:hover .blog-detail-related__card-desc {
  color: #fff;
}

.blog-detail-related__card:hover .blog-detail-related__card-link {
  color: #EFD0A3;
}

.blog-detail-related__card:hover .blog-detail-related__card-link:hover {
  color: #fff;
}

.blog-detail-related__card-img-wrap {
  aspect-ratio: 25 / 10;
  overflow: hidden;
}

.blog-detail-related__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-detail-related__card-body {
  padding: 1vw;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-detail-related__date {
  color: #6B7280;
  font-size: 0.75vw;
  margin-bottom: 0.5vw;
  transition: color 0.3s ease;
}

.blog-detail-related__card-title {
  color: #1E2530;
  font-size: 1.1vw;
  font-weight: 700;
  margin: 0 0 0.6vw 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.blog-detail-related__card-desc {
  color: #6B7280;
  font-size: 0.85vw;
  line-height: 1.5;
  margin: 0 0 0.8vw 0;
  flex: 1;
  transition: color 0.3s ease;
}

.blog-detail-related__card-link {
  color: #EF981A;
  font-size: 0.9vw;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.blog-detail-related__card-link:hover {
  color: #EFD0A3;
}

.blog-detail-related__btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0.6vw 1.5vw;
  background: linear-gradient(90deg, #FADCA4 -718.88%, #DCC09D 220.15%);
  color: #1E2530;
  font-size: 1vw;
  font-weight: 500;
  border-radius: 0.5vw;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.blog-detail-related__btn:hover {
  background: #EFD0A3;
  color: #1E2530;
}
/* blog detail related section end */

/* ========== MERGED @media (max-width: 1440px) ========== */
@media (max-width: 1440px) {

  .site-header {
    padding: 9px 35px;
  }

  .site-header__inner {
    max-width: 90%;
  }

  .site-header__logo img {
    width: 116px;
  }

  .site-header__nav {
    gap: 15px;
    padding: 0 35px;
  }

  .site-header__nav-link {
    gap: 5px;
    font-size: 12px;
  }

  .site-header__nav-arrow {
    margin-left: 6px;
    font-size: 9px;
  }

  .site-header__dropdown {
    top: calc(100% + 17px);
    min-width: 207px;
    padding: 10px 0;
  }

  .site-header__dropdown-list a {
    padding: 9px 21px;
    font-size: 12px;
  }

  .site-header__dropdown-toggle {
    padding: 9px 21px;
    font-size: 12px;
  }

  .site-header__dropdown-arrow {
    margin-left: 7px;
    font-size: 8px;
  }

  .site-header__dropdown-sublist {
    padding-left: 17px;
    padding-bottom: 5px;
  }

  .site-header__dropdown-sublist a {
    padding: 6px 21px;
    font-size: 11px;
  }

  .site-header__dropdown--mega {
    min-width: 484px;
    top: calc(100% + 17px);
    transform: translateX(-50%) translateY(7px);
    padding: 17px 26px;
  }

  .site-header__mega-accordion .site-header__mega-list {
    padding-top: 3px;
    padding-bottom: 9px;
  }

  .site-header__mega-title {
    gap: 9px;
    font-size: 12px;
    padding: 10px 0;
  }

  .site-header__mega-arrow {
    margin-left: 5px;
    font-size: 8px;
  }

  .site-header__mega-list {
    padding-left: 14px;
  }

  .site-header__mega-list a {
    padding: 7px 0;
    font-size: 11px;
  }

  .site-header__right {
    gap: 26px;
  }

  .site-header__contact {
    gap: 4px;
  }

  .site-header__contact-row {
    gap: 9px;
  }

  .site-header__contact-phone {
    font-size: 15px;
  }

  .site-header__contact-email {
    font-size: 12px;
  }

  .site-header__lang {
    gap: 3px;
    padding-left: 17px;
  }

  .site-header__contact-icon {
    width: 13px;
  }

  .site-header__lang-item {
    font-size: 11px;
  }



  .banner {
    padding: 4.8vw 2.4vw 12vw 2.4vw;
  }

  .banner__inner {
    max-width: 90%;
  }

  .banner__title {
    font-size: 3vw;
    margin-bottom: 1.8vw;
  }

  .banner__features {
    gap: 0.72vw;
    margin-bottom: 1.2vw;
  }

  .banner__feature {
    gap: 0.72vw;
    font-size: 1.2vw;
  }

  .banner__check {
    width: 1.44vw;
    height: 1.44vw;
  }

  .banner__support {
    font-size: 1.32vw;
    margin-bottom: 1.44vw;
  }

  .banner__tg-wrap {
    gap: 1.2vw;
  }

  .banner__tg-btn {
    padding: 0.6vw 0.9vw;
    font-size: 1.2vw;
    border-radius: 0.6vw;
  }

  .banner__tg-note {
    font-size: 0.9vw;
  }

  .banner__widget {
    width: 23.64vw;
    padding: 1.2vw;
    border-radius: 1.08vw;
    box-shadow: 0 0.48vw 2.4vw rgba(0, 0, 0, 0.3);
  }

  .banner__widget-toggle {
    padding: 0.6vw 1.2vw;
  }

  .banner__toggle-btn {
    padding: 0.72vw 1.2vw;
    font-size: 1.02vw;
  }

  .banner__toggle-btn:last-child {
    border-radius: 0 0.48vw 0.48vw 0;
  }

  .banner__widget-body {
    gap: 2.4vw;
    margin-top: 3.6vw;
  }

  .banner__widget-row {
    gap: 0.6vw;
  }

  .banner__widget-label {
    font-size: 0.936vw;
  }

  .banner__currency-field {
    border-radius: 0.6vw;
    padding: 0.6vw;
  }

  .banner__widget-input {
    font-size: 1.14vw;
  }

  .banner__currency-trigger {
    gap: 0.42vw;
    border-radius: 0 0.6vw 0.6vw 0;
  }

  .banner__currency-icon {
    width: 1.32vw;
    height: 1.32vw;
  }

  .banner__currency-text {
    font-size: 0.984vw;
  }

  .banner__currency-arrow {
    font-size: 0.54vw;
    margin-left: 0.24vw;
  }

  .banner__currency-dropdown {
    border-radius: 0.48vw;
    box-shadow: 0 0.36vw 1.2vw rgba(0, 0, 0, 0.15);
    margin-top: 0.24vw;
    padding: 0.36vw 0;
  }

  .banner__currency-dropdown li {
    padding: 0.48vw 0.9vw;
    font-size: 0.96vw;
    gap: 0.48vw;
  }

  .banner__dropdown-icon {
    width: 1.2vw;
    height: 1.2vw;
  }

  .banner__swap-btn {
    width: 2.64vw;
    height: 2.64vw;
  }

  .banner__swap-icon {
    width: 1.32vw;
    height: 1.32vw;
  }

  .banner__widget-rate {
    font-size: 0.864vw;
  }

  .banner__widget-submit {
    padding: 0.96vw 1.44vw;
    border-radius: 0.6vw;
    font-size: 1.056vw;
  }



  .mh {
    padding: 0 2.4vw;
    margin-top: 6vw;
  }

  .mh__inner {
    max-width: 90%;
    gap: 2.4vw;
  }

  .mh__card {
    gap: 0.96vw;
  }

  .mh__icon {
    width: 2.04vw;
    height: 2.04vw;
  }

  .mh__text {
    font-size: 1.08vw;
  }



  .about-section {
    padding: 0 2.4vw;
    margin-top: 6vw;
  }

  .about-section__inner {
    max-width: 90%;
    border-radius: 0.6vw;
    gap: 1.2vw;
  }

  .about-section__left {
    gap: 1.44vw;
  }

  .about-section__title {
    font-size: 2.52vw;
  }

  .about-section__text {
    font-size: 1.2vw;
  }

  .about-section__intro {
    font-size: 1.2vw;
  }

  .about-section__list {
    font-size: 1.2vw;
  }

  .about-section__list li {
    margin-bottom: 0.6vw;
    gap: 0.6vw;
  }

  .about-section__num {
    width: 1.92vw;
    height: 1.92vw;
    font-size: 1.02vw;
  }



  .trust-section {
    padding: 0 2.4vw;
    margin-top: 7.2vw;
  }

  .trust-section__inner {
    max-width: 90%;
  }

  .trust-section__title {
    font-size: 2.52vw;
    margin: 0 0 0.96vw 0;
  }

  .trust-section__subtitle {
    font-size: 1.32vw;
    margin: 0 0 2.4vw 0;
  }

  .trust-section__scroll-wrap {
    padding-bottom: 0.96vw;
  }

  .trust-section__scroll-wrap::-webkit-scrollbar {
    height: 0.48vw;
  }

  .trust-section__scroll-wrap::-webkit-scrollbar-track {
    border-radius: 0.48vw;
  }

  .trust-section__scroll-wrap::-webkit-scrollbar-thumb {
    border-radius: 0.48vw;
  }

  .trust-section__cards {
    gap: 1.2vw;
    padding: 0 0.6vw;
  }

  .trust-section__card {
    flex: 0 0 33.6vw;
    min-width: 33.6vw;
    border-radius: 0.72vw;
  }

  .trust-section__card-body {
    padding: 1.8vw 1.2vw;
    gap: 1.2vw;
  }

  .trust-section__card-img-wrap {
    height: 12vw;
    border-radius: 0 0 0.72vw 0.72vw;
  }

  .trust-section__card-header {
    gap: 0.96vw;
  }

  .trust-section__num {
    width: 2.16vw;
    height: 2.16vw;
    font-size: 1.2vw;
  }

  .trust-section__card-title {
    font-size: 1.2vw;
  }

  .trust-section__list {
    font-size: 1.02vw;
  }

  .trust-section__list li {
    gap: 0.6vw;
  }

  .trust-section__check {
    width: 1.2vw;
    height: 1.2vw;
  }

  /* pagetrans.html - 1440px */
  .trans-page {
    padding: 4.8vw 2.4vw 7.2vw;
  }

  .trans-page__inner {
    max-width: 90%;
    gap: 3.6vw;
  }

  .trans-page__left {
    max-width: 69.97%;
  }

  .trans-page__header {
    font-size: 1.02vw;
    margin-bottom: 1.2vw;
  }

  .trans-page__title {
    font-size: 3vw;
    margin-bottom: 1.8vw;
  }

  .trans-page__desc {
    font-size: 1.02vw;
    margin-bottom: 2.4vw;
  }

  .trans-page__features {
    gap: 0.6vw;
    margin-bottom: 2.4vw;
  }

  .trans-page__features li {
    font-size: 1.26vw;
    gap: 0.72vw;
  }

  .trans-page__check {
    width: 2.04vw;
    height: 2.04vw;
  }

  .trans-page__btns {
    gap: 0.6vw;
  }

  .trans-page__btn {
    padding: 0.6vw 0.78vw;
    font-size: 1.2vw;
    border-radius: 0.6vw;
  }

  .trans-page__note {
    font-size: 0.9vw;
    margin-left: 0.6vw;
  }

  .trans-page__form-panel {
    border-radius: 0.96vw;
    padding: 1.2vw;
  }

  .trans-page__form-title {
    font-size: 1.2vw;
    margin-bottom: 1.8vw;
  }

  .trans-page__form {
    gap: 0.9vw;
  }

  .trans-page__form-row {
    gap: 1.2vw;
  }

  .trans-page__label {
    font-size: 0.9vw;
    margin-bottom: 0.48vw;
  }

  .trans-page__input,
  .trans-page__textarea {
    padding: 0.6vw 0.78vw;
    font-size: 0.9vw;
    border-radius: 0.6vw;
  }

  .trans-page__select-trigger {
    padding: 0.5vw 2.64vw 0.5vw 0.78vw;
    font-size: 0.9vw;
    border-radius: 0.6vw;
  }

  .trans-page__select-arrow {
    right: 0.78vw;
    font-size: 0.72vw;
  }

  .trans-page__select-dropdown {
    border-radius: 0.6vw;
    margin-top: 0.24vw;
  }

  .trans-page__select-dropdown li {
    padding: 0.48vw 0.78vw;
    font-size: 0.9vw;
  }

  .trans-page__disclaimer,
  .trans-page__important {
    font-size: 0.66vw;
  }

  .trans-page__form-btns {
    gap: 0.6vw;
    margin-top: 0.6vw;
  }

  .trans-page__submit {
    padding: 0.6vw 0.78vw;
    font-size: 0.9vw;
    border-radius: 0.6vw;
  }

  .trans-page__tg-btn {
    padding: 0.6vw 0.72vw;
    font-size: 1.02vw;
    border-radius: 0.6vw;
  }

  .trans-page__important {
    margin-top: 0.6vw;
  }

  .trans-intro {
    padding: 0 2.4vw;
    margin-top: 8.4vw;
  }

  .trans-intro__inner {
    max-width: 90%;
  }

  .trans-intro__title {
    font-size: 2.52vw;
    margin: 0 0 0.72vw;
  }

  .trans-intro__subtitle {
    font-size: 1.2vw;
    margin: 0 0 3vw;
  }

  .trans-intro__cards {
    gap: 1.2vw;
  }

  .trans-intro__card-content {
    padding: 2.4vw 1.2vw;
  }

  .trans-intro__card-title {
    font-size: 1.5vw;
    margin: 0 0 2.16vw;
    gap: 0.72vw;
  }

  .trans-intro__badge {
    width: 2.04vw;
    height: 2.04vw;
    font-size: 1.2vw;
  }

  .trans-intro__list {
    gap: 1.2vw;
  }

  .trans-intro__item-title {
    font-size: 1.26vw;
  }

  .trans-intro__item-desc {
    font-size: 1.2vw;
  }

  .trans-intro__check {
    font-size: 1.2vw;
  }

  .trans-steps {
    padding: 6vw 2.4vw 7.2vw;
    margin-top: 8.4vw;
  }

  .trans-steps__inner {
    max-width: 90%;
  }

  .trans-steps__title {
    font-size: 2.52vw;
    margin: 0 0 0.72vw;
  }

  .trans-steps__subtitle {
    font-size: 1.2vw;
    margin: 0 0 3vw;
  }

  .trans-steps__cards {
    gap: 1.2vw;
  }

  .trans-steps__card {
    padding: 3.6vw 1.2vw;
    gap: 2.04vw;
  }

  .trans-steps__watermark {
    font-size: 8.04vw;
    top: 0.84vw;
  }

  .trans-steps__card-title {
    font-size: 1.56vw;
  }

  .trans-steps__card-desc {
    font-size: 1.02vw;
  }

  .trans-docs {
    padding: 0 2.4vw;
    margin-top: 8.4vw;
  }

  .trans-docs__inner {
    max-width: 90%;
    gap: 1.8vw;
  }

  .trans-docs__block {
    gap: 1.8vw;
  }

  .trans-docs__text {
    padding: 2.4vw 0;
  }

  .trans-docs__text--documents {
    padding-right: 1.2vw;
  }

  .trans-docs__text--check {
    padding-left: 1.2vw;
  }

  .trans-docs__img-wrap {
    border-radius: 0.6vw;
  }

  .trans-docs__card-title {
    font-size: 2.52vw;
    margin: 0 0 1.2vw;
  }

  .trans-docs__card-intro {
    font-size: 1.2vw;
    margin: 0 0 1.2vw;
  }

  .trans-docs__list {
    font-size: 1.14vw;
    margin: 0 0 1.2vw;
    padding-left: 1.8vw;
  }

  .trans-docs__card-note {
    font-size: 1.02vw;
  }

  .trans-docs__img {
    min-height: 21.6vw;
  }

  .trans-docs__check-block {
    margin-bottom: 1.44vw;
  }

  .trans-docs__check-block:last-of-type {
    margin-bottom: 1.8vw;
  }

  .trans-docs__check-title {
    font-size: 1.2vw;
  }

  .trans-docs__check-desc {
    font-size: 1.08vw;
    margin: 0 0 0 2.16vw;
  }

  .trans-docs__actions {
    gap: 1.2vw;
  }

  .trans-docs__btn {
    padding: 0.6vw 0.84vw;
    font-size: 1.32vw;
    border-radius: 0.6vw;
  }

  .trans-docs__tg-link {
    font-size: 1.14vw;
  }

  .trans-faq {
    padding: 8.4vw 2.4vw;
  }

  .trans-faq__inner {
    max-width: 90%;
  }

  .trans-faq__title {
    font-size: 2.52vw;
    margin: 0 0 3vw;
  }

  .trans-faq__content {
    gap: 1.2vw;
  }

  .trans-faq__questions {
    gap: 1.2vw;
  }

  .trans-faq__item {
    padding: 1.2vw;
    border-radius: 24px;
  }

  .trans-faq__question {
    padding: 1.44vw 0;
    gap: 0.96vw;
  }

  .trans-faq__question-icon {
    width: 2.04vw;
    height: 2.04vw;
  }

  .trans-faq__question-text {
    font-size: 1.44vw;
  }

  .trans-faq__chevron {
    font-size: 0.96vw;
  }

  .trans-faq__answer {
    padding: 0 0 1.44vw 4.2vw;
  }

  .trans-faq__answer p {
    font-size: 1.14vw;
  }

  .trans-faq__images {
    gap: 1.8vw;
  }

  .trans-faq__img-wrap {
    border-radius: 0.6vw;
  }

  /* exchange.html - 1440px */
  .exchange-page {
    padding: 4.8vw 2.4vw 7.2vw;
  }

  .exchange-page__inner {
    max-width: 90%;
    gap: 3.6vw;
  }

  .exchange-page__header {
    font-size: 1.02vw;
    margin-bottom: 1.2vw;
  }

  .exchange-page__title {
    font-size: 3vw;
    margin-bottom: 1.8vw;
  }

  .exchange-page__desc {
    font-size: 1.02vw;
    margin-bottom: 2.4vw;
  }

  .exchange-page__features {
    gap: 0.6vw;
    margin-bottom: 2.4vw;
  }

  .exchange-page__features li {
    font-size: 1.26vw;
    gap: 0.72vw;
  }

  .exchange-page__check {
    width: 2.04vw;
    height: 2.04vw;
  }

  .exchange-page__btn {
    padding: 0.6vw 0.78vw;
    font-size: 1.2vw;
    border-radius: 0.6vw;
  }

  .exchange-page__note {
    font-size: 0.9vw;
  }

  .exchange-page__calc-panel {
    border-radius: 0.96vw;
    padding: 2.4vw 1.2vw;
  }

  .exchange-page__calc-title {
    font-size: 1.2vw;
    margin: 0 0 1.8vw;
  }

  .exchange-page__tabs {
    margin-bottom: 1.44vw;
    border-radius: 0.72vw;
  }

  .exchange-page__tab {
    padding: 0.6vw 0.96vw;
    font-size: 0.9vw;
    border-radius: 0.48vw;
  }

  .exchange-page__form {
    gap: 0.9vw;
  }

  .exchange-page__form-row {
    gap: 1.2vw;
  }

  .exchange-page__label {
    font-size: 0.84vw;
  }

  .exchange-page__input,
  .exchange-page__select-trigger {
    font-size: 0.9vw;
    border-radius: 0.6vw;
  }

  .exchange-page__disclaimer,
  .exchange-page__footer-note {
    font-size: 0.66vw;
  }

  .exchange-page__submit {
    font-size: 0.9vw;
    border-radius: 0.6vw;
  }

  .exchange-page__tg-btn {
    font-size: 1.02vw;
    border-radius: 0.6vw;
  }

  .exchange-currencies {
    padding: 0 2.4vw;
    margin-top: 8.4vw;
  }

  .exchange-currencies__inner {
    max-width: 90%;
  }

  .exchange-currencies__title {
    font-size: 2.52vw;
    margin-bottom: 3.6vw;
  }

  .exchange-currencies__grid {
    gap: 1.2vw;
  }

  .exchange-currencies__card {
    padding: 2.4vw 1.2vw;
  }

  .exchange-currencies__card-title {
    font-size: 1.5vw;
  }

  .exchange-currencies__card-desc {
    font-size: 1.2vw;
  }

  .exchange-currencies__item-header strong {
    font-size: 1.2vw;
  }

  .exchange-currencies__item p {
    font-size: 0.96vw;
  }

  .exchange-currencies__card-note {
    font-size: 0.9vw;
  }

  .exchange-example {
    padding: 0 2.4vw;
    margin-top: 8.4vw;
  }

  .exchange-example__inner {
    max-width: 90%;
  }

  .exchange-example__title {
    font-size: 2.52vw;
    margin: 0 0 1.2vw;
  }

  .exchange-example__desc {
    font-size: 1.2vw;
    margin: 0 0 2.4vw;
  }

  .exchange-example__table th,
  .exchange-example__table td {
    padding: 1.2vw 1.44vw;
  }

  .exchange-example__table th {
    font-size: 1.2vw;
  }

  .exchange-example__table td {
    font-size: 0.9vw;
  }

  .exchange-compliance {
    padding: 0 2.4vw;
    margin-top: 8.4vw;
    margin-bottom: 8.4vw;
  }

  .exchange-compliance__inner {
    max-width: 90%;
  }

  .exchange-compliance__title {
    font-size: 2.52vw;
    margin: 0 0 3.6vw;
  }

  .exchange-compliance__block {
    gap: 1.8vw;
  }

  .exchange-compliance__subtitle {
    font-size: 2.04vw;
  }

  .exchange-compliance__intro {
    font-size: 1.14vw;
  }

  .exchange-compliance__point-header strong {
    font-size: 1.2vw;
  }

  .exchange-compliance__point-desc {
    font-size: 1.2vw;
  }

  .exchange-compliance__link {
    font-size: 1.14vw;
  }

  .exchange-compliance__img {
    min-height: 21.6vw;
  }

  .exchange-compliance__btn {
    padding: 0.6vw 0.84vw;
    font-size: 1.32vw;
  }

  .exchange-compliance__tg-link {
    font-size: 1.14vw;
  }

  /* about.html - 1440px */
  .about-hero__inner {
    max-width: 90%;
  }

  .about-hero__left {
    max-width: 56%;
  }

  .about-hero__check {
    width: 2.04vw;
    height: 2.04vw;
  }

  .about-hero__title {
    font-size: 3vw;
    margin: 0 0 1.8vw;
  }

  .about-hero__desc {
    font-size: 1.02vw;
    margin: 0 0 2.4vw;
  }

  .about-hero__feature-item {
    font-size: 1.26vw;
    gap: 0.72vw;
  }

  .about-hero__support {
    font-size: 1.26vw;
    margin: 0 0 2.4vw;
  }

  .about-hero__btn {
    font-size: 1.2vw;
    padding: 0.6vw 0.78vw;
    border-radius: 10px;
  }

  .about-hero__note {
    font-size: 0.9vw;
  }

  .about-stats {
    padding: 0 2.4vw;
    margin-top: 6vw;
  }

  .about-stats__inner {
    max-width: 90%;
  }

  .about-stats__row {
    gap: 2.4vw;
    margin-bottom: 3.6vw;
  }

  .about-stats__text {
    font-size: 1.08vw;
  }

  .about-stats__note {
    max-width: 38.4vw;
    padding: 1.44vw 1.8vw;
  }

  .about-stats__note-text {
    font-size: 1.08vw;
  }

  .about-stats__icon {
    width: 2.04vw;
    height: 2.04vw;
  }

  .about-stats__note-icon {
    width: 2.16vw;
    height: 2.16vw;
  }

  .about-honest {
    padding: 6vw 2.4vw 7.2vw;
  }

  .about-honest__inner {
    max-width: 90%;
  }

  .about-honest__title {
    font-size: 2.52vw;
    margin: 0 0 3.6vw;
  }

  .about-honest__block {
    gap: 1.2vw;
  }

  .about-honest__block--2 {
    margin-top: 4.8vw;
  }

  .about-honest__subtitle {
    font-size: 1.56vw;
  }

  .about-honest__intro {
    font-size: 1.14vw;
  }

  .about-honest__point-header strong {
    font-size: 1.2vw;
  }

  .about-honest__point-desc {
    font-size: 1.02vw;
  }

  .about-honest__img {
    min-height: 16.2vw;
  }

  .about-trust {
    padding: 0 2.4vw;
    margin-top: 8.4vw;
  }

  .about-trust__inner {
    max-width: 90%;
  }

  .about-trust__title {
    font-size: 2.52vw;
  }

  .about-trust__subtitle {
    font-size: 1.32vw;
    margin: 0 0 3vw;
  }

  .about-trust__grid {
    gap: 1.8vw;
  }

  .about-trust__card {
    flex: 1 1 calc(50% - 0.9vw);
  }

  .about-trust__card-title {
    font-size: 1.2vw;
  }

  .about-trust__list li {
    font-size: 1.08vw;
  }

  .about-trust__num {
    width: 2.16vw;
    height: 2.16vw;
    font-size: 1.2vw;
  }

  .about-trust__card-img-wrap {
    height: 9vw;
  }

  .about-offices-section {
    padding: 0 2.4vw;
  }

  .about-offices-section__inner {
    max-width: 90%;
  }

  .about-offices-section__title {
    font-size: 2.52vw;
  }

  .about-offices-section__grid {
    gap: 1.8vw;
  }

  .about-offices-section__left,
  .about-offices-section__right {
    padding: 1.8vw 0.9vw;
  }

  .about-offices-section__subtitle {
    font-size: 1.44vw;
  }

  .about-offices-section__desc {
    font-size: 1.14vw;
  }

  .about-offices-section__info {
    gap: 0.96vw;
    margin-bottom: 1.8vw;
  }

  .about-offices-section__check {
    font-size: 1.2vw;
    margin-top: 0.24vw;
  }

  .about-offices-section__info strong,
  .about-offices-section__list-title {
    font-size: 1.2vw;
  }

  .about-offices-section__list li {
    font-size: 1.02vw;
  }

  .about-offices-section__list-arrow {
    font-size: 0.84vw;
  }

  .about-offices-section__btn,
  .about-offices-section__link {
    font-size: 1.14vw;
  }

  .about-offices-section__map-title {
    font-size: 1.44vw;
  }

  .about-offices-section__map-hint {
    font-size: 1.02vw;
  }

  .about-steps-section {
    padding: 6vw 2.4vw;
    margin-top: 6vw;
  }

  .about-steps-section .about-steps-section__inner {
    max-width: 90%;
  }

  .about-steps-section .about-steps-section__title {
    font-size: 2.52vw;
  }

  .about-steps-section .about-steps-section__list {
    gap: 0.9vw;
    margin-bottom: 2.4vw;
  }

  .about-steps-section .about-steps-section__item {
    padding: 2.4vw 0.9vw 0.9vw;
  }

  .about-steps-section__num-bg {
    font-size: 6.48vw;
  }

  .about-steps-section .about-steps-section__heading {
    font-size: 1.5vw;
  }

  .about-steps-section .about-steps-section__text {
    font-size: 1.02vw;
  }

  .about-events-section {
    padding: 0 2.4vw;
    margin-top: 6vw;
  }

  .about-events-section__inner {
    max-width: 90%;
  }

  .about-events-section__title {
    font-size: 2.52vw;
  }

  .about-events-section__cards {
    gap: 0.9vw;
  }

  .about-events-section__card-img-wrap {
    height: 12.96vw;
  }

  .about-events-section__card-title {
    font-size: 1.08vw;
    padding: 0.9vw;
  }

  .about-multivalute-section {
    padding: 0 2.4vw;
    margin-top: 6vw;
  }

  .about-multivalute-section__inner {
    max-width: 90%;
  }

  .about-multivalute-section__title {
    font-size: 2.52vw;
  }

  .about-multivalute-section__block {
    gap: 0.9vw;
    margin-bottom: 1.8vw;
  }

  .about-multivalute-section__subtitle {
    font-size: 1.44vw;
  }

  .about-multivalute-section__desc {
    font-size: 1.2vw;
  }

  .about-multivalute-section__feature span {
    font-size: 1.2vw;
  }

  .about-multivalute-section__hint {
    font-size: 1.02vw;
  }

  .about-multivalute-section__img-wrap {
    height: 14.4vw;
  }

  .about-multivalute-section__intro {
    font-size: 1.5vw;
    margin: 0 0 1.44vw;
  }

  .about-multivalute-section__carousel-wrap {
    gap: 0.48vw;
    margin-bottom: 1.8vw;
  }

  .about-multivalute-section__arrow {
    width: 1.5vw;
    height: 1.5vw;
  }

  .about-multivalute-section__note {
    font-size: 0.96vw;
    padding: 0.72vw 0.96vw;
  }

  .about-multivalute-section__carousel .about-multivalute-section__item {
    min-height: 6vw;
  }

  .about-multivalute-section__logo {
    max-height: 4vw;
  }

  .about-guarantee-section {
    padding: 0 2.4vw;
    margin-top: 6vw;
  }

  .about-guarantee-section__inner {
    max-width: 90%;
  }

  .about-guarantee-section__title {
    font-size: 2.52vw;
  }

  .about-guarantee-section__top {
    gap: 0.9vw;
  }

  .about-guarantee-section__subtitle {
    font-size: 1.44vw;
  }

  .about-guarantee-section__point-header strong {
    font-size: 1.2vw;
  }

  .about-guarantee-section__point-desc {
    font-size: 1.02vw;
  }

  .about-guarantee-section__bottom {
    gap: 0.9vw;
    margin-top: 1.8vw;
  }

  .about-guarantee-section__programs-title {
    font-size: 1.44vw;
  }

  .about-guarantee-section__img-wrap--diagram {
    max-width: 25.2vw;
  }

  .about-guarantee-section__actions {
    gap: 1.2vw;
  }

  .about-guarantee-section__btn {
    font-size: 1.14vw;
    padding: 0.72vw 1.08vw;
  }

  /* blog.html - 1440px */
  .blog-hero__inner {
    max-width: 90%;
  }

  .blog-hero__title {
    font-size: 3vw;
  }

  .blog-hero__desc {
    font-size: 1.2vw;
  }

  .blog-articles-section {
    padding: 6vw 2.4vw;
  }

  .blog-articles-section__inner {
    max-width: 90%;
  }

  .blog-articles-section__title {
    font-size: 2.52vw;
    margin: 0 0 2.4vw;
  }

  .blog-articles-section__cards {
    gap: 1.2vw;
    margin-bottom: 2.4vw;
  }

  .blog-articles-section__card {
    flex: 1 1 calc(33.333% - 0.8vw);
  }

  .blog-articles-section__body {
    padding: 1.2vw;
  }

  .blog-articles-section__date {
    font-size: 0.9vw;
  }

  .blog-articles-section__card-title {
    font-size: 1.2vw;
  }

  .blog-articles-section__desc {
    font-size: 0.96vw;
  }

  .blog-articles-section__link {
    font-size: 1.08vw;
  }

  .blog-articles-section__btn {
    font-size: 1.2vw;
    padding: 0.72vw 1.08vw;
  }

  .blog-detail {
    padding: 2.4vw 2.4vw;
  }

  .blog-detail__inner {
    max-width: 90%;
  }

  .blog-detail__breadcrumb {
    font-size: 1.02vw;
  }

  .blog-detail__title {
    font-size: 2.52vw;
  }

  .blog-detail__content {
    font-size: 1.02vw;
  }

  .blog-detail__subtitle {
    font-size: 2.04vw;
  }

  .blog-detail__figure {
    width: 50%;
  }

  .blog-detail-related {
    padding: 0 2.4vw;
  }

  .blog-detail-related__inner {
    max-width: 90%;
  }

  .blog-detail-related__title {
    font-size: 2.52vw;
  }

  .blog-detail-related__card-title {
    font-size: 1.32vw;
  }

  .blog-detail-related__card-desc {
    font-size: 1.02vw;
  }

  /* contact.html (contack.html) - 1440px */
  .contact-hero {
    padding: 4.8vw 2.4vw;
  }

  .contact-hero__inner {
    max-width: 90%;
  }

  .contact-hero__title {
    font-size: 3vw;
    margin: 0 0 1.8vw;
  }

  .contact-hero__phone {
    font-size: 2.04vw;
  }

  .contact-hero__phone-row {
    gap: 1.2vw;
    margin-bottom: 1.44vw;
  }

  .contact-hero__icon {
    width: 1.8vw;
    height: 1.8vw;
  }

  .contact-hero__email {
    font-size: 1.32vw;
    margin-bottom: 2.4vw;
  }

  .contact-hero__btn {
    font-size: 1.2vw;
    padding: 0.72vw 1.08vw;
  }

  /* thank.html - 1440px */
  .thank-you {
    padding: 4.8vw 2.4vw;
  }

  .thank-you__container,
  .thank-you__inner {
    max-width: 90%;
  }

  .thank-you__title {
    font-size: 3.36vw;
    margin: 0 0 1.8vw;
  }

  .thank-you__desc {
    font-size: 1.32vw;
  }

  .thank-you__decor--top {
    width: 36%;
  }

  .thank-you__decor--bottom {
    width: 45%;
  }

  .reviews-section {
    padding: 0 6vw;
    margin-top: 8.4vw;
  }

  .reviews-section__inner {
    max-width: 90%;
  }

  .reviews-section__title {
    font-size: 2.16vw;
    margin: 0 0 2.4vw 0;
  }

  .reviews-section__nav {
    top: 3.6vw;
    gap: 0.6vw;
  }

  .reviews-section__arrow {
    width: 1.5vw;
    height: 1.5vw;
  }

  .reviews-section__carousel {
    margin-bottom: 2.4vw;
  }

  .reviews-section__carousel .owl-stage-outer {
    padding: 1.2vw 0;
  }

  .reviews-section__card {
    border-radius: 0.72vw;
    padding: 1.2vw;
    gap: 0.72vw;
  }

  .reviews-section__avatar {
    width: 4.8vw !important;
    height: 4.8vw !important;
    min-width: 4.8vw !important;
    min-height: 4.8vw !important;
  }

  .reviews-section__name {
    font-size: 1.2vw;
  }

  .reviews-section__date {
    font-size: 0.9vw;
  }

  .reviews-section__text {
    font-size: 1.02vw;
  }

  .reviews-section__stars {
    font-size: 1.2vw;
  }

  .reviews-section__link {
    font-size: 0.96vw;
    margin-top: 2.4vw;
  }

  .reviews-section__btn {
    padding: 0.84vw 2.4vw;
    font-size: 1.08vw;
    border-radius: 0.6vw;
  }



  .index-steps-section {
    padding: 0 6vw;
    margin-top: 8.4vw;
  }

  .index-steps-section__inner {
    max-width: 90%;
  }

  .index-steps-section__title {
    font-size: 2.52vw;
    margin: 0 0 3.6vw 0;
  }

  .index-steps-section__list {
    gap: 1.2vw;
    margin-bottom: 3.6vw;
  }

  .index-steps-section__item:not(:last-child)::before {
    top: 1.8vw;
  }

  .index-steps-section__item:not(:last-child)::after {
    top: 1.8vw;
    border-top: 0.3vw solid transparent;
    border-bottom: 0.3vw solid transparent;
    border-left: 0.48vw solid #374151;
  }

  .index-steps-section__num {
    width: 3.6vw;
    height: 3.6vw;
    min-width: 3.6vw;
    min-height: 3.6vw;
    font-size: 1.44vw;
    margin-bottom: 1.44vw;
  }

  .index-steps-section__num::after {
    inset: -0.24vw;
  }

  .index-steps-section__heading {
    font-size: 1.32vw;
    margin: 0 0 0.96vw 0;
  }

  .index-steps-section__text {
    font-size: 1.02vw;
  }

  .index-steps-section__btn {
    padding: 0.6vw;
    font-size: 1.32vw;
    border-radius: 0.6vw;
  }



  .events-section {
    padding: 4.8vw 2.4vw;
    margin-top: 8.4vw;
  }

  .events-section__decor {
    width: 36vw;
  }

  .events-section__inner {
    max-width: 90%;
  }

  .events-section__title {
    font-size: 2.16vw;
    margin: 0 0 3vw 0;
  }

  .events-section__cards {
    gap: 1.2vw;
  }

  .events-section__card {
    min-width: 21.6vw;
    max-width: 26.4vw;
    border-radius: 0.72vw;
  }

  .events-section__card:hover {
    transform: translateY(-0.36vw);
    box-shadow: 0 0.6vw 1.8vw rgba(0, 0, 0, 0.35);
  }

  .events-section__card-title {
    padding: 1.2vw;
    font-size: 1.02vw;
  }



  .multivalute-section {
    padding: 0 6vw;
    margin-top: 8.4vw;
  }

  .multivalute-section__inner {
    max-width: 90%;
  }

  .multivalute-section__title {
    font-size: 2.52vw;
    margin: 0 0 1.44vw 0;
  }

  .multivalute-section__desc {
    font-size: 1.32vw;
    margin: 0 0 1.8vw 0;
  }

  .multivalute-section__intro {
    font-size: 1.5vw;
    margin: 0 0 1.8vw 0;
  }

  .multivalute-section__carousel-wrap {
    gap: 0.6vw;
    margin-bottom: 2.4vw;
  }

  .multivalute-section__arrow {
    width: 1.5vw;
    height: 1.5vw;
  }

  .multivalute-section__carousel {
    padding: 0 0.6vw;
  }

  .multivalute-section__carousel .multivalute-section__item {
    min-height: 5.4vw;
  }

  .multivalute-section__item {
    padding: 1.2vw;
    min-height: 5.4vw;
  }

  .multivalute-section__logo {
    max-height: 3vw;
  }

  .multivalute-section__note {
    gap: 0.6vw;
    font-size: 0.96vw;
    max-width: 32.4vw;
    padding: 0.9vw;
  }

  .multivalute-section__note-icon {
    font-size: 1.5vw;
    margin-top: 0.18vw;
  }



  .secure-section {
    padding: 0 2.4vw;
    margin-top: 8.4vw;
  }

  .secure-section__inner {
    max-width: 90%;
    gap: 3.6vw;
    border-radius: 0.96vw;
  }

  .secure-section__title {
    font-size: 2.52vw;
    margin: 0 0 1.8vw 0;
  }

  .secure-section__list {
    margin: 0 0 2.16vw 0;
    padding-left: 1.2vw;
  }

  .secure-section__list li {
    font-size: 1.32vw;
  }

  .secure-section__actions {
    gap: 1.8vw;
  }

  .secure-section__btn {
    padding: 0.72vw 1.14vw;
    font-size: 1.32vw;
    border-radius: 0.6vw;
  }

  .secure-section__link {
    font-size: 1.02vw;
  }

  .secure-section__img {
    border-radius: 0.72vw;
  }



  .monitoring-section {
    padding: 4.8vw 0vw;
    margin-top: 8.4vw;
  }

  .monitoring-section__decor {
    width: 24vw;
  }

  .monitoring-section__inner {
    max-width: 90%;
  }

  .monitoring-section__title {
    font-size: 2.52vw;
    margin: 0 0 3vw 0;
  }

  .monitoring-section__carousel-wrap {
    gap: 0.6vw;
  }

  .monitoring-section__arrow {
    width: 1.5vw;
    height: 1.5vw;
  }

  .monitoring-section__carousel {
    padding: 0 0.6vw;
  }

  .monitoring-section__item {
    min-height: 6vw;
    border-radius: 0.6vw;
  }

  .monitoring-section__logo {
    max-height: 3vw;
  }



  .aml-section {
    padding: 0 6vw;
    margin-top: 8.4vw;
  }

  .aml-section__inner {
    max-width: 90%;
    gap: 2.4vw;
  }

  .aml-section__row {
    gap: 2.4vw;
  }

  .aml-section__img-wrap {
    border-radius: 0.72vw;
  }

  .aml-section__title {
    font-size: 2.52vw;
    margin: 0 0 1.2vw 0;
  }

  .aml-section__intro {
    font-size: 1.32vw;
    margin: 0 0 0.96vw 0;
  }

  .aml-section__list li {
    font-size: 1.02vw;
    padding-left: 1.44vw;
  }

  .aml-section__list li::before {
    width: 0.42vw;
    height: 0.42vw;
  }

  .aml-section__text {
    font-size: 1.32vw;
    margin: 0 0 1.08vw 0;
  }

  .aml-section__text:last-of-type {
    margin-bottom: 1.2vw;
  }

  .aml-section__link {
    font-size: 1.32vw;
  }



  .news-section {
    padding: 0 6vw;
    margin-top: 8.4vw;
  }

  .news-section__inner {
    max-width: 90%;
  }

  .news-section__title {
    font-size: 2.52vw;
    margin: 0 0 3vw 0;
  }

  .news-section__cards {
    gap: 1.2vw;
    margin-bottom: 3vw;
  }

  .news-section__card {
    border-radius: 0.72vw;
  }

  .news-section__card-body {
    padding: 1.2vw;
  }

  .news-section__date {
    font-size: 0.9vw;
    margin-bottom: 0.6vw;
  }

  .news-section__card-title {
    font-size: 1.32vw;
    margin: 0 0 0.72vw 0;
  }

  .news-section__card-desc {
    font-size: 1.02vw;
    margin: 0 0 0.96vw 0;
  }

  .news-section__card-link {
    font-size: 1.08vw;
  }

  .news-section__btn {
    padding: 0.72vw 1.8vw;
    font-size: 1.2vw;
    border-radius: 0.6vw;
  }



  .cta-section {
    padding: 6vw 2.4vw;
    margin-top: 8.4vw;
  }

  .cta-section__decor {
    width: 20.4vw;
  }

  .cta-section__inner {
    max-width: 90%;
  }

  .cta-section__title {
    font-size: 2.52vw;
    margin: 0 0 2.4vw 0;
  }

  .cta-section__btn {
    padding: 0.84vw 0.6vw;
    font-size: 1.32vw;
    border-radius: 0.6vw;
  }



  .site-footer {
    padding: 3.6vw 2.4vw 2.4vw;
  }

  .site-footer__decor {
    height: 30vw;
  }

  .site-footer__inner {
    max-width: 90%;
  }

  .site-footer__top {
    gap: 3.6vw;
    padding-bottom: 3vw;
  }

  .site-footer__logo img {
    width: 8.04vw;
  }

  .site-footer__columns {
    gap: 4.8vw;
  }

  .site-footer__col-title {
    font-size: 1.02vw;
    margin-bottom: 1.2vw;
  }

  .site-footer__list {
    gap: 0.72vw;
  }

  .site-footer__link {
    font-size: 1.02vw;
  }

  .site-footer__right {
    gap: 1.44vw;
  }

  .site-footer__right-top {
    gap: 3vw;
  }

  .site-footer__contacts {
    gap: 0.72vw;
  }

  .site-footer__contact-item {
    gap: 0.6vw;
    font-size: 0.78vw;
  }

  .site-footer__contact-item--phone {
    font-size: 1.02vw;
  }

  .site-footer__contact-icon-img {
    width: 0.9vw;
    height: 0.9vw;
  }

  .site-footer__lang {
    gap: 0.6vw;
  }

  .site-footer__lang-link {
    font-size: 0.78vw;
  }

  .site-footer__btn {
    padding: 0.6vw 0.9vw;
    font-size: 1.14vw;
  }

  .site-footer__bottom {
    gap: 1.2vw;
    padding-top: 1.8vw;
  }

  .site-footer__copy {
    font-size: 0.78vw;
  }

  .site-footer__legal {
    font-size: 0.78vw;
  }



  .popup-overlay {
    padding: 2.4vw;
  }

  .popup {
    max-width: 360px;
    border-radius: 1.2vw;
    padding: 3vw;
  }

  .popup__close {
    top: 1.44vw;
    right: 1.44vw;
    width: 2.4vw;
    height: 2.4vw;
    font-size: 1.68vw;
  }

  .popup__title {
    font-size: 2.16vw;
    margin: 0 0 0.72vw 0;
  }

  .popup__desc {
    font-size: 1.14vw;
    margin: 0 0 1.8vw 0;
  }

  .popup__form {
    gap: 1.2vw;
  }

  .popup__input {
    padding: 1.08vw 1.44vw;
    border-radius: 0.6vw;
    font-size: 1.2vw;
  }

  .popup__checkbox-wrap {
    gap: 0.72vw;
  }

  .popup__checkbox {
    width: 1.44vw;
    height: 1.44vw;
    margin-top: 0.24vw;
  }

  .popup__checkbox-text {
    font-size: 0.9vw;
  }

  .popup__submit {
    padding: 1.2vw 1.8vw;
    font-size: 1.32vw;
    border-radius: 0.6vw;
  }
}

/* ========== MERGED @media (max-width: 1024px) ========== */
@media (max-width: 1024px) {

  .site-header {
    padding: 7px 20px;
  }

  .site-header__inner {
    max-width: 100%;
  }

  .site-header__logo img {
    width: 99px;
  }

  .site-header__nav {
    gap: 32px;
    padding: 0 29px;
  }

  .site-header__nav-link {
    gap: 4px;
    font-size: 11px;
  }

  .site-header__nav-arrow {
    margin-left: 5px;
    font-size: 7px;
  }

  .site-header__dropdown {
    top: calc(100% + 15px);
    min-width: 177px;
    padding: 9px 0;
  }

  .site-header__dropdown-list a {
    padding: 7px 18px;
    font-size: 10px;
  }

  .site-header__dropdown-toggle {
    padding: 7px 18px;
    font-size: 10px;
  }

  .site-header__dropdown-arrow {
    margin-left: 6px;
    font-size: 7px;
  }

  .site-header__dropdown-sublist {
    padding-left: 15px;
    padding-bottom: 4px;
  }

  .site-header__dropdown-sublist a {
    padding: 5px 18px;
    font-size: 9px;
  }

  .site-header__dropdown--mega {
    min-width: 413px;
    top: calc(100% + 15px);
    transform: translateX(-50%) translateY(6px);
    padding: 15px 22px;
  }

  .site-header__mega-accordion .site-header__mega-list {
    padding-top: 3px;
    padding-bottom: 7px;
  }

  .site-header__mega-title {
    gap: 7px;
    font-size: 10px;
    padding: 9px 0;
  }

  .site-header__mega-arrow {
    margin-left: 4px;
    font-size: 7px;
  }

  .site-header__mega-list {
    padding-left: 12px;
  }

  .site-header__mega-list a {
    padding: 6px 0;
    font-size: 10px;
  }

  .site-header__right {
    gap: 22px;
  }

  .site-header__contact {
    gap: 4px;
  }

  .site-header__contact-row {
    gap: 7px;
  }

  .site-header__contact-phone {
    font-size: 12px;
  }

  .site-header__contact-email {
    font-size: 10px;
  }

  .site-header__lang {
    gap: 2px;
    padding-left: 15px;
  }

  .site-header__contact-icon {
    width: 14px;
  }

  .site-header__lang-item {
    font-size: 10px;
  }



  .banner {
    padding: 4.8vw 20px 12vw 20px;
  }

  .banner__inner {
    max-width: 100%;
  }

  .banner__title {
    font-size: 3.6vw;
    margin-bottom: 2.16vw;
  }

  .banner__features {
    gap: 0.86vw;
    margin-bottom: 1.44vw;
  }

  .banner__feature {
    gap: 0.86vw;
    font-size: 1.44vw;
  }

  .banner__check {
    width: 1.73vw;
    height: 1.73vw;
  }

  .banner__support {
    font-size: 1.58vw;
    margin-bottom: 1.73vw;
  }

  .banner__tg-wrap {
    gap: 1.44vw;
  }

  .banner__tg-btn {
    padding: 0.72vw 1.08vw;
    font-size: 1.44vw;
    border-radius: 0.72vw;
  }

  .banner__tg-note {
    font-size: 1.08vw;
  }

  .banner__widget {
    width: 28.37vw;
    padding: 1.44vw;
    border-radius: 1.3vw;
    box-shadow: 0 0.58vw 2.88vw rgba(0, 0, 0, 0.3);
  }

  .banner__widget-toggle {
    padding: 0.72vw 1.44vw;
  }

  .banner__toggle-btn {
    padding: 0.86vw 1.44vw;
    font-size: 1.22vw;
  }

  .banner__toggle-btn:last-child {
    border-radius: 0 0.58vw 0.58vw 0;
  }

  .banner__widget-body {
    gap: 2.88vw;
    margin-top: 4.32vw;
  }

  .banner__widget-row {
    gap: 0.72vw;
  }

  .banner__widget-label {
    font-size: 1.12vw;
  }

  .banner__currency-field {
    border-radius: 0.72vw;
    padding: 0.72vw;
  }

  .banner__widget-input {
    font-size: 1.37vw;
  }

  .banner__currency-trigger {
    gap: 0.5vw;
    border-radius: 0 0.72vw 0.72vw 0;
  }

  .banner__currency-icon {
    width: 1.58vw;
    height: 1.58vw;
  }

  .banner__currency-text {
    font-size: 1.18vw;
  }

  .banner__currency-arrow {
    font-size: 0.65vw;
    margin-left: 0.29vw;
  }

  .banner__currency-dropdown {
    border-radius: 0.58vw;
    box-shadow: 0 0.43vw 1.44vw rgba(0, 0, 0, 0.15);
    margin-top: 0.29vw;
    padding: 0.43vw 0;
  }

  .banner__currency-dropdown li {
    padding: 0.58vw 1.08vw;
    font-size: 1.15vw;
    gap: 0.58vw;
  }

  .banner__dropdown-icon {
    width: 1.44vw;
    height: 1.44vw;
  }

  .banner__swap-btn {
    width: 3.17vw;
    height: 3.17vw;
  }

  .banner__swap-icon {
    width: 1.58vw;
    height: 1.58vw;
  }

  .banner__widget-rate {
    font-size: 1.04vw;
  }

  .banner__widget-submit {
    padding: 1.15vw 1.73vw;
    border-radius: 0.72vw;
    font-size: 1.27vw;
  }



  .mh {
    padding: 0 20px;
    margin-top: 7.2vw;
  }

  .mh__inner {
    max-width: 100%;
    gap: 2.88vw;
  }

  .mh__card {
    gap: 1.15vw;
  }

  .mh__icon {
    width: 2.45vw;
    height: 2.45vw;
  }

  .mh__text {
    font-size: 1.3vw;
  }



  .about-section {
    padding: 0 20px;
    margin-top: 7.2vw;
  }

  .about-section__inner {
    max-width: 100%;
    border-radius: 0.72vw;
    gap: 1.44vw;
  }

  .about-section__left {
    gap: 1.73vw;
  }

  .about-section__title {
    font-size: 3.02vw;
  }

  .about-section__text {
    font-size: 1.44vw;
  }

  .about-section__intro {
    font-size: 1.44vw;
  }

  .about-section__list {
    font-size: 1.44vw;
  }

  .about-section__list li {
    margin-bottom: 0.72vw;
    gap: 0.72vw;
  }

  .about-section__num {
    width: 2.3vw;
    height: 2.3vw;
    font-size: 1.22vw;
  }



  .trust-section {
    padding: 0 20px;
    margin-top: 8.64vw;
  }

  .trust-section__inner {
    max-width: 100%;
  }

  .trust-section__title {
    font-size: 3.02vw;
    margin: 0 0 1.15vw 0;
  }

  .trust-section__subtitle {
    font-size: 1.58vw;
    margin: 0 0 2.88vw 0;
  }

  .trust-section__scroll-wrap {
    padding-bottom: 1.15vw;
  }

  .trust-section__scroll-wrap::-webkit-scrollbar {
    height: 0.58vw;
  }

  .trust-section__scroll-wrap::-webkit-scrollbar-track {
    border-radius: 0.58vw;
  }

  .trust-section__scroll-wrap::-webkit-scrollbar-thumb {
    border-radius: 0.58vw;
  }

  .trust-section__cards {
    gap: 1.44vw;
    padding: 0 0.72vw;
  }

  .trust-section__card {
    flex: 0 0 40.32vw;
    min-width: 40.32vw;
    border-radius: 0.86vw;
  }

  .trust-section__card-body {
    padding: 2.16vw 1.44vw;
    gap: 1.44vw;
  }

  .trust-section__card-img-wrap {
    height: 14.4vw;
    border-radius: 0 0 0.86vw 0.86vw;
  }

  .trust-section__card-header {
    gap: 1.15vw;
  }

  .trust-section__num {
    width: 2.59vw;
    height: 2.59vw;
    font-size: 1.44vw;
  }

  .trust-section__card-title {
    font-size: 1.44vw;
  }

  .trust-section__list {
    font-size: 1.22vw;
  }

  .trust-section__list li {
    gap: 0.72vw;
  }

  .trust-section__check {
    width: 1.44vw;
    height: 1.44vw;
  }

  /* pagetrans.html - 1024px */
  .trans-page {
    padding: 5.76vw 20px 8.64vw;
  }

  .trans-page__inner {
    max-width: 100%;
    gap: 4.32vw;
  }

  .trans-page__left {
    max-width: 69.97%;
  }

  .trans-page__header {
    font-size: 1.22vw;
    margin-bottom: 1.44vw;
  }

  .trans-page__title {
    font-size: 3.6vw;
    margin-bottom: 2.16vw;
  }

  .trans-page__desc {
    font-size: 1.22vw;
    margin-bottom: 2.88vw;
  }

  .trans-page__features {
    gap: 0.72vw;
    margin-bottom: 2.88vw;
  }

  .trans-page__features li {
    font-size: 1.51vw;
    gap: 0.86vw;
  }

  .trans-page__check {
    width: 2.45vw;
    height: 2.45vw;
  }

  .trans-page__btns {
    gap: 0.72vw;
  }

  .trans-page__btn {
    padding: 0.72vw 0.94vw;
    font-size: 1.44vw;
    border-radius: 0.72vw;
  }

  .trans-page__note {
    font-size: 1.08vw;
    margin-left: 0.72vw;
  }

  .trans-page__form-panel {
    border-radius: 1.15vw;
    padding: 1.44vw;
  }

  .trans-page__form-title {
    font-size: 1.44vw;
    margin-bottom: 2.16vw;
  }

  .trans-page__form {
    gap: 1.08vw;
  }

  .trans-page__form-row {
    gap: 1.44vw;
  }

  .trans-page__label {
    font-size: 1.08vw;
    margin-bottom: 0.58vw;
  }

  .trans-page__input,
  .trans-page__textarea {
    padding: 0.72vw 0.94vw;
    font-size: 1.08vw;
    border-radius: 0.72vw;
  }

  .trans-page__select-trigger {
    padding: 0.5vw 3.17vw 0.5vw 0.94vw;
    font-size: 1.08vw;
    border-radius: 0.72vw;
  }

  .trans-page__select-arrow {
    right: 0.94vw;
    font-size: 0.86vw;
  }

  .trans-page__select-dropdown {
    border-radius: 0.72vw;
    margin-top: 0.29vw;
  }

  .trans-page__select-dropdown li {
    padding: 0.58vw 0.94vw;
    font-size: 1.08vw;
  }

  .trans-page__disclaimer,
  .trans-page__important {
    font-size: 0.79vw;
  }

  .trans-page__form-btns {
    gap: 0.72vw;
    margin-top: 0.72vw;
  }

  .trans-page__submit {
    padding: 0.72vw 0.94vw;
    font-size: 1.08vw;
    border-radius: 0.72vw;
  }

  .trans-page__tg-btn {
    padding: 0.72vw 0.86vw;
    font-size: 1.22vw;
    border-radius: 0.72vw;
  }

  .trans-page__important {
    margin-top: 0.72vw;
  }

  .trans-intro {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .trans-intro__inner {
    max-width: 100%;
  }

  .trans-intro__title {
    font-size: 3.02vw;
    margin: 0 0 0.86vw;
  }

  .trans-intro__subtitle {
    font-size: 1.44vw;
    margin: 0 0 3.6vw;
  }

  .trans-intro__cards {
    gap: 1.44vw;
  }

  .trans-intro__card-content {
    padding: 2.88vw 1.44vw;
  }

  .trans-intro__card-title {
    font-size: 1.8vw;
    margin: 0 0 2.59vw;
    gap: 0.86vw;
  }

  .trans-intro__badge {
    width: 2.45vw;
    height: 2.45vw;
    font-size: 1.44vw;
  }

  .trans-intro__list {
    gap: 1.44vw;
  }

  .trans-intro__item-title {
    font-size: 1.51vw;
  }

  .trans-intro__item-desc {
    font-size: 1.44vw;
  }

  .trans-intro__check {
    font-size: 1.44vw;
  }

  .trans-steps {
    padding: 7.2vw 20px 8.64vw;
    margin-top: 10.08vw;
  }

  .trans-steps__inner {
    max-width: 100%;
  }

  .trans-steps__title {
    font-size: 3.02vw;
    margin: 0 0 0.86vw;
  }

  .trans-steps__subtitle {
    font-size: 1.44vw;
    margin: 0 0 3.6vw;
  }

  .trans-steps__cards {
    gap: 1.44vw;
  }

  .trans-steps__card {
    padding: 4.32vw 1.44vw;
    gap: 2.45vw;
  }

  .trans-steps__watermark {
    font-size: 9.65vw;
    top: 1.01vw;
  }

  .trans-steps__card-title {
    font-size: 1.87vw;
  }

  .trans-steps__card-desc {
    font-size: 1.22vw;
  }

  .trans-docs {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .trans-docs__inner {
    max-width: 100%;
    gap: 2.16vw;
  }

  .trans-docs__block {
    gap: 2.16vw;
  }

  .trans-docs__text {
    padding: 2.88vw 0;
  }

  .trans-docs__text--documents {
    padding-right: 1.44vw;
  }

  .trans-docs__text--check {
    padding-left: 1.44vw;
  }

  .trans-docs__img-wrap {
    border-radius: 0.72vw;
  }

  .trans-docs__card-title {
    font-size: 3.02vw;
    margin: 0 0 1.44vw;
  }

  .trans-docs__card-intro {
    font-size: 1.44vw;
    margin: 0 0 1.44vw;
  }

  .trans-docs__list {
    font-size: 1.37vw;
    margin: 0 0 1.44vw;
    padding-left: 2.16vw;
  }

  .trans-docs__card-note {
    font-size: 1.22vw;
  }

  .trans-docs__img {
    min-height: 25.92vw;
  }

  .trans-docs__check-block {
    margin-bottom: 1.73vw;
  }

  .trans-docs__check-block:last-of-type {
    margin-bottom: 2.16vw;
  }

  .trans-docs__check-title {
    font-size: 1.44vw;
  }

  .trans-docs__check-desc {
    font-size: 1.3vw;
    margin: 0 0 0 2.59vw;
  }

  .trans-docs__actions {
    gap: 1.44vw;
  }

  .trans-docs__btn {
    padding: 0.72vw 1.01vw;
    font-size: 1.58vw;
    border-radius: 0.72vw;
  }

  .trans-docs__tg-link {
    font-size: 1.37vw;
  }

  .trans-faq {
    padding: 10.08vw 20px;
  }

  .trans-faq__inner {
    max-width: 100%;
  }

  .trans-faq__title {
    font-size: 3.02vw;
    margin: 0 0 3.6vw;
  }

  .trans-faq__content {
    gap: 1.44vw;
  }

  .trans-faq__questions {
    gap: 1.44vw;
  }

  .trans-faq__item {
    padding: 1.44vw;
    border-radius: 24px;
  }

  .trans-faq__question {
    padding: 1.73vw 0;
    gap: 1.15vw;
  }

  .trans-faq__question-icon {
    width: 2.45vw;
    height: 2.45vw;
  }

  .trans-faq__question-text {
    font-size: 1.73vw;
  }

  .trans-faq__chevron {
    font-size: 1.15vw;
  }

  .trans-faq__answer {
    padding: 0 0 1.73vw 5.04vw;
  }

  .trans-faq__answer p {
    font-size: 1.37vw;
  }

  .trans-faq__images {
    gap: 2.16vw;
  }

  .trans-faq__img-wrap {
    border-radius: 0.72vw;
  }

  /* exchange.html - 1024px */
  .exchange-page {
    padding: 5.76vw 20px 8.64vw;
  }

  .exchange-page__inner {
    max-width: 100%;
    gap: 4.32vw;
  }

  .exchange-page__header {
    font-size: 1.22vw;
    margin-bottom: 1.44vw;
  }

  .exchange-page__title {
    font-size: 3.6vw;
    margin-bottom: 2.16vw;
  }

  .exchange-page__desc {
    font-size: 1.22vw;
    margin-bottom: 2.88vw;
  }

  .exchange-page__features {
    gap: 0.72vw;
    margin-bottom: 2.88vw;
  }

  .exchange-page__features li {
    font-size: 1.51vw;
    gap: 0.86vw;
  }

  .exchange-page__check {
    width: 2.45vw;
    height: 2.45vw;
  }

  .exchange-page__btn {
    padding: 0.72vw 0.94vw;
    font-size: 1.44vw;
    border-radius: 0.72vw;
  }

  .exchange-page__note {
    font-size: 1.08vw;
  }

  .exchange-page__calc-panel {
    border-radius: 1.15vw;
    padding: 2.88vw 1.44vw;
  }

  .exchange-page__calc-title {
    font-size: 1.44vw;
    margin: 0 0 2.16vw;
  }

  .exchange-page__tabs {
    margin-bottom: 1.73vw;
    border-radius: 0.72vw;
  }

  .exchange-page__tab {
    padding: 0.72vw 1.15vw;
    font-size: 1.08vw;
    border-radius: 0.58vw;
  }

  .exchange-page__form {
    gap: 1.08vw;
  }

  .exchange-page__form-row {
    gap: 1.44vw;
  }

  .exchange-page__label {
    font-size: 1.01vw;
  }

  .exchange-page__input,
  .exchange-page__select-trigger {
    font-size: 1.08vw;
    border-radius: 0.72vw;
  }

  .exchange-page__disclaimer,
  .exchange-page__footer-note {
    font-size: 0.79vw;
  }

  .exchange-page__submit {
    font-size: 1.08vw;
    border-radius: 0.72vw;
  }

  .exchange-page__tg-btn {
    font-size: 1.22vw;
    border-radius: 0.72vw;
  }

  .exchange-currencies {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .exchange-currencies__inner {
    max-width: 100%;
  }

  .exchange-currencies__title {
    font-size: 3.02vw;
    margin-bottom: 4.32vw;
  }

  .exchange-currencies__grid {
    gap: 1.44vw;
  }

  .exchange-currencies__card {
    padding: 2.88vw 1.44vw;
  }

  .exchange-currencies__card-title {
    font-size: 1.8vw;
  }

  .exchange-currencies__card-desc {
    font-size: 1.44vw;
  }

  .exchange-currencies__item-header strong {
    font-size: 1.44vw;
  }

  .exchange-currencies__item p {
    font-size: 1.15vw;
  }

  .exchange-currencies__card-note {
    font-size: 1.08vw;
  }

  .exchange-example {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .exchange-example__inner {
    max-width: 100%;
  }

  .exchange-example__title {
    font-size: 3.02vw;
    margin: 0 0 1.44vw;
  }

  .exchange-example__desc {
    font-size: 1.44vw;
    margin: 0 0 2.88vw;
  }

  .exchange-example__table th,
  .exchange-example__table td {
    padding: 1.44vw 1.73vw;
  }

  .exchange-example__table th {
    font-size: 1.44vw;
  }

  .exchange-example__table td {
    font-size: 1.08vw;
  }

  .exchange-compliance {
    padding: 0 20px;
    margin-top: 10.08vw;
    margin-bottom: 10.08vw;
  }

  .exchange-compliance__inner {
    max-width: 100%;
  }

  .exchange-compliance__title {
    font-size: 3.02vw;
    margin: 0 0 4.32vw;
  }

  .exchange-compliance__block {
    gap: 2.16vw;
  }

  .exchange-compliance__subtitle {
    font-size: 2.45vw;
  }

  .exchange-compliance__intro {
    font-size: 1.37vw;
  }

  .exchange-compliance__point-header strong {
    font-size: 1.44vw;
  }

  .exchange-compliance__point-desc {
    font-size: 1.44vw;
  }

  .exchange-compliance__link {
    font-size: 1.37vw;
  }

  .exchange-compliance__img {
    min-height: 25.92vw;
  }

  .exchange-compliance__btn {
    padding: 0.72vw 1.01vw;
    font-size: 1.58vw;
  }

  .exchange-compliance__tg-link {
    font-size: 1.37vw;
  }

  /* about.html - 1024px */
  .about-hero__inner {
    max-width: 100%;
  }

  .about-hero__left {
    max-width: 56%;
  }

  .about-hero__check {
    width: 2.45vw;
    height: 2.45vw;
  }

  .about-hero__title {
    font-size: 3.6vw;
    margin: 0 0 2.16vw;
  }

  .about-hero__desc {
    font-size: 1.22vw;
    margin: 0 0 2.88vw;
  }

  .about-hero__feature-item {
    font-size: 1.51vw;
    gap: 0.86vw;
  }

  .about-hero__support {
    font-size: 1.51vw;
    margin: 0 0 2.88vw;
  }

  .about-hero__btn {
    font-size: 1.44vw;
    padding: 0.72vw 0.94vw;
  }

  .about-hero__note {
    font-size: 1.08vw;
  }

  .about-stats {
    padding: 0 20px;
    margin-top: 7.2vw;
  }

  .about-stats__inner {
    max-width: 100%;
  }

  .about-stats__row {
    gap: 2.88vw;
    margin-bottom: 4.32vw;
  }

  .about-stats__text {
    font-size: 1.3vw;
  }

  .about-stats__note {
    max-width: 46.08vw;
    padding: 1.73vw 2.16vw;
  }

  .about-stats__note-text {
    font-size: 1.3vw;
  }

  .about-stats__icon {
    width: 2.45vw;
    height: 2.45vw;
  }

  .about-stats__note-icon {
    width: 2.59vw;
    height: 2.59vw;
  }

  .about-honest {
    padding: 7.2vw 20px 8.64vw;
  }

  .about-honest__inner {
    max-width: 100%;
  }

  .about-honest__img {
    min-height: 19.44vw;
  }

  .about-honest__title {
    font-size: 3.02vw;
    margin: 0 0 4.32vw;
  }

  .about-honest__block {
    gap: 1.44vw;
  }

  .about-honest__block--2 {
    margin-top: 5.76vw;
  }

  .about-honest__subtitle {
    font-size: 1.87vw;
  }

  .about-honest__intro {
    font-size: 1.37vw;
  }

  .about-honest__point-header strong {
    font-size: 1.44vw;
  }

  .about-honest__point-desc {
    font-size: 1.22vw;
  }

  .about-trust {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .about-trust__inner {
    max-width: 100%;
  }

  .about-trust__title {
    font-size: 3.02vw;
  }

  .about-trust__subtitle {
    font-size: 1.58vw;
    margin: 0 0 3.6vw;
  }

  .about-trust__grid {
    gap: 2.16vw;
  }

  .about-trust__card {
    flex: 1 1 calc(50% - 1.08vw);
  }

  .about-trust__card-title {
    font-size: 1.44vw;
  }

  .about-trust__list li {
    font-size: 1.3vw;
  }

  .about-trust__num {
    width: 2.59vw;
    height: 2.59vw;
    font-size: 1.44vw;
  }

  .about-trust__card-img-wrap {
    height: 10.8vw;
  }

  .about-offices-section {
    padding: 0 20px;
  }

  .about-offices-section__inner {
    max-width: 100%;
  }

  .about-offices-section__title {
    font-size: 3.02vw;
  }

  .about-offices-section__grid {
    gap: 2.16vw;
  }

  .about-offices-section__left,
  .about-offices-section__right {
    padding: 2.16vw 1.08vw;
  }

  .about-offices-section__subtitle {
    font-size: 1.73vw;
  }

  .about-offices-section__desc {
    font-size: 1.37vw;
  }

  .about-offices-section__info {
    gap: 1.15vw;
    margin-bottom: 2.16vw;
  }

  .about-offices-section__check {
    font-size: 1.44vw;
    margin-top: 0.29vw;
  }

  .about-offices-section__info strong,
  .about-offices-section__list-title {
    font-size: 1.44vw;
  }

  .about-offices-section__list li {
    font-size: 1.22vw;
  }

  .about-offices-section__list-arrow {
    font-size: 1.01vw;
  }

  .about-offices-section__btn,
  .about-offices-section__link {
    font-size: 1.37vw;
  }

  .about-offices-section__map-title {
    font-size: 1.73vw;
  }

  .about-offices-section__map-hint {
    font-size: 1.22vw;
  }

  .about-steps-section {
    padding: 7.2vw 20px 8.64vw;
    margin-top: 7.2vw;
  }

  .about-steps-section .about-steps-section__inner {
    max-width: 100%;
  }

  .about-steps-section .about-steps-section__title {
    font-size: 3.02vw;
  }

  .about-steps-section .about-steps-section__list {
    gap: 1.08vw;
    margin-bottom: 2.88vw;
  }

  .about-steps-section .about-steps-section__item {
    padding: 2.88vw 1.08vw 1.08vw;
  }

  .about-steps-section__num-bg {
    font-size: 7.78vw;
  }

  .about-steps-section .about-steps-section__heading {
    font-size: 1.8vw;
  }

  .about-steps-section .about-steps-section__text {
    font-size: 1.22vw;
  }

  .about-events-section {
    padding: 0 20px;
    margin-top: 7.2vw;
  }

  .about-events-section__inner {
    max-width: 100%;
  }

  .about-events-section__title {
    font-size: 3.02vw;
  }

  .about-events-section__cards {
    gap: 1.08vw;
  }

  .about-events-section__card-img-wrap {
    height: 15.55vw;
  }

  .about-events-section__card-title {
    font-size: 1.3vw;
    padding: 1.08vw;
  }

  .about-multivalute-section {
    padding: 0 20px;
    margin-top: 7.2vw;
  }

  .about-multivalute-section__inner {
    max-width: 100%;
  }

  .about-multivalute-section__title {
    font-size: 3.02vw;
  }

  .about-multivalute-section__block {
    gap: 1.08vw;
    margin-bottom: 2.16vw;
  }

  .about-multivalute-section__subtitle {
    font-size: 1.73vw;
  }

  .about-multivalute-section__desc {
    font-size: 1.44vw;
  }

  .about-multivalute-section__feature span {
    font-size: 1.44vw;
  }

  .about-multivalute-section__hint {
    font-size: 1.22vw;
  }

  .about-multivalute-section__img-wrap {
    height: 17.28vw;
  }

  .about-multivalute-section__intro {
    font-size: 1.8vw;
    margin: 0 0 1.73vw;
  }

  .about-multivalute-section__carousel-wrap {
    gap: 0.58vw;
    margin-bottom: 2.16vw;
  }

  .about-multivalute-section__arrow {
    width: 1.8vw;
    height: 1.8vw;
  }

  .about-multivalute-section__note {
    font-size: 1.15vw;
    padding: 0.86vw 1.15vw;
  }

  .about-multivalute-section__carousel .about-multivalute-section__item {
    min-height: 7vw;
  }

  .about-multivalute-section__logo {
    max-height: 5vw;
  }

  .about-guarantee-section {
    padding: 0 20px;
    margin-top: 7.2vw;
  }

  .about-guarantee-section__inner {
    max-width: 100%;
  }

  .about-guarantee-section__title {
    font-size: 3.02vw;
  }

  .about-guarantee-section__top {
    gap: 1.08vw;
  }

  .about-guarantee-section__subtitle {
    font-size: 1.73vw;
  }

  .about-guarantee-section__point-header strong {
    font-size: 1.44vw;
  }

  .about-guarantee-section__point-desc {
    font-size: 1.22vw;
  }

  .about-guarantee-section__bottom {
    gap: 1.08vw;
    margin-top: 2.16vw;
  }

  .about-guarantee-section__programs-title {
    font-size: 1.73vw;
  }

  .about-guarantee-section__img-wrap--diagram {
    max-width: 30.24vw;
  }

  .about-guarantee-section__actions {
    gap: 1.44vw;
  }

  .about-guarantee-section__btn {
    font-size: 1.37vw;
    padding: 0.86vw 1.3vw;
  }

  /* blog.html - 1024px */
  .blog-hero__inner {
    max-width: 100%;
  }

  .blog-hero__title {
    font-size: 3.6vw;
  }

  .blog-hero__desc {
    font-size: 1.44vw;
  }

  .blog-articles-section {
    padding: 7.2vw 20px;
  }

  .blog-articles-section__inner {
    max-width: 100%;
  }

  .blog-articles-section__title {
    font-size: 3.02vw;
    margin: 0 0 2.88vw;
  }

  .blog-articles-section__cards {
    gap: 1.44vw;
    margin-bottom: 2.88vw;
  }

  .blog-articles-section__card {
    flex: 1 1 calc(33.333% - 0.96vw);
  }

  .blog-articles-section__body {
    padding: 1.44vw;
  }

  .blog-articles-section__date {
    font-size: 1.08vw;
  }

  .blog-articles-section__card-title {
    font-size: 1.44vw;
  }

  .blog-articles-section__desc {
    font-size: 1.15vw;
  }

  .blog-articles-section__link {
    font-size: 1.3vw;
  }

  .blog-articles-section__btn {
    font-size: 1.44vw;
    padding: 0.86vw 1.3vw;
  }

  .blog-detail {
    padding: 20px 20px;
  }

  .blog-detail__inner {
    max-width: 100%;
  }

  .blog-detail__breadcrumb {
    font-size: 1.22vw;
  }

  .blog-detail__title {
    font-size: 3.02vw;
  }

  .blog-detail__content {
    font-size: 1.22vw;
  }

  .blog-detail__subtitle {
    font-size: 2.45vw;
  }

  .blog-detail-related {
    padding: 0 20px;
  }

  .blog-detail-related__inner {
    max-width: 100%;
  }

  .blog-detail-related__title {
    font-size: 3.02vw;
  }

  .blog-detail-related__card-title {
    font-size: 1.58vw;
  }

  .blog-detail-related__card-desc {
    font-size: 1.22vw;
  }

  /* contact.html (contack.html) - 1024px */
  .contact-hero {
    padding: 5.76vw 20px;
  }

  .contact-hero__inner {
    max-width: 100%;
  }

  .contact-hero__title {
    font-size: 3.6vw;
    margin: 0 0 2.16vw;
  }

  .contact-hero__phone {
    font-size: 2.45vw;
  }

  .contact-hero__phone-row {
    gap: 1.44vw;
    margin-bottom: 1.73vw;
  }

  .contact-hero__icon {
    width: 2.16vw;
    height: 2.16vw;
  }

  .contact-hero__email {
    font-size: 1.58vw;
    margin-bottom: 2.88vw;
  }

  .contact-hero__btn {
    font-size: 1.44vw;
    padding: 0.86vw 1.3vw;
  }

  /* thank.html - 1024px */
  .thank-you {
    padding: 5.76vw 20px;
  }

  .thank-you__container,
  .thank-you__inner {
    max-width: 100%;
  }

  .thank-you__title {
    font-size: 4.03vw;
    margin: 0 0 2.16vw;
  }

  .thank-you__desc {
    font-size: 1.58vw;
  }

  .thank-you__decor--top {
    width: 38%;
  }

  .thank-you__decor--bottom {
    width: 48%;
  }

  .reviews-section {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .reviews-section__inner {
    max-width: 100%;
  }

  .reviews-section__title {
    font-size: 2.59vw;
    margin: 0 0 2.88vw 0;
  }

  .reviews-section__nav {
    top: 4.32vw;
    gap: 0.72vw;
  }

  .reviews-section__arrow {
    width: 1.8vw;
    height: 1.8vw;
  }

  .reviews-section__carousel {
    margin-bottom: 2.88vw;
  }

  .reviews-section__carousel .owl-stage-outer {
    padding: 1.44vw 0;
  }

  .reviews-section__card {
    border-radius: 0.86vw;
    padding: 1.44vw;
    gap: 0.86vw;
  }

  .reviews-section__avatar {
    width: 5.76vw !important;
    height: 5.76vw !important;
    min-width: 5.76vw !important;
    min-height: 5.76vw !important;
  }

  .reviews-section__name {
    font-size: 1.44vw;
  }

  .reviews-section__date {
    font-size: 1.08vw;
  }

  .reviews-section__text {
    font-size: 1.22vw;
  }

  .reviews-section__stars {
    font-size: 1.44vw;
  }

  .reviews-section__link {
    font-size: 1.15vw;
    margin-top: 2.88vw;
  }

  .reviews-section__btn {
    padding: 1.01vw 2.88vw;
    font-size: 1.3vw;
    border-radius: 0.72vw;
  }



  .index-steps-section {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .index-steps-section__inner {
    max-width: 100%;
  }

  .index-steps-section__title {
    font-size: 3.02vw;
    margin: 0 0 4.32vw 0;
  }

  .index-steps-section__list {
    gap: 1.44vw;
    margin-bottom: 4.32vw;
  }

  .index-steps-section__item:not(:last-child)::before {
    top: 2.16vw;
  }

  .index-steps-section__item:not(:last-child)::after {
    top: 2.16vw;
    border-top: 0.36vw solid transparent;
    border-bottom: 0.36vw solid transparent;
    border-left: 0.58vw solid #374151;
  }

  .index-steps-section__num {
    width: 4.32vw;
    height: 4.32vw;
    min-width: 4.32vw;
    min-height: 4.32vw;
    font-size: 1.73vw;
    margin-bottom: 1.73vw;
  }

  .index-steps-section__num::after {
    inset: -0.29vw;
  }

  .index-steps-section__heading {
    font-size: 1.58vw;
    margin: 0 0 1.15vw 0;
  }

  .index-steps-section__text {
    font-size: 1.22vw;
  }

  .index-steps-section__btn {
    padding: 0.72vw;
    font-size: 1.58vw;
    border-radius: 0.72vw;
  }



  .events-section {
    padding: 5.76vw 20px;
    margin-top: 10.08vw;
  }

  .events-section__decor {
    width: 43.2vw;
  }

  .events-section__inner {
    max-width: 100%;
  }

  .events-section__title {
    font-size: 2.59vw;
    margin: 0 0 3.6vw 0;
  }

  .events-section__cards {
    gap: 1.44vw;
  }

  .events-section__card {
    min-width: 25.92vw;
    max-width: 31.68vw;
    border-radius: 0.86vw;
  }

  .events-section__card:hover {
    transform: translateY(-0.43vw);
    box-shadow: 0 0.72vw 2.16vw rgba(0, 0, 0, 0.35);
  }

  .events-section__card-title {
    padding: 1.44vw;
    font-size: 1.22vw;
  }



  .multivalute-section {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .multivalute-section__inner {
    max-width: 100%;
  }

  .multivalute-section__title {
    font-size: 3.02vw;
    margin: 0 0 1.73vw 0;
  }

  .multivalute-section__desc {
    font-size: 1.58vw;
    margin: 0 0 2.16vw 0;
  }

  .multivalute-section__intro {
    font-size: 1.8vw;
    margin: 0 0 2.16vw 0;
  }

  .multivalute-section__carousel-wrap {
    gap: 0.72vw;
    margin-bottom: 2.88vw;
  }

  .multivalute-section__arrow {
    width: 1.8vw;
    height: 1.8vw;
  }

  .multivalute-section__carousel {
    padding: 0 0.72vw;
  }

  .multivalute-section__carousel .multivalute-section__item {
    min-height: 6.48vw;
  }

  .multivalute-section__item {
    padding: 1.44vw;
    min-height: 6.48vw;
  }

  .multivalute-section__logo {
    max-height: 3.6vw;
  }

  .multivalute-section__note {
    gap: 0.72vw;
    font-size: 1.15vw;
    max-width: 38.88vw;
    padding: 1.08vw;
  }

  .multivalute-section__note-icon {
    font-size: 1.8vw;
    margin-top: 0.22vw;
  }



  .secure-section {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .secure-section__inner {
    max-width: 100%;
    gap: 4.32vw;
    border-radius: 1.15vw;
  }

  .secure-section__title {
    font-size: 3.02vw;
    margin: 0 0 2.16vw 0;
  }

  .secure-section__list {
    margin: 0 0 2.59vw 0;
    padding-left: 1.44vw;
  }

  .secure-section__list li {
    font-size: 1.58vw;
  }

  .secure-section__actions {
    gap: 2.16vw;
  }

  .secure-section__btn {
    padding: 0.86vw 1.37vw;
    font-size: 1.58vw;
    border-radius: 0.72vw;
  }

  .secure-section__link {
    font-size: 1.22vw;
  }

  .secure-section__img {
    border-radius: 0.86vw;
  }



  .aml-section {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .aml-section__inner {
    max-width: 100%;
    gap: 2.88vw;
  }

  .aml-section__row {
    gap: 2.88vw;
  }

  .aml-section__img-wrap {
    border-radius: 0.86vw;
  }

  .aml-section__title {
    font-size: 3.02vw;
    margin: 0 0 1.44vw 0;
  }

  .aml-section__intro {
    font-size: 1.58vw;
    margin: 0 0 1.15vw 0;
  }

  .aml-section__list li {
    font-size: 1.22vw;
    padding-left: 1.73vw;
  }

  .aml-section__list li::before {
    width: 0.5vw;
    height: 0.5vw;
  }

  .aml-section__text {
    font-size: 1.58vw;
    margin: 0 0 1.3vw 0;
  }

  .aml-section__text:last-of-type {
    margin-bottom: 1.44vw;
  }

  .aml-section__link {
    font-size: 1.58vw;
  }



  .news-section {
    padding: 0 20px;
    margin-top: 10.08vw;
  }

  .news-section__inner {
    max-width: 100%;
  }

  .news-section__title {
    font-size: 3.02vw;
    margin: 0 0 3.6vw 0;
  }

  .news-section__cards {
    gap: 1.44vw;
    margin-bottom: 3.6vw;
  }

  .news-section__card {
    border-radius: 0.86vw;
  }

  .news-section__card-body {
    padding: 1.44vw;
  }

  .news-section__date {
    font-size: 1.08vw;
    margin-bottom: 0.72vw;
  }

  .news-section__card-title {
    font-size: 1.58vw;
    margin: 0 0 0.86vw 0;
  }

  .news-section__card-desc {
    font-size: 1.22vw;
    margin: 0 0 1.15vw 0;
  }

  .news-section__card-link {
    font-size: 1.3vw;
  }

  .news-section__btn {
    padding: 0.86vw 2.16vw;
    font-size: 1.44vw;
    border-radius: 0.72vw;
  }



  .cta-section {
    padding: 7.2vw 20px;
    margin-top: 10.08vw;
  }

  .cta-section__decor {
    width: 24.48vw;
  }

  .cta-section__inner {
    max-width: 100%;
  }

  .cta-section__title {
    font-size: 3.02vw;
    margin: 0 0 2.88vw 0;
  }

  .cta-section__btn {
    padding: 1.01vw 0.72vw;
    font-size: 1.58vw;
    border-radius: 0.72vw;
  }



  .site-footer {
    padding: 4.32vw 20px 2.88vw;
  }

  .site-footer__decor {
    height: 36vw;
  }

  .site-footer__inner {
    max-width: 100%;
  }

  .site-footer__top {
    gap: 4.32vw;
    padding-bottom: 3.6vw;
  }

  .site-footer__logo img {
    width: 9.65vw;
  }

  .site-footer__columns {
    gap: 5.76vw;
  }

  .site-footer__col-title {
    font-size: 1.22vw;
    margin-bottom: 1.44vw;
  }

  .site-footer__list {
    gap: 0.86vw;
  }

  .site-footer__link {
    font-size: 1.22vw;
  }

  .site-footer__right {
    gap: 1.73vw;
  }

  .site-footer__right-top {
    gap: 3.6vw;
  }

  .site-footer__contacts {
    gap: 0.86vw;
  }

  .site-footer__contact-item {
    gap: 0.72vw;
    font-size: 0.94vw;
  }

  .site-footer__contact-item--phone {
    font-size: 1.22vw;
  }

  .site-footer__contact-icon-img {
    width: 1.08vw;
    height: 1.08vw;
  }

  .site-footer__lang {
    gap: 0.72vw;
  }

  .site-footer__lang-link {
    font-size: 0.94vw;
  }

  .site-footer__btn {
    padding: 0.72vw 1.08vw;
    font-size: 1.37vw;
  }

  .site-footer__bottom {
    gap: 1.44vw;
    padding-top: 2.16vw;
  }

  .site-footer__copy {
    font-size: 0.94vw;
  }

  .site-footer__legal {
    font-size: 0.94vw;
  }



  .popup-overlay {
    padding: 2.88vw 20px;
  }

  .popup {
    max-width: 360px;
    border-radius: 1.44vw;
    padding: 3.6vw;
  }

  .popup__close {
    top: 1.73vw;
    right: 1.73vw;
    width: 2.88vw;
    height: 2.88vw;
    font-size: 2.02vw;
  }

  .popup__title {
    font-size: 2.59vw;
    margin: 0 0 0.86vw 0;
  }

  .popup__desc {
    font-size: 1.37vw;
    margin: 0 0 2.16vw 0;
  }

  .popup__form {
    gap: 1.44vw;
  }

  .popup__input {
    padding: 1.3vw 1.73vw;
    border-radius: 0.72vw;
    font-size: 1.44vw;
  }

  .popup__checkbox-wrap {
    gap: 0.86vw;
  }

  .popup__checkbox {
    width: 1.73vw;
    height: 1.73vw;
    margin-top: 0.29vw;
  }

  .popup__checkbox-text {
    font-size: 1.08vw;
  }

  .popup__submit {
    padding: 1.44vw 2.16vw;
    font-size: 1.58vw;
    border-radius: 0.72vw;
  }
}

/* ========== 900px - MOBILE MENU ========== */
@media (max-width: 900px) {
  .site-header {
    padding: 5px 16px;
  }

  .site-header__logo img {
    width: 100px;
  }

  .site-header__inner {
    justify-content: space-between;
    gap: 12px;
  }

  .site-header__logo {
    flex-shrink: 0;
  }

  .site-header__right {
    margin-left: auto;
    flex-shrink: 0;
  }

  .site-header__menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    cursor: pointer;
  }

  .site-header__nav-wrap {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: #1E2530;
    z-index: 200;
    padding: 60px 20px 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    align-items: flex-start;
  }

  .site-header__nav-wrap.is-open {
    transform: translateX(0);
  }

  .site-header__nav-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    cursor: pointer;
  }

  .site-header__nav-close:hover {
    color: #EFD0A3;
  }

  .site-header__nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    justify-content: flex-start;
  }

  .site-header__nav-link,
  .site-header__nav-item {
    display: block;
    padding: 10px 0;
    border: none;
  }

  .site-header__nav-link {
    font-size: 16px;
  }

  .site-header__dropdown,
  .site-header__dropdown--mega {
    position: static;
    transform: none;
    min-width: auto;
    box-shadow: none;
    padding: 0;
    padding-top: 0;
    margin-top: 0;
    opacity: 1;
    visibility: visible;
    display: none;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    transition: none;
  }

  .site-header__nav-item.is-open .site-header__dropdown,
  .site-header__nav-item.is-open .site-header__dropdown--mega {
    display: block;
  }

  .site-header__nav-item:hover .site-header__dropdown,
  .site-header__nav-item:hover .site-header__dropdown--mega {
    transform: none;
  }

  .site-header__nav-item.is-open .site-header__nav-arrow {
    transform: rotate(180deg);
  }

  .site-header__dropdown-list,
  .site-header__mega-inner {
    padding-left: 12px;
    padding-top: 0;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    list-style: none;
  }

  .site-header__dropdown-list {
    margin-left: 0;
  }

  .site-header__dropdown-list > li,
  .site-header__dropdown-list > li:last-child,
  .site-header__mega-accordion,
  .site-header__mega-accordion:last-child {
    border: none;
  }

  .site-header__dropdown-sublist {
    padding-left: 16px;
    padding-top: 0;
    padding-bottom: 6px;
  }

  .site-header__dropdown-list a,
  .site-header__dropdown-toggle,
  .site-header__mega-title {
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
  }

  .site-header__dropdown-toggle:hover {
    background: transparent;
  }

  .site-header__dropdown-sublist a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
  }

  .site-header__mega-accordion .site-header__mega-list {
    display: none;
    padding-top: 0;
    margin-top: 0;
  }

  .site-header__mega-accordion.is-open .site-header__mega-list {
    display: flex;
  }

  .site-header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
  }

  .site-header__overlay.is-open {
    display: block;
  }
}

/* ========== 768px - MOBILE LAYOUT ========== */
@media (max-width: 768px) {
  /* Banner - 768px mobil */
  .banner {
    padding: 30px 16px 64px;
  }

  .banner__inner {
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
  }

  .banner__info {
    width: 100%;
  }

  .banner__title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .banner__features {
    gap: 8px;
    margin-bottom: 12px;
  }

  .banner__feature {
    gap: 8px;
    font-size: 14px;
  }

  .banner__check {
    width: 24px;
    height: 24px;
  }

  .banner__support {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .banner__tg-wrap {
    gap: 12px;
  }

  .banner__tg-btn {
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 8px;
  }

  .banner__tg-note {
    font-size: 12px;
  }

  .banner__widget {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
  }

  .banner__widget-toggle {
    padding: 8px 12px;
  }

  .banner__toggle-btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .banner__toggle-btn:last-child {
    border-radius: 0 8px 8px 0;
  }

  .banner__widget-body {
    gap: 16px;
    margin-top: 20px;
  }

  .banner__widget-inputs {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .banner__widget-row {
    gap: 6px;
  }

  .banner__widget-label {
    font-size: 12px;
  }

  .banner__currency-field {
    padding: 10px 12px;
    border-radius: 8px;
  }

  .banner__widget-input {
    font-size: 14px;
  }

  .banner__currency-trigger {
    gap: 6px;
    border-radius: 0 8px 8px 0;
  }

  .banner__currency-icon {
    width: 18px;
    height: 18px;
  }

  .banner__currency-text {
    font-size: 13px;
  }

  .banner__currency-arrow {
    font-size: 10px;
  }

  .banner__currency-dropdown {
    border-radius: 8px;
    padding: 6px 0;
  }

  .banner__currency-dropdown li {
    padding: 8px 12px;
    font-size: 13px;
  }

  .banner__dropdown-icon {
    width: 16px;
    height: 16px;
  }

  .banner__swap-btn {
    width: 36px;
    height: 36px;
    align-self: center;
  }

  .banner__swap-icon {
    width: 18px;
    height: 18px;
  }

  .banner__widget-rate {
    font-size: 12px;
  }

  .banner__widget-submit {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
  }

  /* mh stats - 768px mobil */
  .mh {
    padding: 0 16px;
    margin-top: 32px;
  }

  .mh__inner {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .mh__card {
    width: 138px;
    flex-shrink: 0;
    gap: 8px;
  }

  .mh__icon {
    width: 28px;
    height: 28px;
  }

  .mh__text {
    font-size: 12px;
  }

  /* about-section - 768px mobil */
  .about-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .about-section__inner {
    max-width: 100%;
    flex-direction: column;
    gap: 20px;
    border-radius: 8px;
  }

  .about-section__left {
    width: 100%;
    gap: 14px;
  }

  .about-section__title {
    font-size: 24px;
    line-height: 1.2;
  }

  .about-section__text {
    font-size: 14px;
    line-height: 1.4;
  }

  .about-section__intro {
    font-size: 14px;
  }

  .about-section__list {
    font-size: 14px;
    line-height: 1.4;
  }

  .about-section__list li {
    margin-bottom: 8px;
    gap: 8px;
  }

  .about-section__num {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .about-section__right {
    width: 100%;
  }

  /* trust-section - 768px mobil */
  .trust-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .trust-section__inner {
    max-width: 100%;
  }

  .trust-section__title {
    font-size: 24px;
    margin: 0 0 12px 0;
    line-height: 1.2;
  }

  .trust-section__subtitle {
    font-size: 14px;
    margin: 0 0 20px 0;
  }

  .trust-section__scroll-wrap {
    overflow: visible;
    padding-bottom: 0;
  }

  .trust-section__cards {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    align-items: stretch;
  }

  .trust-section__card {
    flex: 1 1 auto;
    min-width: 0;
    width: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
  }

  .trust-section__card-body {
    padding: 16px 12px;
    gap: 10px;
    flex: 1;
    min-height: 0;
  }

  .trust-section__card-img-wrap {
    height: 110px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
  }

  .trust-section__card-header {
    gap: 8px;
  }

  .trust-section__num {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .trust-section__card-title {
    font-size: 14px;
  }

  .trust-section__list {
    font-size: 14px;
  }

  .trust-section__list li {
    gap: 6px;
  }

  .trust-section__check {
    width: 18px;
    height: 18px;
  }

  /* reviews-section - 768px mobil */
  .reviews-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .reviews-section__inner {
    max-width: 100%;
  }

  .reviews-section__title {
    font-size: 24px;
    margin: 0 0 40px 0;
  }

  .reviews-section__nav {
    top: 40px;
    right: 0;
    gap: 8px;
  }

  .reviews-section__arrow {
    width: 20px;
    height: 20px;
  }

  .reviews-section__carousel {
    margin-bottom: 20px;
  }

  .reviews-section__carousel .owl-stage-outer {
    padding: 8px 0;
  }

  .reviews-section__card {
    border-radius: 8px;
    padding: 16px;
    gap: 10px;
  }

  .reviews-section__avatar {
    width: 52px !important;
    height: 52px !important;
    min-width: 48px !important;
    min-height: 48px !important;
  }

  .reviews-section__name {
    font-size: 14px;
  }

  .reviews-section__date {
    font-size: 11px;
  }

  .reviews-section__text {
    font-size: 13px;
  }

  .reviews-section__stars {
    font-size: 14px;
  }

  .reviews-section__link {
    font-size: 12px;
    margin-top: 12px;
  }

  .reviews-section__btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
  }

  /* index-steps-section - 768px mobil */
  .index-steps-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .index-steps-section__inner {
    max-width: 100%;
  }

  .index-steps-section__title {
    font-size: 24px;
    margin: 0 0 24px 0;
    line-height: 1.2;
  }

  .index-steps-section__list {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }

  .index-steps-section__item:not(:last-child)::before {
    top: auto;
    left: 19px;
    bottom: 0;
    width: 2px;
    height: 50px;
    background: rgba(157, 163, 175, 1);
    transform: none;
  }

  .index-steps-section__item:not(:last-child)::after {
    top: auto;
    left: 14px;
    bottom: -1px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid rgba(157, 163, 175, 1);
    border-bottom: none;
    transform: none;
  }

  .index-steps-section__item {
    flex: none;
    padding-bottom: 60px;
  }

  .index-steps-section__num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }

  .index-steps-section__num::after {
    inset: -3px;
  }

  .index-steps-section__heading {
    font-size: 17px;
    margin: 0 0 8px 0;
  }

  .index-steps-section__text {
    font-size: 14px;
  }

  .index-steps-section__btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
    margin-top: -40px;
  }

  /* events-section - 768px mobil */
  .events-section {
    padding: 24px 16px;
    margin-top: 40px;
  }

  .events-section__decor {
    width: 120px;
  }

  .events-section__inner {
    max-width: 100%;
  }

  .events-section__title {
    font-size: 24px;
    margin: 0 0 24px 0;
    line-height: 1.2;
  }

  .events-section__cards {
    flex-direction: column;
    gap: 20px;
  }

  .events-section__card {
    min-width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .events-section__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  }

  .events-section__card-title {
    padding: 12px;
    font-size: 14px;
  }

  /* multivalute-section - 768px mobil */
  .multivalute-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .multivalute-section__inner {
    max-width: 100%;
  }

  .multivalute-section__title {
    font-size: 24px;
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .multivalute-section__desc {
    font-size: 14px;
    margin: 0 0 20px 0;
  }

  .multivalute-section__intro {
    font-size: 15px;
    margin: 0 0 20px 0;
  }

  .multivalute-section__carousel-wrap {
    gap: 8px;
    margin-bottom: 24px;
  }

  .multivalute-section__arrow {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .multivalute-section__carousel {
    padding: 0 4px;
  }

  .multivalute-section__carousel .multivalute-section__item {
    min-height: 60px;
  }

  .multivalute-section__item {
    padding: 12px;
    min-height: 60px;
  }

  .multivalute-section__logo {
    max-height: 53px;
  }

  .multivalute-section__note {
    gap: 8px;
    font-size: 12px;
    max-width: 100%;
    padding: 12px;
    border-radius: 8px;
  }

  .multivalute-section__note-icon {
    font-size: 14px;
    margin-top: 2px;
  }

  /* secure-section - 768px mobil */
  .secure-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .secure-section__inner {
    max-width: 100%;
    flex-direction: column;
    gap: 24px;
    border-radius: 8px;
  }

  .secure-section__left {
    width: 100%;
  }

  .secure-section__title {
    font-size: 24px;
    margin: 0 0 16px 0;
    line-height: 1.2;
  }

  .secure-section__list {
    margin: 0 0 20px 0;
    padding-left: 18px;
  }

  .secure-section__list li {
    font-size: 14px;
    line-height: 1.5;
  }

  .secure-section__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .secure-section__btn {
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 8px;
    text-align: center;
  }

  .secure-section__link {
    font-size: 13px;
    text-align: center;
  }

  .secure-section__right {
    width: 100%;
  }

  .secure-section__img {
    border-radius: 8px;
  }

  /* monitoring-section - 768px mobil */
  .monitoring-section {
    padding: 24px 16px;
    margin-top: 70px;
  }

  .monitoring-section__decor {
    width: 100px;
  }

  .monitoring-section__inner {
    max-width: 100%;
  }

  .monitoring-section__title {
    font-size: 24px;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

  .monitoring-section__carousel-wrap {
    gap: 8px;
  }

  .monitoring-section__arrow {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
  }

  .monitoring-section__carousel {
    padding: 0 4px;
  }

  .monitoring-section__item {
    min-height: 60px;
    padding: 12px;
    border-radius: 8px;
  }

  .monitoring-section__logo {
    max-height: 28px;
  }

  /* aml-section - 768px mobil */
  .aml-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .aml-section__inner {
    max-width: 100%;
    gap: 24px;
  }

  .aml-section__row {
    flex-direction: column;
    gap: 20px;
  }

  .aml-section__row--1 .aml-section__content {
    order: 1;
  }

  .aml-section__row--1 .aml-section__img-wrap {
    order: 2;
  }

  .aml-section__img-wrap {
    width: 100%;
    flex: none;
    border-radius: 8px;
  }

  .aml-section__content {
    width: 100%;
  }

  .aml-section__title {
    font-size: 24px;
    margin: 0 0 12px 0;
    line-height: 1.2;
  }

  .aml-section__intro {
    font-size: 14px;
    margin: 0 0 12px 0;
  }

  .aml-section__list li {
    font-size: 13px;
    padding-left: 16px;
    line-height: 1.5;
  }

  .aml-section__list li::before {
    width: 6px;
    height: 6px;
    min-width: 6px;
    min-height: 6px;
  }

  .aml-section__text {
    font-size: 14px;
    margin: 0 0 12px 0;
  }

  .aml-section__text:last-of-type {
    margin-bottom: 12px;
  }

  .aml-section__link {
    font-size: 14px;
  }

  /* news-section - 768px mobil */
  .news-section {
    padding: 0 16px;
    margin-top: 70px;
  }

  .news-section__inner {
    max-width: 100%;
  }

  .news-section__title {
    font-size: 24px;
    margin: 0 0 24px 0;
    line-height: 1.2;
  }

  .news-section__cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
  }

  .news-section__card {
    width: 100%;
    border-radius: 8px;
  }

  .news-section__card-body {
    padding: 16px;
  }

  .news-section__date {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .news-section__card-title {
    font-size: 16px;
    margin: 0 0 8px 0;
  }

  .news-section__card-desc {
    font-size: 13px;
    margin: 0 0 12px 0;
  }

  .news-section__card-link {
    font-size: 14px;
  }

  .news-section__btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
  }

  /* cta-section - 768px mobil */
  .cta-section {
    padding: 40px 16px;
    margin-top: 70px;
  }

  .cta-section__decor {
    width: 80px;
  }

  .cta-section__inner {
    max-width: 100%;
  }

  .cta-section__title {
    font-size: 24px;
    margin: 0 0 20px 0;
    line-height: 1.2;
  }

  .cta-section__btn {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 8px;
  }

  /* site-footer - 768px mobil */
  .site-footer {
    padding: 32px 16px 24px;
  }

  .site-footer__inner {
    max-width: 100%;
  }

  .site-footer__top {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 24px;
  }

  .site-footer__logo {
    display: block;
    flex-shrink: 0;
  }

  .site-footer__logo img {
    width: 100px;
  }

  .site-footer__columns {
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    order: 3;
    width: 100%;
  }

  .site-footer__col {
    flex: 1;
    min-width: 0;
  }

  .site-footer__col-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.5);
  }

  .site-footer__list {
    gap: 10px;
  }

  .site-footer__link {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
  }

  .site-footer__right {
    align-items: flex-end;
    gap: 12px;
    order: 2;
  }

  .site-footer__right-top {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .site-footer__btn {
    order: -1;
  }

  .site-footer__contacts {
    gap: 10px;
  }

  .site-footer__contact-item {
    font-size: 13px;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
  }

  .site-footer__contact-item--phone {
    font-size: 14px;
  }

  .site-footer__contact-icon-img {
    width: 16px;
    height: 16px;
  }

  .site-footer__lang {
    flex-direction: column;
    gap: 4px;
  }

  .site-footer__lang-link {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
  }

  .site-footer__lang-link--active {
    color: rgba(255, 255, 255, 0.5);
  }

  .site-footer__btn {
    padding: 10px 16px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
  }

  .site-footer__bottom {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .site-footer__copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
    text-align: center;
    order: 3;
  }

  .site-footer__legal {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.75);
    order: 1;
  }

  .site-footer__legal:last-of-type {
    order: 2;
  }

  /* popup form - 768px mobil */
  .popup-overlay {
    padding: 16px;
  }

  .popup {
    max-width: 100%;
    border-radius: 12px;
    padding: 24px 20px;
  }

  .popup__close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }

  .popup__title {
    font-size: 20px;
    margin: 0 0 8px 0;
    padding-right: 28px;
  }

  .popup__desc {
    font-size: 14px;
    margin: 0 0 20px 0;
  }

  .popup__form {
    gap: 14px;
  }

  .popup__input {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 16px;
  }

  .popup__checkbox-wrap {
    gap: 10px;
  }

  .popup__checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
  }

  .popup__checkbox-text {
    font-size: 12px;
  }

  .popup__submit {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 8px;
  }

  /* pagetrans.html - 768px mobil */
  .trans-page {
    padding: 0;
    background: transparent;
  }

  .trans-page__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    max-width: 100%;
  }

  .trans-page__left {
    max-width: 100%;
    background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
    padding: 40px 16px 24px 16px;
  }

  .trans-page__header {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .trans-page__title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .trans-page__desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .trans-page__features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }

  .trans-page__features li {
    font-size: 14px;
    gap: 8px;
  }

  .trans-page__check {
    width: 20px;
    height: 20px;
  }

  .trans-page__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .trans-page__btn {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    text-align: center;
  }

  .trans-page__note {
    font-size: 12px;
    margin-left: 0;
    text-align: center;
    display: block;
  }

  .trans-page__right {
    flex: 1 1 auto;
    width: 100%;
    padding: 0 16px;
  }

  .trans-page__form-panel {
    border-radius: 12px;
    padding: 20px 16px;
    background: rgba(157, 163, 175, 1);
    backdrop-filter: blur(10px);
  }

  .trans-page__form-title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .trans-page__form {
    gap: 14px;
  }

  .trans-page__form-row {
    flex-direction: row;
    gap: 12px;
  }

  .trans-page__label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .trans-page__input,
  .trans-page__textarea {
    padding: 12px 14px;
    font-size: 12px;
    border-radius: 8px;
    /* min-height: 76px; */
  }

  .trans-page__select-trigger {
    padding: 12px 40px 12px 14px;
    font-size: 12px;
    border-radius: 8px;
    color: rgba(50, 59, 76, 1);
  }

  .trans-page__select-arrow {
    right: 14px;
    font-size: 12px;
  }

  .trans-page__select-dropdown {
    border-radius: 8px;
  }

  .trans-page__select-dropdown li {
    padding: 10px 14px;
    font-size: 14px;
  }

  .trans-page__disclaimer,
  .trans-page__important {
    font-size: 11px;
    color: rgba(250, 252, 255, 1);
  }

  .trans-page__form-btns {
    flex-direction: row;
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-start;
  }

  .trans-page__submit {
    /* flex: 1; */
    padding: 14px 20px;
    font-size: 12px;
    border-radius: 8px;
  }

  .trans-page__tg-btn {
    /* flex: 1; */
    padding: 15px 16px;
    font-size: 12px;
    border-radius: 8px;
    text-align: center;
    background: transparent;
    width: fit-content;
    flex-shrink: 0;
  }

  .trans-page__important {
    margin-top: 12px;
  }

  .trans-intro {
    padding: 0 16px;
    margin-top: 48px;
  }

  .trans-intro__inner {
    max-width: 100%;
  }

  .trans-intro__title {
    font-size: 24px;
    margin: 0 0 8px;
  }

  .trans-intro__subtitle {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .trans-intro__cards {
    flex-direction: column;
    gap: 20px;
  }

  .trans-intro__card-content {
    padding: 20px 16px;
  }

  .trans-intro__card-title {
    font-size: 16px;
    margin: 0 0 16px;
    gap: 8px;
  }

  .trans-intro__badge {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
    font-size: 14px;
  }

  .trans-intro__list {
    gap: 12px;
  }

  .trans-intro__item-title {
    font-size: 14px;
  }

  .trans-intro__item-desc {
    font-size: 13px;
    padding-left: 36px;
  }

  .trans-intro__check {
    font-size: 12px;
  }

  .trans-steps {
    padding: 40px 16px 48px;
    margin-top: 48px;
  }

  .trans-steps__inner {
    max-width: 100%;
  }

  .trans-steps__title {
    font-size: 24px;
    margin: 0 0 8px;
  }

  .trans-steps__subtitle {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .trans-steps__cards {
    flex-direction: column;
    gap: 20px;
  }

  .trans-steps__card {
    padding: 24px 16px;
    gap: 12px;
  }

  .trans-steps__watermark {
    font-size: 96px;
    top: 0px;
  }

  .trans-steps__card-title {
    font-size: 16px;
  }

  .trans-steps__card-desc {
    font-size: 13px;
  }

  .trans-docs {
    padding: 0 16px;
    margin-top: 48px;
  }

  .trans-docs__inner {
    max-width: 100%;
    gap: 32px;
  }

  .trans-docs__block {
    flex-direction: column;
    gap: 20px;
  }

  .trans-docs__block--2 {
    flex-direction: column-reverse;
  }

  .trans-docs__text {
    padding: 0;
  }

  .trans-docs__text--documents {
    padding-right: 0;
  }

  .trans-docs__text--check {
    padding-left: 0;
  }

  .trans-docs__img-wrap {
    border-radius: 8px;
  }

  .trans-docs__card-title {
    font-size: 24px;
    margin: 0 0 12px;
  }

  .trans-docs__card-intro {
    font-size: 14px;
    margin: 0 0 12px;
  }

  .trans-docs__list {
    font-size: 14px;
    margin: 0 0 12px;
    padding-left: 20px;
  }

  .trans-docs__card-note {
    font-size: 13px;
  }

  .trans-docs__img {
    min-height: 200px;
  }

  .trans-docs__check-block {
    margin-bottom: 16px;
  }

  .trans-docs__check-block:last-of-type {
    margin-bottom: 20px;
  }

  .trans-docs__check-title {
    font-size: 14px;
  }

  .trans-docs__check-desc {
    font-size: 13px;
    margin: 0 0 0 28px;
  }

  .trans-docs__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .trans-docs__btn {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 8px;
  }

  .trans-docs__tg-link {
    font-size: 14px;
  }

  .trans-faq {
    padding: 40px 16px;
  }

  .trans-faq__inner {
    max-width: 100%;
  }

  .trans-faq__title {
    font-size: 24px;
    margin: 0 0 24px;
  }

  .trans-faq__content {
    flex-direction: column;
    gap: 24px;
  }

  .trans-faq__questions {
    gap: 12px;
  }

  .trans-faq__item {
    padding: 14px 20px;
    border-radius: 12px;
  }

  .trans-faq__question {
    padding: 0;
    gap: 12px;
  }

  .trans-faq__question-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    min-height: 36px;
  }

  .trans-faq__question-text {
    font-size: 14px;
  }

  .trans-faq__chevron {
    font-size: 12px;
  }

  .trans-faq__answer {
    padding: 0 0 12px 0;
  }

  .trans-faq__answer p {
    font-size: 13px;
  }

  .trans-faq__images {
    width: 100%;
    gap: 16px;
  }

  .trans-faq__img-wrap {
    border-radius: 8px;
  }

  /* exchange.html - 768px mobil (trans-page ile aynı) */
  .exchange-page {
    padding: 0;
    background: transparent;
  }

  .exchange-page__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    max-width: 100%;
  }

  .exchange-page__left {
    max-width: 100%;
    background: linear-gradient(0deg, #1E2530 0%, #323B4C 100%);
    padding: 40px 16px 24px 16px;
  }

  .exchange-page__header {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .exchange-page__title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .exchange-page__desc {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .exchange-page__features {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }

  .exchange-page__features li {
    font-size: 14px;
    gap: 8px;
  }

  .exchange-page__check {
    width: 20px;
    height: 20px;
  }

  .exchange-page__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .exchange-page__btn {
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 8px;
    text-align: center;
  }

  .exchange-page__note {
    font-size: 12px;
    margin-left: 0;
    text-align: center;
    display: block;
  }

  .exchange-page__right {
    flex: 1 1 auto;
    width: 100%;
    padding: 0 16px;
  }

  .exchange-page__calc-panel {
    border-radius: 12px;
    padding: 20px 16px;
    background: rgba(157, 163, 175, 1);
    backdrop-filter: blur(10px);
  }

  .exchange-page__calc-title {
    font-size: 18px;
    margin: 0 0 16px;
  }

  .exchange-page__tabs {
    margin-bottom: 14px;
    border-radius: 8px;
    padding: 4px;
  }

  .exchange-page__tab {
    padding: 10px 12px;
    font-size: 12px;
    border-radius: 6px;
  }

  .exchange-page__form {
    gap: 14px;
  }

  .exchange-page__form-row {
    flex-direction: row;
    gap: 12px;
  }

  .exchange-page__field {
    min-width: 0;
  }

  .exchange-page__label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .exchange-page__input {
    padding: 12px 14px;
    font-size: 12px;
    border-radius: 8px;
  }

  .exchange-page__select-trigger {
    padding: 12px 40px 12px 14px;
    font-size: 12px;
    border-radius: 8px;
    color: rgba(50, 59, 76, 1);
  }

  .exchange-page__select-arrow {
    right: 14px;
    font-size: 12px;
  }

  .exchange-page__disclaimer,
  .exchange-page__footer-note {
    font-size: 11px;
    color: rgba(250, 252, 255, 1);
  }

  .exchange-page__form-btns {
    gap: 12px;
    margin-top: 16px;
    justify-content: flex-start;
  }

  .exchange-page__submit {
    padding: 14px 20px;
    font-size: 12px;
    border-radius: 8px;
  }

  .exchange-page__tg-btn {
    padding: 15px 16px;
    font-size: 12px;
    border-radius: 8px;
    text-align: center;
    background: transparent;
    width: fit-content;
    flex-shrink: 0;
  }

  .exchange-currencies {
    padding: 0 16px;
    margin-top: 48px;
  }

  .exchange-currencies__inner {
    max-width: 100%;
  }

  .exchange-currencies__title {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .exchange-currencies__grid {
    flex-direction: column;
    gap: 24px;
  }

  .exchange-currencies__card {
    padding: 20px 16px;
  }

  .exchange-currencies__card-title {
    font-size: 16px;
  }

  .exchange-currencies__card-desc {
    font-size: 14px;
  }

  .exchange-currencies__item-header strong {
    font-size: 14px;
  }

  .exchange-currencies__item p {
    font-size: 13px;
  }

  .exchange-currencies__card-note {
    font-size: 12px;
  }

  .exchange-currencies__img img {
    max-height: none;
  }

  .exchange-example {
    padding: 0 16px;
    margin-top: 48px;
  }

  .exchange-example__inner {
    max-width: 100%;
  }

  .exchange-example__title {
    font-size: 24px;
    margin: 0 0 12px;
  }

  .exchange-example__desc {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .exchange-example__table {
    font-size: 12px;
    display: block;
    overflow-x: auto;
  }

  .exchange-example__table th,
  .exchange-example__table td {
    padding: 10px 12px;
    font-size: 12px;
    white-space: nowrap;
  }

  .exchange-compliance {
    padding: 0 16px;
    margin-top: 48px;
    margin-bottom: 48px;
  }

  .exchange-compliance__inner {
    max-width: 100%;
  }

  .exchange-compliance__title {
    font-size: 24px;
    margin: 0 0 24px;
  }

  .exchange-compliance__block {
    flex-direction: column;
    gap: 20px;
  }

  .exchange-compliance__block--2 {
    margin-top: 32px;
    flex-direction: column-reverse;
  }

  .exchange-compliance__subtitle {
    font-size: 18px;
  }

  .exchange-compliance__intro {
    font-size: 14px;
  }

  .exchange-compliance__point-header strong {
    font-size: 14px;
  }

  .exchange-compliance__point-desc {
    font-size: 13px;
  }

  .exchange-compliance__link {
    font-size: 14px;
  }

  .exchange-compliance__img {
    min-height: 200px;
  }

  .exchange-compliance__actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .exchange-compliance__btn {
    padding: 14px 20px;
    font-size: 15px;
    border-radius: 8px;
  }

  .exchange-compliance__tg-link {
    font-size: 14px;
  }

  .exchange-compliance__currencies {
    font-size: 13px;
  }

  /* about.html - 768px mobil */
  .about-hero {
    min-height: auto;
    padding: 40px 16px 48px;
  }

  .about-hero__inner {
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero__left {
    max-width: 100%;
  }

  .about-hero__title {
    font-size: 24px;
    margin: 0 0 16px;
  }

  .about-hero__desc {
    font-size: 14px;
    width: 100%;
    margin: 0 0 20px;
  }

  .about-hero__features {
    margin: 0 0 20px;
  }

  .about-hero__features li {
    margin-bottom: 10px;
  }

  .about-hero__feature-item {
    font-size: 14px;
    gap: 10px;
  }

  .about-hero__check {
    width: 20px;
    height: 20px;
  }

  .about-hero__support {
    font-size: 14px;
    margin: 0 0 20px;
  }

  .about-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about-hero__btn {
    padding: 12px 16px;
    font-size: 14px;
  }

  .about-hero__note {
    font-size: 12px;
    margin-left: 0;
  }

  .about-hero__right {
    position: absolute;
    top: 0;
    right: -41%;
    width: auto;
    margin-top: 0;
    z-index: -1;
  }

  .about-hero__coins {
    max-width: 360px;
    max-height: none;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .about-stats {
    padding: 0 16px;
    margin-top: 48px;
  }

  .about-stats__inner {
    max-width: 100%;
  }

  .about-stats__row {
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    justify-content: center;
  }

  .about-stats__card {
    flex: 1 1 calc(50% - 8px);
    min-width: 120px;
  }

  .about-stats__icon {
    width: 28px;
    height: 28px;
  }

  .about-stats__text {
    font-size: 12px;
  }

  .about-stats__note {
    max-width: 100%;
    padding: 16px 20px;
    gap: 12px;
  }

  .about-stats__note-text {
    font-size: 13px;
  }

  .about-honest {
    padding: 48px 16px 56px;
  }

  .about-honest__inner {
    max-width: 100%;
  }

  .about-honest__title {
    font-size: 24px;
    margin: 0 0 32px;
  }

  .about-honest__block {
    flex-direction: column;
    gap: 20px;
  }

  .about-honest__block--2 {
    margin-top: 40px;
    flex-direction: column;
  }

  .about-honest__subtitle {
    font-size: 18px;
  }

  .about-honest__intro {
    font-size: 14px;
  }

  .about-honest__point-header strong {
    font-size: 14px;
  }

  .about-honest__point-desc {
    font-size: 13px;
    margin-left: 0;
  }

  .about-honest__block--2 .about-honest__text {
    order: -1;
    width: 100%;
  }

  .about-honest__img-wrap {
    width: 100%;
  }

  .about-honest__img {
    width: 100%;
    min-height: 220px;
    object-fit: cover;
  }

  .about-trust {
    padding: 0 16px;
    margin-top: 56px;
  }

  .about-trust__inner {
    max-width: 100%;
  }

  .about-trust__title {
    font-size: 24px;
  }

  .about-trust__subtitle {
    font-size: 14px;
    margin: 0 0 24px;
  }

  .about-trust__grid {
    flex-direction: column;
    gap: 20px;
  }

  .about-trust__card {
    flex: 1 1 auto;
    width: 100%;
  }

  .about-trust__card-title {
    font-size: 16px;
  }

  .about-trust__list li {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .about-trust__card-img-wrap {
    height: 110px;
  }

  .about-offices-section {
    padding: 0 16px;
    margin-top: 56px;
    margin-bottom: 50px;
  }

  .about-offices-section__inner {
    max-width: 100%;
  }

  .about-offices-section__title {
    font-size: 24px;
  }

  .about-offices-section__grid {
    flex-direction: column;
    gap: 20px;
  }

  .about-offices-section__subtitle {
    font-size: 16px;
  }

  .about-offices-section__desc {
    font-size: 14px;
  }

  .about-offices-section__list-title {
    font-size: 14px;
  }

  .about-offices-section__list li {
    font-size: 13px;
  }

  .about-offices-section__btn,
  .about-offices-section__link {
    font-size: 14px;
    border-radius: 10px;
  }

  .about-offices-section__left,
  .about-offices-section__right {
    padding: 16px 12px;
    border-radius: 10px;
  }

  .about-offices-section__map-title {
    font-size: 16px;
  }

  .about-offices-section__map-hint {
    font-size: 12px;
  }

  .about-offices-section__map-wrap {
    aspect-ratio: 4/3;
  }

  .about-offices-section__info {
    gap: 10px;
    margin-bottom: 12px;
  }

  .about-offices-section__check {
    font-size: 14px;
    margin-top: 2px;
  }

  .about-offices-section__info strong {
    font-size: 14px;
  }

  .about-offices-section__list-wrap {
    padding: 12px;
    margin-bottom: 12px;
  }

  .about-offices-section__list-scroll {
    height: 120px;
  }

  .about-offices-section__list-arrow {
    font-size: 12px;
  }

  .about-offices-section__actions {
    /* flex-direction: column; */
    align-items: center;
    gap: 12px;
  }

  .about-steps-section {
    padding: 40px 16px 48px;
    margin-top: 56px;
  }

  .about-steps-section .about-steps-section__inner {
    max-width: 100%;
  }

  .about-steps-section .about-steps-section__title {
    font-size: 24px;
  }

  .about-steps-section .about-steps-section__list {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .about-steps-section .about-steps-section__item {
    padding: 24px 16px 20px;
  }

  .about-steps-section__num-bg {
    font-size: 48px;
  }

  .about-steps-section .about-steps-section__heading {
    font-size: 16px;
  }

  .about-steps-section .about-steps-section__text {
    font-size: 14px;
    width: 100%;
  }

  .about-events-section {
    padding: 0 16px;
    margin-top: 56px;
  }

  .about-events-section__inner {
    max-width: 100%;
  }

  .about-events-section__title {
    font-size: 24px;
  }

  .about-events-section__cards {
    flex-direction: column;
    gap: 20px;
  }

  .about-events-section__card {
    min-width: 0;
    max-width: 100%;
  }

  .about-events-section__card-img-wrap {
    height: 180px;
  }

  .about-events-section__card-title {
    font-size: 14px;
    padding: 14px;
  }

  .about-multivalute-section {
    padding: 0 16px;
    margin-top: 56px;
  }

  .about-multivalute-section__inner {
    max-width: 100%;
  }

  .about-multivalute-section__title {
    font-size: 24px;
  }

  .about-multivalute-section__block {
    flex-direction: column;
    gap: 20px;
  }

  .about-multivalute-section__subtitle {
    font-size: 16px;
  }

  .about-multivalute-section__desc {
    font-size: 14px;
  }

  .about-multivalute-section__feature span {
    font-size: 14px;
  }

  .about-multivalute-section__img-wrap {
    width: 100%;
    height: 220px;
  }

  .about-multivalute-section__intro {
    font-size: 16px;
  }

  .about-multivalute-section__note {
    font-size: 12px;
    padding: 12px 16px;
    max-width: 100%;
  }

  .about-multivalute-section__carousel .about-multivalute-section__item {
    min-height: 56px;
  }

  .about-multivalute-section__logo {
    max-height: 40px;
  }

  .about-guarantee-section {
    padding: 0 16px;
    margin-top: 56px;
  }

  .about-guarantee-section__inner {
    max-width: 100%;
  }

  .about-guarantee-section__title {
    font-size: 24px;
  }

  .about-guarantee-section__top {
    flex-direction: column;
    gap: 20px;
  }

  .about-guarantee-section__img-wrap {
    max-width: 100%;
  }

  .about-guarantee-section__subtitle {
    font-size: 16px;
  }

  .about-guarantee-section__point-header strong {
    font-size: 14px;
  }

  .about-guarantee-section__point-desc {
    font-size: 13px;
    margin-left: 0;
  }

  .about-guarantee-section__point-header {
    margin-bottom: 4px;
  }

  .about-guarantee-section__actions {
    /* flex-direction: column; */
    gap: 20px;
    margin-top: 20px;
  }

  .about-guarantee-section__btn {
    font-size: 14px;
  }

  .about-guarantee-section__bottom {
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
  }

  .about-guarantee-section__programs {
    width: 100%;
  }

  .about-guarantee-section__programs-title {
    font-size: 16px;
  }

  .about-guarantee-section__img-wrap--diagram {
    max-width: 100%;
  }

  .about-guarantee-section__point {
    margin-bottom: 16px;
  }

  .about-guarantee-section__control {
    width: 100%;
  }

  .about-stats__note-icon {
    width: 24px;
    height: 24px;
  }

  .about-honest__check {
    font-size: 12px;
  }

  .about-trust__num {
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .about-trust__check {
    font-size: 12px;
  }

  .about-multivalute-section__hint {
    font-size: 12px;
  }

  .about-multivalute-section__carousel-wrap {
    gap: 8px;
    margin-bottom: 20px;
  }

  .about-multivalute-section__arrow {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
  }

  /* blog.html - 768px mobil */
  .blog-hero {
    padding: 40px 16px 48px;
  }

  .blog-hero__inner {
    max-width: 100%;
  }

  .blog-hero__title {
    font-size: 24px;
    margin: 0 0 12px;
  }

  .blog-hero__desc {
    font-size: 14px;
  }

  .blog-articles-section {
    padding: 48px 16px 56px;
  }

  .blog-articles-section__inner {
    max-width: 100%;
  }

  .blog-articles-section__title {
    font-size: 24px;
    margin: 0 0 24px;
  }

  .blog-articles-section__cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
  }

  .blog-articles-section__card {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .blog-articles-section__img-wrap {
    aspect-ratio: 16/6;
  }

  .blog-articles-section__body {
    padding: 16px;
  }

  .blog-articles-section__date {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .blog-articles-section__card-title {
    font-size: 16px;
    margin: 0 0 10px;
  }

  .blog-articles-section__desc {
    font-size: 14px;
    margin: 0 0 12px;
  }

  .blog-articles-section__link {
    font-size: 14px;
  }

  .blog-articles-section__btn {
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
  }

  .blog-detail {
    padding: 25px 16px;
  }

  .blog-detail__inner {
    max-width: 100%;
  }

  .blog-detail__breadcrumb {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .blog-detail__title {
    font-size: 24px;
    margin: 0 0 16px;
  }

  .blog-detail__meta {
    margin-bottom: 20px;
  }

  .blog-detail__meta-item {
    font-size: 12px;
  }

  .blog-detail__content {
    font-size: 14px;
  }

  .blog-detail__content p {
    margin: 0 0 16px;
  }

  .blog-detail__subtitle {
    font-size: 18px;
    margin: 0 0 12px;
  }

  .blog-detail__figure {
    width: 100%;
    margin: 24px 0;
  }

  .blog-detail-related {
    padding: 48px 16px 56px;
  }

  .blog-detail-related__inner {
    max-width: 100%;
  }

  .blog-detail-related__title {
    font-size: 24px;
    margin: 0 0 24px;
  }

  .blog-detail-related__cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .blog-detail-related__card {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }

  .blog-detail-related__card-img-wrap {
    aspect-ratio: 16/10;
  }

  .blog-detail-related__card-body {
    padding: 16px;
  }

  .blog-detail-related__date {
    font-size: 12px;
  }

  .blog-detail-related__card-title {
    font-size: 16px;
  }

  .blog-detail-related__card-desc {
    font-size: 14px;
  }

  .blog-detail-related__card-link {
    font-size: 14px;
  }

  .blog-detail-related__btn {
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 8px;
  }

  /* contact.html (contack.html) - 768px mobil */
  .contact-hero {
    padding: 40px 16px 48px;
  }

  .contact-hero__inner {
    max-width: 100%;
  }

  .contact-hero__decor {
    width: 80%;
  }

  .contact-hero__title {
    font-size: 24px;
    margin: 0 0 20px;
  }

  .contact-hero__phone-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }

  .contact-hero__phone {
    font-size: 18px;
  }

  .contact-hero__icons {
    gap: 12px;
  }

  .contact-hero__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    min-height: 28px;
  }

  .contact-hero__email {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .contact-hero__actions {
    /* flex-direction: column; */
    align-items: flex-start;
    gap: 12px;
  }

  .contact-hero__btn {
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 8px;
  }

  /* thank.html - 768px mobil */
  .thank-you {
    min-height: 50vh;
    padding: 48px 16px 56px;
  }

  .thank-you__container,
  .thank-you__inner {
    max-width: 100%;
  }

  .thank-you__title {
    font-size: 24px;
    margin: 0 0 20px;
  }

  .thank-you__desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .thank-you__desc br {
    display: block;
  }

  .thank-you__link {
    font-size: 14px;
  }

  .thank-you__decor--top {
    width: 50%;
    top: -20%;
  }

  .thank-you__decor--bottom {
    width: 60%;
  }
}

@media (max-width: 500px) {
  .blog-articles-section__card {
    flex: 1 1 100%;
  }

  .blog-detail-related__card {
    flex: 1 1 100%;
    min-width: 0;
  }
}

@media (min-width: 901px) {
  .site-header__menu-btn {
    display: none;
  }

  .site-header__nav-close {
    display: none;
  }
}

@media (min-width: 550px) {

  .site-header__lang {
    gap: 2px;
    padding-left: 5px;
}
.site-header__right {
  gap: 10px;
}
.site-header__right {
  gap: 10px;
}


}

