html {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: 'PT Sans', sans-serif;
  background-color: #0d0b14;
  color: #F5F6EE;
}

.hd {
  background: linear-gradient(160deg, #13101f 0%, #1a1528 60%, #0f0d18 100%);
  border-bottom: 1px solid rgba(186, 147, 81, 0.18);
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  position: relative;
}

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

.hd-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex-shrink: 0;
}

.hd-logo-mount {
  width: 60px;
  height: 60px;
  background-color: #F5F6EE;
  box-shadow: 0 0 0 3px rgba(186, 147, 81, 0.35), 0 5px 14px -2px rgba(186, 147, 81, 0.13);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hd-logo-mount img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hd-tagline {
  font-size: 13px;
  line-height: 1.4;
  color: #C3D5A1;
  letter-spacing: 0.04em;
  max-width: 180px;
}

.hd-aux {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-top: 4px;
}

.hd-contact-strip {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hd-contact-strip a {
  font-size: 13px;
  line-height: 1.4;
  color: #C3D5A1;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd-contact-strip a:focus {
  outline: 2px solid #BA9351;
  outline-offset: 3px;
  border-radius: 4px;
}

.hd-contact-strip a:hover {
  color: #BA9351;
}

.hd-contact-sep {
  width: 1px;
  height: 14px;
  background: rgba(195, 213, 161, 0.25);
  display: inline-block;
}

.hd-prop {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(245, 246, 238, 0.45);
  letter-spacing: 0.02em;
}

.hd-nav-bar {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.hd-nav {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 16px;
  border-top: 1px solid rgba(186, 147, 81, 0.12);
}

.hd-nav__item {
  position: relative;
}

.hd-nav__lnk {
  display: flex;
  align-items: center;
  padding: 16px 16px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: rgba(245, 246, 238, 0.8);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px 4px 0 0;
  white-space: nowrap;
  min-height: 44px;
}

.hd-nav__lnk:hover,
.hd-nav__lnk:focus {
  color: #BA9351;
  background-color: rgba(186, 147, 81, 0.07);
  outline: none;
}

.hd-nav__lnk:focus-visible {
  outline: 2px solid #BA9351;
  outline-offset: -2px;
}

.hd-nav__item--has-sub:hover .hd-sub,
.hd-nav__item--has-sub:focus-within .hd-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hd-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #1e1830;
  border: 1px solid rgba(186, 147, 81, 0.2);
  border-radius: 4px;
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 200;
  padding: 4px 0;
}

.hd-sub__lnk {
  display: block;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(245, 246, 238, 0.75);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.hd-sub__lnk:hover,
.hd-sub__lnk:focus {
  color: #BA9351;
  background-color: rgba(186, 147, 81, 0.08);
  outline: none;
}

.hd-sub__lnk:focus-visible {
  outline: 2px solid #BA9351;
  outline-offset: -2px;
}

.hd-nav__arr {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.6;
}

.ft {
  background: linear-gradient(180deg, #110e1c 0%, #0d0b14 100%);
  border-top: 1px solid rgba(186, 147, 81, 0.15);
}

.ft-upper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px 24px 24px;
  display: flex;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
}

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

.ft-logo-mount {
  width: 58px;
  height: 58px;
  background-color: #F5F6EE;
  box-shadow: 0 0 0 2px rgba(186, 147, 81, 0.3), 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ft-logo-mount img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ft-co-name {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #F5F6EE;
  letter-spacing: 0.04em;
}

.ft-desc-col {
  flex: 1;
  min-width: 240px;
}

.ft-mission {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(245, 246, 238, 0.7);
  margin-bottom: 16px;
}

.ft-vals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-val-tag {
  font-size: 13px;
  line-height: 1.4;
  color: #C3D5A1;
  background: rgba(195, 213, 161, 0.08);
  border: 1px solid rgba(195, 213, 161, 0.18);
  border-radius: 36px;
  padding: 4px 16px;
  letter-spacing: 0.03em;
}

.ft-addr-col {
  min-width: 200px;
}

.ft-addr-label {
  font-size: 13px;
  line-height: 1.4;
  color: #BA9351;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.ft-addr-text {
  font-size: 13px;
  line-height: 1.85;
  color: rgba(245, 246, 238, 0.6);
}

.ft-addr-text a {
  color: rgba(245, 246, 238, 0.6);
  text-decoration: none;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ft-addr-text a:hover {
  color: #BA9351;
}

.ft-addr-text a:focus-visible {
  outline: 2px solid #BA9351;
  outline-offset: 2px;
  border-radius: 4px;
}

.ft-lower {
  max-width: 1024px;
  margin: 0 auto;
  padding: 16px 24px 48px 24px;
  border-top: 1px solid rgba(186, 147, 81, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.ft-copy {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(245, 246, 238, 0.35);
}

.ft-leg-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.ft-leg-nav__lnk {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(245, 246, 238, 0.45);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ft-leg-nav__lnk:hover {
  color: #C3D5A1;
  background-color: rgba(195, 213, 161, 0.07);
}

.ft-leg-nav__lnk:focus-visible {
  outline: 2px solid #BA9351;
  outline-offset: 2px;
}

.ft-leg-sep {
  width: 3px;
  height: 3px;
  border-radius: 36px;
  background: rgba(245, 246, 238, 0.2);
  display: inline-block;
}

.ft-pref-lnk {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(186, 147, 81, 0.7);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.ft-pref-lnk:hover {
  color: #BA9351;
}

.ft-pref-lnk:focus-visible {
  outline: 2px solid #BA9351;
  outline-offset: 2px;
}

.ck-bar {
  position: fixed;
  top: 16px;
  left: 16px;
  width: 380px;
  max-width: calc(100vw - 32px);
  background: #1e1830;
  border: 1px solid rgba(186, 147, 81, 0.25);
  border-radius: 7px;
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  z-index: 1000;
  padding: 24px;
  display: none;
}

.ck-bar.ck-bar--vis {
  display: block;
}

.ck-bar__head {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #F5F6EE;
  margin-bottom: 8px;
}

.ck-bar__body {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 246, 238, 0.65);
  margin-bottom: 8px;
}

.ck-bar__uses {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(245, 246, 238, 0.55);
  padding-left: 16px;
  margin: 0 0 16px 0;
}

.ck-bar__uses li {
  margin-bottom: 4px;
}

.ck-bar__btns {
  display: flex;
  gap: 8px;
}

.ck-bar__btn {
  flex: 1;
  padding: 8px 16px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  font-family: inherit;
  border-radius: 4px;
  cursor: pointer;
  min-height: 44px;
  letter-spacing: 0.04em;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-bar__btn--acc {
  background: transparent;
  color: #BA9351;
  border: 1px solid #BA9351;
}

.ck-bar__btn--acc:hover {
  background: #BA9351;
  color: #0d0b14;
}

.ck-bar__btn--acc:focus-visible {
  outline: 2px solid #BA9351;
  outline-offset: 3px;
}

.ck-bar__btn--dec {
  background: transparent;
  color: rgba(245, 246, 238, 0.5);
  border: 1px solid rgba(245, 246, 238, 0.2);
}

.ck-bar__btn--dec:hover {
  background: rgba(245, 246, 238, 0.06);
  color: rgba(245, 246, 238, 0.8);
  border-color: rgba(245, 246, 238, 0.35);
}

.ck-bar__btn--dec:focus-visible {
  outline: 2px solid #C3D5A1;
  outline-offset: 3px;
}

.ck-bar--leaving {
  transform: translateY(-120%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-bar--entering {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.ck-bar--hidden-start {
  transform: translateY(-120%);
  opacity: 0;
}

@media (max-width: 960px) {
  .hd-top {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hd-aux {
    align-items: flex-start;
  }

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

  .ft-upper {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hd-top {
    padding: 16px 16px 0 16px;
  }

  .hd-nav-bar {
    padding: 0 16px;
  }

  .hd-contact-strip {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hd-contact-sep {
    display: none;
  }

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

  .ft-upper {
    padding: 24px 16px 16px 16px;
    flex-direction: column;
    gap: 16px;
  }

  .ft-lower {
    padding: 16px 16px 24px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ft-leg-nav {
    flex-wrap: wrap;
  }

  .ck-bar {
    width: calc(100vw - 32px);
  }
}

@media (min-width: 1440px) {

  .hd-top,
  .hd-nav-bar,
  .ft-upper,
  .ft-lower {
    padding-left: 48px;
    padding-right: 48px;
  }
}

.doc-text {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
  color: #d8d4cc;
  line-height: 1.65;
}

.doc-text p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
  color: #d8d4cc;
}

.doc-text ul,
.doc-text ol {
  margin: 16px 0 24px 0;
  padding-left: 24px;
}

.doc-text ul {
  list-style: none;
  padding-left: 0;
}

.doc-text ul li {
  padding-left: 16px;
  position: relative;
}

.doc-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #BA9351;
}

.doc-text ol {
  list-style: decimal;
}

.doc-text ol li {
  padding-left: 8px;
}

.doc-text li {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 8px;
  color: #d8d4cc;
}

.doc-text strong,
.doc-text b {
  font-weight: 700;
  color: #F5F6EE;
}

.doc-text em,
.doc-text i {
  font-style: italic;
  color: #C3D5A1;
}

.doc-text a {
  color: #BA9351;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.doc-text a:hover {
  color: #C3D5A1;
  text-decoration-color: #C3D5A1;
}

.doc-text hr {
  border: none;
  border-top: 1px solid rgba(186, 147, 81, 0.18);
  margin: 48px 0;
}

.doc-text div {
  font-size: 16px;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .doc-text {
    padding: 48px 24px;
  }
}

@media (max-width: 480px) {
  .doc-text {
    padding: 24px 16px;
  }

  .doc-text p,
  .doc-text li,
  .doc-text div {
    font-size: 13px;
  }
}

.sd {
  background: #12101a;
  color: #e8e4d9;
  max-width: 100%;
  overflow-x: hidden;
}

.sd__inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.sd-top {
  background: #f5f6ee;
  padding: 64px 0 32px;
  position: relative;
}

.sd-top__decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.sd-top__decor svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
}

.sd-top__row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.sd-top__left {
  flex: 1 1 0;
  min-width: 0;
}

.sd-top__right {
  flex: 0 0 340px;
  max-width: 340px;
}

.sd-top__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #BA9351;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(186, 147, 81, 0.3);
  border-radius: 4px;
  padding: 4px 8px;
}

.sd-top__h1 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #12101a;
  font-weight: 800;
  margin-bottom: 24px;
}

.sd-top__h1 .outlined {
  -webkit-text-stroke: 2px #BA9351;
  color: transparent;
}

.sd-top__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.sd-top__badge {
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(186, 147, 81, 0.12);
  color: #12101a;
  border: 1px solid rgba(186, 147, 81, 0.25);
}

.sd-top__img-wrap {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(186, 147, 81, 0.25);
  position: relative;
}

.sd-top__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  filter: saturate(0.8);
}

.sd-top__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(186, 147, 81, 0.18);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.sd-div {
  border: none;
  border-top: 1px dashed rgba(195, 213, 161, 0.2);
  margin: 0;
}

.sd-prog {
  background: #1a1726;
  padding: 48px 0;
}

.sd-prog__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sd-prog__head {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.sd-prog__h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #f5f6ee;
  font-weight: 700;
  text-align: center;
}

.sd-prog__h2 span {
  color: #C3D5A1;
}

.sd-prog__card {
  background: #221f30;
  border-radius: 7px;
  padding: 24px;
  border: 1px solid rgba(195, 213, 161, 0.1);
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.sd-prog__card:hover {
  border-color: rgba(195, 213, 161, 0.3);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.sd-prog__card--wide {
  grid-column: 1 / -1;
}

.sd-prog__content {
  font-size: 16px;
  line-height: 1.65;
  color: #c8c4b8;
}

.sd-prog__content h2 {
  font-size: 19px;
  line-height: 1.4;
  color: #f5f6ee;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 16px;
}

.sd-prog__content h2:first-child {
  margin-top: 0;
}

.sd-prog__content h3 {
  font-size: 16px;
  line-height: 1.4;
  color: #C3D5A1;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 16px;
}

.sd-prog__content h3:first-child {
  margin-top: 0;
}

.sd-prog__content p {
  margin-bottom: 8px;
}

.sd-prog__content strong {
  color: #f5f6ee;
}

.sd-prog__content ul,
.sd-prog__content ol {
  padding-left: 16px;
  margin-bottom: 8px;
}

.sd-prog__content li {
  margin-bottom: 4px;
  padding: 4px 8px;
  background: rgba(195, 213, 161, 0.06);
  border-radius: 4px;
  list-style: none;
  border-left: 2px solid rgba(186, 147, 81, 0.4);
  padding-left: 12px;
}

.sd-prog__content dl dt {
  color: #BA9351;
  font-weight: 600;
  margin-top: 8px;
}

.sd-prog__content dl dd {
  margin-left: 16px;
  color: #c8c4b8;
}

.sd-desc {
  background: #12101a;
  padding: 48px 0;
}

.sd-desc__layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  align-items: start;
}

.sd-desc__body {
  font-size: 16px;
  line-height: 1.65;
  color: #c8c4b8;
}

.sd-desc__body h2 {
  font-size: 19px;
  line-height: 1.4;
  color: #f5f6ee;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 24px;
}

.sd-desc__body h2:first-child {
  margin-top: 0;
}

.sd-desc__body h3 {
  font-size: 16px;
  color: #C3D5A1;
  font-weight: 600;
  margin-bottom: 8px;
  margin-top: 16px;
}

.sd-desc__body p {
  margin-bottom: 16px;
}

.sd-desc__body ol {
  padding-left: 16px;
}

.sd-desc__body li {
  margin-bottom: 8px;
}

.sd-desc__body abbr {
  border-bottom: 1px dotted #BA9351;
  cursor: help;
}

.sd-desc__body blockquote {
  border-left: 3px solid #BA9351;
  border-bottom: 1px solid rgba(186, 147, 81, 0.2);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(186, 147, 81, 0.05);
  border-radius: 0 4px 4px 0;
  color: #e8e4d9;
  font-size: 16px;
  line-height: 1.65;
}

.sd-desc__body dl dt {
  color: #BA9351;
  font-weight: 700;
  margin-top: 16px;
}

.sd-desc__body dl dd {
  color: #c8c4b8;
  margin-left: 16px;
  margin-bottom: 8px;
}

.sd-desc__body details {
  border: 1px solid rgba(195, 213, 161, 0.15);
  border-radius: 4px;
  padding: 16px;
  margin-bottom: 8px;
  background: rgba(195, 213, 161, 0.04);
}

.sd-desc__body summary {
  cursor: pointer;
  color: #C3D5A1;
  font-weight: 600;
  font-size: 16px;
}

.sd-desc__body figure {
  margin: 24px 0;
  border: 1px solid rgba(186, 147, 81, 0.2);
  border-radius: 7px;
  overflow: hidden;
}

.sd-desc__body figcaption {
  font-size: 13px;
  color: #BA9351;
  padding: 8px 16px;
  background: rgba(186, 147, 81, 0.06);
}

.sd-price {
  background: #1e1b2c;
  border: 1px solid rgba(186, 147, 81, 0.25);
  border-radius: 7px;
  padding: 24px;
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  position: sticky;
  top: 24px;
  animation: sdShadow 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes sdShadow {

  0%,
  100% {
    box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  }

  50% {
    box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.28), 0 1px 6px -2px rgba(186, 147, 81, 0.12);
  }
}

.sd-price__tag {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #BA9351;
  margin-bottom: 8px;
}

.sd-price__amount {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: #f5f6ee;
  margin-bottom: 4px;
}

.sd-price__note {
  font-size: 13px;
  color: #8a8680;
  margin-bottom: 16px;
  line-height: 1.4;
}

.sd-price__terms {
  font-size: 16px;
  color: #c8c4b8;
  line-height: 1.65;
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(195, 213, 161, 0.05);
  border-radius: 4px;
  border: 1px solid rgba(195, 213, 161, 0.1);
}

.sd-price__rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.sd-price__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(195, 213, 161, 0.1);
}

.sd-price__row-label {
  color: #8a8680;
}

.sd-price__row-val {
  color: #C3D5A1;
  font-weight: 600;
}

.sd-price__seats {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #BA9351;
  margin-bottom: 16px;
  padding: 8px;
  background: rgba(186, 147, 81, 0.08);
  border-radius: 4px;
  border: 1px solid rgba(186, 147, 81, 0.2);
}

.sd-price__seats svg {
  flex-shrink: 0;
}

.sd-price__btn {
  display: block;
  width: 100%;
  padding: 16px;
  border-radius: 4px;
  border: 2px solid #BA9351;
  background: transparent;
  color: #BA9351;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.0, 0, 0.2, 1);
  text-transform: uppercase;
}

.sd-price__btn:hover {
  background: #BA9351;
  color: #12101a;
}

.sd-price__btn:focus {
  outline: 2px solid #C3D5A1;
  outline-offset: 2px;
}

.sd-price__btn:active {
  background: #a07d3f;
  border-color: #a07d3f;
  color: #12101a;
}

.sd-price__date {
  font-size: 13px;
  color: #8a8680;
  margin-top: 8px;
  text-align: center;
}

.sd-prog__card {
  position: relative;
}

.sd-prog__card .sd-prog__reveal {
  position: absolute;
  inset: 0;
  border-radius: 7px;
  pointer-events: none;
  overflow: hidden;
}

.sd-prog__card .sd-prog__reveal::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(195, 213, 161, 0.06);
  border-radius: 4px;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1), height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.sd-prog__card:hover .sd-prog__reveal::after {
  width: 100%;
  height: 100%;
}

.sd-prog__geom {
  position: absolute;
  pointer-events: none;
  opacity: 0.05;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  animation: sdGeomPulse 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes sdGeomPulse {

  0%,
  100% {
    opacity: 0.05;
  }

  50% {
    opacity: 0.09;
  }
}

@media (max-width: 960px) {
  .sd-top__row {
    flex-direction: column;
    gap: 24px;
  }

  .sd-top__right {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .sd-prog__grid {
    grid-template-columns: 1fr;
  }

  .sd-prog__card--wide {
    grid-column: 1;
  }

  .sd-desc__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sd-price {
    position: static;
  }

  .sd-top__h1 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .sd-top {
    padding: 48px 0 24px;
  }

  .sd-top__h1 {
    font-size: 34px;
  }

  .sd-price__amount {
    font-size: 34px;
  }

  .sd-prog {
    padding: 24px 0;
  }

  .sd-desc {
    padding: 24px 0;
  }
}

.sts {
  background-color: #0e0c14;
  color: #e8e4da;
  padding: 0;
  overflow: hidden;
}

.sts__pulse-bg {
  animation: stsPulse 6s ease-in-out infinite;
}

@keyframes stsPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.82;
  }
}

.sts__spotlight {
  padding: 96px 24px 64px;
  position: relative;
  background: linear-gradient(148deg, #1a1228 0%, #0e0c14 60%);
  border-bottom: 1px solid rgba(186, 147, 81, 0.13);
}

.sts__spotlight-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.sts__geo {
  position: absolute;
  top: 32px;
  right: 48px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(195, 213, 161, 0.08);
  border-radius: 4px;
  transform: rotate(22deg);
  pointer-events: none;
}

.sts__geo::before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(186, 147, 81, 0.1);
  border-radius: 4px;
}

.sts__geo-sm {
  position: absolute;
  bottom: 48px;
  left: 32px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(195, 213, 161, 0.07);
  border-radius: 4px;
  transform: rotate(14deg);
  pointer-events: none;
}

.sts__eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #BA9351;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.sts__eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #BA9351;
  opacity: 0.7;
}

.sts__h1 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #F5F6EE;
  max-width: 640px;
  margin-bottom: 24px;
}

.sts__h1 span {
  color: #C3D5A1;
}

.sts__lead {
  font-size: 16px;
  line-height: 1.65;
  color: #b0aa9e;
  max-width: 520px;
  margin-bottom: 0;
}

.sts__diamond {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #BA9351;
  transform: rotate(45deg);
  margin: 0 8px;
  vertical-align: middle;
  opacity: 0.8;
}

.sts__img-strip {
  margin-top: 48px;
  position: relative;
  max-width: 480px;
}

.sts__img-frame {
  border: 1px solid rgba(186, 147, 81, 0.22);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.sts__img-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  opacity: 0.18;
}

.sts__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0e0c14 18%, transparent 70%);
  border-radius: 7px;
}

.sts__cases {
  padding: 64px 24px;
  background: #100e18;
  position: relative;
}

.sts__cases::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #BA9351 40%, #C3D5A1 60%, transparent);
  opacity: 0.35;
}

.sts__cases-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.sts__sec-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C3D5A1;
  margin-bottom: 48px;
  text-align: center;
}

.sts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.sts__card {
  background: #13111d;
  border: 1px solid rgba(186, 147, 81, 0.1);
  border-radius: 7px;
  padding: 24px;
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.sts__card:hover {
  border-color: rgba(186, 147, 81, 0.28);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.sts__card--wide {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
}

.sts__card-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  background: rgba(195, 213, 161, 0.08);
  color: #C3D5A1;
  border-radius: 36px;
  padding: 4px 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(195, 213, 161, 0.13);
}

.sts__card-name {
  font-size: 19px;
  line-height: 1.4;
  font-weight: 700;
  color: #F5F6EE;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.sts__card-role {
  font-size: 13px;
  color: #BA9351;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.sts__card-text {
  font-size: 16px;
  line-height: 1.65;
  color: #9e9890;
  margin-bottom: 0;
}

.sts__card-text span {
  color: #C3D5A1;
}

.sts__card-img-col {
  flex: 0 0 200px;
}

.sts__card-img-col img {
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(186, 147, 81, 0.18);
  display: block;
  opacity: 0.22;
}

.sts__card-body-col {
  flex: 1;
}

.sts__card-quote {
  font-size: 16px;
  line-height: 1.65;
  color: #9e9890;
  font-style: italic;
  border-left: 3px solid #BA9351;
  padding-left: 16px;
  margin-bottom: 16px;
  border-radius: 0 4px 4px 0;
  border-top: 1px solid rgba(186, 147, 81, 0.12);
  border-bottom: 1px solid rgba(186, 147, 81, 0.06);
}

.sts__card-attr {
  font-size: 13px;
  color: #BA9351;
  letter-spacing: 0.05em;
}

.sts__metrics {
  padding: 48px 24px;
  background: #0e0c14;
  position: relative;
}

.sts__metrics::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, #C3D5A1 50%, transparent 90%);
  opacity: 0.2;
}

.sts__metrics-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.sts__metrics-head {
  text-align: center;
  margin-bottom: 48px;
}

.sts__metrics-h {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #F5F6EE;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.sts__metrics-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #7a7570;
  max-width: 440px;
  margin: 0 auto;
}

.sts__row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: stretch;
}

.sts__stat {
  flex: 1;
  background: linear-gradient(148deg, #16131f 0%, #100e18 100%);
  border: 1px solid rgba(186, 147, 81, 0.12);
  border-radius: 7px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 1px 6px -2px rgba(186, 147, 81, 0.05);
  transition: transform 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.sts__stat:hover {
  transform: translateY(-2px);
}

.sts__stat-num {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: #BA9351;
  letter-spacing: -0.03em;
  display: block;
}

.sts__stat-label {
  font-size: 13px;
  color: #7a7570;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 8px;
  display: block;
}

.sts__img-row {
  margin-top: 48px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.sts__img-block {
  position: relative;
  flex: 1;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(195, 213, 161, 0.14);
  box-shadow: 0 5px 14px -2px rgba(195, 213, 161, 0.08);
}

.sts__img-block img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  opacity: 0.2;
}

.sts__img-block-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(195, 213, 161, 0.12) 0%, transparent 60%);
}

.sts__process {
  padding: 64px 24px 80px;
  background: #13111d;
  position: relative;
}

.sts__process::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #BA9351 30%, #C3D5A1 70%, transparent);
  opacity: 0.28;
}

.sts__process-inner {
  max-width: 1024px;
  margin: 0 auto;
}

.sts__process-head {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  margin-bottom: 48px;
}

.sts__process-h {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 800;
  color: #F5F6EE;
  letter-spacing: -0.02em;
  flex: 0 0 320px;
}

.sts__process-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #7a7570;
  flex: 1;
  padding-top: 8px;
}

