body {
            font-family: 'Manrope', sans-serif;
            background-color: #091421;
            color: #d8e3f6;
            overflow-x: hidden;
        }

    .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 11000;
  width: 100%;
  height: 100dvh;
  background: #091421;
  color: #d8e3f6;

  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  pointer-events: none;

  transform: translateX(100%);
  transition:
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(162, 201, 255, 0.18);
  filter: blur(70px);
  pointer-events: none;
}

.mobile-menu::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: -140px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: rgba(68, 216, 241, 0.14);
  filter: blur(80px);
  pointer-events: none;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__container {
  position: relative;
  z-index: 2;
  height: 100dvh;
  max-height: 100dvh;
  
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 28px;
}

.mobile-menu__logo {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #d8e3f6;
  text-decoration: none;
}

.mobile-menu__close {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #16202e;
  color: #a2c9ff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(162, 201, 255, 0.12);
}

.mobile-menu__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mobile-menu__intro {
  margin-bottom: 36px;
}

.mobile-menu__label {
  margin-bottom: 12px;
  color: #44d8f1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mobile-menu__title {
  max-width: 320px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(34px, 9vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.mobile-menu__text {
  max-width: 320px;
  margin-top: 16px;
  color: #c0c7d4;
  font-size: 16px;
  line-height: 1.55;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  color: #d8e3f6;
  text-decoration: none;
  font-size: clamp(26px, 7vw, 36px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.mobile-menu__link span:last-child {
  color: #44d8f1;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mobile-menu__bottom {
  padding-top: 32px;
}

.mobile-menu__phone {
  display: block;
  margin-bottom: 16px;
  color: #a2c9ff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mobile-menu__primary-btn,
.mobile-menu__secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.mobile-menu__primary-btn {
  color: #001c38;
  background: linear-gradient(135deg, #a2c9ff 0%, #44d8f1 100%);
  box-shadow: 0 18px 50px rgba(68, 216, 241, 0.18);
}

.mobile-menu__secondary-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.25s ease;
}

.mobile-menu__secondary-btn--telegram {
  background: #229ED9;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(34, 158, 217, 0.22);
}

.mobile-menu__secondary-btn--telegram:hover {
  background: #1d8fc6;
  box-shadow: 0 18px 50px rgba(34, 158, 217, 0.32);
}

.mobile-menu__secondary-btn--viber {
  background: #7360F2;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(115, 96, 242, 0.24);
}

.mobile-menu__secondary-btn--viber:hover {
  background: #6652e8;
  box-shadow: 0 18px 50px rgba(115, 96, 242, 0.34);
}

.mobile-menu__btn-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.mobile-menu__btn-icon--viber {
  width: 23px;
  height: 23px;
}

.mobile-menu__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}


.payment-contact-btn__icon {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.payment-contact-btn__icon--viber {
    width: 23px;
    height: 23px;
}

body.menu-open {
  overflow: hidden;
}

/* Burger animation */
#burgerBtn.is-open .burger-line:nth-child(1) {
  transform: rotate(45deg);
}

#burgerBtn.is-open .burger-line:nth-child(2) {
  opacity: 0;
}

#burgerBtn.is-open .burger-line:nth-child(3) {
  transform: rotate(-45deg);
}

        .glass-card {
            background: rgba(22, 32, 46, 0.7);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .glass-card:hover {
            border: 1px solid rgba(162, 201, 255, 0.3);
            box-shadow: 0 0 30px rgba(162, 201, 255, 0.1);
        }

        .gradient-text {
            background: linear-gradient(135deg, #a2c9ff 0%, #44d8f1 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .gradient-bg {
            background: linear-gradient(135deg, #3394f1 0%, #009fb4 100%);
        }

        .animate-bounce-subtle {
            animation: bounce-subtle 3s infinite;
        }

        .carousel-image {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-images {
  background-color: #091421;
}

        @keyframes bounce-subtle {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .mask-radial {
            mask-image: radial-gradient(circle, black 0%, transparent 80%);
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL'0, 'wght'400, 'GRAD'0, 'opsz'24;
        }

/* Privacy policy page */
.privacy-content__body h2 {
            font-size: 1.125rem;
            font-weight: 700;
            color: #d8e3f6;
            margin-bottom: 0.75rem;
        }

.privacy-content__body p {
            margin-bottom: 0.75rem;
        }

.privacy-content__body ul {
            list-style: disc;
            padding-left: 1.25rem;
            margin-bottom: 0.75rem;
        }

.privacy-content__body li {
            margin-bottom: 0.35rem;
        }

.privacy-content__body a {
            color: #a2c9ff;
            text-decoration: underline;
            text-underline-offset: 2px;
        }

.privacy-content__body a:hover {
            color: #44d8f1;
        }

/* Payment pages */
.payment-detail__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a919e;
}

.payment-detail__value {
  font-size: 18px;
  font-weight: 700;
  color: #d8e3f6;
  line-height: 1.4;
}

.payment-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #a2c9ff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.payment-copy-btn:hover:not(:disabled) {
  border-color: rgba(162, 201, 255, 0.4);
  color: #44d8f1;
}

.payment-copy-btn:disabled {
  opacity: 0.7;
  cursor: default;
}

.payment-primary-btn {
  min-height: 52px;
}

.payment-error {
  font-size: 14px;
  line-height: 1.5;
  color: #ffb4ab;
  text-align: center;
}

.payment-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  gap: 5px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.25s ease;
}

.payment-contact-btn--telegram {
  background: #229ED9;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(34, 158, 217, 0.2);
}

.payment-contact-btn--telegram:hover {
  background: #1d8fc6;
}

.payment-contact-btn--viber {
  background: #7360F2;
  color: #ffffff;
  box-shadow: 0 12px 32px rgba(115, 96, 242, 0.22);
}

.payment-contact-btn--viber:hover {
  background: #6652e8;
}

.payment-success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(68, 216, 241, 0.12);
  border: 1px solid rgba(68, 216, 241, 0.35);
  color: #44d8f1;
}

.payment-success-icon .material-symbols-outlined {
  font-size: 48px;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
}