html {
  box-sizing: border-box
}

*,
::before,
::after {
  box-sizing: inherit
}

body {
  margin: 0;
  padding: 0
}

.hd-bar {
  background: #181C31;
  padding: 6px 0
}

.hd-bar__shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.hd-bar__contact {
  display: flex;
  align-items: center;
  gap: 24px
}

.hd-bar__link {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #0AE0CF;
  text-decoration: none;
  transition: color .15s ease-out
}

.hd-bar__link:focus {
  outline: none;
  border-bottom: 4px solid #0AE0CF
}

.hd-bar__link:hover {
  color: #F6F9FB
}

.hd-bar__trust {
  display: flex;
  align-items: center;
  gap: 6px
}

.hd-bar__badge {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #F6F9FB;
  opacity: .72;
  letter-spacing: 0
}

.hd-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 0;
  background: #0AE0CF;
  display: inline-block
}

.hd-main {
  background: #F6F9FB;
  border-bottom: 3px solid #0AE0CF;
  box-shadow: 0 4px 25px 0 #181c3117
}

.hd-main__shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 40px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  text-decoration: none;
  flex-shrink: 0
}

.brand__img-mount {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #F6F9FB;
  box-shadow: 0 1px 3px 0 #181c310f 0 0 0 2px #181C31;
  flex-shrink: 0
}

.brand__img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block
}

.brand__name {
  font-family: 'Bitter', Georgia, serif;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1;
  color: #181C31;
  letter-spacing: 0
}

.brand:focus {
  outline: none;
  border-bottom: 4px solid #181C31
}

.hd-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end
}

.hd-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px
}

.hd-nav__item {
  display: flex
}

.hd-nav__lnk {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #181C31;
  text-decoration: none;
  padding: 12px;
  border-radius: 3px;
  display: block;
  position: relative;
  transition: color .18s ease-out, background-color .18s ease-out;
  white-space: nowrap
}

.hd-nav__lnk::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 6px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #0AE0CF;
  border-radius: 0;
  transform: scaleX(0);
  transition: transform .15s ease-out;
  transform-origin: left
}

.hd-nav__lnk:hover {
  color: #181C31;
  background-color: #0ae0cf1a
}

.hd-nav__lnk:hover::after {
  transform: scaleX(1)
}

.hd-nav__lnk:focus {
  outline: none;
  border-bottom: 4px solid #0AE0CF
}

.hd-accent {
  display: flex;
  align-items: center;
  padding: 0 0 0 24px;
  flex-shrink: 0
}

.hd-accent__btn {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #181C31;
  background: #0AE0CF;
  border: 2px solid #0AE0CF;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 1px 3px 0 #0ae0cf0f;
  transition: background-color .15s ease-out, border-color .15s ease-out, box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1);
  outline: none
}

.hd-accent__btn:hover {
  background: transparent;
  border-color: #0AE0CF;
  color: #181C31;
  box-shadow: 0 0 0 4px #0ae0cf2e 0 4px 25px 0 #0ae0cf17
}

.hd-accent__btn:focus {
  outline: none;
  border-bottom: 4px solid #181C31
}

@media (max-width: 768px) {
  .hd-bar__contact {
    gap: 12px
  }

  .hd-bar__trust {
    display: none
  }

  .hd-main__shell {
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 12px
  }

  .brand {
    padding: 12px 0
  }

  .hd-nav {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 12px
  }

  .hd-nav__list {
    gap: 0
  }

  .hd-nav__lnk {
    padding: 12px;
    font-size: 14px
  }

  .hd-accent {
    display: none
  }
}

@media (max-width: 375px) {
  .hd-bar__shell {
    padding: 0 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 6px;
    padding-bottom: 6px
  }

  .hd-nav__lnk {
    padding: 12px 6px
  }
}

.ft {
  background: #181C31;
  position: relative;
  overflow: hidden
}

.ft::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0AE0CF 0%, #0ae0cf33 100%)
}

.ft-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 24px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px
}

.ft-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px
}

.ft-brand__lnk {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.ft-brand__img-mount {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #F6F9FB;
  box-shadow: 0 1px 3px 0 #181c310f 0 0 0 2px #0ae0cf66
}

.ft-brand__img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.ft-brand__copy {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb7a;
  margin: 0
}

.ft-brand__lnk:focus {
  outline: none;
  border-bottom: 4px solid #0AE0CF
}

.ft-col {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.ft-col__label {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #0AE0CF;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0
}

.ft-col__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ft-col__lnk {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbb8;
  text-decoration: none;
  display: inline-block;
  transition: color .15s ease-out
}

.ft-col__lnk:hover {
  color: #0AE0CF
}

.ft-col__lnk:focus {
  outline: none;
  border-bottom: 4px solid #0AE0CF
}

.ft-col__addr {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb8f;
  margin: 0;
  font-style: normal
}

.ft-bottom {
  border-top: 1px solid #0ae0cf24;
  padding: 24px
}

.ft-bottom__shell {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.ft-bottom__copy {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb66;
  margin: 0
}

.ft-bottom__policy {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.ft-bottom__plnk {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb7a;
  text-decoration: none;
  transition: color .12s ease-out
}

.ft-bottom__plnk:hover {
  color: #0AE0CF
}

.ft-bottom__plnk:focus {
  outline: none;
  border-bottom: 4px solid #0AE0CF
}

@media (max-width: 768px) {
  .ft-top {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px 24px;
    gap: 24px
  }

  .ft-brand {
    grid-column: 1 / -1;
    align-items: center
  }

  .ft-bottom__shell {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

@media (max-width: 375px) {
  .ft-top {
    grid-template-columns: 1fr;
    padding: 40px 12px 24px
  }

  .ft-brand {
    grid-column: auto;
    align-items: flex-start
  }

  .ft-bottom {
    padding: 24px 12px
  }

  .ft-bottom__policy {
    gap: 12px
  }
}

.ck-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: none
}

.ck-bar[hidden] {
  display: none
}

.ck-toast {
  background: #181C31;
  border-bottom: 3px solid #0AE0CF;
  box-shadow: 0 4px 25px 0 #181c311a;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between
}

.ck-toast__text-mount {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  min-width: 220px
}

.ck-toast__hl {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #F6F9FB;
  margin: 0
}

.ck-toast__desc {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbb8;
  margin: 0
}

.ck-toast__acts {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap
}

.ck-toast__prefs {
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid #0ae0cf24
}

.ck-toast__prefs.open {
  display: flex
}

.ck-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px
}

.ck-toggle-lbl {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbcc
}

.ck-sw {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0
}

.ck-sw__inp {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.ck-sw__track {
  display: block;
  width: 40px;
  height: 22px;
  border-radius: 28px;
  background: #f6f9fb33;
  cursor: pointer;
  transition: background-color .15s ease-out;
  position: relative
}

.ck-sw__track::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 16px;
  background: #F6F9FB;
  transition: transform .15s ease-out
}

.ck-sw__inp:checked+.ck-sw__track {
  background: #0AE0CF
}

.ck-sw__inp:checked+.ck-sw__track::after {
  transform: translateX(18px)
}

.ck-sw__inp:focus+.ck-sw__track {
  outline: none;
  box-shadow: 0 0 0 3px #0ae0cf66
}

.ck-btn {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color .15s ease-out, border-color .15s ease-out, color .15s ease-out;
  white-space: nowrap
}

.ck-btn.accept {
  background: #0AE0CF;
  color: #181C31;
  border-color: #0AE0CF
}

.ck-btn.accept:hover {
  background: transparent;
  color: #0AE0CF;
  border-color: #0AE0CF
}

.ck-btn.accept:focus {
  outline: none;
  border-bottom: 4px solid #181C31
}

.ck-btn.decline {
  background: transparent;
  color: #f6f9fbb8;
  border-color: #f6f9fb3d
}

.ck-btn.decline:hover {
  color: #F6F9FB;
  border-color: #f6f9fb99
}

.ck-btn.decline:focus {
  outline: none;
  border-bottom: 4px solid #0AE0CF
}

.ck-btn.settings {
  background: transparent;
  color: #0AE0CF;
  border-color: transparent;
  padding: 12px 6px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px
}

.ck-btn.settings:hover {
  color: #F6F9FB
}

.ck-btn.settings:focus {
  outline: none;
  border-bottom: 4px solid #0AE0CF
}

.pref-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1100;
  display: none
}

.pref-tab.visible {
  display: block
}

.pref-tab__btn {
  font-family: 'Bitter', Georgia, serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
  color: #181C31;
  background: #0AE0CF;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 12px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  box-shadow: 0 4px 25px 0 #0ae0cf17;
  transition: background-color .15s ease-out
}

.pref-tab__btn:hover {
  background: #F6F9FB
}

.pref-tab__btn:focus {
  outline: none;
  border-bottom: 4px solid #181C31
}

.legal-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
  color: #181C31;
  background: #F6F9FB
}

.legal-container h1 {
  font-size: 54px;
  line-height: 1.1;
  color: #181C31;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 3px solid #0AE0CF
}

.legal-container h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #181C31;
  margin-top: 80px;
  margin-bottom: 24px
}

.legal-container h3 {
  font-size: 28px;
  line-height: 1.55;
  color: #181C31;
  margin-top: 40px;
  margin-bottom: 24px
}

.legal-container h4 {
  font-size: 21px;
  line-height: 1.55;
  color: #181C31;
  margin-top: 40px;
  margin-bottom: 12px
}

.legal-container h5 {
  font-size: 17px;
  line-height: 1.55;
  color: #181C31;
  margin-top: 24px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .08em
}

.legal-container h6 {
  font-size: 14px;
  line-height: 1.55;
  color: #181C31;
  margin-top: 24px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .1em
}

.legal-container p {
  font-size: 17px;
  line-height: 2;
  color: #181C31;
  margin-bottom: 24px;
  max-width: 72ch
}

.legal-container ul {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none
}

.legal-container ol {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style: none;
  counter-reset: policy-counter
}

.legal-container ul li {
  font-size: 17px;
  line-height: 2;
  color: #181C31;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  max-width: 72ch
}

.legal-container ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 3px;
  background: #0AE0CF;
  border-radius: 3px
}