.sts__steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sts__step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.sts__step:hover {
  background: rgba(186, 147, 81, 0.04);
  border-color: rgba(186, 147, 81, 0.1);
}

.sts__step-num {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(186, 147, 81, 0.1);
  border: 1px solid rgba(186, 147, 81, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #BA9351;
  letter-spacing: 0.05em;
}

.sts__step-body {
  flex: 1;
}

.sts__step-title {
  font-size: 16px;
  font-weight: 700;
  color: #F5F6EE;
  margin-bottom: 8px;
  line-height: 1.4;
}

.sts__step-text {
  font-size: 13px;
  line-height: 1.65;
  color: #7a7570;
}

.sts__step-text span {
  color: #C3D5A1;
}

.sts__divider-diamond {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0;
}

.sts__divider-diamond-shape {
  width: 7px;
  height: 7px;
  background: rgba(186, 147, 81, 0.35);
  transform: rotate(45deg);
  border-radius: 1px;
}

.sts__divider-diamond-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: rgba(186, 147, 81, 0.15);
}

@media (max-width: 960px) {
  .sts__h1 {
    font-size: 34px;
  }

  .sts__grid {
    grid-template-columns: 1fr;
  }

  .sts__card--wide {
    flex-direction: column;
  }

  .sts__card-img-col {
    flex: none;
  }

  .sts__card-img-col img {
    width: 100%;
    height: 140px;
  }

  .sts__row {
    flex-direction: column;
  }

  .sts__process-head {
    flex-direction: column;
    gap: 16px;
  }

  .sts__process-h {
    flex: none;
  }

  .sts__img-row {
    flex-direction: column;
  }

  .sts__geo {
    display: none;
  }
}

