*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: var(--color-green-btn);
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

:root {
  --text-primary: #ffffff;
  --text-link: #ffffff;
  --font-montserrat: 'Cairo', sans-serif;
  --text-link-after: #7eac2f;
  --bg-primary: #205583;
  --bg-secondary: #1d4268;
  --header-bg: #1d4268;
  --color-blue-btn: #276aa5;
  --color-blue-btn-hover: #3679b4;
  --color-red-btn: #f23e71;
  --color-red-btn-hover: #ef2019;
  --color-green-btn: #7eac2f;
  --color-green-btn-hover: #8dc03e;
  --color-white: #fff;
  --color-blue: #276aa5;
  --main-accent-bg-color: #7eac2f;
  --header-offset: 68px;
}

html,
body {
  height: 100%;
  line-height: 1;
  font-size: 16px;
  color: #1a2f45;
  font-weight: 400;
  font-family: var(--font-montserrat), sans-serif;
  font-feature-settings: "pnum" on, "lnum" on;
  background: #ffffff;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
  background: #ffffff;
  color: #1a2f45;
}

._container {
  max-width: 1410px;
  padding: 0px 15px;
  margin: 0 auto;
  box-sizing: content-box;
}

/* Header */
.header {
  background: var(--header-bg);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

body {
  padding-top: var(--header-offset);
}

html {
  scroll-padding-top: calc(var(--header-offset) + 12px);
}

.header__container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.header__body {
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
}

.header__logo-img {
  max-height: 35px;
  height: auto;
  width: auto;
  object-fit: contain;
}

.header__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header__app,
.header__login,
.header__sign {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 8px;
  background: var(--color-green-btn);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease;
}

.header__app:hover,
.header__login:hover,
.header__sign:hover {
  background: var(--color-green-btn-hover);
  color: #ffffff;
}

.header__sign {
  font-weight: 800;
}

.header__burger {
  display: none;
  flex-direction: column;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.header__burger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(126, 172, 47, 0.25);
}

.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2px;
  margin: 3px 0;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  min-width: 0;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 16px;
  padding: 8px 6px;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--color-green-btn);
  text-decoration: none;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 0.5rem 0;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header + .breadcrumbs {
  margin-top: calc(-1 * var(--header-offset));
  padding-top: calc(var(--header-offset) + 0.5rem);
}

.breadcrumbs__list {
  list-style: none;
  margin: 0;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__current,
.breadcrumbs__link {
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.breadcrumbs__link:hover {
  color: var(--color-green-btn);
}

.breadcrumbs__separator {
  color: rgba(255, 255, 255, 0.45);
  user-select: none;
}

.breadcrumbs__current {
  color: var(--color-green-btn);
  font-weight: 600;
}

/* Download button */
.columns__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: 1.05rem;
  padding: 14px 32px;
  font-weight: 700;
  background-color: var(--color-green-btn);
  color: #ffffff;
  transition: background 0.15s ease, transform 0.15s ease;
}

.columns__download:hover {
  background-color: var(--color-green-btn-hover);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Intro */
.intro {
  position: relative;
  overflow: visible;
  padding: 72px 0 56px;
  color: #ffffff;
  background:
    radial-gradient(80% 110% at 90% -8%, rgba(126, 172, 47, 0.22) 0%, transparent 58%),
    radial-gradient(70% 90% at 0% 110%, rgba(39, 106, 165, 0.55) 0%, transparent 62%),
    linear-gradient(195deg, #1a446c 0%, #15385a 48%, #102c48 100%);
  border-bottom: 3px solid var(--color-green-btn);
}

.intro__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 56px;
  align-items: center;
}

.intro__kicker {
  display: inline-block;
  width: fit-content;
  margin: 0 0 14px !important;
  padding: 0 0 8px;
  color: #b6e06a;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border-bottom: 2px solid rgba(126, 172, 47, 0.7);
}

.intro h1 {
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 4.1vw, 2.85rem);
  line-height: 1.28;
  font-weight: 800;
  color: #ffffff;
}

.intro p {
  margin: 0 0 14px;
  max-width: 62ch;
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
}

.intro p:last-of-type {
  margin-bottom: 0;
  max-width: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 22px;
}

.intro .bonus-card p:last-of-type {
  display: block;
  flex-wrap: unset;
  align-items: unset;
  gap: unset;
}

.intro .columns__download {
  padding: 16px 42px;
  font-size: 1.14rem;
  min-width: 240px;
  box-shadow: 0 10px 24px rgba(126, 172, 47, 0.28);
}

.intro__more {
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.intro__more:hover {
  color: var(--color-green-btn);
}

.intro__media {
  margin: 0;
  text-align: center;
}

.bonus-card {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 460px;
  margin-inline: auto;
  padding: 58px 32px 30px;
  color: #17324d;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  border: none;
  border-radius: 26px;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 0 8px rgba(126, 172, 47, 0.08);
}

.bonus-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(90% 42% at 50% 0%, rgba(126, 172, 47, 0.16), transparent 58%);
}

.bonus-card > * {
  position: relative;
  z-index: 1;
}

.bonus-card__gift {
  position: absolute;
  z-index: 2;
  top: -44px;
  left: 50%;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  transform: translateX(-50%);
  border: 5px solid #14324f;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #c4ea6e 0%, #8dc03e 46%, #6a9624 100%);
  box-shadow:
    0 16px 28px rgba(0, 0, 0, 0.28),
    0 0 0 6px #ffffff,
    0 0 24px rgba(126, 172, 47, 0.45),
    inset 0 3px 0 rgba(255, 255, 255, 0.35);
}

.bonus-card__gift-icon {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.22));
}

