@charset "UTF-8";
@import url(../fonts/fonts.css);
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(0.3125rem);
  backdrop-filter: blur(0.3125rem);
  z-index: 1000;
}

.modal.show .modal__content {
  transform: scale(1);
  opacity: 1;
}

.modal__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 2.1875rem;
  background-color: #100A03;
  border: 1px solid rgba(249, 145, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  padding: 3.75rem 2.5rem;
  width: 37.5rem;
  max-width: 90%;
  position: relative;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.modal__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(249, 145, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 2.1875rem;
}

.modal__content>* {
  position: relative;
  z-index: 2;
}

.modal__title {
  text-align: center;
  font-size: 2.5rem;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
  color: #fff;
  font-family: "Unbounded", serif;
}

.modal__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.375rem 0;
}

.modal__bg {
  display: flex;
  justify-content: center;
  width: 100%;
  border-radius: 0.75rem;
  background: rgba(16, 10, 3, 0.6);
  border: 1px solid rgba(249, 145, 0, 0.2);
  margin: 0 0 1.25rem 0;
}

.modal__bg-img {
  width: 100%;
  max-width: 9.375rem;
  overflow: hidden;
}

.modal__bg-img>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.modal__form-container {
  position: relative;
}

.modal__form-container.friend-nickname {
  opacity: 0;
  max-height: 0;
  transition: all 0.2s ease-in-out;
}

.modal__form-container.friend-nickname.active {
  opacity: 1;
  max-height: 3.75rem;
}

.modal__form-container>img {
  position: absolute;
  left: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
}

.modal__form-input {
  width: 100%;
  padding: 1.25rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(249, 145, 0, 0.3);
  background: rgba(16, 10, 3, 0.8);
  font-family: inherit;
  font-weight: 400;
  color: #fff;
  transition: all 0.3s ease;
}

.modal__form-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.modal__form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.modal__form-input:focus {
  outline: none;
  border-color: #F99100;
  background: rgba(16, 10, 3, 1);
  box-shadow: 0 0 0 3px rgba(249, 145, 0, 0.1);
}

.modal__form-btn {
  padding: 1.25rem 2.5rem;
  border-radius: 1.25rem;
  background-color: #F99100;
  font-size: 1.25rem;
  color: #131313;
  font-family: inherit;
  cursor: pointer;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.modal__form-btn:hover {
  background-color: #FFB733;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 145, 0, 0.3);
}

.modal__form-text {
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.625rem 0;
}

.modal__form-link {
  color: #F99100;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.modal__form-link:hover {
  color: #FFB733;
}

.modal__form-elements {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__form-cost {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 1.25rem;
  border-radius: 0.75rem;
  background: rgba(16, 10, 3, 0.6);
  border: 1px solid rgba(249, 145, 0, 0.2);
  padding: 1.25rem 0.625rem;
  color: #F99100;
}

.modal__form-label {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 0.625rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}

.modal__form-label>input {
  display: none;
}

.modal__form-label>input:checked+.modal__form-checkbox::before {
  opacity: 1;
}

.modal__form-checkbox {
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background-color: rgba(16, 10, 3, 0.6);
  border: 2px solid rgba(249, 145, 0, 0.3);
  border-radius: 0.375rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.modal__form-label>input:checked+.modal__form-checkbox {
  background-color: #F99100;
  border-color: #F99100;
}

.modal__form-checkbox::before {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 0.3125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid #131313;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal__select {
  display: flex;
  justify-content: space-between;
  gap: 7rem 5;
  margin: 0 0 3.75rem 0;
}

.modal__select.method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3125rem;
}

.modal__select-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(16, 10, 3, 0.6);
  border: 1px solid rgba(249, 145, 0, 0.2);
  padding: 0.3125rem 4rem 5 0.3125rem 0.3125rem;
  transition: all 0.3s ease;
}

.modal__select-item:hover {
  cursor: pointer;
  border-color: #F99100;
  background: rgba(16, 10, 3, 0.8);
}

.modal__select-icon {
  margin-top: auto;
}

.modal__select-content {
  margin-top: auto;
}

.modal__select-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: #fff;
}

.modal__select-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.modal__select-time {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin: 0 0 50px 0;
}

.modal__select-cost {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 1.25rem;
  font-weight: 600;
  border-radius: 0.75rem;
  background: rgba(16, 10, 3, 0.8);
  border: 1px solid rgba(249, 145, 0, 0.2);
  color: #F99100;
}

.modal__select-text {
  font-weight: 400;
  margin: 0 0 0.3125rem 0;
  color: rgba(255, 255, 255, 0.7);
}

.wrapper {
  display: grid;
  grid-template-columns: minmax(0, 20.625rem) minmax(0, 1fr);
  gap: 3.125rem;
}

@media (width < 62.5rem) {
  .wrapper {
    grid-template-columns: none;
    gap: 0.625rem;
  }
}


.aside {
  position: sticky;
  top: 0;
  left: 0;
  height: 100dvh;
}

.aside__content {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #0A0702;
  height: 100%;
  padding: 1.875rem 2.8125rem 2.8125rem 1.875rem;
  /* max-height: 59.375rem; */
}

.aside__nav {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  margin: 0 0 1.25rem 0;
  height: calc(100% - 1.25rem);
}

.aside__nav-tab {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  padding: 0.9375rem 2.5rem 0.9375rem;
  border-radius: 0.9375rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.aside__nav-tab:hover {
  background-color: rgb(249, 145, 0);
  color: #ffffff;
}


.aside__nav-tab.active {
  background-color: rgb(249, 145, 0);
  color: #ffffff;
}


.aside__nav-group {
  display: flex;
  flex-direction: column;
  gap: 0.9375rem;
  padding: 1rem 0;
  border-bottom: 1px solid #808080;
  border-top: 1px solid #808080;
}

@media (max-width: 38.75rem) {
  .aside__logout {
    display: flex;
    align-items: center;
    gap: 0.9375rem;
    padding: 0.9375rem 2.5rem 0.9375rem;
    border-radius: 0.9375rem;
    font-size: 1.125rem;
    margin-top: 0px !important;
    white-space: nowrap;
    color: #ffffff;
    transition: all .2s ease;
  }
}

.aside__logout {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-top: auto;
  padding: 0.9375rem 1rem 0.9375rem 0.5rem;
  border-radius: 0.9375rem;
  font-size: 1.125rem;
  white-space: nowrap;
  color: #fff;
  transition: all .2s ease;
}

.aside__logout:hover {
  background-color: #FF3F3F1A;
  color: #FF3F3F;
}

.aside__logout:hover {
  filter: brightness(85%);
}

.aside__burger {
  display: none;
  cursor: pointer;
}

.aside__burger-checkbox {
  display: none;
}

.aside__burger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 10;
}

.aside__burger-menu>span {
  display: block;
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #ffffff;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  transform-origin: center;
}

.aside__burger-checkbox:checked+.aside__burger-menu span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.aside__burger-checkbox:checked+.aside__burger-menu span:nth-child(2) {
  opacity: 0;
}