.legal-container ol li {
  font-size: 17px;
  line-height: 2;
  color: #181C31;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  counter-increment: policy-counter;
  max-width: 72ch
}

.legal-container ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 14px;
  line-height: 2;
  color: #0AE0CF;
  font-weight: 700
}

.legal-container ul ul,
.legal-container ol ol,
.legal-container ul ol,
.legal-container ol ul {
  margin-top: 6px;
  margin-bottom: 6px;
  padding-left: 24px
}

.legal-container strong,
.legal-container b {
  font-weight: 700;
  color: #181C31
}

.legal-container em,
.legal-container i {
  font-style: italic;
  color: #181C31
}

.legal-container hr {
  border: none;
  border-top: 1px solid #0ae0cf47;
  margin: 80px 0
}

.legal-container div {
  margin-bottom: 24px
}

@media (max-width: 1366px) {
  .legal-container {
    padding: 80px 40px
  }

  .legal-container h1 {
    font-size: 38px
  }

  .legal-container h2 {
    font-size: 28px
  }
}

@media (max-width: 768px) {
  .legal-container {
    padding: 40px 24px
  }

  .legal-container h1 {
    font-size: 28px;
    margin-bottom: 24px;
    padding-bottom: 12px
  }

  .legal-container h2 {
    font-size: 21px;
    margin-top: 40px;
    margin-bottom: 12px
  }

  .legal-container h3 {
    font-size: 17px;
    margin-top: 24px;
    margin-bottom: 12px
  }

  .legal-container h4 {
    font-size: 17px;
    margin-top: 24px
  }

  .legal-container h5,
  .legal-container h6 {
    font-size: 14px
  }

  .legal-container p,
  .legal-container ul li,
  .legal-container ol li {
    font-size: 14px;
    max-width: 100%
  }

  .legal-container hr {
    margin: 40px 0
  }
}

@media (max-width: 375px) {
  .legal-container {
    padding: 24px 12px
  }

  .legal-container h1 {
    font-size: 21px
  }

  .legal-container h2 {
    font-size: 17px
  }

  .legal-container h3,
  .legal-container h4 {
    font-size: 14px
  }
}

.mcd {
  background: #F6F9FB;
  overflow-x: clip;
  position: relative
}

.mcd .geo-line-tl,
.mcd .geo-line-br {
  position: absolute;
  pointer-events: none;
  z-index: 0
}

.mcd .geo-line-tl {
  top: 0;
  left: 0;
  width: 120px;
  height: 120px
}

.mcd .geo-line-br {
  bottom: 40px;
  right: 0;
  width: 90px;
  height: 90px
}

.mcd .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

.mcd .title-blk {
  padding: 80px 24px 40px;
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1
}

.mcd .title-blk .meta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap
}

.mcd .meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid #0AE0CF;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 14px;
  color: #181C31;
  font-weight: 600;
  box-shadow: 0 1px 3px 0 #0ae0cf0f
}

.mcd .meta-badge svg {
  flex-shrink: 0
}

.mcd .live-counter {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #181C31;
  border-radius: 16px;
  padding: 6px 24px;
  margin-bottom: 24px
}

.mcd .live-counter .count-num {
  font-size: 28px;
  font-weight: 800;
  color: #0AE0CF;
  line-height: 1.1
}

.mcd .live-counter .count-label {
  font-size: 14px;
  color: #F6F9FB;
  line-height: 1.55
}

.mcd .pg-h1 {
  font-size: 54px;
  font-weight: 800;
  color: #181C31;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 24px;
  text-align: center
}

.mcd .pg-h1 .accent-dash {
  color: #0AE0CF;
  margin: 0 6px
}

.mcd .img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 10px 44px 0 #181c311a
}

.mcd .img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block
}

.mcd .img-diag-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #181c318c 0%, transparent 60%);
  border-radius: 16px;
  pointer-events: none
}

.mcd .img-price-chip {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: #0AE0CF;
  color: #181C31;
  font-size: 21px;
  font-weight: 800;
  border-radius: 16px;
  padding: 12px 24px;
  box-shadow: 0 4px 25px 0 #0ae0cf17;
  line-height: 1.1
}

.mcd .img-user-chip {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #f6f9fbeb;
  color: #181C31;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px 0 #181c310f
}

.mcd .diamond-accent {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  background: #0AE0CF;
  transform: rotate(45deg);
  border-radius: 3px;
  pointer-events: none;
  z-index: 2
}

.mcd .copy-btn-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 24px
}

.mcd .copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 2px solid #181C31;
  border-radius: 8px;
  padding: 6px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #181C31;
  cursor: pointer;
  transition: background .18s ease-out, color .15s ease-out, border-color .15s ease-out;
  position: relative;
  outline: none;
  box-shadow: 0 1px 3px 0 #181c310f
}

.mcd .copy-btn:hover {
  background: #181C31;
  color: #0AE0CF;
  border-color: #181C31
}

.mcd .copy-btn:focus-visible {
  box-shadow: 0 0 0 3px #0AE0CF
}

.mcd .detail-body {
  background: #fff;
  padding: 80px 0
}

.mcd .detail-body .pg-wrap {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start
}

.mcd .desc-col .sec-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #0AE0CF;
  margin-bottom: 12px;
  display: block
}

.mcd .desc-col .desc-text {
  font-size: 17px;
  color: #181C31;
  line-height: 1.55
}

.mcd .desc-col .desc-text p {
  margin-bottom: 24px
}

.mcd .desc-col .desc-text p:nth-child(even) {
  max-width: 520px
}

.mcd .desc-col .desc-text p:nth-child(odd) {
  max-width: 680px
}

.mcd .desc-col .desc-text h2 {
  font-size: 28px;
  font-weight: 800;
  color: #181C31;
  line-height: 1.1;
  margin-bottom: 12px;
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.mcd .desc-col .desc-text h3 {
  font-size: 21px;
  font-weight: 700;
  color: #181C31;
  line-height: 1.55;
  margin-bottom: 12px;
  margin-top: 24px
}

.mcd .desc-col .desc-text strong {
  color: #181C31;
  font-weight: 700
}

.mcd .desc-col .desc-text ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px
}

.mcd .desc-col .desc-text ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: #181C31;
  line-height: 1.55;
  margin-bottom: 12px;
  counter-increment: list-cnt
}

.mcd .desc-col .desc-text ul li::before {
  content: "";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 28px;
  border: 2px solid #0AE0CF;
  background: #F6F9FB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px
}

.mcd .desc-col .desc-text dl {
  margin-bottom: 24px
}

.mcd .desc-col .desc-text dt {
  font-size: 17px;
  font-weight: 700;
  color: #181C31;
  line-height: 1.55;
  margin-bottom: 6px
}

.mcd .desc-col .desc-text dd {
  font-size: 17px;
  color: #181C31;
  line-height: 1.55;
  margin-left: 24px;
  margin-bottom: 12px
}

.mcd .prog-blk {
  margin-top: 40px;
  border-top: 2px solid #0AE0CF;
  padding-top: 24px
}

.mcd .prog-blk .prog-head {
  font-size: 21px;
  font-weight: 800;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 24px
}

.mcd .prog-blk .prog-body {
  font-size: 17px;
  color: #181C31;
  line-height: 1.55
}

.mcd .prog-blk .prog-body p {
  margin-bottom: 24px
}

.mcd .prog-blk .prog-body h2 {
  font-size: 21px;
  font-weight: 800;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 12px;
  margin-top: 24px
}

.mcd .prog-blk .prog-body ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 24px;
  counter-reset: prog-cnt
}

.mcd .prog-blk .prog-body ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: #181C31;
  line-height: 1.55;
  margin-bottom: 12px;
  counter-increment: prog-cnt;
  position: relative
}

.mcd .prog-blk .prog-body ul li .step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  border: 2px solid #0AE0CF;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #0AE0CF;
  margin-top: 1px;
  position: relative;
  z-index: 1
}

.mcd .prog-blk .prog-body ul li .step-arc {
  position: absolute;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 28px;
  pointer-events: none
}

.mcd .side-col .info-card {
  background: #F6F9FB;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 25px 0 #181c3117;
  position: relative;
  overflow: hidden
}

.mcd .side-col .info-card .diamond-accent {
  top: -14px;
  right: -14px;
  width: 28px;
  height: 28px
}

.mcd .info-card .card-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #181c3114
}

.mcd .info-card .card-row:last-child {
  border-bottom: none
}

.mcd .info-card .card-row .cr-label {
  font-size: 14px;
  color: #181C31;
  opacity: .6;
  font-weight: 600
}

.mcd .info-card .card-row .cr-val {
  font-size: 17px;
  font-weight: 700;
  color: #181C31;
  text-align: right
}

.mcd .info-card .price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 0 12px;
  border-bottom: 2px solid #0AE0CF;
  margin-bottom: 12px
}

.mcd .info-card .price-row .pr-label {
  font-size: 14px;
  font-weight: 600;
  color: #181C31;
  opacity: .6;
  margin-bottom: 6px
}

.mcd .info-card .price-row .pr-val {
  font-size: 38px;
  font-weight: 800;
  color: #181C31;
  line-height: 1.1
}

.mcd .info-card .enroll-btn {
  display: block;
  width: 100%;
  background: #0AE0CF;
  color: #181C31;
  font-size: 17px;
  font-weight: 800;
  border: 2.5px solid #0AE0CF;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  text-align: center;
  margin-top: 12px;
  transition: background .18s ease-out, color .15s ease-out, box-shadow .18s ease-out;
  box-shadow: 0 4px 25px 0 #0ae0cf17;
  text-decoration: none;
  outline: none
}