.bonus-card__eyebrow {
  display: inline-flex;
  padding: 7px 16px;
  border-radius: 999px;
  color: #4d7314;
  background: rgba(126, 172, 47, 0.16);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.intro .bonus-card__lead,
.bonus-card__lead {
  display: block;
  max-width: none;
  margin: 16px 0 10px;
  color: #1a3d5c;
  font-size: 1.18rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
}

.bonus-card__amount {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2px 0 24px;
  color: #276aa5;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.bonus-card__amount span:first-child {
  margin-bottom: 6px;
  color: #7a8b9a;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.bonus-card__value {
  font-size: clamp(3.4rem, 6.4vw, 4.75rem);
  letter-spacing: -0.045em;
  line-height: 0.92;
  color: #276aa5;
  text-shadow: 0 8px 18px rgba(39, 106, 165, 0.18);
}

.bonus-card__value--version {
  font-size: clamp(2.1rem, 4.8vw, 3.1rem);
  letter-spacing: -0.02em;
  direction: ltr;
  unicode-bidi: isolate;
}

.bonus-card__amount span:last-child {
  margin-top: 8px;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  direction: ltr;
  unicode-bidi: isolate;
}

.bonus-card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bonus-card__actions a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.bonus-card__actions a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.bonus-card__download {
  background: linear-gradient(180deg, #8dc03e, #7eac2f);
  box-shadow: 0 10px 18px rgba(126, 172, 47, 0.38);
}

.bonus-card__download:hover {
  background: var(--color-green-btn-hover);
}

.bonus-card__register {
  background: linear-gradient(180deg, #3679b4, #276aa5);
  box-shadow: 0 10px 18px rgba(39, 106, 165, 0.32);
}

.bonus-card__register:hover {
  background: var(--color-blue-btn-hover);
}

/* Article */
.doc {
  padding: 12px 0 56px;
}

.doc__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.doc h1 {
  margin: 1.25rem 0 0.55rem;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.3;
  font-weight: 800;
  color: #14324f;
}

.doc .page-date {
  margin: 0 0 1.5rem;
  color: rgba(26, 47, 69, 0.55);
  font-size: 0.95rem;
  line-height: 1.6;
}

.doc h2 {
  margin: 2.4rem 0 0.9rem;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  line-height: 1.4;
  font-weight: 800;
  color: #14324f;
}

.doc h3 {
  margin: 1.7rem 0 0.7rem;
  font-size: 1.18rem;
  line-height: 1.45;
  font-weight: 700;
  color: #1a3d5c;
}

.doc p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.88;
  color: rgba(26, 47, 69, 0.92);
}

.doc ul,
.doc ol {
  margin: 0 0 1.15rem;
  padding-right: 1.35rem;
  color: rgba(26, 47, 69, 0.92);
}

.doc li {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.doc li:last-child {
  margin-bottom: 0;
}

.doc code {
  font-family: ui-monospace, Consolas, monospace;
  font-size: 0.92em;
  direction: ltr;
  unicode-bidi: isolate;
}

.doc figure {
  margin: 1.5rem 0 1.7rem;
}

.doc figure img {
  display: block;
  width: 100%;
  max-width: 480px;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
}

.doc figure.figure--full img {
  max-width: 100%;
  margin: 0;
}

.doc figcaption {
  margin-top: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(26, 47, 69, 0.55);
  text-align: center;
}

.doc figure.figure--full figcaption {
  text-align: start;
}

.doc .table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 0.85rem 0 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(126, 172, 47, 0.35);
  background: #f7fafc;
  -webkit-overflow-scrolling: touch;
}

.doc table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
  line-height: 1.55;
  color: #1a2f45;
}

.doc th,
.doc td {
  padding: 0.9rem 1.05rem;
  text-align: right;
  vertical-align: top;
  border-bottom: 1px solid rgba(26, 47, 69, 0.08);
}

.doc thead th {
  font-weight: 800;
  color: #14324f;
  background: rgba(126, 172, 47, 0.14);
  border-bottom: 1px solid rgba(126, 172, 47, 0.28);
}

.doc tbody tr:nth-child(even) {
  background: rgba(32, 85, 131, 0.04);
}

.doc tbody tr:hover {
  background: rgba(126, 172, 47, 0.1);
}

.doc tbody tr:last-child td {
  border-bottom: none;
}

.doc tbody td:first-child {
  font-weight: 700;
  color: #5f8f1f;
  white-space: nowrap;
  width: 28%;
}

.doc .fineprint {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26, 47, 69, 0.12);
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(26, 47, 69, 0.62);
}