@media (max-width: 480px) {
  .sts__spotlight {
    padding: 64px 16px 48px;
  }

  .sts__h1 {
    font-size: 34px;
  }

  .sts__cases,
  .sts__metrics,
  .sts__process {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sts__metrics-h {
    font-size: 34px;
  }

  .sts__stat-num {
    font-size: 34px;
  }
}

.st {
  background: #0e0c14;
  color: #e8e4d9;
  overflow-x: clip;
}

.st .wave-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0;
}

.st .wave-bg::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: linear-gradient(127deg,
      transparent 0%,
      rgba(195, 213, 161, 0.03) 30%,
      rgba(186, 147, 81, 0.04) 55%,
      transparent 80%);
  animation: wavemove 9s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes wavemove {
  0% {
    transform: translateX(-6%) translateY(-3%);
  }

  100% {
    transform: translateX(6%) translateY(3%);
  }
}

.st .t-blk {
  position: relative;
  padding: 48px 24px 48px;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}

.st .t-blk .curve-deco {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 80px;
  pointer-events: none;
  overflow: hidden;
}

.st .t-blk .t-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #BA9351;
  border: 1px solid rgba(186, 147, 81, 0.3);
  border-radius: 4px;
  padding: 4px 16px;
  margin-bottom: 24px;
}