.mcd .info-card .enroll-btn:hover {
  background: #181C31;
  color: #0AE0CF;
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.mcd .info-card .enroll-btn:focus-visible {
  box-shadow: 0 0 0 3px #0AE0CF
}

.mcd .status-bar-blk {
  margin-top: 24px
}

.mcd .status-bar-blk .sb-label {
  font-size: 14px;
  font-weight: 700;
  color: #181C31;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.mcd .status-bar-blk .sb-track {
  display: flex;
  flex-direction: row;
  gap: 6px;
  height: 10px;
  border-radius: 8px;
  overflow: hidden
}

.mcd .status-bar-blk .sb-seg {
  flex: 1;
  border-radius: 3px;
  height: 10px
}

.mcd .sb-seg.lvl-1 {
  background: #0AE0CF
}

.mcd .sb-seg.lvl-2 {
  background: #0AE0CF
}

.mcd .sb-seg.lvl-3 {
  background: #0AE0CF
}

.mcd .sb-seg.lvl-4 {
  background: #181c3121
}

.mcd .sb-seg.lvl-5 {
  background: #181c3121
}

.mcd .status-bar-blk .sb-desc {
  font-size: 14px;
  color: #181C31;
  opacity: .65;
  margin-top: 6px
}

.mcd .shake-anim {
  animation: gentle-shake 6s 2s infinite
}

@keyframes gentle-shake {

  0%,
  90%,
  100% {
    transform: translateX(0)
  }

  92% {
    transform: translateX(-4px)
  }

  94% {
    transform: translateX(4px)
  }

  96% {
    transform: translateX(-3px)
  }

  98% {
    transform: translateX(3px)
  }
}

@media (max-width: 768px) {
  .mcd .pg-h1 {
    font-size: 38px
  }

  .mcd .title-blk {
    padding: 40px 24px 24px
  }

  .mcd .img-wrap img {
    height: 260px
  }

  .mcd .detail-body .pg-wrap {
    grid-template-columns: 1fr
  }

  .mcd .side-col {
    order: -1
  }

  .mcd .live-counter .count-num {
    font-size: 21px
  }
}

@media (max-width: 375px) {
  .mcd .pg-h1 {
    font-size: 28px
  }

  .mcd .meta-row {
    gap: 12px
  }

  .mcd .img-wrap img {
    height: 200px
  }

  .mcd .img-price-chip {
    font-size: 17px;
    padding: 6px 12px
  }
}

.sstories {
  background: #F6F9FB;
  overflow-x: clip;
  padding: 0
}

.sstories .pg-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px
}

.sstories .on-load-scale {
  animation: scaleIn .45s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.sstories ::selection {
  background: linear-gradient(90deg, #181C31, #0AE0CF);
  color: #F6F9FB
}

.sstories a {
  position: relative;
  color: #181C31;
  text-decoration: none;
  display: inline
}

.sstories a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0AE0CF;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1);
  z-index: -1
}

.sstories a:hover::before {
  transform: scaleX(1)
}

.sstories .title-blk {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, #0ae0cf17 0%, transparent 100%)
}

.sstories .title-blk .pg-wrap {
  display: grid;
  grid-template-columns: 1fr 1.9fr;
  gap: 40px;
  align-items: center
}

.sstories .title-img-col {
  position: relative
}

.sstories .title-img-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #0AE0CF;
  box-shadow: 0 4px 25px 0 #181c3117
}

.sstories .title-img-frame img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  mask-image: linear-gradient(180deg, transparent 0%, #000 35%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 35%)
}

.sstories .title-bg-letter {
  position: absolute;
  top: -24px;
  left: -12px;
  font-size: 70px;
  font-weight: 900;
  color: #0ae0cf1f;
  line-height: 1.1;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
  z-index: 0
}

.sstories .title-txt-col {
  position: relative
}

.sstories .title-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0AE0CF;
  margin-bottom: 12px;
  display: block
}

.sstories .title-h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 900;
  color: #181C31;
  margin: 0 0 24px
}

.sstories .title-h1 .grad-word {
  background: linear-gradient(180deg, #0AE0CF 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.sstories .title-para {
  font-size: 17px;
  line-height: 1.55;
  color: #181C31;
  max-width: 520px;
  margin: 0 0 24px
}

.sstories .title-para.narrow {
  max-width: 380px
}

.sstories .title-stat-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  margin-top: 24px
}

.sstories .stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.sstories .stat-num {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #181C31
}

.sstories .stat-num .acc {
  color: #0AE0CF
}

.sstories .stat-label {
  font-size: 14px;
  line-height: 1.55;
  color: #181c31a6
}

.sstories .stories-grid-sec {
  padding: 80px 0;
  background: #181C31;
  position: relative
}

.sstories .stories-grid-sec::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: #0AE0CF
}

.sstories .sec-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0AE0CF;
  display: block;
  margin-bottom: 12px
}

.sstories .sec-h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #F6F9FB;
  margin: 0 0 40px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.sstories .stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.sstories .story-card {
  background: #F6F9FB;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 1px 3px 0 #0ae0cf0f 0 4px 25px 0 #0ae0cf17;
  transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.sstories .story-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0
}

.sstories .story-card.acc-teal::before {
  background: #0AE0CF
}

.sstories .story-card.acc-navy::before {
  background: #181C31
}

.sstories .story-card.acc-mid::before {
  background: #0ae0cf80
}

.sstories .story-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.sstories .card-quote-mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #0AE0CF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0
}

.sstories .card-quote-mark svg {
  width: 14px;
  height: 14px;
  fill: #181C31
}

.sstories .card-body {
  font-size: 17px;
  line-height: 1.55;
  color: #181C31;
  margin: 0 0 24px
}

.sstories .card-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #181c311a;
  padding-top: 12px
}

.sstories .card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0AE0CF 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  font-weight: 900;
  color: #181C31
}

.sstories .card-name {
  font-size: 14px;
  font-weight: 700;
  color: #181C31;
  line-height: 1.55
}

.sstories .card-age {
  font-size: 14px;
  color: #181c318c;
  line-height: 1.55
}

.sstories .visual-story-sec {
  padding: 80px 0;
  background: #F6F9FB
}

.sstories .visual-story-sec .pg-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start
}

.sstories .vs-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px 0 #181c3117
}

.sstories .vs-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  border-radius: 16px
}

.sstories .vs-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #181c31e0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 12px;
  color: #F6F9FB;
  font-size: 14px;
  line-height: 1.55;
  max-width: 220px
}

.sstories .vs-img-badge strong {
  color: #0AE0CF;
  display: block;
  font-size: 21px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 6px
}

.sstories .vs-txt-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.sstories .vs-h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #181C31;
  margin: 0
}

.sstories .vs-dash {
  color: #0AE0CF;
  font-weight: 900
}

.sstories .vs-para {
  font-size: 17px;
  line-height: 1.55;
  color: #181C31;
  margin: 0
}

.sstories .vs-para.narrow {
  max-width: 360px;
  font-size: 14px;
  color: #181c31b8
}

.sstories .timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.sstories .tl-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start
}

.sstories .tl-num {
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: #0AE0CF;
  color: #181C31;
  font-size: 14px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 #ffffff4d inset 0 -1px 0 #181c311f
}

.sstories .tl-txt {
  font-size: 17px;
  line-height: 1.55;
  color: #181C31
}

.sstories .metrics-sec {
  padding: 80px 0;
  background: linear-gradient(180deg, #0ae0cf12 0%, transparent 100%);
  border-top: 1px solid #0ae0cf2e
}

.sstories .metrics-sec .pg-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.sstories .metrics-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end
}

.sstories .met-h2 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.1;
  color: #181C31;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.sstories .met-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #181c31b3;
  margin: 0;
  max-width: 420px
}

.sstories .met-note {
  font-size: 14px;
  line-height: 1.55;
  color: #181c318c;
  text-align: right;
  margin: 0
}

.sstories .metrics-bars {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.sstories .bar-row {
  display: grid;
  grid-template-columns: 200px 1fr 60px;
  gap: 12px;
  align-items: center
}

.sstories .bar-label {
  font-size: 14px;
  font-weight: 700;
  color: #181C31;
  line-height: 1.55
}

.sstories .bar-track {
  background: #181c3114;
  border-radius: 3px;
  height: 10px;
  overflow: hidden
}

.sstories .bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #0AE0CF, #0ae0cf8c);
  transform-origin: left;
  animation: barGrow .75s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes barGrow {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

.sstories .bar-fill.w88 {
  width: 88%
}

.sstories .bar-fill.w76 {
  width: 76%
}

.sstories .bar-fill.w91 {
  width: 91%
}

.sstories .bar-fill.w83 {
  width: 83%
}

.sstories .bar-pct {
  font-size: 14px;
  font-weight: 700;
  color: #181C31;
  text-align: right
}

.sstories .metrics-bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.sstories .met-card {
  background: #F6F9FB;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 1px 3px 0 #181c310f 0 4px 25px 0 #181c3117;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.sstories .met-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: #0AE0CF;
  border-radius: 16px 16px 0 0
}

.sstories .met-card:hover {
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.sstories .met-card-num {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.1;
  color: #181C31;
  margin-bottom: 6px
}

.sstories .met-card-num .acc {
  color: #0AE0CF
}

.sstories .met-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #181c31a6
}

@media (max-width: 1366px) {
  .sstories .title-h1 {
    font-size: 38px
  }

  .sstories .stories-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media (max-width: 768px) {
  .sstories .title-blk .pg-wrap {
    grid-template-columns: 1fr
  }

  .sstories .title-img-col {
    display: none
  }

  .sstories .title-h1 {
    font-size: 38px
  }

  .sstories .stories-grid {
    grid-template-columns: 1fr
  }

  .sstories .visual-story-sec .pg-wrap {
    grid-template-columns: 1fr
  }

  .sstories .vs-img-wrap img {
    height: 280px
  }

  .sstories .metrics-top {
    grid-template-columns: 1fr
  }

  .sstories .metrics-bottom-row {
    grid-template-columns: repeat(2, 1fr)
  }

  .sstories .bar-row {
    grid-template-columns: 120px 1fr 50px
  }

  .sstories .title-stat-row {
    gap: 24px
  }

  .sstories .met-note {
    text-align: left
  }
}

@media (max-width: 375px) {
  .sstories .title-h1 {
    font-size: 28px
  }

  .sstories .sec-h2 {
    font-size: 28px
  }

  .sstories .metrics-bottom-row {
    grid-template-columns: 1fr
  }

  .sstories .bar-row {
    grid-template-columns: 100px 1fr 44px
  }

  .sstories .title-stat-row {
    flex-direction: column;
    gap: 12px
  }

  .sstories .stat-num {
    font-size: 28px
  }

  .sstories .pg-wrap {
    padding: 0 12px
  }
}

.mstr-pg {
  background: #F6F9FB;
  overflow-x: hidden
}

.mstr-pg .vis-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap
}

.mstr-pg ::selection {
  background: linear-gradient(90deg, #181C31, #0AE0CF);
  color: #F6F9FB
}

.mstr-pg .pg-atm {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: #181C31;
  overflow: hidden;
  text-align: center
}

.mstr-pg .pg-atm::before {
  content: '';
  position: absolute;
  top: -40px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: #0ae0cf1a;
  border-radius: 28px;
  filter: blur(60px);
  pointer-events: none
}

.mstr-pg .pg-atm::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -40px;
  width: 260px;
  height: 260px;
  background: #0ae0cf12;
  border-radius: 28px;
  filter: blur(80px);
  pointer-events: none
}

.mstr-pg .pg-atm-inner {
  position: relative;
  z-index: 1;
  max-width: 700px
}

.mstr-pg .pg-atm-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0AE0CF;
  margin-bottom: 24px;
  padding: 6px 24px;
  border: 1.5px dashed #0ae0cf73;
  border-radius: 3px
}

.mstr-pg .pg-atm-h {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #F6F9FB;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: .04em
}

.mstr-pg .pg-atm-h span {
  color: #0AE0CF
}

.mstr-pg .pg-atm-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbb8;
  max-width: 560px;
  margin: 0 auto
}