.aside__burger-checkbox:checked+.aside__burger-menu span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.aside__mobile {
  display: none;
}

@media (width < 72.8125rem) {
  .aside__mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: all .3s ease;
    max-height: 0;
    background-color: #131313;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    gap: 1.25rem;
    top: 60%;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
  }

  @media (width < 72.8125rem) {
    .aside__mobile-group {
      display: flex;
      flex-direction: column;
      gap: 0.9375rem;
      padding: 1rem 0;
      border-bottom: 1px solid #808080;
      border-top: 1px solid #808080;
    }
  }


  .aside__mobile-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
  }

  .aside__mobile-link.active {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 12px;
    border-radius: 2.5rem;
    background-color: rgb(249, 145, 0);
    color: #ffffff;
  }

  .aside__mobile-link.active>svg path {
    stroke: #ffffff;
  }

  .aside__mobile.active {
    margin-top: 47.5px;
    max-height: 100dvh;
    padding: 1.25rem;
  }
}

@media (width < 62.5rem) {
  .aside {
    position: static;
    height: auto;
  }

  .aside__content {
    padding: 6rem 2.8125rem 0;
  }

  .aside__nav {
    display: none;
  }

  .logo-name.navbar {
    display: none;
  }

  .aside__logout {
    display: none;
  }

  .aside__burger {
    display: block;
  }
}

.lesson {
  padding: 1.875rem 4.0625rem 2.8125rem 0;
}

@media (width < 85.375rem) {
  .lesson {
    padding: 1.875rem;
  }
}

.lesson__breadcrumbs {
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  list-style: none;
}

.lesson__breadcrumbs-item {
  color: #fff !important;
  font-size: 2.25rem;
  font-weight: 600;
}

@media (width < 38.75rem) {
  .lesson__breadcrumbs-item {
    font-size: 1.5rem;
  }
}

.lesson__breadcrumbs-item::before {
  content: ">";
  padding: 0 0.3125rem;
  color: rgba(255, 252, 248, 0.511);
}

.lesson__breadcrumbs-item:first-of-type::before {
  content: "";
}

.lesson__breadcrumbs-item>a {
  color: rgb(231, 134, 6);
}

.lesson__elements {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0 2.5rem 0;
}

@media (width < 30rem) {
  .lesson__elements {
    justify-content: center;
    flex-direction: column;
  }
}

.lesson__inner {
  display: grid;
  grid-template-columns: minmax(0, 68.75rem) minmax(0, 23.4375rem);
  margin: 0 0 2.1875rem 0;
  border-radius: 3.125rem;
  background-color: #131313;
  overflow: hidden;
}

@media (width < 85.375rem) {
  .lesson__inner {
    grid-template-columns: none;
  }
}

.lesson__video {
  align-self: center;
  width: 100%;
  max-width: 68.75rem;
}

.lesson__video>iframe {
  display: block;
  width: 100%;
  max-width: 68.75rem;
  border-radius: 2.5rem;
}

.lesson__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2.5rem;
}

.lesson__cards {
  display: flex;
  flex-direction: column;
  padding: 1.875rem;
  gap: 0.625rem;
  overflow-y: auto;
  max-height: 38.75rem;
  scrollbar-width: none;
}

.lesson__cards-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1.5625rem 0;
}

.lesson__item {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.lesson__item-video {
  position: relative;
}

.lesson__item-video::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
  pointer-events: none;
}

.lesson__item-video>img {
  border-radius: 1.875rem;
}

.lesson__item-text {
  position: absolute;
  z-index: 2;
  padding: 1.25rem;
  bottom: 0;
  color: #fff;
  font-size: 1.0625rem;
  font-weight: 500;
}

.lesson__description {
  padding: 0.625rem 2.5rem;
  border-radius: 0.9375rem;
  /* background-color: #FAFAFA; */
}

@media (width < 62.5rem) {
  .lesson__description {
    padding: 0.625rem;
  }
}

.lesson__description-title {
  margin: 0 0 0.9375rem 0;
  font-size: 2rem;
  font-weight: 600;
}

.lesson__description-text {
  max-width: 60rem;
  font-size: 1.25rem;
  margin: 0 0 1.25rem 0;
}

.lesson__description-text:last-child {
  margin: 0;
}

.lesson__description-ol {
  max-width: 60rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin: 0 0 1.25rem 1.875rem;
}

.lesson__description-img {
  margin: 0 0 1.25rem 1.875rem;
}

.profile {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}

@media (width < 62.5rem) {
  .profile {
    display: none;
  }
}

.profile.mobile {
  display: none;
  margin-left: auto;
}

@media (width < 62.5rem) {
  .profile.mobile {
    margin-right: 35px;
    display: flex;
  }
}