.st .t-blk .t-head {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #F5F6EE;
  margin: 0 0 24px;
}

.st .t-blk .t-head span {
  color: #C3D5A1;
}

.st .t-blk .t-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #b0ab9e;
  max-width: 560px;
  margin: 0 auto 48px;
}

.st .t-img-wrap {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid rgba(186, 147, 81, 0.18);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.st .t-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
}

.st .t-img-wrap .img-line {
  position: absolute;
  inset: 0;
  border-radius: 7px;
  border: 1px solid rgba(245, 246, 238, 0.07);
  pointer-events: none;
}

.st .adapt-sec {
  position: relative;
  background: #13101c;
  border-top: 1px solid rgba(195, 213, 161, 0.08);
  border-bottom: 1px solid rgba(195, 213, 161, 0.08);
}

.st .adapt-sec .wave-bg::before {
  background: linear-gradient(200deg,
      transparent 0%,
      rgba(195, 213, 161, 0.04) 40%,
      transparent 75%);
}

.st .adapt-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.st .adapt-txt .sec-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #C3D5A1;
  margin-bottom: 16px;
  display: block;
}

.st .adapt-txt h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F5F6EE;
  margin: 0 0 24px;
}

.st .adapt-txt p {
  font-size: 16px;
  line-height: 1.65;
  color: #a09b8e;
  margin: 0 0 16px;
}

.st .adapt-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.st .met-card {
  background: #1a1624;
  border: 1px solid rgba(186, 147, 81, 0.15);
  border-radius: 7px;
  padding: 24px 16px;
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.st .met-card:hover {
  border-color: rgba(186, 147, 81, 0.35);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.st .met-card .met-val {
  font-size: 34px;
  font-weight: 800;
  color: #BA9351;
  line-height: 1.15;
  display: block;
}

.st .met-card .met-lbl {
  font-size: 13px;
  color: #7a7570;
  line-height: 1.4;
  margin-top: 4px;
  display: block;
}

.st .adapt-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.st .adapt-imgs .img-slot {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(195, 213, 161, 0.12);
  box-shadow: 0 1px 6px -2px rgba(195, 213, 161, 0.05);
}

.st .adapt-imgs .img-slot img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.st .adapt-imgs .img-slot:hover img {
  transform: scale(1.03);
}

.st .adapt-imgs .img-slot.tall {
  grid-row: span 2;
}

.st .adapt-imgs .img-slot.tall img {
  height: 376px;
}

.st .prob-sec {
  position: relative;
  background: #0e0c14;
}

.st .prob-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
}

.st .prob-top {
  text-align: center;
  margin-bottom: 48px;
}

.st .prob-top .sec-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #BA9351;
  display: block;
  margin-bottom: 16px;
}

.st .prob-top h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F5F6EE;
  margin: 0 0 16px;
}

.st .prob-top p {
  font-size: 16px;
  line-height: 1.65;
  color: #a09b8e;
  max-width: 540px;
  margin: 0 auto;
}

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

.st .prob-item {
  background: #13101c;
  border: 1px solid rgba(186, 147, 81, 0.12);
  border-top: 3px solid #BA9351;
  border-radius: 7px;
  padding: 24px;
  box-shadow: 0 1px 6px -2px rgba(186, 147, 81, 0.05);
  transition: transform 0.24s cubic-bezier(0.0, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.0, 0, 0.2, 1);
}

.st .prob-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.st .prob-item .p-ico {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
}

.st .prob-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #F5F6EE;
  margin: 0 0 8px;
  line-height: 1.4;
}

.st .prob-item p {
  font-size: 13px;
  line-height: 1.65;
  color: #7a7570;
  margin: 0;
}

.st .divider-tri {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 0;
}

.st .divider-tri svg {
  opacity: 0.4;
}

.st .ex-sec {
  position: relative;
  background: #110f1a;
  border-top: 1px solid rgba(186, 147, 81, 0.1);
}

.st .ex-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 48px;
  align-items: start;
}

.st .ex-txt .sec-tag {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #C3D5A1;
  display: block;
  margin-bottom: 16px;
}

.st .ex-txt h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F5F6EE;
  margin: 0 0 24px;
}

.st .ex-txt p {
  font-size: 16px;
  line-height: 1.65;
  color: #a09b8e;
  margin: 0 0 16px;
}

.st .ex-txt p:last-child {
  margin-bottom: 0;
}

.st .ex-txt .hl {
  color: #C3D5A1;
}

.st .ex-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.st .ex-img-wrap {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(186, 147, 81, 0.15);
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
}

.st .ex-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.st .ex-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.st .ex-step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  background: #1a1624;
  border: 1px solid rgba(195, 213, 161, 0.1);
  border-radius: 7px;
  padding: 16px;
  transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.st .ex-step:hover {
  border-color: rgba(195, 213, 161, 0.28);
}

.st .ex-step .step-n {
  font-size: 19px;
  font-weight: 800;
  color: #BA9351;
  min-width: 24px;
  line-height: 1.15;
}

.st .ex-step .step-body h6 {
  font-size: 13px;
  font-weight: 700;
  color: #F5F6EE;
  margin: 0 0 4px;
  line-height: 1.4;
}

.st .ex-step .step-body p {
  font-size: 13px;
  color: #7a7570;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 960px) {
  .st .adapt-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .st .prob-grid {
    grid-template-columns: 1fr 1fr;
  }

  .st .ex-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .st .t-blk .t-head {
    font-size: 34px;
  }

  .st .adapt-imgs .img-slot.tall img {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .st .t-blk .t-head {
    font-size: 34px;
  }

  .st .prob-grid {
    grid-template-columns: 1fr;
  }

  .st .adapt-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .st .adapt-imgs {
    grid-template-columns: 1fr;
  }

  .st .adapt-imgs .img-slot.tall {
    grid-row: span 1;
  }

  .st .adapt-imgs .img-slot.tall img {
    height: 180px;
  }
}

.srv {
  background-color: #0d0b14;
  color: #e8e4dc;
  padding: 0;
  overflow-x: hidden;
}

.srv__col {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.srv__title-block {
  padding: 48px 0 48px;
  position: relative;
}

.srv__title-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.srv__title-img-col {
  flex: 0 0 280px;
  position: relative;
}

.srv__title-img-wrap {
  width: 280px;
  height: 320px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(186, 147, 81, 0.22);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  position: relative;
}

.srv__title-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.7) brightness(0.85) sepia(0.18);
}

.srv__corner-tl {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-top: 1px solid #BA9351;
  border-left: 1px solid #BA9351;
  border-radius: 4px 0 0 0;
  pointer-events: none;
  transition: width 0.22s cubic-bezier(0.4, 0, 0.2, 1), height 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv__corner-br {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 32px;
  height: 32px;
  border-bottom: 1px solid #C3D5A1;
  border-right: 1px solid #C3D5A1;
  border-radius: 0 0 4px 0;
  pointer-events: none;
  transition: width 0.25s cubic-bezier(0.0, 0, 0.2, 1), height 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.srv__title-img-col:hover .srv__corner-tl {
  width: 52px;
  height: 52px;
}

.srv__title-img-col:hover .srv__corner-br {
  width: 52px;
  height: 52px;
}

.srv__title-text {
  flex: 1;
}

.srv__eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #BA9351;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.4;
}

.srv__h1 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #F5F6EE;
  margin-bottom: 24px;
}

.srv__h1 span {
  color: #C3D5A1;
}

.srv__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #b8b4ac;
  margin-bottom: 24px;
  max-width: 480px;
}

.srv__cta-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BA9351;
  border: 1px solid rgba(186, 147, 81, 0.4);
  border-radius: 4px;
  padding: 8px 24px;
  text-decoration: none;
  background: transparent;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv__cta-link:hover {
  background: rgba(186, 147, 81, 0.12);
  color: #F5F6EE;
  border-color: #BA9351;
}