.mstr-pg .pg-atm-img-wrap {
  position: relative;
  margin-top: 40px;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 44px 0 #181c311a;
  border: 2px solid #0ae0cf38
}

.mstr-pg .pg-atm-img-wrap img {
  display: block;
  width: 100%;
  max-width: 680px;
  height: 340px;
  object-fit: cover;
  filter: blur(0px) brightness(0.88) saturate(1.1);
  border-radius: 16px;
  transition: filter .18s ease-out
}

.mstr-pg .pg-atm-img-wrap:hover img {
  filter: blur(0px) brightness(0.96) saturate(1.2)
}

.mstr-pg .pg-atm-img-blur {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: linear-gradient(to top, #181C31 0%, transparent 100%);
  pointer-events: none;
  border-radius: 0 0 16px 16px
}

.mstr-pg .card-grid-sect {
  padding: 80px 24px;
  background: #F6F9FB
}

.mstr-pg .card-grid-inner {
  max-width: 1140px;
  margin: 0 auto
}

.mstr-pg .sect-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0AE0CF;
  margin-bottom: 12px;
  display: block
}

.mstr-pg .sect-h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 40px
}

.mstr-pg .card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px
}

.mstr-pg .m-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 25px 0 #181c3117;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow .18s ease-out, transform .15s ease-out;
  position: relative
}

.mstr-pg .m-card:hover {
  box-shadow: 0 10px 44px 0 #181c311a;
  transform: translateY(-4px)
}

.mstr-pg .m-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0
}

.mstr-pg .m-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px
}

.mstr-pg .m-card-badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px
}

.mstr-pg .m-badge {
  font-size: 14px;
  font-weight: 600;
  color: #181C31;
  background: #0ae0cf21;
  border-radius: 3px;
  padding: 6px 12px;
  letter-spacing: .03em
}

.mstr-pg .m-badge.level {
  background: #181c3112;
  color: #181C31
}

.mstr-pg .m-card-title {
  font-size: 21px;
  line-height: 1.1;
  font-weight: 800;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0
}

.mstr-pg .m-card-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #181c31b8;
  margin: 0;
  flex: 1
}

.mstr-pg .m-card-meta {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  color: #181c318c
}

.mstr-pg .m-card-meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px
}

.mstr-pg .m-card-meta-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.mstr-pg .m-card-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px 24px;
  gap: 12px
}

.mstr-pg .m-price {
  font-size: 28px;
  font-weight: 800;
  color: #181C31;
  line-height: 1.1
}

.mstr-pg .m-card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #F6F9FB;
  background: #181C31;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #181C31;
  transition: background .15s ease-out, color .15s ease-out, border-color .15s ease-out, box-shadow .18s ease-out;
  position: relative
}

.mstr-pg .m-card-link::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color .15s ease-out;
  pointer-events: none
}

.mstr-pg .m-card-link:hover {
  background: #0AE0CF;
  color: #181C31;
  border-color: #0AE0CF;
  box-shadow: 0 4px 25px 0 #0ae0cf38
}

.mstr-pg .m-card-link:hover::after {
  border-color: #0ae0cf59
}

.mstr-pg .m-card-link:focus-visible {
  outline: 3px solid #0AE0CF;
  outline-offset: 3px
}

.mstr-pg .m-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #0AE0CF, transparent);
  border-radius: 16px 0 0 16px;
  pointer-events: none
}

.mstr-pg .split-sect {
  position: relative;
  padding: 80px 24px;
  background: #181C31;
  overflow: hidden
}

.mstr-pg .split-sect::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #F6F9FB;
  clip-path: ellipse(55% 100% at 50% 100%);
  pointer-events: none
}

.mstr-pg .split-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start
}

.mstr-pg .split-left .intro-para {
  font-size: 21px;
  line-height: 1.55;
  color: #0AE0CF;
  font-weight: 600;
  padding: 24px;
  border: 1.5px dashed #0ae0cf66;
  border-radius: 8px;
  margin-bottom: 24px
}

.mstr-pg .split-left .body-para {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbbf;
  margin-bottom: 12px
}

.mstr-pg .split-left .body-para.narrow {
  max-width: 360px;
  color: #f6f9fb99;
  font-size: 14px
}

.mstr-pg .split-h {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #F6F9FB;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 24px
}

.mstr-pg .split-h span {
  color: #0AE0CF
}

.mstr-pg .split-right {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mstr-pg .stat-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  background: #f6f9fb0d;
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid #0AE0CF;
  border-top: 1px solid #0ae0cf1f;
  transition: background .18s ease-out
}

.mstr-pg .stat-row:hover {
  background: #f6f9fb17
}

.mstr-pg .stat-num {
  font-size: 38px;
  font-weight: 800;
  color: #0AE0CF;
  line-height: 1.1;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 80px
}

.mstr-pg .stat-info {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mstr-pg .stat-label {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #F6F9FB
}

.mstr-pg .stat-sub {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb8c
}

.mstr-pg .steps-sect {
  padding: 80px 24px;
  background: #F6F9FB
}

.mstr-pg .steps-inner {
  max-width: 1140px;
  margin: 0 auto
}

.mstr-pg .steps-head {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap
}

.mstr-pg .steps-h {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .05em
}

.mstr-pg .steps-h span {
  color: #0AE0CF
}

.mstr-pg .steps-note {
  font-size: 17px;
  line-height: 1.55;
  color: #181c3199;
  max-width: 320px;
  text-align: right
}

.mstr-pg .steps-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step-counter
}

.mstr-pg .steps-list li {
  counter-increment: step-counter;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 3px 0 #181c310f;
  transition: box-shadow .18s ease-out, transform .15s ease-out
}

.mstr-pg .steps-list li:hover {
  box-shadow: 0 4px 25px 0 #181c3117;
  transform: translateX(6px)
}

.mstr-pg .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 28px;
  background: #0AE0CF;
  color: #181C31;
  font-size: 17px;
  font-weight: 800;
  flex-shrink: 0;
  line-height: 1
}

.mstr-pg .step-txt {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mstr-pg .step-name {
  font-size: 17px;
  font-weight: 700;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .06em
}

.mstr-pg .step-desc {
  font-size: 14px;
  line-height: 1.55;
  color: #181c31a6;
  margin: 0
}

.mstr-pg .faq-sect {
  padding: 80px 24px;
  background: #fff;
  position: relative
}

.mstr-pg .faq-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start
}

.mstr-pg .faq-aside {
  position: sticky;
  top: 40px
}

.mstr-pg .faq-aside-h {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 24px
}

.mstr-pg .faq-aside-h span {
  color: #0AE0CF
}

.mstr-pg .faq-aside-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #181c31a6;
  margin-bottom: 24px
}

.mstr-pg .faq-aside-desc.narrow {
  font-size: 14px;
  color: #181c3180
}

.mstr-pg .faq-cta {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #181C31;
  background: #0AE0CF;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #0AE0CF;
  transition: background .15s ease-out, color .15s ease-out, border-color .15s ease-out;
  position: relative
}

.mstr-pg .faq-cta::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: border-color .15s ease-out;
  pointer-events: none
}

.mstr-pg .faq-cta:hover {
  background: #181C31;
  color: #0AE0CF;
  border-color: #181C31
}

.mstr-pg .faq-cta:hover::after {
  border-color: #181c3140
}

.mstr-pg .faq-cta:focus-visible {
  outline: 3px solid #0AE0CF;
  outline-offset: 3px
}

.mstr-pg .faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mstr-pg .faq-item {
  border-radius: 8px;
  border: 1.5px solid #181c311a;
  background: #F6F9FB;
  overflow: hidden
}

.mstr-pg .faq-item summary {
  list-style: none;
  padding: 24px;
  font-size: 17px;
  font-weight: 700;
  color: #181C31;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color .15s ease-out;
  user-select: none
}