.doc .fineprint strong {
  color: #c2185b;
}

/* Footer */
.footer {
  background: var(--header-bg);
  padding: 2.4rem 0 2rem;
  color: #ffffff;
}

.footer__body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 1.6rem 2rem;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__copy {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}

.footer__meta {
  margin: 0.15rem 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.68);
  direction: ltr;
  unicode-bidi: isolate;
  text-align: right;
}

.footer__notice {
  margin: 0.85rem 0 0;
  font-size: 0.84rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  max-width: 48ch;
}

.footer__copyright {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer__heading {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.footer__list {
  margin-top: 0.55rem;
  list-style: none;
}

.footer__item + .footer__item {
  margin-top: 0.35rem;
}

.footer__link {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65rem;
}

.footer__link:hover {
  color: var(--color-green-btn);
}

/* Scroll top */
.scroll-top {
  position: fixed;
  bottom: 70px;
  right: 15px;
  z-index: 99;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.scroll-top.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.scroll-top.is-hidden .scroll-top__button {
  display: none;
}

.scroll-top__button {
  -webkit-appearance: none;
  appearance: none;
  border: none;
  outline: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  background-color: var(--main-accent-bg-color);
  color: var(--color-white);
  font-size: 20px;
}

/* Mobile download bar */
.mobile-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 8px;
  right: 8px;
  text-align: center;
  padding: 12px;
  border-radius: 12px 12px 0 0;
  width: auto;
  background: #f4f6f8;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: none;
  align-items: center;
  gap: 10px;
  z-index: 100;
  overflow: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.mobile-button.is-hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

.mobile-button a:not(.mobile-button__link) {
  font-weight: 400;
  font-size: 1.2rem;
}

.mobile-button.v1 .get-image {
  width: 80px;
  height: 40px;
}

.mobile-button.v1 img {
  max-width: 65px;
  max-height: 14px;
}

.mobile-button > .get-image {
  border-radius: 8px;
  background: #152536;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 42px;
}

.mobile-button img {
  max-width: 50px;
  max-height: 12px;
  width: 100%;
  object-fit: contain;
}

.mobile-button__title {
  margin: 0 0 4px;
  color: #13223a;
  font-size: 15px;
  font-weight: 800;
  line-height: 16px;
  text-align: right;
}

.mobile-button__subtitle {
  margin: 0;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 700;
  color: rgba(19, 34, 58, 0.62);
}

.mobile-button__info {
  flex: 1 1 auto;
  min-width: 0;
}

.mobile-button__link {
  margin: 0;
  border: none;
  display: inline-flex;
  padding: 12px 18px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  min-width: 112px;
  background: var(--color-green-btn);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.mobile-button a.mobile-button__link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.mobile-button__link:hover {
  background: var(--color-green-btn-hover);
  color: #ffffff;
}

/* Legal / privacy pages */
.privacy__title {
  margin-top: 2rem;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  color: #ffffff;
}

.privacy__text {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.privacy__list {
  padding-right: 19px;
  margin-top: 1rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}

.privacy-content {
  padding-top: 1rem;
  padding-bottom: 3rem;
}

.privacy__container {
  width: 100%;
}

.header--legal .header__body {
  justify-content: space-between;
}

.privacy-hero__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  line-height: 1.3;
  font-weight: 800;
  color: #ffffff;
}

.privacy-hero__text {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.8;
}

.privacy-hero__text b {
  color: var(--color-green-btn);
  font-weight: 700;
}

.privacy__link {
  color: var(--color-blue);
  text-decoration: underline;
}

.callout {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px 0;
  margin-top: 12px;
  margin-bottom: 8px;
}

.callout strong {
  color: var(--color-green-btn);
}

.callout__title {
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.age-box strong {
  color: #ff6aa0;
}

/* RTL */
html[dir="rtl"],
html[dir="rtl"] body {
  font-family: 'Cairo', sans-serif;
  text-align: right;
}

html[dir="rtl"] .mobile-button__title {
  text-align: right;
}

/* Responsive */
@media (max-width: 1024px) {
  .intro {
    padding: 64px 0 40px;
  }

  .intro__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .intro p {
    max-width: none;
  }

  .intro__media {
    order: 2;
  }

  .bonus-card {
    max-width: 480px;
    margin-top: 34px;
  }
}

@media (max-width: 900px) {
  .footer__body {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.25rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header__container {
    padding: 0 12px;
  }

  .header__body {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 7px 0;
  }

  .header__logo {
    flex: 0 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .header__logo-img {
    max-height: 32px;
    max-width: 125px;
    width: auto;
  }

  .header__actions {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 7px;
    justify-content: flex-end;
  }

  .header__login,
  .header__app,
  .header__sign {
    display: inline-flex;
    flex: 0 1 auto;
    min-width: 0;
    max-width: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
  }

  .header__login {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
  }

  .header__burger {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    margin: 0 12px;
    padding: 12px;
    background: #1d4268;
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    z-index: 1001;
  }

  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    font-size: 15px;
    padding: 12px;
    background: rgba(0, 0, 0, 0.12);
  }

  :root {
    --header-offset: 54px;
  }

  .intro {
    padding: 28px 0 32px;
  }

  .intro__inner,
  .doc__inner {
    padding: 0 16px;
  }

  .intro p:last-of-type {
    flex-direction: column;
    align-items: stretch;
  }

  .intro .columns__download,
  .columns__download {
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .intro__more {
    text-align: center;
  }

  .bonus-card {
    max-width: 420px;
    padding: 54px 20px 26px;
    border-radius: 22px;
  }

  .bonus-card__gift {
    width: 78px;
    height: 78px;
  }

  .bonus-card__gift-icon {
    width: 50px;
    height: 50px;
  }

  .bonus-card__actions {
    grid-template-columns: 1fr;
  }

  .bonus-card__amount .bonus-card__value,
  .bonus-card__value {
    font-size: 3.4rem;
  }

  .doc th,
  .doc td {
    padding: 0.75rem 0.8rem;
  }

  .doc tbody td:first-child {
    white-space: normal;
    width: 38%;
  }

  .scroll-top__button {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .footer {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 700px) {
  .scroll-top {
    bottom: 82px;
    left: 12px;
    right: auto;
  }

  .mobile-button {
    display: flex;
    left: 10px;
    right: 10px;
    padding: 10px;
  }

  .footer {
    padding: 3rem 0 5.5rem;
  }

  body {
    padding-bottom: 8px;
  }
}

@media (max-width: 380px) {
  .header__logo-img {
    max-width: 100px;
    max-height: 28px;
  }

  .header__login,
  .header__app,
  .header__sign {
    padding: 7px;
    font-size: 10.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