.srv__divider-curve {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.srv__divider-curve svg {
  display: block;
  width: 100%;
}

.srv__cards-band {
  background-color: #110f1a;
  padding: 48px 0;
  position: relative;
}

.srv__cards-hd {
  text-align: center;
  margin-bottom: 48px;
}

.srv__cards-hd h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #F5F6EE;
  margin-bottom: 8px;
}

.srv__cards-hd p {
  font-size: 16px;
  line-height: 1.65;
  color: #8a8680;
  max-width: 480px;
  margin: 0 auto;
}

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

.srv__card {
  background: #18151f;
  border-radius: 7px;
  border: 1px solid rgba(186, 147, 81, 0.1);
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.srv__card:hover {
  border-color: rgba(186, 147, 81, 0.32);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.srv__card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-bottom: 1px solid rgba(186, 147, 81, 0.08);
  flex-shrink: 0;
}

.srv__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.8) saturate(0.75);
  transition: filter 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv__card:hover .srv__card-img img {
  filter: brightness(0.9) saturate(0.9);
}

.srv__card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.srv__card-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.srv__badge {
  font-size: 13px;
  line-height: 1.4;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(195, 213, 161, 0.1);
  color: #C3D5A1;
  border: 1px solid rgba(195, 213, 161, 0.18);
}

.srv__badge--user {
  background: rgba(186, 147, 81, 0.1);
  color: #BA9351;
  border-color: rgba(186, 147, 81, 0.18);
}

.srv__badge--time {
  background: rgba(245, 246, 238, 0.05);
  color: #8a8680;
  border-color: rgba(245, 246, 238, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.srv__card-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #F5F6EE;
}

.srv__card-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #8a8680;
}

.srv__card-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.srv__spec-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
}

.srv__spec-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv__spec-label {
  color: #6e6a64;
}

.srv__spec-val {
  color: #b8b4ac;
  margin-left: auto;
}

.srv__spec-val--seats {
  color: #C3D5A1;
}

.srv__card-price-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 8px;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid rgba(186, 147, 81, 0.08);
}

.srv__price-num {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #BA9351;
}

.srv__price-terms {
  font-size: 13px;
  line-height: 1.65;
  color: #6e6a64;
  flex: 1;
}

.srv__price-note {
  font-size: 13px;
  line-height: 1.4;
  color: #6e6a64;
  font-style: italic;
}

.srv__card-foot {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.srv__card-date {
  font-size: 13px;
  color: #4e4a46;
  line-height: 1.4;
}

.srv__card-link {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #BA9351;
  border: 1px solid rgba(186, 147, 81, 0.3);
  border-radius: 4px;
  padding: 8px 16px;
  text-decoration: none;
  background: transparent;
  transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv__card-link:hover {
  background: rgba(186, 147, 81, 0.14);
  color: #F5F6EE;
}

.srv__divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(186, 147, 81, 0.18) 40%, rgba(195, 213, 161, 0.14) 60%, transparent 100%);
  margin: 0;
}

.srv__img-band {
  position: relative;
  padding: 48px 0;
  background-image: url('./assets_gallery/showcase20251109.jpg');
  background-size: cover;
  background-position: center;
}

.srv__img-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, rgba(13, 11, 20, 0.91) 0%, rgba(17, 15, 26, 0.78) 100%);
  pointer-events: none;
}

.srv__img-band-inner {
  position: relative;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.srv__img-band-abbr {
  font-size: 62px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(195, 213, 161, 0.07);
  pointer-events: none;
  user-select: none;
  position: absolute;
  right: 24px;
  top: 0;
}

.srv__img-band h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #F5F6EE;
  max-width: 560px;
}

.srv__img-band h2 span {
  color: #C3D5A1;
}

.srv__checklist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
}

.srv__check-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
}

.srv__check-mark {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.srv__check-text {
  font-size: 16px;
  line-height: 1.65;
  color: #c8c4bc;
}

.srv__check-text strong {
  color: #F5F6EE;
}

.srv__divider-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px 0;
  background: #0d0b14;
}

.srv__dot {
  width: 4px;
  height: 4px;
  border-radius: 36px;
  background: rgba(186, 147, 81, 0.3);
}

.srv__dot--mid {
  background: rgba(186, 147, 81, 0.6);
  width: 6px;
  height: 6px;
}

.srv__process-band {
  background: #0d0b14;
  padding: 48px 0;
}

.srv__process-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

.srv__process-hd {
  margin-bottom: 48px;
}

.srv__process-hd h2 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #F5F6EE;
  text-align: center;
  margin-bottom: 8px;
}

.srv__process-hd p {
  font-size: 16px;
  line-height: 1.65;
  color: #8a8680;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.srv__steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.srv__step {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(186, 147, 81, 0.06);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 4px;
  padding-left: 16px;
  padding-right: 16px;
}

.srv__step:hover {
  background: rgba(186, 147, 81, 0.04);
}

.srv__step:last-child {
  border-bottom: none;
}

.srv__step-num {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: rgba(186, 147, 81, 0.15);
  flex-shrink: 0;
  width: 64px;
  text-align: center;
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.srv__step:hover .srv__step-num {
  color: rgba(186, 147, 81, 0.35);
}

.srv__step-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.srv__step-title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: #F5F6EE;
  letter-spacing: -0.01em;
}

.srv__step-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #8a8680;
}

.srv__step-tag {
  font-size: 13px;
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(195, 213, 161, 0.08);
  color: #C3D5A1;
  border: 1px solid rgba(195, 213, 161, 0.14);
  align-self: flex-start;
}

@media (max-width: 960px) {
  .srv__title-inner {
    flex-direction: column;
    gap: 24px;
  }

  .srv__title-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .srv__title-img-wrap {
    width: 100%;
    height: 220px;
  }

  .srv__h1 {
    font-size: 34px;
  }

  .srv__grid {
    grid-template-columns: 1fr;
  }

  .srv__img-band-abbr {
    display: none;
  }
}

@media (max-width: 480px) {
  .srv__h1 {
    font-size: 34px;
  }

  .srv__card-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .srv__card-foot {
    flex-direction: column;
    align-items: flex-start;
  }

  .srv__step {
    flex-direction: column;
    gap: 8px;
  }

  .srv__step-num {
    width: auto;
    font-size: 34px;
  }
}

@media (min-width: 1440px) {
  .srv__title-img-wrap {
    width: 320px;
    height: 360px;
  }
}

.srv__anim-bg {
  animation: srv-bg-shift 15s linear infinite;
}

@keyframes srv-bg-shift {
  0% {
    background-color: #0d0b14;
  }

  50% {
    background-color: #100e18;
  }

  100% {
    background-color: #0d0b14;
  }
}

.ab-us {
  background-color: #13111a;
  color: #e8e4d9;
  overflow-x: clip;
}