.mstr-pg .faq-item summary::-webkit-details-marker {
  display: none
}

.mstr-pg .faq-item summary:focus-visible {
  outline: 3px solid #0AE0CF;
  outline-offset: -3px
}

.mstr-pg .faq-item[open] summary {
  color: #0AE0CF
}

.mstr-pg .faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 28px;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.mstr-pg .faq-item[open] .faq-icon {
  transform: rotate(45deg)
}

.mstr-pg .faq-icon-svg {
  display: block
}

.mstr-pg .faq-body {
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.55;
  color: #181c31b8
}

.mstr-pg .cta-sect {
  padding: 80px 24px;
  background: linear-gradient(to bottom, #181C31, #181c31e0);
  text-align: center;
  position: relative;
  overflow: hidden
}

.mstr-pg .cta-sect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0AE0CF, transparent);
  pointer-events: none
}

.mstr-pg .cta-inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.mstr-pg .cta-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #0AE0CF;
  margin-bottom: 24px;
  padding: 6px 24px;
  border: 1.5px dashed #0ae0cf66;
  border-radius: 3px
}

.mstr-pg .cta-h {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #F6F9FB;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 24px
}

.mstr-pg .cta-h span {
  color: #0AE0CF
}

.mstr-pg .cta-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbb8;
  margin-bottom: 40px
}

.mstr-pg .cta-btn {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #181C31;
  background: #0AE0CF;
  padding: 12px 40px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #0AE0CF;
  transition: background .15s ease-out, color .15s ease-out, border-color .15s ease-out, box-shadow .18s ease-out;
  position: relative
}

.mstr-pg .cta-btn::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color .15s ease-out;
  pointer-events: none
}

.mstr-pg .cta-btn:hover {
  background: #F6F9FB;
  color: #181C31;
  border-color: #F6F9FB;
  box-shadow: 0 4px 25px 0 #0ae0cf2e
}

.mstr-pg .cta-btn:hover::after {
  border-color: #f6f9fb4d
}

.mstr-pg .cta-btn:focus-visible {
  outline: 3px solid #0AE0CF;
  outline-offset: 3px
}

@keyframes cascadeScale {
  0% {
    opacity: 0;
    transform: scale(0.88)
  }

  100% {
    opacity: 1;
    transform: scale(1)
  }
}

.mstr-pg .m-card:nth-child(1) {
  animation: cascadeScale .22s ease-out .05s both
}

.mstr-pg .m-card:nth-child(2) {
  animation: cascadeScale .22s ease-out .12s both
}

.mstr-pg .m-card:nth-child(3) {
  animation: cascadeScale .22s ease-out .19s both
}

.mstr-pg .m-card:nth-child(4) {
  animation: cascadeScale .22s ease-out .26s both
}

@keyframes typeIn {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

.mstr-pg .type-anim {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #0AE0CF;
  animation: typeIn 1.4s cubic-bezier(0.4, 0, 0.6, 1) .3s both, cursorBlink .9s step-end 1.7s infinite;
  max-width: 100%
}

@keyframes cursorBlink {

  0%,
  100% {
    border-color: #0AE0CF
  }

  50% {
    border-color: transparent
  }
}

@media (max-width: 768px) {
  .mstr-pg .pg-atm-h {
    font-size: 38px
  }

  .mstr-pg .card-grid {
    grid-template-columns: 1fr
  }

  .mstr-pg .split-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .mstr-pg .faq-inner {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .mstr-pg .faq-aside {
    position: static
  }

  .mstr-pg .steps-head {
    flex-direction: column;
    align-items: flex-start
  }

  .mstr-pg .steps-note {
    text-align: left;
    max-width: 100%
  }

  .mstr-pg .cta-h {
    font-size: 28px
  }

  .mstr-pg .split-h {
    font-size: 28px
  }

  .mstr-pg .faq-aside-h {
    font-size: 28px
  }

  .mstr-pg .steps-h {
    font-size: 28px
  }

  .mstr-pg .sect-h2 {
    font-size: 28px
  }
}

@media (max-width: 375px) {
  .mstr-pg .pg-atm-h {
    font-size: 28px
  }

  .mstr-pg .pg-atm {
    padding: 40px 12px
  }

  .mstr-pg .card-grid-sect {
    padding: 40px 12px
  }

  .mstr-pg .split-sect {
    padding: 40px 12px 80px
  }

  .mstr-pg .steps-sect {
    padding: 40px 12px
  }

  .mstr-pg .faq-sect {
    padding: 40px 12px
  }

  .mstr-pg .cta-sect {
    padding: 40px 12px
  }

  .mstr-pg .m-card-footer {
    flex-direction: column;
    align-items: flex-start
  }

  .mstr-pg .stat-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }
}

.strt {
  background: #F6F9FB;
  overflow-x: clip
}

.strt .mx {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

::selection {
  background: #0AE0CF;
  color: #181C31
}

.strt .t-blk {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background: #181C31;
  overflow: hidden
}

.strt .t-blk__bg {
  position: absolute;
  inset: 0;
  background-image: url(./gallery/main-my_draft8.jpg);
  background-size: cover;
  background-position: center;
  opacity: .18;
  animation: pan-bg 22s linear infinite alternate;
  will-change: background-position
}

@keyframes pan-bg {
  from {
    background-position: 0 50%
  }

  to {
    background-position: 100% 50%
  }
}

.strt .t-blk__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  opacity: .35;
  pointer-events: none
}

.strt .t-blk__spot {
  position: absolute;
  border-radius: 28px;
  filter: blur(60px);
  pointer-events: none
}

.strt .t-blk__spot--a {
  width: 320px;
  height: 200px;
  background: #0AE0CF;
  opacity: .08;
  top: -40px;
  left: -60px
}

.strt .t-blk__spot--b {
  width: 260px;
  height: 180px;
  background: #0AE0CF;
  opacity: .06;
  bottom: -30px;
  right: 80px
}

.strt .t-blk__rel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 680px
}

.strt .t-blk__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #0ae0cf1f;
  border: 1px solid #0ae0cf4d;
  border-radius: 3px;
  padding: 6px 12px;
  font-size: 14px;
  color: #0AE0CF;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600
}

.strt .t-blk__tag svg {
  flex-shrink: 0
}

.strt .t-blk__h1 {
  font-size: 54px;
  line-height: 1.1;
  color: #F6F9FB;
  font-weight: 800;
  margin: 0
}

.strt .t-blk__h1 em {
  font-style: normal;
  color: #0AE0CF
}

.strt .t-blk__dash {
  width: 40px;
  height: 3px;
  background: #0AE0CF;
  border-radius: 0
}

.strt .t-blk__desc {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbc7;
  margin: 0;
  max-width: 540px
}

.strt .t-blk__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0AE0CF;
  color: #181C31;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid #0AE0CF;
  border-radius: 8px;
  padding: 12px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s ease-out, color .18s ease-out, box-shadow .15s ease-out;
  align-self: flex-start;
  box-shadow: 0 4px 25px 0 #0ae0cf17
}

.strt .t-blk__cta:hover {
  background: transparent;
  color: #0AE0CF;
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.strt .t-blk__cta:focus-visible {
  outline: 2px solid #0AE0CF;
  outline-offset: 3px
}

.strt .out-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #F6F9FB;
  border-left: 4px solid #0AE0CF
}

.strt .out-sec .mx {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.strt .out-sec__txt {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .out-sec__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0AE0CF
}

.strt .out-sec__h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #181C31;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.strt .out-sec__p {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3f55;
  margin: 0
}

.strt .out-sec__p--narrow {
  max-width: 380px;
  font-size: 14px;
  line-height: 1.55;
  color: #5a6070
}

.strt .out-sec__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.strt .out-sec__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.55;
  color: #181C31
}

.strt .out-sec__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 28px;
  background: #181C31;
  color: #0AE0CF;
  font-size: 14px;
  font-weight: 700
}

.strt .out-sec__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px 0 #181c3117;
  position: relative
}

.strt .out-sec__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, #181c312e 100%);
  pointer-events: none
}

.strt .out-sec__img {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px
}

.strt .for-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #181C31;
  position: relative
}

.strt .for-sec__edge {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0AE0CF
}

.strt .for-sec .mx {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.strt .for-sec__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.strt .for-sec__h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #F6F9FB;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.strt .for-sec__accent {
  color: #0AE0CF
}

.strt .for-sec__sub {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbb3;
  margin: 0
}

.strt .for-sec__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.strt .for-card {
  background: #f6f9fb0d;
  border: 1px solid #0ae0cf26;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color .15s ease-out, background .18s ease-out
}

.strt .for-card:hover {
  border-color: #0ae0cf66;
  background: #f6f9fb14
}

.strt .for-card--accent {
  background: #0ae0cf1a;
  border-color: #0AE0CF
}

.strt .for-card__corner-tag {
  position: absolute;
  top: -1px;
  right: -1px;
  background: #0AE0CF;
  color: #181C31;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 16px 0 8px;
  padding: 6px 12px
}

.strt .for-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #0ae0cf26;
  display: flex;
  align-items: center;
  justify-content: center
}

.strt .for-card__icon svg {
  display: block
}

.strt .for-card__h4 {
  font-size: 17px;
  font-weight: 700;
  color: #F6F9FB;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.strt .for-card__p {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fba6;
  margin: 0
}

.strt .obj-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #F6F9FB
}

.strt .obj-sec .mx {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 40px;
  align-items: start
}

.strt .obj-sec__img-col {
  position: relative
}

.strt .obj-sec__img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 44px 0 #181c311a
}

.strt .obj-sec__img-fade {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(to bottom, transparent 50%, #f6f9fb8c 100%);
  pointer-events: none
}

.strt .obj-sec__txt {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .obj-sec__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #0AE0CF
}

.strt .obj-sec__h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #181C31;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.strt .obj-sec__q {
  font-size: 21px;
  line-height: 1.55;
  color: #181C31;
  font-weight: 600;
  margin: 0;
  border-left: 3px solid #0AE0CF;
  padding-left: 24px
}

