* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #fff;
}

body.is-preloading {
  overflow: hidden;
  background: #fff;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  background: #fff;
  color: #111;
  opacity: 1;
  visibility: visible;

  transition:
    opacity 0.7s ease,
    visibility 0.7s ease;
}

body.is-loaded .site-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  width: min(280px, 64vw);
}

.site-loader__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 18px);

  font-size: clamp(32px, 7vw, 64px);
  font-weight: 700;
  line-height: 1;
}

.site-loader__logo span {
  display: inline-block;
  animation: loaderLetter 1.4s ease-in-out infinite;
}

.site-loader__logo span:nth-child(2) {
  animation-delay: 0.08s;
}

.site-loader__logo span:nth-child(3) {
  animation-delay: 0.16s;
}

.site-loader__logo span:nth-child(4) {
  animation-delay: 0.24s;
}

.site-loader__logo span:nth-child(5) {
  animation-delay: 0.32s;
}

.site-loader__logo span:nth-child(6) {
  animation-delay: 0.4s;
}

.site-loader__line {
  position: relative;
  width: min(220px, 58vw);
  height: 2px;
  overflow: hidden;

  background: #e8e8e8;
}

.site-loader__line span {
  position: absolute;
  inset: 0;
  display: block;

  background: #111;
  transform: scaleX(0);
  transform-origin: left center;
  animation: loaderLine 3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.is-loaded .hero {
  animation: pageReveal 0.8s ease both;
}

@keyframes loaderLetter {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }

  45% {
    opacity: 1;
    transform: translateY(-8px);
  }
}

@keyframes loaderLine {
  0% {
    transform: scaleX(0);
  }

  72% {
    transform: scaleX(0.82);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes pageReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* ================= HERO ================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;

  background: #111;
}

/* Фоновое видео */

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  pointer-events: none;
}

.info-section,
.cta-section,
.gallery-marquee,
.about-mission,
.social-rain,
.site-footer {
  content-visibility: auto;
}

.info-section {
  contain-intrinsic-size: 900px;
}

.cta-section {
  contain-intrinsic-size: 420px;
}

.gallery-marquee {
  contain-intrinsic-size: 340px;
}

.about-mission {
  contain-intrinsic-size: 900px;
}

.social-rain {
  contain-intrinsic-size: 780px;
}

.site-footer {
  contain-intrinsic-size: 420px;
}

/* Затемнение поверх видео */

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.22),
      rgba(0, 0, 0, 0.58)
    ),
    rgba(0, 0, 0, 0.28);
}

/* ================= HEADER ================= */

.header {
  position: relative;
  z-index: 10;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 27px 26px 0;
}

.header__nav {
  display: flex;
  align-items: center;

  height: 52px;
  padding: 0 18px;

  background: rgba(42, 42, 42, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 30px rgba(0, 0, 0, 0.25);
}

.header__link {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
  padding: 0 18px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;

  color: rgba(255, 255, 255, 0.94);

  transition: opacity 0.25s ease;
}

.header__link:hover {
  opacity: 0.65;
}

.header__button {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 52px;
  padding: 0 34px;

  background: #fff;
  color: #202020;

  border-radius: 999px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);

  transition: transform 0.25s ease, opacity 0.25s ease;
  border: 0;
  cursor: pointer;
}

.header__button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* ================= BURGER ================= */

.menu-toggle {
  display: none;
}

.burger {
  display: none;
}

/* ================= LOGO ================= */

.hero__logo {
  position: absolute;
  z-index: 12;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  width: max-content;

  font-size: 44px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.08em;

  color: #fff;

  pointer-events: none;
}

/* ================= CONTENT ================= */

.hero__content {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);

  width: 90%;
  max-width: 850px;

  text-align: center;
}