.ab-us .drop-in {
  animation: dropSettle 0.26s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.ab-us .drop-in--d1 {
  animation-delay: 0.06s;
}

.ab-us .drop-in--d2 {
  animation-delay: 0.12s;
}

.ab-us .drop-in--d3 {
  animation-delay: 0.18s;
}

@keyframes dropSettle {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

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

.ab-us .divider-radial {
  width: 100%;
  height: 1px;
  background: radial-gradient(ellipse 60% 100% at 50% 50%, #BA9351 0%, transparent 100%);
  border: none;
  margin: 0;
}

.ab-us .pg-wrap {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ab-us ::selection {
  background: rgba(186, 147, 81, 0.1);
  color: #e8e4d9;
}

.ab-us input::placeholder,
.ab-us textarea::placeholder {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.ab-us .sec-intro {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.ab-us .sec-intro__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
}

.ab-us .sec-intro__bg-img {
  width: 120%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.13;
  animation: panBg 28s linear infinite alternate;
  border: none;
}

@keyframes panBg {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-16.66%);
  }
}

.ab-us .sec-intro__inner {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 48px;
}

.ab-us .sec-intro__img-col {
  flex: 0 0 300px;
  position: relative;
}

.ab-us .sec-intro__img-frame {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(186, 147, 81, 0.28);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  position: relative;
}

.ab-us .sec-intro__img-frame img {
  width: 300px;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-us .sec-intro__img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(186, 147, 81, 0.18) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 7px;
  opacity: 0;
  transition: opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-us .sec-intro__img-frame:hover::after {
  opacity: 1;
}

.ab-us .sec-intro__img-frame:hover img {
  transform: scale(1.03);
}

.ab-us .sec-intro__dots {
  position: absolute;
  bottom: -24px;
  left: -16px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  width: 80px;
  pointer-events: none;
}

.ab-us .sec-intro__dots span {
  display: block;
  border-radius: 36px;
  background: #BA9351;
  opacity: 0.35;
}

.ab-us .sec-intro__dots span:nth-child(1) {
  width: 6px;
  height: 6px;
}

.ab-us .sec-intro__dots span:nth-child(2) {
  width: 4px;
  height: 4px;
  opacity: 0.2;
}

.ab-us .sec-intro__dots span:nth-child(3) {
  width: 8px;
  height: 8px;
  opacity: 0.45;
}

.ab-us .sec-intro__dots span:nth-child(4) {
  width: 4px;
  height: 4px;
  opacity: 0.18;
}

.ab-us .sec-intro__dots span:nth-child(5) {
  width: 6px;
  height: 6px;
  opacity: 0.3;
}

.ab-us .sec-intro__dots span:nth-child(6) {
  width: 4px;
  height: 4px;
  opacity: 0.22;
}

.ab-us .sec-intro__text-col {
  flex: 1 1 0;
  min-width: 0;
}

.ab-us .sec-intro__pre {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BA9351;
  margin-bottom: 16px;
  display: block;
}

.ab-us .sec-intro__h1 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #F5F6EE;
  margin-bottom: 24px;
  text-align: left;
}

.ab-us .sec-intro__h1 .acc {
  color: #C3D5A1;
}

.ab-us .sec-intro__body {
  font-size: 16px;
  line-height: 1.65;
  color: #b8b3a8;
  margin-bottom: 16px;
}

.ab-us .sec-intro__pull {
  border-left: 3px solid #BA9351;
  border-top: 1px solid rgba(186, 147, 81, 0.2);
  padding: 16px 16px 16px 24px;
  margin-top: 24px;
  border-radius: 0 4px 4px 0;
  background: rgba(186, 147, 81, 0.05);
  box-shadow: inset 0 1px 6px -2px rgba(186, 147, 81, 0.08);
}

.ab-us .sec-intro__pull p {
  font-size: 19px;
  line-height: 1.4;
  color: #C3D5A1;
  font-style: italic;
  margin: 0;
}

.ab-us .sec-team {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #F5F6EE;
  position: relative;
}

.ab-us .sec-team__h2 {
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: #13111a;
  text-align: center;
  margin-bottom: 8px;
}

.ab-us .sec-team__sub {
  font-size: 16px;
  line-height: 1.65;
  color: #4a4540;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.ab-us .sec-team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ab-us .mem {
  background: #fff;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(186, 147, 81, 0.15);
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  transition: box-shadow 0.24s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.ab-us .mem:hover {
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  transform: translateY(-4px);
}

.ab-us .mem__img-wrap {
  position: relative;
  overflow: hidden;
}

.ab-us .mem__img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

.ab-us .mem__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(186, 147, 81, 0);
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.ab-us .mem:hover .mem__img-wrap::after {
  background: rgba(186, 147, 81, 0.18);
}

.ab-us .mem:hover .mem__img-wrap img {
  transform: scale(1.04);
}

.ab-us .mem__body {
  padding: 16px;
}

.ab-us .mem__name {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  color: #13111a;
  margin-bottom: 4px;
}

.ab-us .mem__role {
  font-size: 13px;
  line-height: 1.4;
  color: #BA9351;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.ab-us .mem__desc {
  font-size: 13px;
  line-height: 1.65;
  color: #4a4540;
}

.ab-us .mem__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.ab-us .mem__tag {
  font-size: 13px;
  line-height: 1.4;
  padding: 4px 8px;
  border-radius: 36px;
  background: rgba(186, 147, 81, 0.1);
  color: #6b4e1e;
  border: 1px solid rgba(186, 147, 81, 0.22);
}

.ab-us .sec-team__dots {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.ab-us .sec-team__dots span {
  display: block;
  border-radius: 36px;
  background: #BA9351;
  opacity: 0.18;
}

.ab-us .sec-team__dots span:nth-child(1) {
  width: 10px;
  height: 10px;
}

.ab-us .sec-team__dots span:nth-child(2) {
  width: 6px;
  height: 6px;
}

.ab-us .sec-team__dots span:nth-child(3) {
  width: 8px;
  height: 8px;
}

@media (max-width: 960px) {
  .ab-us .sec-intro__inner {
    flex-direction: column;
    gap: 24px;
  }

  .ab-us .sec-intro__img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .ab-us .sec-intro__img-frame img {
    width: 100%;
    height: 260px;
  }

  .ab-us .sec-intro__h1 {
    font-size: 34px;
  }

  .ab-us .sec-team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .ab-us .sec-intro__h1 {
    font-size: 34px;
  }

  .ab-us .sec-team__grid {
    grid-template-columns: 1fr;
  }

  .ab-us .sec-intro__pull p {
    font-size: 16px;
  }
}

.cu-pg {
  background: #0e0c14;
  color: #e8e4dc;
  overflow-x: hidden;
}

.cu-pg .lim {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.cu-pg .top-band {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
}

.cu-pg .top-band::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #BA9351, transparent);
}

.cu-pg .top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.cu-pg .top-img-col {
  position: relative;
}

.cu-pg .top-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(186, 147, 81, 0.18);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.cu-pg .top-img-wrap img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  filter: saturate(0.6);
  transition: filter 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 88% 100%, 0 100%);
}

.cu-pg .top-img-wrap img:hover {
  filter: saturate(1);
}

.cu-pg .corner-acc {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 32px;
  height: 32px;
  border-top: 3px solid #BA9351;
  border-right: 3px solid #BA9351;
  border-radius: 0 4px 0 0;
  pointer-events: none;
}

.cu-pg .top-txt-col {
  padding-top: 16px;
}

.cu-pg .pg-label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #BA9351;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.cu-pg .pg-h1 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #F5F6EE;
  margin-bottom: 24px;
}

.cu-pg .pg-h1 .punct {
  color: #BA9351;
}

.cu-pg .pg-lead {
  font-size: 16px;
  line-height: 1.65;
  color: #b0aa9e;
  margin-bottom: 24px;
}

.cu-pg .info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cu-pg .info-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(195, 213, 161, 0.04);
  border-radius: 7px;
  border: 1px solid rgba(195, 213, 161, 0.08);
  border-left: 3px solid #BA9351;
}

.cu-pg .info-ico {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background: rgba(186, 147, 81, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-pg .info-ico svg {
  width: 18px;
  height: 18px;
  stroke: #BA9351;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu-pg .info-det strong {
  display: block;
  font-size: 13px;
  color: #BA9351;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.cu-pg .info-det span {
  font-size: 16px;
  color: #e8e4dc;
  line-height: 1.4;
}

.cu-pg .div-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 24px;
}

.cu-pg .div-line::before,
.cu-pg .div-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(186, 147, 81, 0.15);
}

.cu-pg .div-word {
  font-size: 13px;
  color: rgba(186, 147, 81, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cu-pg .form-band {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #13101d;
}

.cu-pg .form-head {
  text-align: center;
  margin-bottom: 48px;
}

.cu-pg .form-h2 {
  font-size: 34px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #F5F6EE;
  margin-bottom: 8px;
}

.cu-pg .form-sub {
  font-size: 16px;
  line-height: 1.65;
  color: #8a8478;
}

.cu-pg .form-card {
  background: #0e0c14;
  border-radius: 7px;
  border: 1px solid rgba(186, 147, 81, 0.14);
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.cu-pg .form-aside {
  background: linear-gradient(160deg, #1a1526 0%, #0e0c14 100%);
  padding: 48px 24px;
  border-right: 1px solid rgba(186, 147, 81, 0.1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cu-pg .aside-h {
  font-size: 19px;
  font-weight: 700;
  color: #F5F6EE;
  line-height: 1.4;
  margin-bottom: 8px;
}

.cu-pg .aside-p {
  font-size: 13px;
  line-height: 1.65;
  color: #7a7470;
}

.cu-pg .q-types {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.cu-pg .q-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 36px;
  font-size: 13px;
  background: rgba(195, 213, 161, 0.07);
  color: #C3D5A1;
  border: 1px solid rgba(195, 213, 161, 0.15);
  cursor: default;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s cubic-bezier(0.0, 0, 0.2, 1);
}

.cu-pg .q-badge:hover {
  background: rgba(195, 213, 161, 0.14);
  border-color: rgba(195, 213, 161, 0.3);
}

.cu-pg .float-ico {
  animation: floatup 3.2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  display: inline-block;
}

@keyframes floatup {

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

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

.cu-pg .aside-ico-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.cu-pg .aside-ico-box {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  background: rgba(186, 147, 81, 0.1);
  border: 1px solid rgba(186, 147, 81, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-pg .aside-ico-box svg {
  width: 22px;
  height: 22px;
  stroke: #BA9351;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu-pg .form-body {
  padding: 48px;
}

.cu-pg .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cu-pg .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.cu-pg .form-field--full {
  grid-column: 1 / -1;
}

.cu-pg .f-label {
  font-size: 13px;
  color: #BA9351;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cu-pg .f-input {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(186, 147, 81, 0.18);
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  color: #e8e4dc;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s cubic-bezier(0.0, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
}

.cu-pg .f-input::placeholder {
  color: rgba(232, 228, 220, 0.3);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cu-pg .f-input:focus {
  border-color: #BA9351;
  box-shadow: inset 0 0 0 1px rgba(186, 147, 81, 0.2), 0 1px 6px -2px rgba(186, 147, 81, 0.05);
}

.cu-pg .f-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(186, 147, 81, 0.18);
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  color: #e8e4dc;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
}

.cu-pg .f-select:focus {
  border-color: #BA9351;
  box-shadow: inset 0 0 0 1px rgba(186, 147, 81, 0.2);
}

.cu-pg .f-select option {
  background: #13101d;
  color: #e8e4dc;
}

.cu-pg .sel-wrap {
  position: relative;
}

.cu-pg .sel-wrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #BA9351;
  pointer-events: none;
}

.cu-pg .f-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(186, 147, 81, 0.18);
  border-radius: 4px;
  padding: 16px;
  font-size: 16px;
  color: #e8e4dc;
  outline: none;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.0, 0, 0.2, 1);
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  min-height: 120px;
}

.cu-pg .f-textarea::placeholder {
  color: rgba(232, 228, 220, 0.3);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cu-pg .f-textarea:focus {
  border-color: #BA9351;
  box-shadow: inset 0 0 0 1px rgba(186, 147, 81, 0.2), 0 1px 6px -2px rgba(186, 147, 81, 0.05);
}

.cu-pg .priv-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
  margin-top: 8px;
}

.cu-pg .priv-chk {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #BA9351;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.cu-pg .priv-txt {
  font-size: 13px;
  line-height: 1.65;
  color: #7a7470;
}

.cu-pg .priv-txt a {
  color: #C3D5A1;
  text-decoration: underline;
  text-decoration-color: rgba(195, 213, 161, 0.4);
  transition: color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .priv-txt a:hover {
  color: #F5F6EE;
}

.cu-pg .sub-btn {
  background: transparent;
  border: 1px solid #BA9351;
  border-radius: 4px;
  color: #BA9351;
  font-size: 16px;
  letter-spacing: 0.06em;
  padding: 16px 48px;
  cursor: pointer;
  transition: background 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .sub-btn:hover {
  background: #BA9351;
  color: #0e0c14;
}

.cu-pg .sub-btn:focus {
  outline: 2px solid #BA9351;
  outline-offset: 3px;
}

.cu-pg .sub-btn:active {
  background: #a07d3e;
  border-color: #a07d3e;
  color: #0e0c14;
}

.cu-pg .matrix-band {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  background: #0e0c14;
}

.cu-pg .matrix-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(195, 213, 161, 0.2), transparent);
}

.cu-pg .matrix-h {
  font-size: 34px;
  font-weight: 700;
  color: #F5F6EE;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 8px;
}

.cu-pg .matrix-sub {
  font-size: 16px;
  color: #7a7470;
  text-align: center;
  line-height: 1.65;
  margin-bottom: 48px;
}

.cu-pg .matrix-wrap {
  overflow: hidden;
  border-radius: 7px;
  border: 1px solid rgba(186, 147, 81, 0.14);
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
}

.cu-pg .matrix-table {
  width: 100%;
  border-collapse: collapse;
}

.cu-pg .matrix-table th {
  background: rgba(186, 147, 81, 0.1);
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #BA9351;
  text-align: left;
  border-bottom: 1px solid rgba(186, 147, 81, 0.15);
}

.cu-pg .matrix-table th:first-child {
  width: 40%;
}

.cu-pg .matrix-table td {
  padding: 16px;
  font-size: 16px;
  color: #b0aa9e;
  border-bottom: 1px solid rgba(186, 147, 81, 0.07);
  line-height: 1.4;
  vertical-align: middle;
}

.cu-pg .matrix-table tr:last-child td {
  border-bottom: none;
}

.cu-pg .matrix-table tr:nth-child(even) td {
  background: rgba(195, 213, 161, 0.025);
}

.cu-pg .matrix-table td:first-child {
  color: #F5F6EE;
  font-weight: 600;
}

.cu-pg .ind {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 36px;
}

.cu-pg .ind--yes {
  background: rgba(195, 213, 161, 0.15);
  border: 1px solid rgba(195, 213, 161, 0.3);
}

.cu-pg .ind--yes svg {
  width: 13px;
  height: 13px;
  stroke: #C3D5A1;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cu-pg .ind--no {
  background: rgba(186, 147, 81, 0.08);
  border: 1px solid rgba(186, 147, 81, 0.15);
}

.cu-pg .ind--no svg {
  width: 11px;
  height: 11px;
  stroke: rgba(186, 147, 81, 0.5);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.cu-pg .arr-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  gap: 8px;
}

.cu-pg .arr-svg {
  opacity: 0.35;
}

.cu-pg .arr-txt {
  font-size: 13px;
  color: #BA9351;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

@media (max-width: 960px) {
  .cu-pg .top-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cu-pg .top-img-wrap img {
    height: 240px;
  }

  .cu-pg .form-card {
    grid-template-columns: 1fr;
  }

  .cu-pg .form-aside {
    border-right: none;
    border-bottom: 1px solid rgba(186, 147, 81, 0.1);
    padding: 24px;
  }

  .cu-pg .form-body {
    padding: 24px;
  }

  .cu-pg .form-row {
    grid-template-columns: 1fr;
  }

  .cu-pg .pg-h1 {
    font-size: 34px;
  }
}

@media (max-width: 480px) {
  .cu-pg .pg-h1 {
    font-size: 34px;
  }

  .cu-pg .form-h2 {
    font-size: 19px;
  }

  .cu-pg .matrix-h {
    font-size: 19px;
  }

  .cu-pg .sub-btn {
    width: 100%;
  }

  .cu-pg .matrix-table td,
  .cu-pg .matrix-table th {
    padding: 8px;
    font-size: 13px;
  }
}

.cmpl {
  background: #12101a;
  color: #e8e4d8;
  overflow-x: clip;
}

.cmpl__json {
  display: none;
}

.cmpl .pg-head {
  position: relative;
  padding: 48px 24px;
  background: linear-gradient(160deg, #2a1f3d 0%, #12101a 100%);
  overflow: hidden;
}

.cmpl .pg-head__inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
}

.cmpl .pg-head__img-zone {
  flex: 0 0 42%;
  position: relative;
}

.cmpl .pg-head__img-wrap {
  width: 100%;
  height: 360px;
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid rgba(186, 147, 81, 0.28);
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.cmpl .pg-head__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.6) brightness(0.75);
}

.cmpl .pg-head__img-vignette {
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background: radial-gradient(ellipse at 30% 40%, transparent 40%, rgba(18, 16, 26, 0.72) 100%);
  pointer-events: none;
}

.cmpl .pg-head__txt-zone {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 0 48px 0;
  position: relative;
}

.cmpl .pg-head__deco {
  position: absolute;
  top: 16px;
  right: -8px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(195, 213, 161, 0.12);
  animation: pulse-ring 3.6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.cmpl .pg-head__deco::before {
  content: '';
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 1px solid rgba(195, 213, 161, 0.08);
}

@keyframes pulse-ring {

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

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

.cmpl .pg-head__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #BA9351;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.cmpl .pg-head__label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #BA9351;
  flex-shrink: 0;
}

.cmpl .pg-head__h1 {
  font-size: 46px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: #F5F6EE;
  margin: 0 0 24px 0;
}

.cmpl .pg-head__h1 span {
  color: #C3D5A1;
}

.cmpl .pg-head__desc {
  font-size: 16px;
  line-height: 1.65;
  color: #b8b2a4;
  max-width: 440px;
  margin: 0;
}

.cmpl .pg-head__grad-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #BA9351 40%, #C3D5A1 70%, transparent);
  pointer-events: none;
}

.cmpl .divider--dash {
  border: none;
  border-top: 1px dashed rgba(186, 147, 81, 0.22);
  margin: 0;
}

.cmpl .regs {
  padding: 48px 24px;
  background: #16131f;
}

.cmpl .regs__inner {
  max-width: 1024px;
  margin: 0 auto;
}

.cmpl .regs__head {
  text-align: center;
  margin-bottom: 48px;
}

.cmpl .regs__head h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F5F6EE;
  margin: 0 0 16px 0;
}

.cmpl .regs__head p {
  font-size: 16px;
  line-height: 1.65;
  color: #9e9890;
  max-width: 540px;
  margin: 0 auto;
}

.cmpl .regs__grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 24px;
  align-items: start;
}

.cmpl .regs__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cmpl .reg-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: 7px;
  background: #1c1826;
  border: 1px solid rgba(186, 147, 81, 0.12);
  border-left: 3px solid #BA9351;
  box-shadow: 0 1px 6px -2px rgba(186, 147, 81, 0.05);
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.cmpl .reg-item:hover {
  border-color: rgba(195, 213, 161, 0.3);
  border-left-color: #C3D5A1;
  box-shadow: 0 5px 14px -2px rgba(186, 147, 81, 0.08);
}

.cmpl .reg-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(186, 147, 81, 0.1);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.cmpl .reg-item__icon svg {
  width: 20px;
  height: 20px;
}

.cmpl .reg-item__body h4 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #F5F6EE;
  margin: 0 0 8px 0;
}

.cmpl .reg-item__body p {
  font-size: 13px;
  line-height: 1.65;
  color: #9e9890;
  margin: 0;
}

.cmpl .regs__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cmpl .aside-card {
  padding: 24px;
  border-radius: 7px;
  background: #211d2e;
  border: 1px solid rgba(195, 213, 161, 0.15);
  box-shadow: 0 5px 14px -2px rgba(195, 213, 161, 0.08);
}

.cmpl .aside-card__num {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  color: #BA9351;
  margin-bottom: 8px;
}

.cmpl .aside-card__label {
  font-size: 13px;
  line-height: 1.4;
  color: #9e9890;
}

.cmpl .divider--space {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(186, 147, 81, 0.18), transparent);
  border: none;
  margin: 0;
}

.cmpl .proc {
  padding: 48px 24px;
  background: #12101a;
  position: relative;
}

.cmpl .proc__bg-deco {
  position: absolute;
  top: 48px;
  right: 48px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(195, 213, 161, 0.06);
  border-radius: 4px;
  transform: rotate(15deg);
  pointer-events: none;
  animation: slow-spin 18s linear infinite;
}

@keyframes slow-spin {
  from {
    transform: rotate(15deg);
  }

  to {
    transform: rotate(375deg);
  }
}

.cmpl .proc__inner {
  max-width: 1024px;
  margin: 0 auto;
}

.cmpl .proc__head {
  margin-bottom: 48px;
}

.cmpl .proc__head h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F5F6EE;
  margin: 0 0 16px 0;
}

.cmpl .proc__head p {
  font-size: 16px;
  line-height: 1.65;
  color: #9e9890;
  max-width: 520px;
  margin: 0;
}

.cmpl .proc__anchor {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
}

.cmpl .proc__visual {
  flex: 0 0 280px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.cmpl .proc__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(186, 147, 81, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: inset 0 0 32px rgba(186, 147, 81, 0.08), 0 9px 52px -2px rgba(186, 147, 81, 0.13);
}

.cmpl .proc__circle::before {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 1px solid rgba(195, 213, 161, 0.15);
}

.cmpl .proc__circle-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #BA9351;
  text-align: center;
  line-height: 1.4;
}

.cmpl .proc__circle-val {
  font-size: 34px;
  font-weight: 700;
  color: #F5F6EE;
  line-height: 1.15;
  text-align: center;
}

.cmpl .proc__steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cmpl .step {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.cmpl .step__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(186, 147, 81, 0.12);
  border: 1px solid rgba(186, 147, 81, 0.3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #BA9351;
}

.cmpl .step__body h5 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #F5F6EE;
  margin: 0 0 8px 0;
}

.cmpl .step__body p {
  font-size: 13px;
  line-height: 1.65;
  color: #9e9890;
  margin: 0;
}

.cmpl .divider--dot {
  height: 1px;
  border: none;
  background: rgba(245, 246, 238, 0.06);
  margin: 0;
  position: relative;
}

.cmpl .contact-strip {
  padding: 48px 24px;
  background: #1c1826;
  position: relative;
  overflow: hidden;
}

.cmpl .contact-strip__blur-bg {
  position: absolute;
  inset: 0;
  background-image: url('./assets_gallery/wrapper20250219.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(0.4) brightness(0.18);
  pointer-events: none;
}

.cmpl .contact-strip__inner {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}

.cmpl .contact-strip__txt {
  flex: 1;
}

.cmpl .contact-strip__txt h2 {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #F5F6EE;
  margin: 0 0 16px 0;
}

.cmpl .contact-strip__txt p {
  font-size: 16px;
  line-height: 1.65;
  color: #b8b2a4;
  margin: 0 0 24px 0;
  max-width: 480px;
}

.cmpl .contact-strip__badges {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.cmpl .badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 36px;
  background: rgba(186, 147, 81, 0.1);
  border: 1px solid rgba(186, 147, 81, 0.25);
  font-size: 13px;
  color: #BA9351;
  line-height: 1.4;
}

.cmpl .badge--sec {
  background: rgba(195, 213, 161, 0.08);
  border-color: rgba(195, 213, 161, 0.2);
  color: #C3D5A1;
}

.cmpl .contact-strip__cta {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.cmpl .btn-ghost {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 4px;
  border: 1px solid rgba(186, 147, 81, 0.5);
  background: transparent;
  color: #BA9351;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.24s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.24s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s cubic-bezier(0.0, 0, 0.2, 1);
}

.cmpl .btn-ghost:hover,
.cmpl .btn-ghost:focus {
  background: rgba(186, 147, 81, 0.12);
  border-color: #BA9351;
  color: #F5F6EE;
  outline: none;
}

.cmpl .btn-ghost:focus-visible {
  box-shadow: 0 0 0 3px rgba(186, 147, 81, 0.4);
}

.cmpl .btn-ghost--sec {
  border-color: rgba(195, 213, 161, 0.4);
  color: #C3D5A1;
}

.cmpl .btn-ghost--sec:hover,
.cmpl .btn-ghost--sec:focus {
  background: rgba(195, 213, 161, 0.1);
  border-color: #C3D5A1;
  color: #F5F6EE;
}

.cmpl .pg-head__h1-reveal {
  animation: lift-in 0.26s cubic-bezier(0.0, 0, 0.2, 1) both;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@media (max-width: 960px) {
  .cmpl .pg-head__inner {
    flex-direction: column;
    gap: 24px;
  }

  .cmpl .pg-head__img-zone {
    flex: none;
    width: 100%;
  }

  .cmpl .pg-head__img-wrap {
    height: 240px;
  }

  .cmpl .pg-head__txt-zone {
    padding: 0;
  }

  .cmpl .pg-head__h1 {
    font-size: 34px;
  }

  .cmpl .regs__grid {
    grid-template-columns: 1fr;
  }

  .cmpl .regs__aside {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cmpl .aside-card {
    flex: 1;
    min-width: 140px;
  }

  .cmpl .proc__anchor {
    flex-direction: column;
    gap: 24px;
  }

  .cmpl .proc__visual {
    flex: none;
    width: 100%;
    min-height: 180px;
  }

  .cmpl .contact-strip__inner {
    flex-direction: column;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .cmpl .pg-head {
    padding: 24px 16px;
  }

  .cmpl .pg-head__h1 {
    font-size: 34px;
  }

  .cmpl .regs {
    padding: 24px 16px;
  }

  .cmpl .proc {
    padding: 24px 16px;
  }

  .cmpl .contact-strip {
    padding: 24px 16px;
  }

  .cmpl .contact-strip__badges {
    flex-direction: column;
  }

  .cmpl .regs__aside {
    flex-direction: column;
  }
}

.suc {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #12101a;
  padding: 48px 16px;
}

.suc__card {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  background: #1a1625;
  border: 1px solid rgba(186, 147, 81, 0.18);
  border-radius: 7px;
  padding: 48px;
  box-shadow: 0 9px 52px -2px rgba(186, 147, 81, 0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.suc__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.suc__icon-circle {
  fill: none;
  stroke: #BA9351;
  stroke-width: 2;
  stroke-dasharray: 188;
  stroke-dashoffset: 0;
}

.suc__icon-check {
  fill: none;
  stroke: #C3D5A1;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.suc__label {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #BA9351;
  margin-bottom: 8px;
  line-height: 1.4;
}

.suc__title {
  font-size: 34px;
  font-weight: 700;
  color: #F5F6EE;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.suc__title span {
  color: #C3D5A1;
}

.suc__desc {
  font-size: 16px;
  color: #a8a4b8;
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 48px;
}

.suc__divider {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #BA9351, #C3D5A1);
  border-radius: 4px;
  margin-bottom: 48px;
}

.suc__info {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 48px;
  width: 100%;
  max-width: 640px;
}

.suc__info-item {
  flex: 1;
  background: #211d2e;
  border: 1px solid rgba(195, 213, 161, 0.1);
  border-radius: 7px;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.suc__info-item svg {
  flex-shrink: 0;
}

.suc__info-label {
  font-size: 13px;
  color: #6e6a80;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.suc__info-val {
  font-size: 16px;
  color: #F5F6EE;
  line-height: 1.4;
  font-weight: 600;
}

.suc__btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 4px;
  border: 1px solid #BA9351;
  background: transparent;
  color: #BA9351;
  font-size: 16px;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.4;
  transition: background-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.suc__btn:hover,
.suc__btn:focus {
  background-color: #BA9351;
  color: #12101a;
  outline: none;
}

.suc__btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(186, 147, 81, 0.4);
}

@media (max-width: 480px) {
  .suc__card {
    padding: 24px 16px;
  }

  .suc__title {
    font-size: 19px;
  }

  .suc__info {
    flex-direction: column;
    gap: 16px;
  }

  .suc__btn {
    width: 100%;
    text-align: center;
    padding: 16px 24px;
  }
}