.strt .obj-sec__p {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3f55;
  margin: 0
}

.strt .obj-sec__p--narrow {
  font-size: 14px;
  line-height: 1.55;
  color: #5a6070;
  max-width: 420px
}

.strt .obj-sec__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 700;
  color: #181C31;
  text-decoration: none;
  border-radius: 3px;
  padding: 6px 0;
  position: relative;
  transition: color .15s ease-out
}

.strt .obj-sec__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #0AE0CF;
  border-radius: 0;
  transition: width .18s ease-out
}

.strt .obj-sec__link:hover {
  color: #0AE0CF
}

.strt .obj-sec__link:hover::after {
  width: 100%
}

.strt .obj-sec__link:focus-visible {
  outline: 2px solid #0AE0CF;
  outline-offset: 3px
}

.strt .prob-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #eef3f7;
  border-left: 4px solid #181C31
}

.strt .prob-sec .mx {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.strt .prob-sec__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end
}

.strt .prob-sec__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #181C31
}

.strt .prob-sec__h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #181C31;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.strt .prob-sec__dash {
  display: inline;
  color: #0AE0CF;
  font-weight: 900
}

.strt .prob-sec__sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3f55;
  margin: 0;
  align-self: end
}

.strt .prob-sec__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.strt .prob-card {
  background: #F6F9FB;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 3px 0 #181c310f;
  position: relative;
  transition: box-shadow .15s ease-out
}

.strt .prob-card:hover {
  box-shadow: 0 4px 25px 0 #181c3117
}

.strt .prob-card__num {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #0ae0cf38;
  margin: 0;
  letter-spacing: -.02em
}

.strt .prob-card__h4 {
  font-size: 17px;
  font-weight: 700;
  color: #181C31;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.strt .prob-card__p {
  font-size: 14px;
  line-height: 1.55;
  color: #5a6070;
  margin: 0
}

.strt .prob-card__corner {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #181C31;
  color: #0AE0CF;
  font-size: 14px;
  font-weight: 700;
  border-radius: 3px;
  padding: 6px 12px
}

.strt .assoc-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #181C31;
  position: relative
}

.strt .assoc-sec__edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #0AE0CF
}

.strt .assoc-sec .mx {
  display: flex;
  flex-direction: column;
  gap: 40px
}

.strt .assoc-sec__head {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 40px;
  align-items: center
}

.strt .assoc-sec__h2 {
  font-size: 38px;
  line-height: 1.1;
  color: #F6F9FB;
  font-weight: 800;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.strt .assoc-sec__accent {
  color: #0AE0CF
}

.strt .assoc-sec__sub {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbb3;
  margin: 0
}

.strt .assoc-sec__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start
}

.strt .assoc-sec__img-wrap {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.strt .assoc-sec__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, #181c3173 100%);
  pointer-events: none
}

.strt .assoc-sec__img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover
}

.strt .assoc-sec__items {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.strt .assoc-item {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  background: #f6f9fb0d;
  border: 1px solid #0ae0cf1f;
  position: relative;
  transition: border-color .18s ease-out
}

.strt .assoc-item:hover {
  border-color: #0ae0cf59
}

.strt .assoc-item__dot {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 28px;
  background: #0AE0CF;
  margin-top: 6px
}

.strt .assoc-item__txt {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.strt .assoc-item__h5 {
  font-size: 17px;
  font-weight: 700;
  color: #F6F9FB;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.strt .assoc-item__p {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb9e;
  margin: 0
}

@media (max-width: 1366px) {
  .strt .for-sec__cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 768px) {
  .strt .t-blk__h1 {
    font-size: 38px
  }

  .strt .out-sec .mx {
    grid-template-columns: 1fr
  }

  .strt .out-sec__img {
    height: 240px
  }

  .strt .for-sec__top {
    grid-template-columns: 1fr
  }

  .strt .for-sec__cards {
    grid-template-columns: 1fr 1fr
  }

  .strt .obj-sec .mx {
    grid-template-columns: 1fr
  }

  .strt .obj-sec__img {
    height: 260px
  }

  .strt .prob-sec__head {
    grid-template-columns: 1fr
  }

  .strt .prob-sec__grid {
    grid-template-columns: 1fr
  }

  .strt .assoc-sec__head {
    grid-template-columns: 1fr
  }

  .strt .assoc-sec__row {
    grid-template-columns: 1fr
  }

  .strt .assoc-sec__img {
    height: 220px
  }
}

@media (max-width: 375px) {
  .strt .t-blk__h1 {
    font-size: 28px
  }

  .strt .out-sec__h2,
  .strt .for-sec__h2,
  .strt .obj-sec__h2,
  .strt .prob-sec__h2,
  .strt .assoc-sec__h2 {
    font-size: 28px
  }

  .strt .for-sec__cards {
    grid-template-columns: 1fr
  }

  .strt .t-blk {
    padding-top: 40px;
    padding-bottom: 40px
  }

  .strt .out-sec,
  .strt .for-sec,
  .strt .obj-sec,
  .strt .prob-sec,
  .strt .assoc-sec {
    padding-top: 40px;
    padding-bottom: 40px
  }
}

.abt-pg {
  background: #F6F9FB;
  overflow-x: clip;
  position: relative
}

.abt-pg .schema-data {
  display: none
}

.abt-pg .stripe-top {
  height: 6px;
  background: linear-gradient(90deg, #181C31 0%, #0AE0CF 60%, #181C31 100%);
  width: 100%
}

.abt-pg .lead-split {
  display: grid;
  grid-template-columns: 30% 70%;
  min-height: 580px;
  position: relative
}

.abt-pg .lead-left {
  background: linear-gradient(180deg, #181C31 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 24px 80px 40px;
  position: relative;
  z-index: 1
}

.abt-pg .lead-left::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  border: 1.5px solid #0ae0cf2e;
  border-radius: 16px;
  pointer-events: none
}

.abt-pg .lead-left::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: -6px;
  bottom: -6px;
  border: 1px solid #0ae0cf14;
  border-radius: 16px;
  pointer-events: none
}

.abt-pg .lead-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0AE0CF;
  margin-bottom: 24px;
  display: block
}

.abt-pg .lead-kicker {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #F6F9FB;
  margin: 0 0 24px
}

.abt-pg .lead-kicker em {
  font-style: normal;
  color: #0AE0CF
}

.abt-pg .lead-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbc7;
  margin: 0 0 40px
}

.abt-pg .lead-actions {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt-pg .btn-prim {
  display: inline-block;
  background: #0AE0CF;
  color: #181C31;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid #0AE0CF;
  box-shadow: 0 4px 25px 0 #0ae0cf17;
  transition: box-shadow .18s ease-out, background .15s ease-out, color .15s ease-out;
  text-align: center
}

.abt-pg .btn-prim:hover {
  background: transparent;
  color: #0AE0CF;
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.abt-pg .btn-sec {
  display: inline-block;
  background: transparent;
  color: #F6F9FB;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: 1.5px solid #f6f9fb4d;
  transition: border-color .18s ease-out, color .18s ease-out;
  text-align: center
}

.abt-pg .btn-sec:hover {
  border-color: #0AE0CF;
  color: #0AE0CF
}

.abt-pg .lead-right {
  position: relative;
  overflow: hidden
}

.abt-pg .lead-img-wrap {
  position: absolute;
  inset: 0
}

.abt-pg .lead-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block
}

.abt-pg .lead-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #181c312e 0%, #181c319e 100%)
}

.abt-pg .lead-img-stat {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: #181c31d1;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid #0ae0cf38;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 10px 44px 0 #181c311a
}

.abt-pg .stat-num {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #0AE0CF
}

.abt-pg .stat-lbl {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbb8;
  max-width: 140px
}

.abt-pg .wave-div {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0
}

.abt-pg .wave-div svg {
  display: block;
  width: 100%
}

.abt-pg .story-sec {
  padding: 80px 40px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative
}

.abt-pg .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.abt-pg .story-img-col {
  position: relative
}

.abt-pg .story-img-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 44px 0 #181c311a
}

.abt-pg .story-img-frame::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1.5px solid #0ae0cf33;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2
}

.abt-pg .story-img-frame::after {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid #0ae0cf1a;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2
}

.abt-pg .story-img-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block
}

.abt-pg .story-badge {
  position: absolute;
  top: -24px;
  left: -24px;
  background: #0AE0CF;
  color: #181C31;
  border-radius: 16px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 4px 25px 0 #0ae0cf17;
  z-index: 3
}

.abt-pg .story-txt-col {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-pg .sec-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0AE0CF
}

.abt-pg .sec-h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #181C31;
  margin: 0
}

.abt-pg .sec-h2 .dash-acc {
  color: #0AE0CF;
  margin: 0 6px
}

.abt-pg .para-wide {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3f5c;
  margin: 0;
  max-width: 100%
}

.abt-pg .para-narrow {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3f5c;
  margin: 0;
  max-width: 78%
}

.abt-pg .prog-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px
}

.abt-pg .prog-row {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.abt-pg .prog-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #181C31
}

.abt-pg .prog-pct {
  color: #0AE0CF;
  font-weight: 700
}

.abt-pg .prog-track {
  display: flex;
  flex-direction: row;
  gap: 3px;
  height: 8px
}