.hero__title {
  margin-bottom: 14px;

  font-size: clamp(40px, 4.1vw, 64px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.055em;

  color: #fff;
}

.hero__text {
  max-width: 760px;
  margin: 0 auto;

  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.045em;

  color: rgba(255, 255, 255, 0.95);
}

/* ================= CATEGORIES ================= */

.hero__categories {
  position: absolute;
  z-index: 5;
  left: 26px;
  bottom: 31px;

  display: flex;
  align-items: center;
  gap: 12px;
}

.category {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 118px;
  height: 50px;
  padding: 0 25px;

  background: rgba(42, 42, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;

  color: rgba(255, 255, 255, 0.94);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 26px rgba(0, 0, 0, 0.28);

  transition: transform 0.25s ease, opacity 0.25s ease;
}

.category:hover {
  transform: translateY(-2px);
  opacity: 0.86;
}

.category--wide {
  min-width: 165px;
}

/* ================= TRIAL CARD ================= */

.trial-card {
  position: absolute;
  z-index: 5;
  right: 25px;
  bottom: 31px;

  display: flex;
  align-items: center;

  width: 255px;
  height: 86px;
  padding: 9px 58px 9px 10px;

  background: rgba(39, 39, 39, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 42px rgba(0, 0, 0, 0.35);

  transition: transform 0.25s ease, opacity 0.25s ease;
}

.trial-card:hover {
  transform: translateY(-3px);
  opacity: 0.94;
}

.trial-card__image {
  flex: 0 0 68px;
  height: 68px;

  background-image: url("image/logo.jpg");
  background-size: cover;
  background-position: center;

  border-radius: 50%;
}

.trial-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  margin-left: 12px;
}

.trial-card__label {
  margin-bottom: 4px;

  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;

  color: rgba(255, 255, 255, 0.55);
}

.trial-card__title {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.045em;

  color: #fff;
}

.trial-card__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  background: #fff;
  color: #151515;

  border-radius: 50%;
}

.arrow-icon {
  display: block;
  width: 100%;
  height: 100%;
}

.arrow-icon--trial {
  width: 20px;
  height: 20px;
}

/* ================= TABLET ================= */

@media (max-width: 1024px) {
  .header {
    padding: 22px 20px 0;
  }

  .hero__logo {
    top: 24px;
    gap: 14px;
    font-size: 38px;
  }

  .hero__content {
    top: 47%;
  }

  .hero__categories {
    left: 20px;
    right: 20px;
    bottom: 140px;

    flex-wrap: wrap;
  }

  .trial-card {
    right: 20px;
    bottom: 24px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }

  .hero__video {
    object-position: center;
  }

  .header {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 12px 0;
  }

  .burger {
    position: relative;
    z-index: 16;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    width: 46px;
    height: 46px;

    background: rgba(42, 42, 42, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 8px 26px rgba(0, 0, 0, 0.28);

    cursor: pointer;
  }

  .burger span {
    display: block;

    width: 18px;
    height: 2px;

    background: #fff;
    border-radius: 99px;

    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .hero__logo {
    position: absolute;
    z-index: 15;

    top: 23px;
    left: 50%;
    transform: translateX(-50%);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: max-content;

    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.07em;

    pointer-events: none;
  }

  .header__button {
    position: relative;
    z-index: 16;

    width: auto;
    height: 46px;
    padding: 0 14px;

    background: #fff;
    color: #202020;

    border-radius: 999px;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: -0.02em;
    white-space: nowrap;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  }

  .header__nav {
    position: absolute;
    z-index: 14;
    top: 68px;
    left: 12px;
    right: 12px;

    display: flex;
    flex-direction: column;
    align-items: stretch;

    height: auto;
    padding: 10px;

    background: rgba(31, 31, 31, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 12px 36px rgba(0, 0, 0, 0.32);

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .header__link {
    width: 100%;
    height: 46px;

    justify-content: center;
    padding: 0 14px;

    font-size: 12px;

    border-radius: 999px;
  }

  .header__link:hover {
    background: rgba(255, 255, 255, 0.08);
    opacity: 1;
  }

  .menu-toggle:checked ~ .header__nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-toggle:checked + .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle:checked + .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__content {
    top: 43%;
    width: calc(100% - 32px);
  }

  .hero__title {
    margin-bottom: 12px;
    font-size: 36px;
  }

  .hero__text {
    font-size: 15px;
    line-height: 1.25;
  }

  .hero__categories {
    display: none;
  }

  .trial-card {
    left: 14px;
    right: 14px;
    bottom: 22px;

    width: auto;
    height: 76px;
    padding: 8px 54px 8px 9px;

    border-radius: 999px;
  }

  .trial-card__image {
    flex: 0 0 60px;
    height: 60px;
    border-radius: 50%;
  }

  .trial-card__content {
    margin-left: 11px;
  }

  .trial-card__label {
    font-size: 10px;
  }

  .trial-card__title {
    font-size: 14px;
  }

  .trial-card__arrow {
    right: 9px;

    width: 42px;
    height: 42px;

    font-size: 19px;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 430px) {
  .header {
    padding: 12px 12px 0;
  }

  .burger {
    width: 44px;
    height: 44px;
  }

  .hero__logo {
    top: 24px;
    gap: 5px;

    font-size: 19px;
    letter-spacing: 0.06em;
  }

  .header__button {
    height: 44px;
    padding: 0 11px;

    font-size: 8px;
  }

  .header__nav {
    top: 64px;
    left: 12px;
    right: 12px;
  }

  .hero__content {
    top: 41%;
  }

  .hero__title {
    font-size: 31px;
  }

  .hero__text {
    font-size: 14px;
  }

  .trial-card {
    left: 12px;
    right: 12px;
    bottom: 18px;

    height: 72px;
    padding: 7px 52px 7px 8px;
  }

  .trial-card__image {
    flex-basis: 58px;
    height: 58px;
  }

  .trial-card__label {
    font-size: 9px;
  }

  .trial-card__title {
    font-size: 13px;
  }

  .trial-card__arrow {
    width: 40px;
    height: 40px;

    font-size: 18px;
  }
}

/* ================= TRIAL LESSON PAGE ================= */

.trial-page-body {
  min-height: 100vh;
  background: #f4f4f4;
  color: #111;
}

.trial-page {
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 48px;
}

.trial-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
}

.trial-page__brand {
  color: #111;
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
}

.trial-page__back {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6d6d6;
  border-radius: 8px;
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.trial-page__hero {
  display: grid;
  gap: 12px;
  padding: 42px 0 28px;
}

.trial-page__title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
}

.trial-page__text {
  max-width: 680px;
  margin: 0;
  color: #4a4a4a;
  font-size: 17px;
  line-height: 1.6;
}

.trial-page__panel {
  overflow: hidden;
  border: 1px solid #e2e2e2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
}

@media (max-width: 700px) {
  .trial-page {
    width: min(100% - 24px, 1120px);
    padding-top: 12px;
  }

  .trial-page__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .trial-page__hero {
    padding: 26px 0 18px;
  }

  .trial-page__title {
    font-size: 38px;
  }

  .trial-page__text {
    font-size: 15px;
  }
}

/* ================= TRIAL LESSON PLATFORM ================= */

.trial-platform {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.trial-platform.is-open {
  opacity: 1;
  pointer-events: auto;
}

.trial-platform__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.trial-platform__dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  background: #fff;
  color: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.trial-platform.is-open .trial-platform__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.trial-platform__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #e7e7e7;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.trial-platform__eyebrow {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
  color: #777;
}

.trial-platform__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
}

.trial-platform__close {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.trial-platform__progress {
  height: 4px;
  background: #ededed;
}

.trial-platform__progress span {
  display: block;
  width: 0;
  height: 100%;
  background: #111;
  transition: width 0.28s ease;
}

.trial-platform__tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 16px 20px 0;
}

.trial-platform__tab {
  min-height: 48px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  background: #fafafa;
  color: #111;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.trial-platform__tab.is-active {
  background: #111;
  color: #fff;
}

.trial-platform__body {
  padding: 18px 20px 22px;
}

.trial-lesson {
  display: grid;
  gap: 18px;
}

.trial-lesson__video {
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  aspect-ratio: 16 / 9;
}

.trial-lesson__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.trial-lesson__content,
.trial-game {
  display: grid;
  gap: 14px;
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  background: #fbfbfb;
  padding: 18px;
}

.trial-lesson__meta {
  font-size: 13px;
  font-weight: 800;
  color: #666;
}

.trial-lesson__heading,
.trial-game__title {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.trial-lesson__text,
.trial-game__text {
  margin: 0;
  max-width: 760px;
  color: #444;
  font-size: 16px;
  line-height: 1.55;
}

.trial-phrases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.trial-phrase {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  padding: 10px 12px;
}

.trial-phrase strong {
  font-size: 18px;
}

.trial-phrase span {
  color: #555;
  font-size: 14px;
  text-align: right;
}

.trial-platform__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #fff;
  text-decoration: none;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.trial-button--ghost {
  border: 1px solid #d5d5d5;
  background: #fff;
  color: #111;
}

.trial-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.trial-game__count {
  font-size: 13px;
  font-weight: 800;
  color: #666;
}

.trial-game__options,
.trial-game__tokens,
.trial-game__answer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trial-option,
.trial-token,
.trial-answer-token {
  min-height: 42px;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: #fff;
  color: #111;
  padding: 9px 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.trial-option.is-selected,
.trial-token.is-used {
  background: #111;
  color: #fff;
  border-color: #111;
}

.trial-token.is-used {
  opacity: 0.34;
}

.trial-game__answer {
  min-height: 54px;
  align-items: center;
  border: 1px dashed #bfbfbf;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.trial-answer-token {
  background: #111;
  color: #fff;
  border-color: #111;
}

.trial-game__feedback {
  min-height: 22px;
  font-size: 14px;
  font-weight: 800;
  color: #555;
}

.trial-game__feedback.is-correct {
  color: #207a3a;
}

.trial-game__feedback.is-wrong {
  color: #b12c2c;
}

.trial-complete {
  display: grid;
  gap: 14px;
  border: 1px solid #111;
  border-radius: 8px;
  background: #111;
  color: #fff;
  padding: 20px;
}

.trial-complete h2,
.trial-complete h4 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.trial-complete p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.trial-complete .trial-button--ghost {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
}

@media (max-width: 700px) {
  .trial-platform {
    padding: 0;
  }

  .trial-platform__dialog {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }

  .trial-platform__header,
  .trial-platform__body {
    padding-left: 14px;
    padding-right: 14px;
  }

  .trial-platform__tabs {
    padding-left: 14px;
    padding-right: 14px;
  }

  .trial-platform__title {
    font-size: 21px;
  }

  .trial-lesson__heading,
  .trial-game__title,
  .trial-complete h2,
  .trial-complete h4 {
    font-size: 23px;
  }

  .trial-phrases {
    grid-template-columns: 1fr;
  }

  .trial-phrase {
    align-items: flex-start;
    flex-direction: column;
  }

  .trial-phrase span {
    text-align: left;
  }
}

/* ================= ENROLL MODAL ================= */

.enroll-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.enroll-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.enroll-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.54);
}

.enroll-modal__dialog {
  position: relative;
  width: min(520px, 100%);
  border-radius: 16px;
  background: #fff;
  color: #161616;
  padding: 22px;
  transform: translateY(24px) scale(0.98);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.enroll-modal.is-open .enroll-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.enroll-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 8px;
  background: #f0f0f0;
  color: #202020;
  cursor: pointer;
}

.enroll-modal__title {
  margin-bottom: 8px;
  font-size: 26px;
  line-height: 1.1;
}

.enroll-modal__subtitle {
  margin-bottom: 16px;
  color: #555;
}

.enroll-form {
  display: grid;
  gap: 12px;
}

.enroll-form__label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.enroll-form__input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  font-size: 15px;
  color: #111;
}

.enroll-form__status {
  min-height: 18px;
  font-size: 13px;
  color: #2f7a45;
}

.enroll-form__status.is-error {
  color: #bb2f2f;
}

.enroll-form__submit {
  height: 48px;
  border: 0;
  border-radius: 10px;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.enroll-form__submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (max-width: 640px) {
  .enroll-modal__dialog {
    border-radius: 14px;
    padding: 20px 16px;
  }

  .enroll-modal__title {
    padding-right: 34px;
    font-size: 22px;
  }
}

/* ================= INFO CARDS SECTION ================= */

.info-section {
  width: 100%;
  padding: 92px 26px;
  background: #f4f4f2;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;

  width: 100%;
  margin: 0 auto;
}

.info-card {
  position: relative;
  display: block;

  height: 480px;
  overflow: hidden;

  border-radius: 32px;

  background: #222;
  color: #fff;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-radius 0.35s ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.16);
  border-radius: 38px;
}

.info-card__image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1);
  transition: transform 0.55s ease;
}

.info-card:hover .info-card__image {
  transform: scale(1.08);
}

.info-card.is-revealed .info-card__image {
  transform: scale(1.06);
}

.info-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(0, 0, 0, 0.34) 42%,
      rgba(0, 0, 0, 0.68) 100%
    );

  transition: opacity 0.58s ease;
}