@media (width < 38.75rem) {

  .profile__image {
    width: 25px !important;
    height: 25px !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .profile__image>img {
    object-fit: cover;
    border-radius: 50%;
  }
}

.profile__image {
  width: 3rem;
  height: 3rem;
  overflow: hidden;
}

.profile__image>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.profile__name {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (width < 38.75rem) {
  .profile__name {
    font-size: 0.875rem;
  }
}

.profile__status {
  color: #ffdc5e;
  font-weight: 500;
  text-align: right;
}

@media (width < 38.75rem) {
  .profile__status {
    font-size: 0.75rem;
  }
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html {
  scrollbar-gutter: stable;
}

body {
  font-family: "Turnkey Soft", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  background-color: #0A0702;
  color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.container {
  position: relative;
  z-index: 2;
  max-width: 1407px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.logo-img>svg {
  width: clamp(35px, 2.5vw, 48px);
  height: clamp(35px, 2.5vw, 48px);
}

.logo:hover {
  opacity: 0.9;
}

.logo.white {
  margin: 0 0 1.875rem 0;
}

@media (width < 37.5rem) {
  .logo.white {
    justify-content: center;
  }
}

.logo.cabinet {
  margin: 0 0 2.375rem 0;
}

.logo-name {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Manrope", serif;
  color: #fff;
}

@media (width < 30.625rem) {
  .logo-name {
    font-size: 0.9375rem;
  }
}

.logo-name>span {
  color: #F99100;
}

/* @media (width < 30.625rem) {
  .logo-img {
    width: 5.875rem;
  }
} */

.title {
  font-size: 3rem;
  font-family: "Unbounded", serif;
  text-align: center;
  font-weight: 600;
  margin: 0 0 16px;
}

@media (width < 32.5rem) {
  .title {
    font-size: 1.75rem;
  }
}

.subtitle {
  font-size: 20px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 38px;
  opacity: 0.5;
}

@media (width < 32.5rem) {
  .subtitle {
    font-size: 0.875rem;
    margin: 0 auto 1.5625rem;
    max-width: 20rem;
  }
}

.header {
  position: relative;
  overflow: hidden;
  background-color: #100A03;
}

.header__border {
  border-bottom: 1px solid #F99100;
}

@media (width < 39.375rem) {
  .header {
    min-height: 37.5rem;
  }
}

.header.unsub {
  min-height: 59.375rem;
}

@media (width < 62.5rem) {
  .header.unsub {
    min-height: 34.375rem;
  }
}

.header.unsub::after {
  bottom: -18.75rem;
  background: url(../images/bg-2.png) no-repeat top center/auto;
}

@media (width < 62.5rem) {
  .header.unsub::after {
    background: url(../images/bg-2.png) no-repeat top center/200%;
  }
}

.header.pages::after {
  content: "";
  position: absolute;
  bottom: -25rem;
  left: 0;
  background: none !important;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (width < 39.375rem) {
  .header.pages::after {
    bottom: -18.75rem;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.375rem 0;
  position: relative;
  min-height: 5.8125rem;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

@media (width < 72.8125rem) {
  .header__nav {
    display: none;
  }
}

.header__nav-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__nav-link:hover {
  color: #F99100;
}

.header__elements {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header__elements-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.8125rem;
  height: 1.8125rem;
  transition: transform 0.3s ease;
}

.header__elements-icon:hover {
  transform: scale(1.1);
}

.header__elements-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (width < 72.8125rem) {
  .header__elements-icon {
    display: none;
  }
}

.header__elements-cabinet {
  margin: 0 0 0 0.625rem;
  padding: 0.9375rem 1.875rem;
  border-radius: 1.25rem;
  background-color: #F99100;
  color: #131313;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header__elements-cabinet:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(145, 249, 0, 0.3);
}

@media (width < 72.8125rem) {
  .header__elements-cabinet {
    display: none;
  }
}

.header__mobile {
  display: none;
}

@media (width < 72.8125rem) {
  .header__mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background-color: #100A03;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 1);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    opacity: 1;
  }

  .header__mobile::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #100A03;
    z-index: -1;
    pointer-events: none;
  }

  .header__mobile.active {
    right: 0;
  }

  .header__mobile-link {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.875rem 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
  }

  .header__mobile-link:hover {
    color: #F99100;
  }

  .header__mobile-cabinet {
    margin-top: 1rem;
    padding: 0.9375rem 1.5rem;
    border-radius: 1.25rem;
    background-color: #F99100;
    color: #131313;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
  }

  .header__mobile-cabinet:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 145, 0, 0.3);
    background-color: #FFB733;
  }
}

.header__mobile-overlay {
  display: none;
}

@media (width < 72.8125rem) {
  .header__mobile-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .header__mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.header__burger {
  display: none;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

.header__burger-checkbox {
  display: none;
}

.header__burger-menu {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 10;
}

.header__burger-menu>span {
  display: block;
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #fff;
  border-radius: 0.125rem;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__burger-checkbox:checked+.header__burger-menu span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: #fff;
}

.header__burger-checkbox:checked+.header__burger-menu span:nth-child(2) {
  opacity: 0;
}

.header__burger-checkbox:checked+.header__burger-menu span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: #fff;
}

@media (width < 72.8125rem) {
  .header__burger {
    display: block;
  }
}

.header__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(../images/new-bg.png) no-repeat center center/cover;
  padding: clamp(100px, 20%, 285px) 20px;
}

.header__title {
  font-size: 64px;
  font-weight: 700;
  font-family: "Unbounded", serif;
  text-align: center;
  max-width: 1220px;
  margin: 0 auto 10px;
  line-height: 1;
}

@media (width < 39.375rem) {
  .header__title {
    font-size: 1.75rem;
  }
}

.header__title>span {
  background: linear-gradient(90deg, #F9B200 0%, #F99100 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header__subtitle {
  text-align: center;
  font-size: 25px;
  max-width: 680px;
  opacity: 0.4;
  margin: 0 auto 40px;
}

@media (width < 39.375rem) {
  .header__subtitle {
    font-size: 0.875rem;
    margin: 0 auto 0.9375rem;
    max-width: 20rem;
  }
}

.header__sub {
  display: flex;
  justify-content: center;
}

.header__sub-link {
  border-radius: 15px;
  background: radial-gradient(42.31% 100% at 50% 100.66%, #F9B600 0%, #F99100 100%);
  box-shadow: 0 100px 80px 0 rgba(0, 0, 0, 0.07), 0 41.778px 33.422px 0 rgba(0, 0, 0, 0.05), 0 22.336px 17.869px 0 rgba(0, 0, 0, 0.04), 0 12.522px 10.017px 0 rgba(0, 0, 0, 0.04), 0 6.65px 5.32px 0 rgba(0, 0, 0, 0.03), 0 2.767px 2.214px 0 rgba(0, 0, 0, 0.02);
  color: #000;
  padding: 20px 40px;
  font-size: 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.header__sub-link:hover {
  rotate: -6deg;
}

@media (width < 39.375rem) {
  .header__sub-link {
    font-size: 1.125rem;
    padding: 1.25rem 1.875rem;
  }
}

.marquee {
  background: linear-gradient(180deg, #F99100 0%, #F9B600 100%);
  box-shadow: 0 0 245.2px 0 rgba(249, 145, 0, 0.20);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 20px 0;
  position: relative;
  margin: 0 0 70px;
}

.marquee__inner {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 1.5625rem;
  flex-shrink: 0;
  padding: 0 1.25rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee__item[aria-hidden="true"] {
  animation: marquee 30s linear infinite;
}

.marquee__text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: #000;
  letter-spacing: 12.5px;
  text-transform: uppercase;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 5.625rem auto;
  max-width: 100%;
  width: 980px;
  padding: 3.75rem 3.75rem;
  border: 1px solid rgba(249, 145, 0, 0.2);
  border-radius: 4.375rem;
  background-color: #100A03;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
}

.form-success::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(249, 145, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 4.375rem;
}

.form-success>* {
  position: relative;
  z-index: 2;
}

.form-success__img {
  width: 350px;
  margin: 0 0 2.5rem 0;
}

@media (max-width: 768px) {
  .form-success {
    padding: 2.5rem 2rem;
    width: 100%;
    margin: 5.625rem 1rem;
  }

  .form-success__img {
    width: 150px;
    margin: 0 0 1.5rem 0;
  }
}

.form-success__title {
  margin: 0 0 0.9375rem 0;
  font-size: 1.75rem;
  font-weight: 600;
  font-family: "Unbounded", serif;
  color: #fff;
}

.form-success__title>span {
  background: linear-gradient(90deg, #F9B200 0%, #F99100 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.form-success__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}


.tariffs {
  margin: 0 0 15.625rem 0;
}

.tariffs__inner {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  align-items: center;
}

.tariffs__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.tariffs__title {
  font-family: "Unbounded", serif;
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 600;
  margin: 0;
}

.tariffs__subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  opacity: 0.5;
  max-width: 42.5rem;
}

.tariffs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
}

@media (width <=920px) {
  .tariffs__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.tariffs__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid #3C2608;
  background-color: #1C1204;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tariffs__item:hover {
  transform: translateY(-5px);
  border-color: #F99100;
  box-shadow: 0 10px 30px rgba(249, 145, 0, 0.2);
}

.tariffs__item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.tariffs__item-title {
  font-family: "Unbounded", serif;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 600;
}

.tariffs__item-price {
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 500;
  color: #F99100;
}

.tariffs__item-content {
  flex: 1;
  margin-bottom: 1.25rem;
}

.tariffs__item-subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 500;
  margin: 0 0 1.25rem 0;
}

.tariffs__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.tariffs__feature {
  display: flex;
  gap: 0.625rem;
  align-items: flex-start;
}

.tariffs__feature-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tariffs__feature-text {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 400;
  opacity: 0.5;
  line-height: 1.3;
}

.tariffs__feature-text.special {
  color: #000;
  opacity: 0.7;
}

.tariffs__item-button {
  margin-top: auto;
}

.tariffs__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.25rem 2.5rem;
  border-radius: 100px;
  background-color: #502C00;
  font-family: "Unbounded", serif;
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tariffs__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
}

.tariffs__special {
  grid-column: 1 / -1;
  position: relative;
  background: radial-gradient(50.04% 100% at 50.04% 0%, #FFBF36 0%, #F99100 100%);
  border-radius: 2.1875rem;
  padding: 2rem;
  overflow: hidden;
  min-height: 25rem;
}

@media (width <=1220px) {
  .tariffs__special {
    grid-column: unset;
  }

  .tariffs__special-bg {
    display: none;
  }
}

.tariffs__special-bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.tariffs__special-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.tariffs__special-content {
  position: relative;
  z-index: 2;
  max-width: 47.8125rem;
}

.tariffs__special-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 1.875rem;
}

@media (width <=1220px) {
  .tariffs__special-header {
    gap: 0;
    justify-content: space-between;
  }
}

.tariffs__special-badge {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.tariffs__special-badge span {
  font-family: "Unbounded", serif;
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  font-weight: 600;
  color: #000;
}

.tariffs__special-price {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 500;
  color: #5e2c39;
}

.tariffs__special-price-old {
  text-decoration: line-through;
  opacity: 0.5;
}

.tariffs__special-content-text {
  margin-bottom: 1.875rem;
}

.tariffs__special-subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 500;
  color: #000;
  margin: 0 0 1.25rem 0;
}

.tariffs__special-button {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.tariffs__special-note {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 600;
  color: #502C00;
}

.tariffs__footer-note {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

.faq {
  margin: 0 0 15.625rem 0;
}

.faq__inner {
  display: flex;
  flex-direction: column;
  gap: 2.375rem;
  align-items: center;
}

.faq__header {
  display: flex;
  flex-direction: column;
  gap: 1.0625rem;
  align-items: center;
  text-align: center;
}

.faq__title {
  font-family: "Unbounded", serif;
  font-size: clamp(1.75rem, 6vw, 3rem);
  font-weight: 600;
}

.faq__subtitle {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  opacity: 0.5;
  line-height: 1.3;
  letter-spacing: -0.01125rem;
}

.faq__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 90rem;
}

.faq__item {
  border-radius: 35px;
  background-color: #1C1204;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq__item--active {
  background-color: #502C00;
  box-shadow: 0 0 50px 0 rgba(96, 129, 255, 0.10);
}

.faq__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq__item-title {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.0125rem;
  flex: 1;
}

.faq__item-icon {
  width: 2rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq__item--active .faq__item-icon {
  transform: rotate(180deg);
}

.faq__item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-top: 0;
}

.faq__item--active .faq__item-content {
  max-height: 20rem;
  padding-top: 2rem;
}

.faq__item-text {
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.4;
  letter-spacing: -0.01125rem;
}


.modal__content--subscription {
  width: 100%;
  max-width: 838px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  align-items: flex-start !important;
  border-radius: 2.1875rem;
  background-color: #100A03;
  border: 1px solid rgba(249, 145, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #F99100 rgba(16, 10, 3, 0.5);
}

.modal__content--subscription::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(249, 145, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 2.1875rem;
}

.modal__content--subscription>* {
  position: relative;
  z-index: 2;
}

.modal__content--subscription::-webkit-scrollbar {
  width: 0.5rem;
}

.modal__content--subscription::-webkit-scrollbar-track {
  background-color: rgba(16, 10, 3, 0.5);
  border-radius: 0.25rem;
}

.modal__content--subscription::-webkit-scrollbar-thumb {
  background-color: #F99100;
  border-radius: 0.25rem;
}

.modal__content--subscription::-webkit-scrollbar-thumb:hover {
  background-color: #FFB733;
}

.modal__close {
  position: absolute;
  top: clamp(0.625rem, 2vw, 1.25rem);
  right: clamp(0.625rem, 2vw, 1.25rem);
  border-radius: 10px;
  background-color: rgba(16, 10, 3, 0.8);
  border: 1px solid rgba(249, 145, 0, 0.3);
  padding: clamp(0.2rem, 2vw, 10px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
}

.modal__close:hover {
  background-color: rgba(249, 145, 0, 0.2);
  border-color: #F99100;
}

.modal__close svg path {
  stroke: #fff;
}

.subscription-modal__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.875rem;
}

.subscription-modal__title {
  font-family: "Unbounded", serif;
  font-size: clamp(1rem, 4vw, 1.5625rem);
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: -0.015625rem;
}

.subscription-modal__offer {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
}

.subscription-modal__offer-text {
  font-size: clamp(0.875rem, 3.5vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  letter-spacing: -0.0125rem;
}

.subscription-modal__price {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.subscription-modal__price-text {
  font-size: clamp(0.875rem, 3.5vw, 1.25rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: -0.0125rem;
}

.subscription-modal__price-badge {
  background-color: rgba(249, 145, 0, 0.2);
  border: 1px solid rgba(249, 145, 0, 0.3);
  padding: 0 0.625rem;
  border-radius: 0.625rem;
}

.subscription-modal__price-new {
  font-family: "Unbounded", serif;
  font-size: clamp(0.875rem, 3.5vw, 1.25rem);
  font-weight: 600;
  color: #F99100;
  letter-spacing: -0.0125rem;
}

.subscription-modal__price-old {
  font-family: "Unbounded", serif;
  font-size: clamp(0.875rem, 3vw, 1.125rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  opacity: 0.6;
  letter-spacing: -0.01125rem;
}

.subscription-modal__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(249, 145, 0, 0.2);
  border-radius: 1.25rem;
  margin-bottom: 1.25rem;
}

.subscription-modal__gift {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}

.subscription-modal__gift-card {
  background-color: rgba(16, 10, 3, 0.6);
  border: 1px solid rgba(249, 145, 0, 0.2);
  border-radius: 1.25rem;
  padding: 1.25rem;
}

.subscription-modal__gift-title {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.3125rem 0;
}

.subscription-modal__gift-description {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.subscription-modal__terms {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.3;
}

.subscription-modal__form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.subscription-modal__checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.625rem;
}

.subscription-modal__checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.subscription-modal__checkbox {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.subscription-modal__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.4;
  position: relative;
}

.subscription-modal__checkbox-custom {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  background-color: rgba(16, 10, 3, 0.6);
  border-radius: 0.375rem;
  border: 2px solid rgba(249, 145, 0, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.subscription-modal__checkbox-custom::after {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.125rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid #131313;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.subscription-modal__checkbox:checked+.subscription-modal__checkbox-label .subscription-modal__checkbox-custom {
  background-color: #F99100;
  border-color: #F99100;
}

.subscription-modal__checkbox:checked+.subscription-modal__checkbox-label .subscription-modal__checkbox-custom::after {
  opacity: 1;
}

.subscription-modal__checkbox:focus+.subscription-modal__checkbox-label .subscription-modal__checkbox-custom {
  box-shadow: 0 0 0 3px rgba(249, 145, 0, 0.2);
}

.subscription-modal__checkbox-text {
  flex: 1;
  font-size: clamp(0.875rem, 2.5vw, 1.125rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.subscription-modal__checkbox-label {
  color: rgba(255, 255, 255, 0.7);
}

.subscription-modal__highlight {
  color: #F99100;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: #F99100;
  text-underline-offset: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscription-modal__highlight:hover {
  color: #FFB733;
  text-decoration-color: #FFB733;
}

.subscription-modal__form-group {
  margin-bottom: 0.625rem;
}

.subscription-modal__input {
  width: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(249, 145, 0, 0.3);
  border-radius: 1.25rem;
  background-color: rgba(16, 10, 3, 0.8);
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.0125rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.subscription-modal__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.subscription-modal__input:focus {
  outline: none;
  border-color: #F99100;
  background-color: rgba(16, 10, 3, 1);
  box-shadow: 0 0 0 3px rgba(249, 145, 0, 0.1);
}

.subscription-modal__button {
  width: 100%;
  padding: 1.25rem 2.5rem;
  border: none;
  border-radius: 1.25rem;
  background-color: #F99100;
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 600;
  color: #131313;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: -0.0125rem;
}

.subscription-modal__button:hover {
  background-color: #FFB733;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 145, 0, 0.3);
}

.subscription-modal__agreement {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.0125rem;
}


.courses {
  position: relative;
  z-index: 3;
  margin: 0 0 150px;
}

.courses__inner {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, minmax(0, 27.8125rem));
  grid-auto-rows: minmax(540px, auto);
  gap: 0.9375rem;
}

@media (width < 86.25rem) {
  .courses__inner {
    grid-template-columns: repeat(2, minmax(0, 27.8125rem));
  }
}

@media (width < 57.5rem) {
  .courses__inner {
    grid-template-columns: minmax(0, 27.8125rem);
  }
}

@media (width < 27.5rem) {
  .courses__inner {
    grid-auto-rows: minmax(28.125rem, auto);
  }
}

.courses__item {
  overflow: hidden;
  position: relative;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #28397F;
  background: radial-gradient(143.3% 117.3% at 25.74% 100%, #FC0 21.63%, #1E348B 50.48%, #000 100%);
  cursor: pointer;
  transition: all 0.3s ease;
}

.courses__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.courses__item:last-child .courses__item-rating {
  display: none;
}

.courses__item-dota {
  border: 1px solid #EF3E36;
  background: radial-gradient(137.71% 100% at 50% 100%, #F04C36 0%, #170E02 100%);
}

.courses__item-dota .courses__item-elements {
  border-color: #EF3E36;
}

.courses__item-pubg .courses__item-elements {
  border-color: #F37900;
}

.courses__item-standoff .courses__item-elements {
  border-color: #B32721;
}

.courses__item-blackrussia .courses__item-elements {
  border-color: #841000;
}


.courses__item_devices::after {
  content: "";
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/a-8.png) no-repeat bottom center/contain !important;
  z-index: 1;
}


.courses__item_pubg::after {
  background: url(../images/c-8.png) no-repeat bottom -4.375rem center/95%;
}
.courses__item_pubg {
  background: #ffe2df;
}

.courses__item_blackrussia::after {
  background: url(../images/с-4.png) no-repeat bottom -4.375rem center/95%;
}
.courses__item_blackrussia {
  background: #ffdfdf;
}

.courses__item_tren::after {
  background: url(../images/a-9.png) no-repeat bottom/100% !important;
}


.courses__item_abilities::after {
  background: url(../images/a-7.png) no-repeat bottom/100% !important;
}

.courses__item_proplayers::after {
  background: url(../images/a-9.png) no-repeat bottom/100% !important;
}

.courses__item-other .courses__item-elements {
  border-color: rgba(255, 255, 255, 0.5);
}

.courses__item-pubg {
  border: 1px solid #F37900;
  background: radial-gradient(137.71% 100% at 50% 100%, #F37900 0%, #000 100%);
}

.courses__item-standoff {
  border: 1px solid #B32721;
  background: radial-gradient(137.71% 100% at 50% 100%, #D32912 0%, #000 100%);
}

.courses__item-blackrussia {
  border: 1px solid #841000;
  background: radial-gradient(137.71% 100% at 50% 100%, #841000 0%, #000 100%);
}

.courses__item-other {
  border: 1px solid #4A4A4A;
  background: radial-gradient(137.71% 100% at 50% 100%, #565656 0%, #000 100%);
}

.courses__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/courses/1.png) no-repeat bottom center/contain;
  z-index: 1;
}

.courses__item-other::after {
  background: url(../images/courses/6.png) no-repeat bottom center/contain;
}

.courses__item-blackrussia::after {
  background: url(../images/courses/5.png) no-repeat bottom center/contain;
}

.courses__item-standoff::after {
  background: url(../images/courses/4.png) no-repeat bottom center/contain;
}

.courses__item-dota::after {
  background: url(../images/courses/2.png) no-repeat bottom center/contain;
}

.courses__item-pubg::after {
  background: url(../images/courses/3.png) no-repeat bottom center/contain;
}

.courses__item-elements {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 20px;
  margin: 0 0 20px;
  border-bottom: 1px solid #FBAC18;
}

@media (width <=950px) {
  .courses__item-elements {
    flex-direction: column;
    gap: 10px;
  }
}

.courses__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: "Unbounded", serif;
  font-size: 25px;
  font-weight: 600;
}

@media (width < 30rem) {
  .courses__item-title {
    font-size: 1.25rem;
  }
}

.courses__item-rating {
  font-family: "Unbounded", serif;
  font-weight: 600;
}

.courses__item-rating-stars {
  display: flex;
  align-items: center;
}

.courses__item-subtitle {
  position: relative;
  z-index: 2;
  font-size: 15px;
  opacity: 0.5;
}

@media (width < 30rem) {
  .courses__item-subtitle {
    font-size: 0.875rem;
  }
}

.banner {
  margin: 0 0 15.625rem 0;
  padding: 1.5rem 0;
}

.banner__headphones {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

@media (width < 78.75rem) {
  .banner__video {
    position: static;
  }
}

.banner__video {
  transform: rotate(16deg);
  position: absolute;
  bottom: 0;
  right: 5%;
  max-width: 34.375rem;
}

@media (width < 35rem) {
  .banner__video {
    max-width: 18.75rem;
  }
}

.banner__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 36.25rem) minmax(0, 34.375rem);
  gap: 0.9375rem;
  padding: 60px;
  border-radius: 70px;
  background: radial-gradient(50% 100% at 50% 0%, #FFBF36 0%, #F99100 100%);
  color: #fff;
}

@media (width < 78.75rem) {
  .banner__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 5rem;
    height: clamp(500px, 50vh, 800px);
  }

  .banner__headphones {
    right: 0;
    transform: none;
  }

  .banner__btns-link:nth-child(2) {
    display: none;
  }
}

@media (width < 35rem) {
  .banner__inner {
    padding: 2.5rem;
  }
}

@media (width < 28.125rem) {
  .banner__inner {
    padding: 2.5rem;
  }
}

.banner__item {
  position: relative;
  z-index: 2;
}

.banner__item-title {
  font-size: 3rem;
  font-weight: 500;
  font-family: "Unbounded", serif;
  margin: 0 0 1.5625rem 0;
  color: #000;
}

@media (width < 35rem) {
  .banner__item-title {
    font-size: 1.5rem;
    margin: 0 0 0.625rem 0;
  }
}

.banner__item-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  margin: 0 0 4.0625rem 0;
}

@media (width < 35rem) {
  .banner__item-subtitle {
    font-size: 0.875rem;
    margin: 0 0 2.1875rem 0;
  }
}

.banner__btns {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

@media (width < 78.75rem) {
  .banner__btns {
    justify-content: center;
  }
}

@media (width < 35rem) {
  .banner__btns {
    flex-direction: column;
  }
}

.banner__btns-link {
  display: inline-flex;
  align-items: center;
  gap: 0.9375rem;
  border-radius: 20px;
  background-color: #502C00;
  padding: 1.25rem;
  font-size: 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.banner__btns-link:hover {
  background-color: #6A3A00;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 145, 0, 0.3);
}

@media (width < 35rem) {
  .banner__btns-link {
    font-size: 1.125rem;
    padding: 0.9375rem;
  }
}

.slider {
  position: relative;
  padding: 6.25rem 0;
  border-radius: 2447px;
  background: radial-gradient(50% 50% at 50% 50%, #4E2B00 0%, #0A0601 100%);
  margin: 0 0 12.5rem 0;
}

.slider__container {
  overflow: hidden;
}

.slider__item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.slider__item-img {
  position: relative;
  width: 21.875rem;
  height: 21.875rem;
  margin: 0 0 2.1875rem 0;
}

@media (width < 86.25rem) {
  .slider__item-img {
    width: 15.625rem;
    height: 15.625rem;
  }
}

@media (width < 62.5rem) {
  .slider__item-img {
    width: 12.5rem;
    height: 12.5rem;
  }
}

@media (width < 37.5rem) {
  .slider__item-img {
    width: 9.375rem;
    height: 9.375rem;
  }
}

@media (width < 71.875rem) {
  .slider__item-img>svg {
    display: none !important;
  }
}

.slider__item-img>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(0.7);
  border-radius: 90px;
  filter: grayscale(1);
}

.slider__item-stars {
  margin: 0 0 0.9375rem 0;
}

.slider__item-name {
  font-size: 2.25rem;
  font-family: "Unbounded", serif;
  font-weight: 600;
  margin: 0 0 0.9375rem 0;
}

.slider__item-game {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 0 1.5625rem 0;
}

.slider__item-text {
  font-size: 1.125rem;
  max-width: 33.75rem;
  opacity: 0.5;
}

.swiper-slide {
  transition: all 0.3s ease;
}

.swiper-slide .slider__item-content {
  display: none;
}

.swiper-slide .slider__item-img>svg {
  display: none;
}

.swiper-slide-active .slider__item-img>svg {
  display: block;
  position: absolute;
}

.swiper-slide-active .slider__item-img>svg:nth-child(2) {
  top: -1.25rem;
  right: -1.25rem;
}

.swiper-slide-active .slider__item-img>svg:nth-child(3) {
  bottom: -3.125rem;
  left: -5rem;
  z-index: -1;
}

.swiper-slide-active .slider__item-img>img {
  filter: none;
  transform: scale(1);
}

.swiper-slide-active .slider__item-content {
  display: block;
}

.swiper-slide-active .slider__item-img {
  border: 1px solid #F99100;
  border-radius: 90px;
}

.swiper-slide-active>img {
  transform: scale(1);
}

.offer {
  scroll-margin: 1.875rem;
  margin: 0 0 120px;
}

@media (width < 37.5rem) {
  .offer {
    margin: 0 0 6.25rem 0;
  }
}

.offer__wrapper {
  position: relative;
  overflow: hidden;
  padding: 5.625rem 0;
  text-align: center;
  border-radius: 70px;
  background: radial-gradient(205.22% 205.22% at 50% 0%, #FF8C00 0%, #000 100%);
}

.offer__wrapper.center {
  position: relative;
  overflow: hidden;
  padding: 5.625rem 0;
  border-radius: 4.375rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: #E2FF3E;
}

.iframe-wrapper {
  z-index: 5000;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 50px;
  border-radius: 4.375rem;
}

.offer__wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/offer-bg.svg) no-repeat center center/cover;
  z-index: 1;
}

.offer__title {
  position: relative;
  z-index: 2;
  font-size: 3.5rem;
  font-family: "Unbounded", serif;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 1.5625rem 0;
}

@media (width < 38.125rem) {
  .offer__title {
    font-size: 1.1875rem;
    margin: 0 0 0.625rem 0;
  }
}

.offer__title>span {
  color: #502C00;
}

.offer__subtitle {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
  max-width: 470px;
  color: #000;
  font-weight: 500;
  margin: 0 auto 2.1875rem;
}

@media (width < 38.125rem) {
  .offer__subtitle {
    font-size: 0.875rem;
    margin: 0 auto 0.9375rem;
  }
}

.offer__subtitle>span {
  color: #502C00;
}

.offer__link {
  display: inline-block;
  position: relative;
  z-index: 2;
  padding: 1.25rem 1.875rem;
  font-weight: 600;
  border-radius: 100px;
  background-color: #502C00;
  font-size: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  cursor: pointer;
}

.offer__link:hover {
  rotate: -4deg;
}

@media (width < 38.125rem) {
  .offer__link {
    font-size: 1rem;
    padding: 0.9375rem 1.5625rem;
  }
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  background: radial-gradient(50% 100% at 50% 100%, #2C1800 0%, #100A03 100%);
  padding: 0 0 1.875rem 0;
}

.footer__logo {
  margin: 0 0 35px;
}

.footer__inner {
  display: grid;
  justify-content: space-between;
  grid-template-columns: minmax(0, 360px) minmax(0, 245px) auto;
  padding: 4.0625rem 0 1.875rem;
  margin: 0 0 1.25rem 0;
}

.footer__item {
  display: flex;
  flex-direction: column;
}

@media (width < 62.5rem) {
  .footer__inner {
    justify-content: center;
    gap: 3.125rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (width < 37.5rem) {
  .footer__inner {
    grid-template-columns: none;
    text-align: center;
    gap: 1.25rem;
  }
}

@media (width < 62.5rem) {
  .footer__item {
    grid-column: span 2;
  }

  .footer__item:nth-child(3) {
    gap: 10px;
    text-align: center;
    justify-self: center;
    grid-column: span 4;
  }
}

@media (width < 37.5rem) {
  .footer__item {
    align-items: center;
    grid-column: none !important;
  }
}

.footer__item-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__item-text.questions {
  color: #fff;
}

@media (width < 30.625rem) {
  .footer__item-text {
    font-size: 0.75rem;
  }
}

.footer__item-text.last {
  margin: 0 0 2.1875rem 0;
}

.footer__item-number {
  font-size: 1.7rem;
  color: #fff;
}

@media (width < 30.625rem) {
  .footer__item-number {
    font-size: 1.25rem;
  }
}

.footer__item-documents {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 1.5625rem 0;
}

@media (width < 30.625rem) {
  .footer__item-documents {
    font-size: 1.125rem;
    margin: 0 0 0.625rem 0;
  }
}

.footer__item-questions {
  display: flex;
  flex-direction: column;
  color: #fff;
}

@media (width < 30.625rem) {
  .footer__item-questions {
    font-size: 0.875rem;
  }
}

.footer__item-questions>a {
  color: #ff5eaa;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 0 0 1.5625rem 0;
}

.footer__nav-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer__nav-link:hover {
  color: #F99100;
}

@media (width < 30.625rem) {
  .footer__nav-link {
    font-size: 0.75rem;
  }
}

.footer__support {
  color: #F99100;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer__support:hover {
  color: #FFB733;
  text-decoration: underline;
}

@media (width < 30.625rem) {
  .footer__support {
    font-size: 0.875rem;
  }
}

.footer__payments {
  display: flex;
  justify-content: center;
}

.footer__item-last {
  display: flex;
  text-align: right;
  flex-direction: column;
}

.footer__img {
  margin-top: auto;
}

.footer__copyright {
  text-align: center;
  opacity: 0.5;
}

@media (width < 30.625rem) {
  .footer__copyright {
    font-size: 0.75rem;
  }
}

.unsubscribe {
  margin: 5.625rem 0;
  position: relative;
  padding: 6.25rem 0;
}

.unsubscribe__title {
  position: relative;
  z-index: 2;
  font-family: "Unbounded", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 2.5rem 0;
}

@media (width < 32.5rem) {
  .unsubscribe__title {
    font-size: 1.75rem;
  }
}

.unsubscribe__inner {
  overflow: hidden;
  position: relative;
  padding: 3.75rem 2.5rem;
  border-radius: 4.375rem;
  background-color: #100A03;
  border: 1px solid rgba(249, 145, 0, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.unsubscribe__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(249, 145, 0, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.form {
  position: relative;
  z-index: 2;
}

.form-container {
  max-width: 32.5rem;
  margin: 0 auto 0.9375rem;
  position: relative;
}

.form-container.last {
  margin-bottom: 3.125rem;
}

.form-container__img {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5625rem;
}

.form-container__error {
  display: none;
  color: rgb(186, 27, 27);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.5625rem;
}

.form-container>input {
  width: 100%;
  border: 1px solid rgba(249, 145, 0, 0.3);
  border-radius: 1.25rem;
  background: rgba(16, 10, 3, 0.8);
  padding: 1.25rem 1.5625rem;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-container>input:focus {
  outline: none;
  border-color: #F99100;
  background: rgba(16, 10, 3, 1);
  box-shadow: 0 0 0 3px rgba(249, 145, 0, 0.1);
}

@media (width < 32.5rem) {
  .form-container>input {
    font-size: 0.875rem;
    padding: 1rem 1.25rem;
    text-overflow: ellipsis;
  }
}

.form-container>input.error-bg {
  outline: 1px solid #ff4444;
  border-color: #ff4444;
  background: rgba(255, 68, 68, 0.1);
}

.form-container>input::-moz-placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.form-container>input::placeholder {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}

.form-button {
  margin: 0 auto;
  max-width: 32.5rem;
}

.form-button>button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9375rem;
  width: 100%;
  cursor: pointer;
  border: none;
  border-radius: 1.25rem;
  background-color: #F99100;
  padding: 1.25rem 0;
  color: #131313;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-button>button:hover {
  background-color: #FFB733;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 145, 0, 0.3);
}

@media (width < 32.5rem) {
  .form-button>button {
    font-size: 1rem;
    padding: 1rem 0;
  }
}

/*# sourceMappingURL=style.css.map */

.country__close-svg {
  width: 100%;
  height: 100%;
}

.spisalo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(3px);
  z-index: 1001;
  opacity: 0;
  transition: opacity .5s ease-in-out;
  padding: 20px 0;
  box-sizing: border-box;
  display: none;
}

.spisalo__container {
  max-width: 420px;
  width: 100%;
  max-height: calc(100% - 40px);
  padding: 40px 60px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow-y: none;
  scrollbar-width: none;
}

.spisalo--open {
  opacity: 1 !important;
}

.plus-sheet__gradient {
  position: -webkit-sticky;
  position: sticky;
  bottom: -20px;
  padding: 12px 16px 30px 16px;
}

.plus-sheet__button {

  position: relative;
  padding: 21px;
  line-height: 16px;
  border-radius: 19px;
  font-size: 17px;
  font-weight: 500;
  background-color: rgb(249, 145, 0);
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-animation: none !important;
  animation: none !important;
  overflow: hidden;
  -webkit-transform: translateZ(0px);
  transform: translateZ(0px);
}

.plus-sheet__button i {

  position: absolute;
  top: 0;
  left: -30%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(30%, rgba(255, 255, 255, 0.3)), color-stop(50%, rgba(255, 255, 255, 0.4)), color-stop(70%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 30%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
  width: 100px;
  height: 100%;
  -webkit-transform: skew(-10deg, 0deg);
  transform: skew(-10deg, 0deg);
  -webkit-animation: move 5s;
  animation: move 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-delay: 1.165s;
  animation-delay: 1.165s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}

@keyframes move {
  0% {
    left: -10%;
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  25% {
    left: 105%;
  }

  100% {
    left: 105%;
  }
}

.spisalo_button {
  width: 100%;
  padding: 21px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(249, 145, 0);
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  transition: filter .3s ease-in-out;
  margin-bottom: 15px;
}

.spisali__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.auth__title {
  font-weight: 600;
  font-size: 24px;
  /* line-height: 14px; */
  text-align: center;
  color: #111111;
  margin-bottom: 10px;
}

.auth__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: rgba(17, 17, 17, 0.6);
  margin-bottom: 25px;
}

.auth__subtitle a {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: #ff5eaa;
  margin-bottom: 25px;
}

.auth__descr {
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: #6B6B6B;
}

.auth__descr {
  max-width: 300px;
}


.form_pass_wrapper {
  gap: 6px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form_pass_wrapper2 {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-left: 350px;
  padding-right: 350px;
}

.form_pass_wrapper2 label {
  padding: 5px;
}

@media (width < 26.25rem) {
  .form_pass_wrapper2 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.form_passcode {
  width: 50px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
  text-align: center;
  font-weight: 500;
  padding: 11px 15px;
  vertical-align: center;
}

@media (width < 26.25rem) {
  .form_passcode {
    width: 45px;
    height: 45px;
  }
}

.error-bg {
  outline: 1px solid rgb(255, 0, 0);
  background: rgb(255, 202, 202);
}

.contact-widget {
  position: fixed;
  right: max(1.125rem, env(safe-area-inset-right));
  bottom: max(1.125rem, env(safe-area-inset-bottom));
  z-index: 950;
  display: inline-flex;
  align-items: flex-end;
}

.contact-widget__menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.875rem);
  width: min(20.25rem, calc(100vw - 2rem));
  padding: 1.125rem;
  border: 1px solid rgba(249, 145, 0, 0.22);
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(31, 21, 10, 0.98) 0%, rgba(16, 10, 3, 0.98) 100%);
  box-shadow: 0 1.5rem 3.5rem rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 183, 51, 0.08);
  backdrop-filter: blur(1rem);
  transform-origin: right bottom;
  transform: translateY(0.75rem) scale(0.94);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.contact-widget.is-open .contact-widget__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.contact-widget__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.625rem 0;
  color: rgba(255, 221, 166, 0.76);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-widget__eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #F99100;
  box-shadow: 0 0 0.75rem rgba(249, 145, 0, 0.65);
}

.contact-widget__title {
  margin: 0 0 1rem 0;
  max-width: 14rem;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-widget__items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.contact-widget__link {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.9375rem 1rem;
  border: 1px solid transparent;
  border-radius: 1.25rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.contact-widget__link-icon {
  width: 2.875rem;
  height: 2.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  flex-shrink: 0;
}

.contact-widget__link-icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.contact-widget__link-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1875rem;
}

.contact-widget__link-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-widget__link-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.contact-widget__link-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8125rem;
  line-height: 1.35;
}

.contact-widget__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-widget__link--telegram {
  background: linear-gradient(135deg, #FFB733 0%, #F99100 58%, #DE7A00 100%);
  box-shadow: 0 1rem 1.875rem rgba(249, 145, 0, 0.24);
}

.contact-widget__link--telegram .contact-widget__link-icon {
  color: #131313;
  background: rgba(19, 19, 19, 0.12);
}

.contact-widget__link--telegram .contact-widget__link-title,
.contact-widget__link--telegram .contact-widget__link-note {
  color: #131313;
}

.contact-widget__link--telegram .contact-widget__badge {
  color: #FFBF36;
  background: #131313;
}

.contact-widget__link--email {
  border-color: rgba(249, 145, 0, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.contact-widget__link--email .contact-widget__link-icon {
  color: #FFBF36;
  background: rgba(249, 145, 0, 0.12);
}

.contact-widget__link--email .contact-widget__badge {
  color: rgba(255, 221, 166, 0.76);
  background: rgba(249, 145, 0, 0.12);
}

.contact-widget__toggle {
  position: relative;
  width: 4.5rem;
  height: 4.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 1.5rem;
  background: radial-gradient(circle at 30% 30%, #FFE2AC 0%, #F99100 48%, #D97900 100%);
  box-shadow: 0 1.125rem 2.5rem rgba(249, 145, 0, 0.32), inset 0 -0.5rem 1rem rgba(19, 19, 19, 0.08);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.contact-widget__toggle::before {
  content: "";
  position: absolute;
  inset: -0.625rem;
  border: 1px solid rgba(249, 145, 0, 0.26);
  border-radius: 1.875rem;
  animation: contact-widget-pulse 2.4s ease-out infinite;
}

.contact-widget__toggle::after {
  content: "";
  position: absolute;
  inset: 0.625rem;
  border-radius: 1.125rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.contact-widget__toggle:focus-visible,
.contact-widget__link:focus-visible {
  outline: 0.125rem solid rgba(255, 183, 51, 0.95);
  outline-offset: 0.1875rem;
}

.contact-widget__spark {
  position: absolute;
  top: -0.25rem;
  right: -0.125rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 999px;
  background: #FFD089;
  box-shadow: 0 0 0 0.375rem rgba(255, 208, 137, 0.18);
  animation: contact-widget-spark 1.8s ease-in-out infinite;
}

.contact-widget__toggle-icons {
  position: relative;
  width: 2rem;
  height: 2rem;
  z-index: 1;
}

.contact-widget__toggle-icon {
  position: absolute;
  inset: 0;
  width: 2rem;
  height: 2rem;
  color: #131313;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.contact-widget__toggle-icon--close {
  opacity: 0;
  transform: scale(0.65) rotate(-35deg);
}

.contact-widget.is-open .contact-widget__toggle {
  transform: translateY(-0.125rem) scale(0.96);
  box-shadow: 0 0.875rem 2rem rgba(0, 0, 0, 0.28);
}

.contact-widget.is-open .contact-widget__toggle-icon--default {
  opacity: 0;
  transform: scale(0.65) rotate(35deg);
}

.contact-widget.is-open .contact-widget__toggle-icon--close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.contact-widget__sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes contact-widget-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }

  70% {
    opacity: 0;
    transform: scale(1.08);
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes contact-widget-spark {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-0.25rem) scale(1.12);
  }
}

@media (hover: hover) and (pointer: fine) {
  .contact-widget__toggle:hover {
    transform: translateY(-0.1875rem) scale(1.02);
    box-shadow: 0 1.5rem 2.75rem rgba(249, 145, 0, 0.38);
    filter: brightness(1.02);
  }

  .contact-widget__link:hover {
    transform: translateY(-0.125rem);
  }

  .contact-widget__link--telegram:hover {
    box-shadow: 0 1.25rem 2.25rem rgba(249, 145, 0, 0.28);
  }

  .contact-widget__link--email:hover {
    border-color: rgba(255, 183, 51, 0.28);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.16);
  }
}

@media (max-width: 48rem) {
  .contact-widget {
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
  }

  .contact-widget__menu {
    width: min(18.5rem, calc(100vw - 1.5rem));
    padding: 1rem;
    border-radius: 1.375rem;
  }

  .contact-widget__title {
    font-size: 1rem;
  }

  .contact-widget__toggle {
    width: 4.125rem;
    height: 4.125rem;
    border-radius: 1.375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-widget__menu,
  .contact-widget__link,
  .contact-widget__toggle,
  .contact-widget__toggle-icon {
    transition: none;
  }

  .contact-widget__toggle::before,
  .contact-widget__spark {
    animation: none;
  }
}