.abt-pg .prog-seg {
  flex: 1;
  border-radius: 3px;
  background: #181c311a;
  transition: background .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-pg .prog-seg.filled {
  background: #0AE0CF
}

.abt-pg .prog-seg.half-fill {
  background: linear-gradient(90deg, #0AE0CF 60%, #181c311a 60%)
}

.abt-pg .dotted-div {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box
}

.abt-pg .dot-line {
  flex: 1;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, #0AE0CF 0px, #0AE0CF 5px, transparent 5px, transparent 14px);
  border-radius: 3px
}

.abt-pg .dot-diamond {
  width: 10px;
  height: 10px;
  background: #0AE0CF;
  transform: rotate(45deg);
  margin: 0 12px;
  border-radius: 3px;
  flex-shrink: 0
}

.abt-pg .team-sec {
  background: #181C31;
  padding: 80px 40px;
  position: relative;
  overflow: hidden
}

.abt-pg .team-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 39px, #0ae0cf08 39px, #0ae0cf08 40px), repeating-linear-gradient(90deg, transparent, transparent 39px, #0ae0cf08 39px, #0ae0cf08 40px);
  pointer-events: none
}

.abt-pg .team-inner {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.abt-pg .team-hdr {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 40px;
  margin-bottom: 80px;
  align-items: end
}

.abt-pg .team-h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.1;
  color: #F6F9FB;
  margin: 0
}

.abt-pg .team-h2 .dash-acc {
  color: #0AE0CF;
  margin: 0 6px
}

.abt-pg .team-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbad;
  margin: 0
}

.abt-pg .team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start
}

.abt-pg .team-img-col {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.abt-pg .team-img-col::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1.5px solid #0ae0cf26;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2
}

.abt-pg .team-img-col::after {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1px solid #0ae0cf12;
  border-radius: 16px;
  pointer-events: none;
  z-index: 2
}

.abt-pg .team-img-col img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block
}

.abt-pg .team-cards {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.abt-pg .t-card {
  background: #f6f9fb0d;
  border: 1px solid #0ae0cf24;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background .18s ease-out, border-color .18s ease-out
}

.abt-pg .t-card:hover {
  background: #0ae0cf12;
  border-color: #0ae0cf52
}

.abt-pg .t-card-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.abt-pg .t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 28px;
  background: linear-gradient(180deg, #0AE0CF 0%, #0ae0cf00 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.abt-pg .t-avatar svg {
  width: 24px;
  height: 24px
}

.abt-pg .t-meta {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.abt-pg .t-name {
  font-size: 17px;
  font-weight: 700;
  color: #F6F9FB;
  line-height: 1.1
}

.abt-pg .t-role {
  font-size: 14px;
  color: #0AE0CF;
  font-weight: 600;
  line-height: 1.1
}

.abt-pg .t-bio {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb9e;
  margin: 0
}

.abt-pg .vals-sec {
  padding: 80px 40px;
  max-width: 1140px;
  margin: 0 auto
}

.abt-pg .vals-hdr {
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px
}

.abt-pg .vals-h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: #181C31;
  margin: 0
}

.abt-pg .vals-sub {
  font-size: 17px;
  line-height: 1.55;
  color: #3a3f5c;
  max-width: 560px;
  margin: 0
}

.abt-pg .vals-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.abt-pg .v-item {
  background: #F6F9FB;
  border: 1px solid #181c3114;
  border-radius: 16px;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 1px 3px 0 #181c310f;
  transition: box-shadow .2s ease-out, border-color .2s ease-out;
  position: relative
}

.abt-pg .v-item:hover {
  box-shadow: 0 10px 44px 0 #181c311a;
  border-color: #0ae0cf47
}

.abt-pg .v-num {
  width: 40px;
  height: 40px;
  border-radius: 28px;
  background: #181C31;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  color: #0AE0CF;
  flex-shrink: 0
}

.abt-pg .v-h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1;
  color: #181C31;
  margin: 0;
  letter-spacing: .04em;
  text-transform: uppercase
}

.abt-pg .v-txt {
  font-size: 14px;
  line-height: 1.55;
  color: #3a3f5c;
  margin: 0
}

.abt-pg .v-accent-bar {
  height: 4px;
  border-radius: 3px;
  background: linear-gradient(180deg, #0AE0CF 0%, transparent 100%);
  width: 40px;
  margin-top: auto
}

@media (max-width: 1366px) {
  .abt-pg .lead-kicker {
    font-size: 28px
  }

  .abt-pg .team-h2 {
    font-size: 38px
  }

  .abt-pg .story-grid {
    gap: 40px
  }
}

@media (max-width: 768px) {
  .abt-pg .lead-split {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .abt-pg .lead-left {
    padding: 40px 24px;
    background: linear-gradient(180deg, #181C31 0%, #181C31 100%)
  }

  .abt-pg .lead-left::before,
  .abt-pg .lead-left::after {
    display: none
  }

  .abt-pg .lead-right {
    height: 280px
  }

  .abt-pg .lead-img-stat {
    bottom: 12px;
    right: 12px;
    padding: 12px
  }

  .abt-pg .stat-num {
    font-size: 28px
  }

  .abt-pg .story-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .abt-pg .story-img-frame img {
    height: 260px
  }

  .abt-pg .story-badge {
    top: -12px;
    left: -12px
  }

  .abt-pg .para-narrow {
    max-width: 100%
  }

  .abt-pg .story-sec {
    padding: 40px 24px
  }

  .abt-pg .team-sec {
    padding: 40px 24px
  }

  .abt-pg .team-hdr {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px
  }

  .abt-pg .team-h2 {
    font-size: 28px
  }

  .abt-pg .team-layout {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .abt-pg .team-img-col img {
    height: 260px
  }

  .abt-pg .vals-sec {
    padding: 40px 24px
  }

  .abt-pg .vals-hdr {
    margin-bottom: 40px
  }

  .abt-pg .vals-list {
    grid-template-columns: 1fr;
    gap: 12px
  }

  .abt-pg .v-item {
    padding: 24px
  }

  .abt-pg .dotted-div {
    padding: 0 24px
  }
}

@media (max-width: 375px) {
  .abt-pg .lead-kicker {
    font-size: 21px
  }

  .abt-pg .lead-left {
    padding: 24px
  }

  .abt-pg .sec-h2 {
    font-size: 28px
  }

  .abt-pg .vals-h2 {
    font-size: 28px
  }
}

.ct-us {
  background: #F6F9FB;
  overflow-x: clip;
  position: relative
}

.ct-us .pg-top {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  align-items: start
}

.ct-us .pg-top__deco {
  position: relative;
  height: 100%;
  min-height: 340px
}

.ct-us .pg-top__deco-shape {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, #181C31 0%, #181c3114 100%);
  overflow: hidden
}

.ct-us .pg-top__deco-shape::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent 0%, #0AE0CF 40%, transparent 100%);
  transform: rotate(22deg);
  transform-origin: top center;
  opacity: .35
}

.ct-us .pg-top__deco-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0ae0cf14 0%, transparent 60%)
}

.ct-us .pg-top__deco-num {
  position: absolute;
  bottom: 40px;
  left: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1
}

.ct-us .pg-top__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #f6f9fb12;
  border-radius: 8px;
  border: 1px solid #0ae0cf33;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px)
}

.ct-us .pg-top__stat-val {
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  color: #0AE0CF
}

.ct-us .pg-top__stat-lbl {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbbf
}

.ct-us .pg-top__accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #0AE0CF 0%, transparent 100%);
  border-radius: 3px 0 0 3px
}

.ct-us .pg-top__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 12px
}

.ct-us .pg-top__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.ct-us .pg-top__dash {
  width: 28px;
  height: 2px;
  background: #0AE0CF;
  border-radius: 3px;
  flex-shrink: 0
}

.ct-us .pg-top__tag {
  font-size: 14px;
  line-height: 1.55;
  color: #0AE0CF;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 600
}

.ct-us .pg-top__h1 {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #181C31;
  margin: 0
}

.ct-us .pg-top__h1 span {
  color: #0AE0CF
}

.ct-us .pg-top__desc {
  font-size: 17px;
  line-height: 1.55;
  color: #4a5068;
  max-width: 480px
}

.ct-us .pg-top__desc.narrow {
  max-width: 360px
}

.ct-us .pg-top__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px
}

.ct-us .ct-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 3px 0 #181c310f;
  border: 1px solid #181c3112;
  transition: box-shadow .18s ease-out, border-color .18s ease-out
}

.ct-us .ct-item:hover {
  box-shadow: 0 4px 25px 0 #181c3117;
  border-color: #0ae0cf66
}

.ct-us .ct-item__ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0ae0cf26 0%, #0ae0cf0d 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct-us .ct-item__ico svg {
  width: 20px;
  height: 20px
}

.ct-us .ct-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ct-us .ct-item__type {
  font-size: 14px;
  line-height: 1.1;
  color: #888fa8;
  font-weight: 500
}

.ct-us .ct-item__val {
  font-size: 17px;
  line-height: 1.1;
  color: #181C31;
  font-weight: 600;
  text-decoration: none;
  transition: color .15s ease-out
}

.ct-us .ct-item__val:hover {
  color: #0AE0CF
}

.ct-us .wave-div {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.ct-us .wave-div svg {
  display: block;
  width: 100%
}

.ct-us .form-band {
  background: #181C31;
  position: relative;
  overflow: hidden
}

.ct-us .form-band__bg-anim {
  position: absolute;
  inset: 0;
  background: #181C31;
  animation: warmcool 9s ease-in-out infinite;
  z-index: 0
}

@keyframes warmcool {
  0% {
    background: #181C31
  }

  33% {
    background: #1e1f2e
  }

  66% {
    background: #181C31
  }

  100% {
    background: #181C31
  }
}

.ct-us .form-band__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start
}

.ct-us .form-band__left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ct-us .form-band__h2 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #F6F9FB;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0
}

.ct-us .form-band__h2 em {
  font-style: normal;
  color: #0AE0CF
}

.ct-us .form-band__body {
  font-size: 17px;
  line-height: 1.55;
  color: #f6f9fbad
}

.ct-us .form-band__steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px
}

.ct-us .f-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ct-us .f-step__num {
  width: 32px;
  height: 32px;
  border-radius: 28px;
  background: #0ae0cf26;
  border: 1px solid #0ae0cf4d;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #0AE0CF;
  flex-shrink: 0
}

.ct-us .f-step__txt {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fba6;
  padding-top: 6px
}