.info-card__overlay::after {
  content: "";
  position: absolute;
  inset: -60%;
  pointer-events: none;
  opacity: 0;

  background: linear-gradient(
    315deg,
    rgba(255, 255, 255, 0) 36%,
    rgba(255, 255, 255, 0.74) 50%,
    rgba(255, 255, 255, 0) 66%
  );

  transform: translate3d(42%, 42%, 0) rotate(0.001deg);
  transition:
    transform 0.82s cubic-bezier(0.2, 0.72, 0.2, 1),
    opacity 0.36s ease;
}

.info-card:hover .info-card__overlay,
.info-card.is-revealed .info-card__overlay {
  opacity: 0.02;
}

.info-card:hover .info-card__overlay::after,
.info-card.is-revealed .info-card__overlay::after {
  opacity: 1;
  transform: translate3d(-44%, -44%, 0) rotate(0.001deg);
}

.info-card__arrow {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  background: #fff;
  color: #171717;

  border-radius: 50%;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    color 0.35s ease;
}

.arrow-icon--info {
  width: 22px;
  height: 22px;
  transition: filter 0.35s ease;
}

.info-card:hover .info-card__arrow {
  transform: scale(1.08);
  background: #171717;
  color: #fff;
}

.info-card.is-revealed .info-card__arrow {
  transform: scale(1.06);
  background: #171717;
  color: #fff;
}

.info-card:hover .arrow-icon--info {
  filter: invert(1);
}

.info-card.is-revealed .arrow-icon--info {
  filter: invert(1);
}

.info-card__content {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 25px;

  transform: translateY(0);
  transition: transform 0.35s ease;
}

.info-card:hover .info-card__content {
  transform: translateY(-5px);
}

.info-card.is-revealed .info-card__content {
  transform: translateY(-4px);
}

.info-card__label {
  display: block;
  margin-bottom: 8px;

  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;

  color: rgba(255, 255, 255, 0.62);
}

.info-card__title {
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;

  color: #fff;
}

/* ================= INFO CARDS TABLET ================= */

@media (max-width: 1180px) {
  .info-section {
    padding: 76px 20px;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .info-card {
    height: 430px;
    border-radius: 30px;
  }

  .info-card__title {
    font-size: 32px;
  }
}

/* ================= INFO CARDS MOBILE ================= */

@media (max-width: 640px) {
  .info-section {
    padding: 56px 12px;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .info-card {
    height: 340px;
    border-radius: 28px;
  }

  .info-card:hover {
    transform: translateY(-4px);
    border-radius: 32px;
  }

  .info-card__arrow {
    top: 12px;
    right: 12px;

    width: 48px;
    height: 48px;

    font-size: 20px;
  }

  .info-card__content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .info-card__label {
    margin-bottom: 7px;
    font-size: 11px;
  }

  .info-card__title {
    font-size: 32px;
  }

  .info-card--teachers .info-card__image {
    object-position: center 24%;
  }
}

/* ================= SMALL MOBILE ================= */

@media (max-width: 430px) {
  .info-section {
    padding: 48px 10px;
  }

  .info-card {
    height: 315px;
    border-radius: 26px;
  }

  .info-card__arrow {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .info-card__content {
    left: 20px;
    right: 20px;
    bottom: 26px;
  }

  .info-card__title {
    font-size: 30px;
  }

  .info-card--teachers .info-card__image {
    object-position: center 30%;
  }
}

/* ================= CTA SECTION ================= */

.cta-section {
  width: 100%;
  min-height: 520px;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;

  padding: 100px 32px;

  background: #f4f4f2;
  color: #202020;
}

.cta-section__left {
  display: flex;
  align-items: center;
}

.cta-section__title {
  max-width: 760px;

  font-size: clamp(44px, 4.2vw, 76px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.06em;

  color: #202020;
}

.cta-section__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 34px;
}

.cta-section__text {
  max-width: 520px;

  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.045em;

  text-align: right;

  color: #202020;
}

.cta-section__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;

  width: 360px;
  height: 100px;
  padding: 0 16px 0 34px;

  background: #1f1f1f;
  color: #fff;

  border-radius: 999px;

  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.035em;

  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}

.cta-section__button:hover {
  transform: translateY(-5px);
  background: #111;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.18);
}

.cta-section__arrow {
  flex: 0 0 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 68px;
  height: 68px;

  background: #fff;
  color: #171717;

  border-radius: 50%;

  transition:
    transform 0.32s ease,
    background 0.32s ease,
    color 0.32s ease;
}

.arrow-icon--cta {
  width: 24px;
  height: 24px;
}

.cta-section__button:hover .cta-section__arrow {
  transform: rotate(45deg) scale(1.05);
}

/* ================= CTA TABLET ================= */

@media (max-width: 1024px) {
  .cta-section {
    min-height: auto;

    grid-template-columns: 1fr;
    gap: 44px;

    padding: 84px 24px;
  }

  .cta-section__title {
    max-width: 850px;
  }

  .cta-section__right {
    align-items: flex-start;
  }

  .cta-section__text {
    max-width: 620px;
    text-align: left;
  }

  .cta-section__button {
    width: 340px;
    height: 88px;
  }

  .cta-section__arrow {
    flex-basis: 60px;
    width: 60px;
    height: 60px;
  }
}

/* ================= CTA MOBILE ================= */

@media (max-width: 640px) {
  .cta-section {
    padding: 64px 14px;
    gap: 30px;

    background: #f4f4f2;
  }

  .cta-section__title {
    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -0.06em;
  }

  .cta-section__text {
    max-width: 100%;

    font-size: 20px;
    line-height: 1.18;
  }

  .cta-section__button {
    width: clamp(150px, calc(100% - 8cm), 230px);
    height: 56px;
    padding: 0 8px 0 14px;
    margin-inline: auto;
    font-size: 11px;
  }

  .cta-section__arrow {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

/* ================= CTA SMALL MOBILE ================= */

@media (max-width: 430px) {
  .cta-section {
    padding: 56px 12px;
  }

  .cta-section__title {
    font-size: 32px;
  }

  .cta-section__text {
    font-size: 18px;
  }

  .cta-section__button {
    width: clamp(142px, calc(100% - 7cm), 210px);
    height: 52px;
    padding-left: 12px;
    margin-inline: auto;
    font-size: 10px;
  }

  .cta-section__arrow {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* ================= GALLERY MARQUEE ================= */

.gallery-marquee {
  width: 100%;
  overflow: hidden;

  padding: 80px 0;

  background: #f4f4f2;
}

.gallery-marquee__track {
  display: flex;
  align-items: center;
  gap: 18px;

  width: max-content;
  transform: translate3d(0, 0, 0);
}

.gallery-marquee__item {
  flex: 0 0 360px;

  height: 255px;
  overflow: hidden;

  border-radius: 30px;

  background: #222;
}

.gallery-marquee__item--wide {
  flex-basis: 520px;
}

.gallery-marquee__item img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1);
  transition: transform 0.45s ease;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-marquee__item:hover img {
  transform: scale(1.07);
}

/* ================= GALLERY TABLET ================= */

@media (max-width: 1024px) {
  .gallery-marquee {
    padding: 70px 0;
  }

  .gallery-marquee__track {
    gap: 16px;
  }

  .gallery-marquee__item {
    flex-basis: 310px;
    height: 220px;
    border-radius: 28px;
  }

  .gallery-marquee__item--wide {
    flex-basis: 450px;
  }
}

/* ================= GALLERY MOBILE ================= */

@media (max-width: 640px) {
  .gallery-marquee {
    padding: 54px 0;
  }

  .gallery-marquee__track {
    gap: 12px;
  }

  .gallery-marquee__item {
    flex-basis: 240px;
    height: 170px;
    border-radius: 24px;
  }

  .gallery-marquee__item--wide {
    flex-basis: 320px;
  }
}

/* ================= GALLERY SMALL MOBILE ================= */

@media (max-width: 430px) {
  .gallery-marquee {
    padding: 46px 0;
  }

  .gallery-marquee__track {
    gap: 11px;
  }

  .gallery-marquee__item {
    flex-basis: 215px;
    height: 155px;
    border-radius: 22px;
  }

  .gallery-marquee__item--wide {
    flex-basis: 295px;
  }
}

/* ================= PROCESS SECTION ================= */

.process-section {
  position: relative;

  width: 100%;
  min-height: 900px;

  padding: 110px 0 130px;

  background: #f4f4f2;
  color: #202020;

  overflow: hidden;
}

.process-section__header {
  width: 100%;
  padding: 0 32px;
  margin-bottom: 105px;

  text-align: center;
}

.process-section__title {
  font-size: clamp(52px, 5vw, 88px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.065em;

  color: #202020;
}

/* TIMELINE */

.process-timeline {
  position: relative;

  width: 100%;
  height: 420px;
}

/* Серая линия */

.process-timeline__base {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 50%;

  height: 7px;

  background: rgba(31, 31, 31, 0.12);
  transform: translateY(-50%);
}

/* Чёрная линия, которая заполняется при скролле */

.process-timeline__progress {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;

  width: 0%;
  height: 7px;

  background: #1f1f1f;
  transform: translateY(-50%);

  transition: width 0.08s linear;
}

/* STEP */

.process-step {
  position: absolute;
  z-index: 4;

  width: 360px;

  opacity: 0.22;
  filter: grayscale(1);
  transform: translateY(12px);

  transition:
    opacity 0.35s ease,
    filter 0.35s ease,
    transform 0.35s ease;
}

.process-step.is-active {
  opacity: 1;
  filter: grayscale(0);
  transform: translateY(0);
}

.process-step__line {
  position: absolute;

  width: 1.5px;
  height: 260px;

  background: rgba(31, 31, 31, 0.35);
}

.process-step.is-active .process-step__line {
  background: #1f1f1f;
}

.process-step__dot {
  position: absolute;

  width: 18px;
  height: 18px;

  background: rgba(31, 31, 31, 0.35);
  border-radius: 50%;

  transition:
    background 0.35s ease,
    transform 0.35s ease;
}

.process-step.is-active .process-step__dot {
  background: #1f1f1f;
  transform: scale(1.08);
}

.process-step__content h3 {
  margin-bottom: 18px;

  font-size: 43px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;

  color: #202020;
}

.process-step__content p {
  max-width: 330px;

  font-size: 23px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.045em;

  color: rgba(32, 32, 32, 0.55);
}

.process-step.is-active .process-step__content p {
  color: rgba(32, 32, 32, 0.62);
}

/* TOP STEPS */

.process-step--top {
  top: 0;
}

.process-step--top .process-step__line {
  left: 0;
  top: 25px;
}

.process-step--top .process-step__dot {
  left: -8px;
  top: 0;
}

.process-step--top .process-step__content {
  padding-left: 34px;
}

/* BOTTOM STEPS */

.process-step--bottom {
  top: 255px;
}

.process-step--bottom .process-step__line {
  left: 0;
  bottom: 25px;
}

.process-step--bottom .process-step__dot {
  left: -8px;
  bottom: 0;
}

.process-step--bottom .process-step__content {
  padding-left: 34px;
}

/* POSITIONS */

.process-step--one {
  left: 32px;
}

.process-step--two {
  left: 22%;
}

.process-step--three {
  left: 43%;
}

.process-step--four {
  left: 61%;
}

.process-step--five {
  right: 32px;
}

/* ================= PROCESS TABLET ================= */

@media (max-width: 1180px) {
  .process-section {
    min-height: 840px;
    padding: 96px 0 110px;
  }

  .process-section__header {
    margin-bottom: 90px;
  }

  .process-timeline {
    height: 430px;
  }

  .process-step {
    width: 310px;
  }

  .process-step__content h3 {
    font-size: 35px;
  }

  .process-step__content p {
    font-size: 19px;
  }

  .process-step--one {
    left: 24px;
  }

  .process-step--two {
    left: 18%;
  }

  .process-step--three {
    left: 39%;
  }

  .process-step--four {
    left: 58%;
  }

  .process-step--five {
    right: 24px;
  }
}

/* ================= PROCESS MOBILE ================= */

@media (max-width: 768px) {
  .process-section {
    min-height: auto;

    padding: 72px 18px 76px;

    background: #f4f4f2;
  }

  .process-section__header {
    padding: 0;
    margin-bottom: 58px;

    text-align: left;
  }

  .process-section__title {
    font-size: 42px;
    line-height: 1.08;
  }

  .process-timeline {
    width: 100%;
    height: auto;

    display: flex;
    flex-direction: column;
    gap: 56px;

    padding-left: 26px;
  }

  .process-timeline__base {
    left: 0;
    right: auto;
    top: 0;
    bottom: 0;

    width: 5px;
    height: 100%;

    transform: none;

    background: rgba(31, 31, 31, 0.12);
  }

  .process-timeline__progress {
    left: 0;
    top: 0;

    width: 5px;
    height: 0%;

    transform: none;

    transition: height 0.08s linear;
  }

  .process-step {
    position: relative;
    left: auto;
    right: auto;
    top: auto;

    width: 100%;

    opacity: 0.22;
    transform: translateX(12px);
  }

  .process-step.is-active {
    transform: translateX(0);
  }

  .process-step--top,
  .process-step--bottom {
    top: auto;
  }

  .process-step__line {
    display: none;
  }

  .process-step__dot {
    left: -34px !important;
    top: 6px !important;
    bottom: auto !important;

    width: 16px;
    height: 16px;
  }

  .process-step__content,
  .process-step--top .process-step__content,
  .process-step--bottom .process-step__content {
    padding-left: 0;
  }

  .process-step__content h3 {
    margin-bottom: 12px;

    font-size: 31px;
    line-height: 1;
  }

  .process-step__content p {
    max-width: 100%;

    font-size: 18px;
    line-height: 1.22;
  }
}

/* ================= PROCESS SMALL MOBILE ================= */

@media (max-width: 430px) {
  .process-section {
    padding: 62px 14px 66px;
  }

  .process-section__title {
    font-size: 34px;
  }

  .process-timeline {
    gap: 48px;
    padding-left: 24px;
  }

  .process-step__dot {
    left: -32px !important;
    width: 15px;
    height: 15px;
  }

  .process-step__content h3 {
    font-size: 28px;
  }

  .process-step__content p {
    font-size: 16px;
  }
}

/* ================= PIN PROCESS SECTION ================= */

.pin-process {
  position: relative;

  width: 100%;
  height: 450vh;

  background: #f4f4f2;
  color: #202020;
}

.pin-process__sticky {
  position: sticky;
  top: 0;

  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  overflow: hidden;

  background: #f4f4f2;
}

/* HEADER */

.pin-process__header {
  width: 100%;
  padding: 0 32px;
  margin-bottom: 86px;

  text-align: center;
}

.pin-process__title {
  font-size: clamp(52px, 5vw, 88px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.065em;

  color: #202020;
}

/* TIMELINE */

.pin-process__timeline {
  position: relative;

  width: 100%;
  height: 430px;
}

/* серая линия */
.pin-process__line-base {
  position: absolute;
  z-index: 1;

  left: 0;
  right: 0;
  top: 50%;

  height: 7px;

  background: rgba(31, 31, 31, 0.12);
  transform: translateY(-50%);
}

/* черная линия */
.pin-process__line-progress {
  position: absolute;
  z-index: 2;

  left: 0;
  top: 50%;

  width: 0%;
  height: 7px;

  background: #1f1f1f;
  transform: translateY(-50%);
}

/* STEP */

.pin-step {
  position: absolute;
  z-index: 4;

  width: 360px;

  opacity: 0.18;
  transform: translateY(10px);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}

.pin-step.is-active {
  opacity: 1;
  transform: translateY(0);
}

.pin-step__dot {
  position: absolute;
  z-index: 5;

  width: 18px;
  height: 18px;

  background: rgba(31, 31, 31, 0.35);
  border-radius: 50%;

  transition:
    background 0.35s ease,
    transform 0.35s ease,
    left 0.35s ease,
    top 0.35s ease;
  will-change: transform, left, top;
}

.pin-step.is-active .pin-step__dot {
  background: #1f1f1f;
  transform: translateZ(0) scale(1.08);
}

.pin-step__line {
  position: absolute;
  z-index: 3;

  width: 1.5px;

  background: rgba(31, 31, 31, 0.28);

  transition: background 0.35s ease;
}

.pin-step.is-active .pin-step__line {
  background: #1f1f1f;
}

.pin-step__content h3 {
  margin-bottom: 18px;

  font-size: 43px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.06em;

  color: #202020;
}

.pin-step__content p {
  max-width: 330px;

  font-size: 23px;
  line-height: 1.18;
  font-weight: 400;
  letter-spacing: -0.045em;

  color: rgba(32, 32, 32, 0.55);
}

/* TOP STEPS */

.pin-step--top {
  top: 0;
}

.pin-step--top .pin-step__dot {
  left: -9px;
  top: 0;
}

.pin-step--top .pin-step__line {
  left: 0;
  top: 25px;

  height: 188px;
}

.pin-step--top .pin-step__content {
  padding-left: 34px;
}

/* BOTTOM STEPS */

.pin-step--bottom {
  top: 255px;
}

.pin-step--bottom .pin-step__dot {
  left: -9px;
  top: 168px;
}

.pin-step--bottom .pin-step__line {
  left: 0;
  top: -40px;

  height: 208px;
}

.pin-step--bottom .pin-step__content {
  padding-left: 34px;
}

/* POSITIONS */

.pin-step--one {
  left: 32px;
}

.pin-step--two {
  left: 22%;
}

.pin-step--three {
  left: 43%;
}

.pin-step--four {
  left: 61%;
}

.pin-step--five {
  right: 32px;
}

/* TABLET */

@media (max-width: 1180px) {
  .pin-step {
    width: 310px;
  }

  .pin-step__content h3 {
    font-size: 35px;
  }

  .pin-step__content p {
    font-size: 19px;
  }

  .pin-step--one {
    left: 24px;
  }

  .pin-step--two {
    left: 18%;
  }

  .pin-step--three {
    left: 39%;
  }

  .pin-step--four {
    left: 58%;
  }

  .pin-step--five {
    right: 24px;
  }
}

/* MOBILE */

@media (max-width: 768px) {
  .pin-process {
    height: 450vh;
  }

  .pin-process__sticky {
    height: 100svh;

    justify-content: center;

    padding: 44px 18px;

    background: #f4f4f2;
  }

  .pin-process__header {
    padding: 0;
    margin-bottom: 38px;

    text-align: left;
  }

  .pin-process__title {
    font-size: 40px;
    line-height: 1.08;
  }

  .pin-process__timeline {
    width: 100%;
    height: calc(100svh - 210px);

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding-left: 34px;
  }

  .pin-process__line-base {
    left: 7px;
    right: auto;
    top: 0;
    bottom: 0;

    width: 5px;
    height: 100%;

    transform: none;
  }

  .pin-process__line-progress {
    left: 7px;
    top: 0;

    width: 5px;
    height: 0%;

    transform: none;
  }

  .pin-step {
    position: relative;

    left: auto;
    right: auto;
    top: auto;

    width: 100%;

    opacity: 0.18;
    transform: translateX(12px);
  }

  .pin-step.is-active {
    transform: translateX(0);
  }

  .pin-step--top,
  .pin-step--bottom {
    top: auto;
  }

  .pin-step__line {
    display: none;
  }

  .pin-step__dot {
    left: -33px !important;
    top: 6px !important;

    width: 16px;
    height: 16px;
  }

  .pin-step__content,
  .pin-step--top .pin-step__content,
  .pin-step--bottom .pin-step__content {
    padding-left: 0;
  }

  .pin-step__content h3 {
    margin-bottom: 9px;

    font-size: 27px;
    line-height: 1;
  }

  .pin-step__content p {
    max-width: 100%;

    font-size: 15px;
    line-height: 1.2;
  }
}

/* SMALL MOBILE */

@media (max-width: 430px) {
  .pin-process__sticky {
    padding: 38px 14px;
  }

  .pin-process__title {
    font-size: 33px;
  }

  .pin-process__timeline {
    height: calc(100svh - 180px);
    padding-left: 32px;
  }

  .pin-process__line-base,
  .pin-process__line-progress {
    left: 7px;
  }

  .pin-step__dot {
    left: -32px !important;
    top: 5px !important;

    width: 15px;
    height: 15px;
  }

  .pin-step__content h3 {
    font-size: 24px;
  }

  .pin-step__content p {
    font-size: 13px;
  }
}

/* ================= ABOUT MISSION SECTION ================= */

.about-mission {
  width: 100%;

  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 26px;
  align-items: center;

  padding: 92px 26px;

  background: #f4f4f2;
  color: #202020;
}

.about-mission__image-wrap {
  position: relative;

  width: 100%;
  height: 500px;
  overflow: hidden;

  border-radius: 30px;

  background: #d8d8d8;
}

.about-mission__label {
  position: absolute;
  z-index: 2;
  left: 27px;
  top: 27px;

  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;

  color: rgba(32, 32, 32, 0.42);
}

.about-mission__image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.about-mission__image-wrap:hover .about-mission__image {
  transform: scale(1.04);
}

.about-mission__content {
  min-height: 500px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-mission__title {
  max-width: 810px;
  margin-left: auto;
  margin-bottom: 36px;

  font-size: clamp(34px, 3.1vw, 54px);
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -0.06em;

  text-align: right;

  color: #202020;
}

.about-mission__text {
  max-width: 470px;
  margin-bottom: 28px;
}

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

.about-mission__text p {
  font-size: clamp(18px, 1.32vw, 24px);
  line-height: 1.22;
  font-weight: 400;
  letter-spacing: -0.045em;

  color: #202020;
}

.about-mission__text--left {
  margin-left: 0;
  margin-right: auto;

  text-align: left;
}

.about-mission__text--right {
  margin-left: auto;
  margin-right: 0;

  text-align: right;
}

/* ================= ABOUT MISSION TABLET ================= */

@media (max-width: 1024px) {
  .about-mission {
    grid-template-columns: 1fr;
    gap: 34px;

    padding: 76px 20px;
  }

  .about-mission__image-wrap {
    height: 520px;
  }

  .about-mission__content {
    min-height: auto;
  }

  .about-mission__title {
    max-width: 900px;
    margin-left: 0;

    text-align: left;
  }

  .about-mission__text {
    max-width: 620px;
  }

  .about-mission__text--right {
    margin-left: auto;
    text-align: right;
  }
}

/* ================= ABOUT MISSION MOBILE ================= */

@media (max-width: 640px) {
  .about-mission {
    gap: 28px;

    padding: 56px 12px;

    background: #f4f4f2;
  }

  .about-mission__image-wrap {
    height: 420px;
    border-radius: 28px;
  }

  .about-mission__label {
    left: 20px;
    top: 20px;

    font-size: 11px;
  }

  .about-mission__title {
    margin-bottom: 28px;

    font-size: 34px;
    line-height: 1.1;
    text-align: left;
  }

  .about-mission__text {
    max-width: 88%;
    margin-bottom: 24px;
  }

  .about-mission__text p {
    font-size: 18px;
    line-height: 1.22;
  }

  .about-mission__text--left {
    margin-left: 0;
    margin-right: auto;

    text-align: left;
  }

  .about-mission__text--right {
    margin-left: auto;
    margin-right: 0;

    text-align: right;
  }
}

/* ================= ABOUT MISSION SMALL MOBILE ================= */

@media (max-width: 430px) {
  .about-mission {
    padding: 48px 10px;
  }

  .about-mission__image-wrap {
    height: 360px;
    border-radius: 25px;
  }

  .about-mission__title {
    font-size: 30px;
  }

  .about-mission__text {
    max-width: 92%;
  }

  .about-mission__text p {
    font-size: 16px;
  }
}

/* ===== ABOUT MISSION TEXT SIZE FIX ===== */

.about-mission__title {
  max-width: 720px;
  margin-bottom: 30px;

  font-size: clamp(26px, 2.35vw, 40px);
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.about-mission__text p {
  font-size: clamp(15px, 1.05vw, 19px);
  line-height: 1.28;
  letter-spacing: -0.04em;
}

/* TABLET */

@media (max-width: 1024px) {
  .about-mission__title {
    max-width: 720px;
    font-size: 32px;
  }

  .about-mission__text p {
    font-size: 17px;
  }
}

/* MOBILE */

@media (max-width: 640px) {
  .about-mission__title {
    max-width: 100%;
    margin-bottom: 24px;

    font-size: 26px;
    line-height: 1.16;
  }

  .about-mission__text p {
    font-size: 15px;
    line-height: 1.28;
  }
}

/* SMALL MOBILE */

@media (max-width: 430px) {
  .about-mission__title {
    font-size: 24px;
  }

  .about-mission__text p {
    font-size: 14px;
  }
}


/* ================= CURSOR DOTS ================= */

.cursor-dots {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;

  width: 0;
  height: 0;

  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;

  display: block;

  width: 5px;
  height: 5px;

  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(1);
  background: #fff;
  border-radius: 50%;

  will-change: transform, opacity;

  transition: opacity 0.2s ease;
}

.cursor-dots.is-visible .cursor-dot {
  opacity: 1;
}

/* На телефонах отключаем */
@media (hover: none), (pointer: coarse) {
  .cursor-dots {
    display: none;
  }
}

/* ================= SOCIAL RAIN ================= */

.social-rain {
  position: relative;
  min-height: 420vh;
  background: #f4f4f2;
}

.social-rain__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.social-rain__center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  transform: translate(-50%, -50%);
  width: min(900px, calc(100% - 28px));
  text-align: center;
  pointer-events: auto;
}

.social-rain__title {
  margin-bottom: 20px;
  font-size: clamp(34px, 7vw, 112px);
  line-height: 0.95;
  font-weight: 500;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  letter-spacing: 0.015em;
  text-transform: none;
  color: #111;
  -webkit-text-fill-color: #111;
  -webkit-text-stroke: 0;
  text-stroke: 0;
}

.social-rain__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: #fff;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.social-rain__videos {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.social-rain__videos--back {
  z-index: 3;
}

.social-rain__videos--front {
  z-index: 8;
}

.social-rain__card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(112px, 14vw, 228px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 14px;
  background: #000;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.35);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  will-change: transform, opacity;
}

.social-rain__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .social-rain {
    min-height: 440vh;
  }

  .social-rain__title {
    -webkit-text-stroke: 0;
    text-stroke: 0;
  }

  .social-rain__card {
    width: clamp(96px, 22vw, 184px);
    border-radius: 12px;
  }
}

@media (max-width: 640px) {
  .social-rain {
    min-height: 460vh;
  }

  .social-rain__center {
    width: calc(100% - 20px);
  }

  .social-rain__title {
    margin-bottom: 14px;
    font-size: clamp(30px, 10vw, 56px);
    line-height: 0.92;
    -webkit-text-stroke: 0;
    text-stroke: 0;
  }

  .social-rain__cta {
    min-width: 148px;
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
  }

  .social-rain__card {
    width: clamp(86px, 26vw, 128px);
    border-radius: 10px;
  }
}

/* ================= SITE FOOTER ================= */

.site-footer {
  position: relative;

  width: 100%;
  min-height: 100vh;
  overflow: hidden;

  padding: 34px 30px 0;

  background: #1f1f1f;
  color: #fff;
}

.site-footer__top {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.25fr 1.35fr 0.8fr 0.65fr;
  gap: 60px;

  width: 100%;
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__heading {
  display: block;
  margin-bottom: 34px;

  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.34);
}

.site-footer__text,
.site-footer__link {
  margin-bottom: 20px;

  font-size: 23px;
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.045em;

  color: rgba(255, 255, 255, 0.92);
}

.site-footer__link {
  display: inline-flex;

  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.site-footer__link:hover {
  opacity: 0.55;
  transform: translateX(4px);
}

/* CENTER CONTACTS */

.site-footer__center {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;
  align-items: center;

  margin-top: 120px;

  text-align: center;
}

.site-footer__contact {
  display: block;
  margin-bottom: 24px;

  font-size: clamp(34px, 3vw, 52px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.055em;

  color: #fff;

  transition: opacity 0.25s ease;
}

.site-footer__contact:hover {
  opacity: 0.65;
}

.site-footer__contact--email {
  margin-bottom: 72px;

  font-size: clamp(36px, 3.2vw, 56px);
}

.site-footer__slogan {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.045em;

  color: rgba(255, 255, 255, 0.92);
}

/* BIG BRAND */

.site-footer__brand {
  position: absolute;
  z-index: 1;

  left: 0;
  right: 0;
  bottom: -50px;

  display: flex;
  align-items: flex-end;
  justify-content: space-between;

  width: 100%;

  padding: 0 26px;

  font-size: clamp(150px, 22vw, 390px);
  line-height: 0.75;
  font-weight: 800;
  letter-spacing: -0.08em;

  color: #fff;

  pointer-events: none;
  user-select: none;
}

.site-footer__brand span {
  display: block;
}

/* UP BUTTON */

.site-footer__up {
  position: absolute;
  z-index: 5;
  right: 30px;
  bottom: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  background: rgba(255, 255, 255, 0.12);
  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;

  font-size: 28px;
  line-height: 1;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.arrow-icon--up {
  width: 22px;
  height: 22px;
}

.site-footer__up:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

/* ================= FOOTER TABLET ================= */

@media (max-width: 1024px) {
  .site-footer {
    min-height: 900px;
    padding: 30px 22px 0;
  }

  .site-footer__top {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 60px;
  }

  .site-footer__center {
    margin-top: 90px;
  }

  .site-footer__brand {
    bottom: -34px;
    padding: 0 20px;

    font-size: clamp(130px, 24vw, 260px);
  }
}

/* ================= FOOTER MOBILE ================= */

@media (max-width: 640px) {
  .site-footer {
    min-height: 100svh;
    padding: 28px 14px 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer__heading {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .site-footer__text,
  .site-footer__link {
    margin-bottom: 12px;

    font-size: 18px;
    line-height: 1.15;
  }

  .site-footer__center {
    align-items: flex-start;

    margin-top: 54px;

    text-align: left;
  }

  .site-footer__contact {
    margin-bottom: 15px;

    font-size: 30px;
  }

  .site-footer__contact--email {
    margin-bottom: 34px;

    font-size: 28px;
  }

  .site-footer__slogan {
    max-width: 260px;

    font-size: 17px;
    line-height: 1.15;
  }

  .site-footer__brand {
    bottom: -18px;

    justify-content: space-between;

    padding: 0 10px;

    font-size: clamp(58px, 19vw, 110px);
    line-height: 0.8;
    letter-spacing: -0.06em;
  }

  .site-footer__up {
    right: 14px;
    bottom: 18px;

    width: 48px;
    height: 48px;

    font-size: 23px;
  }
}

/* ================= FOOTER SMALL MOBILE ================= */

@media (max-width: 430px) {
  .site-footer {
    padding: 24px 12px 0;
  }

  .site-footer__top {
    gap: 24px;
  }

  .site-footer__text,
  .site-footer__link {
    font-size: 16px;
  }

  .site-footer__center {
    margin-top: 42px;
  }

  .site-footer__contact {
    font-size: 27px;
  }

  .site-footer__contact--email {
    font-size: 24px;
  }

  .site-footer__brand {
    bottom: -10px;

    font-size: clamp(52px, 18vw, 86px);
  }
}

/* ================= FOOTER FIXES ================= */

/* уменьшаем телефон и почту */
.site-footer__contact {
  font-size: clamp(26px, 2.2vw, 38px);
}

.site-footer__contact--email {
  font-size: clamp(28px, 2.4vw, 42px);
}

/* поднимаем бренд TILTAP так, чтобы буквы были полностью видны */
.site-footer__brand {
  bottom: 0;
  line-height: 0.82;
  align-items: flex-end;
}

/* TABLET */
@media (max-width: 1024px) {
  .site-footer__contact {
    font-size: 32px;
  }

  .site-footer__contact--email {
    font-size: 34px;
  }

  .site-footer__brand {
    bottom: 0;
    line-height: 0.82;
  }
}

/* MOBILE */
@media (max-width: 640px) {
  .site-footer__contact {
    font-size: 24px;
  }

  .site-footer__contact--email {
    font-size: 22px;
  }

  .site-footer__brand {
    bottom: 0;
    line-height: 0.86;
    font-size: clamp(56px, 18vw, 96px);
  }
}

/* SMALL MOBILE */
@media (max-width: 430px) {
  .site-footer__contact {
    font-size: 22px;
  }

  .site-footer__contact--email {
    font-size: 20px;
  }

  .site-footer__brand {
    bottom: 0;
    line-height: 0.88;
    font-size: clamp(48px, 17vw, 78px);
  }
}

/* ================= MOBILE FOOTER LAYOUT FIX ================= */

@media (max-width: 640px) {
  .site-footer {
    min-height: 1120px;
    padding-bottom: 130px;
  }

  .site-footer__center {
    position: relative;
    z-index: 3;

    margin-top: 56px;
    margin-bottom: 140px;
  }

  .site-footer__contact {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.05;
  }

  .site-footer__contact--email {
    margin-bottom: 26px;
    font-size: 22px;
    line-height: 1.05;
  }

  .site-footer__slogan {
    max-width: 260px;

    font-size: 16px;
    line-height: 1.2;
  }

  .site-footer__brand {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1;

    padding: 0 10px;

    font-size: clamp(54px, 18vw, 92px);
    line-height: 0.9;
  }

  .site-footer__up {
    z-index: 4;
    bottom: 18px;
  }
}

@media (max-width: 430px) {
  .site-footer {
    min-height: 1040px;
    padding-bottom: 115px;
  }

  .site-footer__center {
    margin-top: 44px;
    margin-bottom: 120px;
  }

  .site-footer__contact {
    font-size: 22px;
  }

  .site-footer__contact--email {
    font-size: 20px;
  }

  .site-footer__slogan {
    font-size: 15px;
  }

  .site-footer__brand {
    bottom: 0;

    padding: 0 8px;

    font-size: clamp(48px, 17vw, 76px);
    line-height: 0.92;
  }
}

/* ================= LEGAL PAGES ================= */

.legal-page {
  min-height: 100vh;
  background: #f4f4f2;
  color: #1f1f1f;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(31, 31, 31, 0.1);
  background: rgba(244, 244, 242, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-logo {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #111;
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.legal-nav a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.8);
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 36px 24px 72px;
}

.legal-main h1 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.legal-main p {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(31, 31, 31, 0.9);
}

.legal-main h2 {
  margin: 28px 0 10px;
  font-size: clamp(23px, 2.4vw, 31px);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.legal-main ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.legal-main li {
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.4;
}

.content-page {
  max-width: 1120px;
}

.content-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.content-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(31, 31, 31, 0.58);
}

.content-grid,
.program-grid,
.contact-grid,
.team-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 34px;
}

.program-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card,
.program-card,
.contact-card {
  border: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
}

.program-card {
  scroll-margin-top: 92px;
}

.program-card span,
.contact-card span {
  display: block;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(31, 31, 31, 0.54);
}

.content-card h2,
.program-card h2,
.contact-card h2 {
  margin-top: 0;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 6px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 800;
}

.teacher-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: stretch;
  margin: 24px 0 34px;
}

.teacher-profile__image {
  overflow: hidden;
  min-height: 520px;
  border-radius: 8px;
  background: #111;
}

.teacher-profile__image img,
.team-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teacher-profile__content {
  border: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}

.team-photo-grid figure {
  overflow: hidden;
  border: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 8px;
  background: #fff;
}

.team-photo-grid img {
  height: 260px;
}

.team-photo-grid figcaption {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(31, 31, 31, 0.76);
}

@media (max-width: 640px) {
  .legal-header {
    padding: 14px 12px;
    gap: 10px;
  }

  .legal-logo {
    font-size: 17px;
  }

  .legal-nav {
    gap: 10px;
  }

  .legal-nav a {
    font-size: 11px;
  }

  .legal-main {
    padding: 28px 12px 56px;
  }

  .legal-main p,
  .legal-main li {
    font-size: 15px;
  }

  .content-grid,
  .program-grid,
  .contact-grid,
  .team-photo-grid,
  .teacher-profile {
    grid-template-columns: 1fr;
  }

  .teacher-profile__image {
    min-height: 360px;
  }

  .content-card,
  .program-card,
  .contact-card,
  .teacher-profile__content {
    padding: 16px;
  }
}