.ct-us .form-box {
  background: #f6f9fb0a;
  border: 1px solid #f6f9fb1a;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 10px 44px 0 #0ae0cf1a
}

.ct-us .f-row {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ct-us .f-lbl {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbb3;
  font-weight: 500
}

.ct-us .f-inp {
  padding: 12px 24px;
  background: #f6f9fb0f;
  border: 1px solid #f6f9fb26;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.55;
  color: #F6F9FB;
  outline: none;
  transition: border-color .16s ease-out, background .16s ease-out;
  width: 100%;
  box-sizing: border-box
}

.ct-us .f-inp::placeholder {
  color: #f6f9fb4d
}

.ct-us .f-inp:focus {
  border-color: #0AE0CF;
  background: #0ae0cf0f
}

.ct-us .radio-grp {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ct-us .radio-grp__label {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbb3;
  font-weight: 500;
  margin-bottom: 6px
}

.ct-us .radio-opts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px
}

.ct-us .r-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  cursor: pointer
}

.ct-us .r-opt input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 28px;
  border: 2px solid #f6f9fb40;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s ease-out, background .15s ease-out;
  position: relative
}

.ct-us .r-opt input[type="radio"]:checked {
  border-color: #0AE0CF;
  background: #0AE0CF;
  box-shadow: inset 0 0 0 4px #181C31
}

.ct-us .r-opt input[type="radio"]:focus-visible {
  outline: 2px solid #0AE0CF;
  outline-offset: 2px
}

.ct-us .r-opt__txt {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fbbf
}

.ct-us .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ct-us .priv-chk {
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: 2px solid #f6f9fb40;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  margin-top: 2px;
  transition: border-color .15s ease-out, background .15s ease-out;
  position: relative
}

.ct-us .priv-chk:checked {
  border-color: #0AE0CF;
  background: #0AE0CF
}

.ct-us .priv-chk:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 7px;
  height: 11px;
  border: 2px solid #181C31;
  border-top: none;
  border-left: none;
  transform: rotate(45deg)
}

.ct-us .priv-chk:focus-visible {
  outline: 2px solid #0AE0CF;
  outline-offset: 2px
}

.ct-us .priv-txt {
  font-size: 14px;
  line-height: 1.55;
  color: #f6f9fb99
}

.ct-us .priv-txt a {
  color: #0AE0CF;
  text-decoration: underline;
  transition: color .14s ease-out
}

.ct-us .priv-txt a:hover {
  color: #F6F9FB
}

.ct-us .btn-submit {
  padding: 12px 40px;
  background: #0AE0CF;
  color: #181C31;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid #0AE0CF;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  transition: background .18s ease-out, color .18s ease-out, box-shadow .18s ease-out;
  box-shadow: 0 4px 25px 0 #0ae0cf17;
  position: relative
}

.ct-us .btn-submit::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: border-color .18s ease-out;
  pointer-events: none
}

.ct-us .btn-submit:hover {
  background: transparent;
  color: #0AE0CF
}

.ct-us .btn-submit:hover::after {
  border-color: #0AE0CF
}

.ct-us .btn-submit:focus-visible {
  outline: 2px solid #0AE0CF;
  outline-offset: 4px
}

.ct-us .wave-div-b svg {
  display: block;
  width: 100%
}

.ct-us .addr-band {
  background: #F6F9FB;
  padding: 80px 40px;
  position: relative
}

.ct-us .addr-band__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: start
}

.ct-us .addr-band__h3 {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #181C31;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin: 0 0 24px;
  grid-column: 1 / -1
}

.ct-us .addr-band__h3 span {
  color: #0AE0CF
}

.ct-us .addr-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 24px;
  box-shadow: 0 1px 3px 0 #181c310f 0 4px 25px 0 #181c3117;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #181c310f;
  transition: box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1), border-color .2s cubic-bezier(0.4, 0, 0.6, 1);
  position: relative
}

.ct-us .addr-card:hover {
  box-shadow: 0 10px 44px 0 #181c311a;
  border-color: #0ae0cf59
}

.ct-us .addr-card__ico {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0ae0cf2e 0%, #0ae0cf0d 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px
}

.ct-us .addr-card__ico svg {
  width: 24px;
  height: 24px
}

.ct-us .addr-card__ttl {
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
  color: #888fa8;
  text-transform: uppercase;
  letter-spacing: .1em
}

.ct-us .addr-card__val {
  font-size: 17px;
  line-height: 1.55;
  color: #181C31;
  font-weight: 600
}

.ct-us .addr-card__val a {
  color: #181C31;
  text-decoration: none;
  transition: color .14s ease-out;
  position: relative;
  display: inline
}

.ct-us .addr-card__val a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #0AE0CF;
  border-radius: 3px;
  transition: width .18s ease-out
}

.ct-us .addr-card__val a:hover {
  color: #0AE0CF
}

.ct-us .addr-card__val a:hover::before {
  width: 100%
}

.ct-us .addr-card__sub {
  font-size: 14px;
  line-height: 1.55;
  color: #888fa8
}

.ct-us .addr-band__note {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(180deg, #0ae0cf14 0%, #0ae0cf05 100%);
  border-radius: 8px;
  border: 1px solid #0ae0cf33;
  margin-top: 12px
}

.ct-us .addr-band__note-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.ct-us .addr-band__note-ico svg {
  width: 24px;
  height: 24px
}

.ct-us .addr-band__note-txt {
  font-size: 14px;
  line-height: 1.55;
  color: #4a5068
}

.ct-us .addr-band__note-txt strong {
  color: #181C31
}

@media (max-width: 768px) {
  .ct-us .pg-top {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px
  }

  .ct-us .pg-top__deco {
    min-height: 200px
  }

  .ct-us .pg-top__h1 {
    font-size: 38px
  }

  .ct-us .form-band__inner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    gap: 40px
  }

  .ct-us .form-box {
    padding: 24px
  }

  .ct-us .addr-band {
    padding: 40px 24px
  }

  .ct-us .addr-band__inner {
    grid-template-columns: 1fr;
    gap: 24px
  }

  .ct-us .addr-band__h3 {
    font-size: 28px;
    grid-column: 1
  }

  .ct-us .radio-opts {
    flex-direction: column
  }
}

@media (max-width: 375px) {
  .ct-us .pg-top__h1 {
    font-size: 28px
  }

  .ct-us .form-band__h2 {
    font-size: 28px
  }

  .ct-us .addr-band__h3 {
    font-size: 21px
  }

  .ct-us .pg-top {
    padding: 24px 12px
  }

  .ct-us .form-band__inner {
    padding: 24px 12px
  }

  .ct-us .addr-band {
    padding: 24px 12px
  }
}

.succ-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background-color: #F6F9FB
}

.succ-page .succ-wrap {
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px
}

.succ-page .succ-icon-ring {
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: #181C31;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px 0 #0ae0cf17 0 10px 44px 0 #0ae0cf1a;
  flex-shrink: 0
}

.succ-page .succ-icon-ring svg {
  display: block
}

.succ-page .succ-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 560px
}

.succ-page .succ-label {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0AE0CF;
  font-weight: 700
}

.succ-page .succ-title {
  font-size: 38px;
  line-height: 1.1;
  font-weight: 800;
  color: #181C31;
  margin: 0;
  letter-spacing: -.01em
}

.succ-page .succ-title span {
  color: #0AE0CF
}

.succ-page .succ-desc {
  font-size: 17px;
  line-height: 1.55;
  color: #3d4155;
  margin: 0;
  max-width: 480px
}

.succ-page .succ-divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: #0AE0CF
}

.succ-page .succ-note {
  font-size: 14px;
  line-height: 1.55;
  color: #6e7491;
  max-width: 400px;
  margin: 0
}

.succ-page .succ-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.succ-page .btn-prim {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: #181C31;
  background: #0AE0CF;
  border: 2px solid #0AE0CF;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 #181c310f;
  transition: background .18s ease-out, box-shadow .15s ease-out, outline-offset .14s ease-out;
  outline: 2px solid transparent;
  outline-offset: 0
}

.succ-page .btn-prim:hover {
  background: #07c9ba;
  border-color: #07c9ba;
  box-shadow: 0 4px 25px 0 #0ae0cf17;
  outline-color: #0AE0CF;
  outline-offset: 4px
}

.succ-page .btn-prim:focus-visible {
  outline-color: #0AE0CF;
  outline-offset: 4px
}

.succ-page .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.55;
  color: #181C31;
  background: transparent;
  border: 2px solid #181C31;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .16s ease-out, color .16s ease-out, outline-offset .14s ease-out;
  outline: 2px solid transparent;
  outline-offset: 0
}

.succ-page .btn-ghost:hover {
  border-color: #0AE0CF;
  color: #0AE0CF;
  outline-color: #0AE0CF;
  outline-offset: 4px
}

.succ-page .btn-ghost:focus-visible {
  outline-color: #181C31;
  outline-offset: 4px
}

.succ-page .succ-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 1px 3px 0 #181c310f 0 4px 25px 0 #181c3117;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center
}

.succ-page .succ-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  text-align: left
}

.succ-page .succ-steps-title {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #181C31;
  margin: 0
}

.succ-page .step-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.succ-page .step-num {
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: #181C31;
  color: #0AE0CF;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.succ-page .step-text {
  font-size: 14px;
  line-height: 1.55;
  color: #3d4155;
  margin: 0;
  padding-top: 4px
}

@media (max-width: 768px) {
  .succ-page {
    padding: 80px 24px
  }

  .succ-page .succ-title {
    font-size: 28px
  }

  .succ-page .succ-card {
    padding: 24px
  }

  .succ-page .succ-actions {
    flex-direction: column;
    align-items: stretch
  }

  .succ-page .btn-prim,
  .succ-page .btn-ghost {
    justify-content: center
  }
}

@media (max-width: 375px) {
  .succ-page {
    padding: 40px 12px
  }

  .succ-page .succ-title {
    font-size: 21px
  }

  .succ-page .succ-desc {
    font-size: 14px
  }
}