* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.site-header {
  position: relative;
  background: linear-gradient(180deg, #1a0d18 0%, #2a0e26 60%, #1e0a1b 100%);
  border-bottom: 1.5px solid #B74CA5;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
  font-family: 'Rubik', sans-serif;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.header-accent-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #B74CA5 40%, #C38EBB 70%, transparent 100%);
}

.header-frame {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  min-height: 88px;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border: 1px solid rgba(183, 76, 165, 0.35);
  border-radius: 6px;
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08), 0 0 0 1px rgba(195, 142, 187, 0.12);
  background: rgba(183, 76, 165, 0.07);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-img {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-name {
  font-family: 'Spectral', serif;
  font-size: 15px;
  font-weight: 700;
  color: #FDFBFC;
  letter-spacing: 0.12em;
  margin-top: 8px;
  line-height: 1.15;
  text-transform: uppercase;
}

.nav-link {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #C38EBB;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.15;
  padding: 8px 16px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: color 0.1s ease-out, border-color 0.12s ease-out, background 0.1s ease-out;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-link:hover,
.nav-link:focus {
  color: #FDFBFC;
  border-color: rgba(183, 76, 165, 0.4);
  background: rgba(183, 76, 165, 0.1);
  outline: none;
}

.nav-link:focus-visible {
  outline: 2px solid #B74CA5;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(183, 76, 165, 0.18);
}

.lang-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}

.lang-btn {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FDFBFC;
  background: rgba(183, 76, 165, 0.18);
  border: 1px solid rgba(183, 76, 165, 0.5);
  border-radius: 2px;
  padding: 8px 16px;
  cursor: pointer;
  letter-spacing: 0.06em;
  min-height: 44px;
  line-height: 1.15;
  transition: background 0.08s linear, border-color 0.1s ease-out;
}

.lang-btn:hover {
  background: rgba(183, 76, 165, 0.32);
  border-color: #B74CA5;
}

.lang-btn:focus-visible {
  outline: 2px solid #B74CA5;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(183, 76, 165, 0.18);
}

@media (max-width: 1024px) {
  .header-frame {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    min-height: unset;
    padding: 16px 28px;
    gap: 16px;
  }

  .nav-left,
  .nav-right {
    justify-content: center;
  }

  .nav-left,
  .nav-right,
  .lang-box {
    order: 2;
  }

  .brand-box {
    order: 1;
  }

  .header-frame {
    display: flex;
    flex-direction: column;
  }

  .header-nav-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .brand-img {
    width: 56px;
    height: 56px;
  }

  .nav-link {
    font-size: 15px;
    padding: 8px 16px;
  }
}

@media (max-width: 320px) {
  .header-frame {
    padding: 16px 8px;
  }

  .nav-link {
    padding: 8px;
  }
}

.site-footer {
  background: linear-gradient(160deg, #130a12 0%, #1e0a1b 100%);
  border-top: 1.5px solid rgba(183, 76, 165, 0.3);
  font-family: 'Rubik', sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #B74CA5 30%, #C38EBB 70%, transparent);
  pointer-events: none;
}

.footer-frame {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px 28px;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 56px;
  align-items: start;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(183, 76, 165, 0.25);
  border-radius: 6px;
  background: rgba(183, 76, 165, 0.05);
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08);
}

.footer-logo-img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.footer-brand-label {
  font-family: 'Spectral', serif;
  font-size: 17px;
  font-weight: 700;
  color: #FDFBFC;
  letter-spacing: 0.1em;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 15px;
  color: #C38EBB;
  line-height: 1.65;
  letter-spacing: 0.02em;
  max-width: 260px;
}

.footer-year {
  font-size: 15px;
  color: rgba(195, 142, 187, 0.55);
  letter-spacing: 0.05em;
  line-height: 1.15;
}

.footer-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-label {
  font-size: 15px;
  font-weight: 700;
  color: #B74CA5;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.footer-contact-item {
  font-size: 15px;
  color: #C38EBB;
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.1s ease-out;
  display: block;
}

.footer-contact-item:hover {
  color: #FDFBFC;
}

.footer-contact-item:focus-visible {
  outline: 2px solid #B74CA5;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(183, 76, 165, 0.18);
  border-radius: 2px;
}

.footer-policy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.footer-policy-link {
  font-size: 15px;
  color: rgba(195, 142, 187, 0.65);
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.03em;
  line-height: 1.65;
  transition: color 0.1s ease-out;
}

.footer-policy-link:hover {
  color: #C38EBB;
}

.footer-policy-link:focus-visible {
  outline: 2px solid #B74CA5;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(183, 76, 165, 0.18);
  border-radius: 2px;
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 28px 28px;
  border-top: 1px solid rgba(183, 76, 165, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-copy {
  font-size: 15px;
  color: rgba(195, 142, 187, 0.45);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

@media (max-width: 768px) {
  .footer-frame {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px 16px;
  }

  .footer-bottom {
    padding: 16px;
  }
}

@media (max-width: 320px) {
  .footer-frame {
    padding: 28px 8px 16px;
  }
}

.consent-shelf {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  background: linear-gradient(90deg, #1e0a1b 0%, #2a0e26 100%);
  border-top: 1.5px solid rgba(183, 76, 165, 0.45);
  box-shadow: 0 12px 52px 0 rgba(183, 76, 165, 0.10);
  padding: 16px 28px;
  display: none;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
}

.consent-shelf.visible {
  transform: translateX(0);
}

.consent-text {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: #C38EBB;
  line-height: 1.65;
  letter-spacing: 0.02em;
  flex: 1;
  min-width: 200px;
}

.consent-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.consent-accept {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FDFBFC;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  padding: 0;
  transition: color 0.1s ease-out;
}

.consent-accept:hover {
  color: #B74CA5;
}

.consent-accept:focus-visible {
  outline: 2px solid #B74CA5;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(183, 76, 165, 0.18);
  border-radius: 2px;
}

.consent-decline {
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(195, 142, 187, 0.65);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  letter-spacing: 0.04em;
  line-height: 1.65;
  padding: 0;
  transition: color 0.1s ease-out;
}

.consent-decline:hover {
  color: #C38EBB;
}

.consent-decline:focus-visible {
  outline: 2px solid #B74CA5;
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(183, 76, 165, 0.18);
  border-radius: 2px;
}

.info-doc-ubp {
  max-width: 1320px;
  margin: 0 auto;
  padding: 56px 28px;
  color: #FDFBFC;
  background: #12060f;
}

.info-doc-ubp h1 {
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FDFBFC;
  margin-bottom: 28px;
  margin-top: 0;
}

.info-doc-ubp h2 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #FDFBFC;
  margin-top: 56px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(183, 76, 165, 0.22);
}

.info-doc-ubp h3 {
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  color: #C38EBB;
  margin-top: 28px;
  margin-bottom: 8px;
}

.info-doc-ubp h4 {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: #C38EBB;
  margin-top: 28px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-doc-ubp h5 {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(195, 142, 187, 0.8);
  margin-top: 16px;
  margin-bottom: 8px;
}

.info-doc-ubp h6 {
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: rgba(195, 142, 187, 0.65);
  margin-top: 16px;
  margin-bottom: 8px;
}

.info-doc-ubp p {
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  color: rgba(253, 251, 252, 0.82);
  margin-top: 0;
  margin-bottom: 16px;
  max-width: 72ch;
}

.info-doc-ubp strong,
.info-doc-ubp b {
  font-weight: 600;
  color: #FDFBFC;
}

.info-doc-ubp em,
.info-doc-ubp i {
  font-style: italic;
  color: rgba(253, 251, 252, 0.75);
}

.info-doc-ubp a {
  color: #B74CA5;
  text-decoration: underline;
  text-decoration-color: rgba(183, 76, 165, 0.4);
  text-underline-offset: 3px;
  transition: color 0.1s ease-out, text-decoration-color 0.1s ease-out;
}

.info-doc-ubp a:hover {
  color: #C38EBB;
  text-decoration-color: rgba(195, 142, 187, 0.7);
}

.info-doc-ubp hr {
  border: none;
  border-top: 1px solid rgba(183, 76, 165, 0.18);
  margin-top: 56px;
  margin-bottom: 56px;
}

.info-doc-ubp table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.65;
  margin-top: 28px;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
  border-radius: 6px;
  overflow: hidden;
}

.info-doc-ubp thead {
  background: rgba(183, 76, 165, 0.18);
}

.info-doc-ubp tbody tr {
  border-bottom: 1px solid rgba(183, 76, 165, 0.1);
  transition: background 0.08s linear;
}

.info-doc-ubp tbody tr:last-child {
  border-bottom: none;
}

.info-doc-ubp tbody tr:hover {
  background: rgba(183, 76, 165, 0.07);
}

.info-doc-ubp th {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #C38EBB;
  font-weight: 600;
  padding: 16px 28px;
  text-align: left;
  background: transparent;
}

.info-doc-ubp td {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.8);
  padding: 16px 28px;
  vertical-align: top;
}

@media (max-width: 768px) {
  .info-doc-ubp {
    padding: 28px 16px;
  }

  .info-doc-ubp h1 {
    font-size: 21px;
  }

  .info-doc-ubp h2 {
    font-size: 17px;
    margin-top: 28px;
  }

  .info-doc-ubp table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 6px;
  }

  .info-doc-ubp th,
  .info-doc-ubp td {
    padding: 8px 16px;
  }
}

@media (max-width: 320px) {
  .info-doc-ubp {
    padding: 16px 8px;
  }

  .info-doc-ubp p {
    font-size: 15px;
  }
}

.strt {
  background-color: #0e0810;
  color: #FDFBFC;
  overflow-x: clip;
  position: relative;
}

.strt .pg-wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.strt .grain-bg {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.strt .rel {
  position: relative;
  z-index: 1;
}

.strt .tb {
  padding: 56px 0 56px;
}

.strt .tb-strip {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  margin-bottom: 56px;
}

.strt .tb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: auto;
  filter: contrast(1.08) saturate(0.9);
}

.strt .tb-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(183, 76, 165, 0.18) 0%, rgba(14, 8, 16, 0.55) 100%);
}

.strt .tb-geo {
  position: absolute;
  top: 16px;
  right: 56px;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(195, 142, 187, 0.18);
  transform: rotate(22deg);
  pointer-events: none;
}

.strt .tb-geo-sm {
  position: absolute;
  bottom: 28px;
  left: 96px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(183, 76, 165, 0.22);
  transform: rotate(45deg);
  pointer-events: none;
}

.strt .tb-body {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
}

.strt .tb-text {
  flex: 1 1 0;
}

.strt .tb-bracket {
  display: inline-block;
  padding: 28px;
  position: relative;
}

.strt .tb-bracket::before,
.strt .tb-bracket::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.strt .tb-bracket::before {
  top: 0;
  left: 0;
  border-top: 2px solid #B74CA5;
  border-left: 2px solid #B74CA5;
}

.strt .tb-bracket::after {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid #B74CA5;
  border-right: 2px solid #B74CA5;
}

.strt .tb-label {
  font-size: 15px;
  letter-spacing: 0.12em;
  color: #C38EBB;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.strt .tb-h1 {
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FDFBFC;
  margin: 0 0 28px;
  font-weight: 700;
}

.strt .tb-h1 em {
  font-style: normal;
  color: #B74CA5;
}

.strt .tb-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.78);
  max-width: 520px;
  margin: 0;
}

.strt .tb-side {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 28px;
}

.strt .tb-stat {
  background: rgba(183, 76, 165, 0.07);
  border: 1px solid rgba(183, 76, 165, 0.15);
  border-radius: 6px;
  padding: 16px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strt .tb-stat-num {
  font-size: 21px;
  font-weight: 700;
  color: #B74CA5;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.strt .tb-stat-lbl {
  font-size: 15px;
  color: rgba(253, 251, 252, 0.65);
  line-height: 1.65;
}

.strt .div-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(183, 76, 165, 0.45) 30%, rgba(195, 142, 187, 0.55) 50%, rgba(183, 76, 165, 0.45) 70%, transparent 100%);
  margin: 0;
}

.strt .appr {
  padding: 96px 0 56px;
}

.strt .appr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.strt .appr-left {
  position: relative;
}

.strt .appr-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 12px 52px 0 rgba(183, 76, 165, 0.10);
}

.strt .appr-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.12s ease-out;
}

.strt .appr-img-wrap:hover img {
  transform: scale(1.04);
}

.strt .appr-corner {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 64px;
  height: 64px;
  pointer-events: none;
}

.strt .appr-corner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom: 2px solid rgba(183, 76, 165, 0.4);
  border-left: 2px solid rgba(183, 76, 165, 0.4);
}

.strt .appr-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.strt .appr-tag {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #C38EBB;
  text-transform: uppercase;
  font-weight: 600;
}

.strt .appr-h2 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FDFBFC;
  margin: 0;
}

.strt .appr-p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.78);
  margin: 0;
}

.strt .appr-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.strt .step-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #B74CA5;
  margin-top: 8px;
}

.strt .step-txt {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.75);
}

.strt .div-thick {
  width: 100%;
  height: 2px;
  background: conic-gradient(from 270deg at 50% 50%, #B74CA5 0%, #C38EBB 25%, rgba(14, 8, 16, 0) 50%, #C38EBB 75%, #B74CA5 100%);
  opacity: 0.35;
}

.strt .prob {
  padding: 56px 0 96px;
  position: relative;
}

.strt .prob-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.strt .prob-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.strt .prob-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 8, 16, 0.82);
  z-index: 1;
}

.strt .prob-inner {
  position: relative;
  z-index: 2;
}

.strt .prob-top {
  text-align: center;
  margin-bottom: 56px;
}

.strt .prob-h2 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FDFBFC;
  margin: 0 0 16px;
}

.strt .prob-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.72);
  max-width: 560px;
  margin: 0 auto;
}

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

.strt .prob-card {
  background: rgba(14, 8, 16, 0.7);
  border: 1px solid rgba(195, 142, 187, 0.14);
  border-radius: 6px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
  transition: border-color 0.1s linear;
}

.strt .prob-card:hover {
  border-color: rgba(183, 76, 165, 0.38);
}

.strt .prob-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.strt .prob-card-h {
  font-size: 17px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #FDFBFC;
  margin: 0;
}

.strt .prob-card-p {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.68);
  margin: 0;
}

.strt .div-dots {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
}

.strt .ddot {
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: rgba(183, 76, 165, 0.35);
}

.strt .ddot-mid {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: rgba(183, 76, 165, 0.6);
}

.strt .recog {
  padding: 96px 0 96px;
}

.strt .recog-split {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 56px;
  align-items: start;
}

.strt .recog-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.strt .recog-tag {
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #C38EBB;
  text-transform: uppercase;
  font-weight: 600;
}

.strt .recog-h2 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FDFBFC;
  margin: 0;
}

.strt .recog-p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.75);
  margin: 0;
}

.strt .recog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.strt .recog-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.strt .recog-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 0px;
  background: #B74CA5;
  margin-top: 9px;
}

.strt .recog-item-txt {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.72);
}

.strt .recog-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.strt .recog-profiles {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.strt .recog-profile {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
  background: rgba(183, 76, 165, 0.06);
  border: 1px solid rgba(183, 76, 165, 0.13);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08);
}

.strt .recog-portrait {
  flex-shrink: 0;
  width: 80px;
  height: 100px;
  overflow: hidden;
  border-radius: 2px;
}

.strt .recog-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.strt .recog-prof-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.strt .recog-prof-name {
  font-size: 17px;
  font-weight: 700;
  color: #FDFBFC;
  line-height: 1.15;
}

.strt .recog-prof-role {
  font-size: 15px;
  color: #C38EBB;
  line-height: 1.65;
}

.strt .recog-prof-quote {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.68);
  margin: 0;
}

.strt .recog-border {
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(183, 76, 165, 0.4) 30%, rgba(195, 142, 187, 0.5) 70%, transparent 100%);
  align-self: stretch;
}

@keyframes drop-bounce {
  0% {
    opacity: 0;
    transform: translateY(-28px);
  }

  70% {
    opacity: 1;
    transform: translateY(4px);
  }

  85% {
    transform: translateY(-3px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.strt .tb-bracket {
  animation: drop-bounce 0.4s ease-out both;
}

.strt .tb-side {
  animation: drop-bounce 0.4s 0.08s ease-out both;
}

.strt .appr-grid {
  animation: drop-bounce 0.35s 0.05s ease-out both;
}

@media (max-width: 1024px) {
  .strt .tb-h1 {
    font-size: 56px;
  }

  .strt .tb-body {
    flex-direction: column;
    gap: 28px;
  }

  .strt .tb-side {
    flex: none;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .strt .appr-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .strt .recog-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .strt .recog-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .strt .tb-h1 {
    font-size: 38px;
  }

  .strt .tb-strip {
    height: 140px;
    margin-bottom: 28px;
  }

  .strt .tb-side {
    grid-template-columns: 1fr;
  }

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

  .strt .recog-list {
    grid-template-columns: 1fr;
  }

  .strt .appr {
    padding: 56px 0 28px;
  }

  .strt .recog {
    padding: 56px 0;
  }

  .strt .prob {
    padding: 56px 0;
  }
}

@media (max-width: 320px) {
  .strt .tb-h1 {
    font-size: 28px;
  }

  .strt .pg-wrap {
    padding: 0 16px;
  }

  .strt .tb-bracket {
    padding: 16px;
  }
}

.abt-us {
  background-color: #0e0810;
  color: #FDFBFC;
  overflow-x: clip;
  position: relative;
}

.abt-us .pg-schema {
  display: none;
}

.abt-us .diag-split {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}

.abt-us .diag-split::before {
  content: '';
  position: absolute;
  inset: 0;
  background: conic-gradient(from 210deg at 30% 60%, #1a0a1a 0deg, #2a0d28 60deg, #3d1a3a 100deg, #B74CA5 160deg, #C38EBB 200deg, #1a0a1a 280deg, #0e0810 360deg);
  opacity: 0.72;
  z-index: 0;
}

.abt-us .diag-split::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #B74CA5 40%, #C38EBB 70%, transparent 100%);
  z-index: 2;
}

.abt-us .diag-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 1;
}

.abt-us .diag-text {
  flex: 1 1 0;
  min-width: 0;
}

.abt-us .diag-label {
  font-size: 15px;
  line-height: 1.15;
  letter-spacing: 0.14em;
  color: #C38EBB;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.abt-us .diag-h1 {
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 28px 0;
  color: #FDFBFC;
}

.abt-us .diag-h1 span {
  color: #B74CA5;
  display: block;
}

.abt-us .diag-desc {
  font-size: 17px;
  line-height: 1.65;
  color: #d4bdd0;
  max-width: 520px;
  margin: 0;
}

.abt-us .diag-img-col {
  flex: 0 0 380px;
  position: relative;
}

.abt-us .diag-img-frame {
  width: 380px;
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 12px 52px 0 rgba(183, 76, 165, 0.10);
  position: relative;
  clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
}

.abt-us .diag-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.12s ease-out;
}

.abt-us .diag-img-frame:hover img {
  transform: scale(1.04);
}

.abt-us .diag-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(183, 76, 165, 0.18) 0%, transparent 60%);
  pointer-events: none;
}

.abt-us .diag-edge-line {
  position: absolute;
  right: -8px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #B74CA5 30%, #C38EBB 70%, transparent 100%);
  border-radius: 2px;
}

.abt-us .story-band {
  padding: 96px 0;
  position: relative;
  background: #130b13;
}

.abt-us .story-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('./photo_archive/bg_j.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.09;
  z-index: 0;
  animation: desat-cycle 8s linear infinite;
}

@keyframes desat-cycle {
  0% {
    filter: saturate(1);
    opacity: 0.09;
  }

  50% {
    filter: saturate(0);
    opacity: 0.06;
  }

  100% {
    filter: saturate(1);
    opacity: 0.09;
  }
}

.abt-us .story-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.abt-us .story-centered {
  max-width: 680px;
  margin: 0 auto 56px auto;
  text-align: center;
}

.abt-us .story-h2 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FDFBFC;
  margin: 0 0 16px 0;
}

.abt-us .story-lead {
  font-size: 17px;
  line-height: 1.65;
  color: #c9afc5;
  margin: 0;
}

.abt-us .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 56px;
}

.abt-us .story-card {
  background: rgba(183, 76, 165, 0.07);
  border: 1px solid rgba(195, 142, 187, 0.15);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
  transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
}

.abt-us .story-card:hover {
  border-color: rgba(183, 76, 165, 0.38);
  box-shadow: 0 12px 52px 0 rgba(183, 76, 165, 0.10);
}

.abt-us .card-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 2px;
  background: rgba(183, 76, 165, 0.18);
  margin-bottom: 16px;
}

.abt-us .card-mark svg {
  display: block;
}

.abt-us .card-h {
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FDFBFC;
  margin: 0 0 8px 0;
}

.abt-us .card-p {
  font-size: 15px;
  line-height: 1.65;
  color: #c0a3bc;
  margin: 0;
}

.abt-us .story-code-wrap {
  background: #1a0d1a;
  border: 1px solid rgba(183, 76, 165, 0.22);
  border-radius: 6px;
  padding: 28px;
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08);
  max-width: 760px;
  margin: 0 auto;
}

.abt-us .code-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.abt-us .code-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(195, 142, 187, 0.3);
  display: inline-block;
}

.abt-us .code-dot.act {
  background: #B74CA5;
  animation: dot-pulse 1.8s linear infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.abt-us .code-label {
  font-size: 15px;
  line-height: 1.15;
  color: rgba(195, 142, 187, 0.55);
  letter-spacing: 0.06em;
  margin-left: 8px;
}

.abt-us .code-block {
  font-size: 15px;
  line-height: 1.65;
  color: #d4bdd0;
  white-space: pre;
  overflow-x: auto;
  margin: 0;
  font-family: 'Courier New', monospace;
}

.abt-us .code-block .ck {
  color: #B74CA5;
}

.abt-us .code-block .cv {
  color: #C38EBB;
}

.abt-us .code-block .cc {
  color: rgba(195, 142, 187, 0.45);
}

.abt-us .team-band {
  padding: 96px 0 56px 0;
  position: relative;
  background: #0e0810;
}

.abt-us .team-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: conic-gradient(from 0deg at 50% 0%, #B74CA5 0deg, #C38EBB 90deg, transparent 180deg);
  opacity: 0.5;
}

.abt-us .team-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.abt-us .team-layout {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 56px;
}

.abt-us .team-portrait-col {
  flex: 0 0 260px;
}

.abt-us .portrait-frame {
  width: 260px;
  height: 325px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 52px 0 rgba(183, 76, 165, 0.10);
  position: relative;
}

.abt-us .portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.12s ease-out;
}

.abt-us .portrait-frame:hover img {
  transform: scale(1.04);
}

.abt-us .portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(14, 8, 16, 0.65) 100%);
  pointer-events: none;
}

.abt-us .team-text-col {
  flex: 1 1 0;
  min-width: 0;
}

.abt-us .team-h2 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: #FDFBFC;
  margin: 0 0 16px 0;
}

.abt-us .team-body {
  font-size: 17px;
  line-height: 1.65;
  color: #c9afc5;
  margin: 0 0 28px 0;
}

.abt-us .person-name {
  font-size: 17px;
  line-height: 1.15;
  font-weight: 700;
  color: #FDFBFC;
  margin: 0 0 8px 0;
}

.abt-us .person-role {
  font-size: 15px;
  line-height: 1.15;
  color: #B74CA5;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.abt-us .person-quote {
  font-size: 15px;
  line-height: 1.65;
  color: #c0a3bc;
  margin: 0 0 28px 0;
  padding: 16px;
  background: rgba(183, 76, 165, 0.07);
  border-radius: 6px;
  border-top: 2px solid rgba(183, 76, 165, 0.3);
}

.abt-us .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.abt-us .check-list li {
  font-size: 15px;
  line-height: 1.65;
  color: #c0a3bc;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
}

.abt-us .chk-icon {
  flex-shrink: 0;
  margin-top: 4px;
  display: inline-block;
  width: 14px;
  height: 14px;
}

.abt-us .team-img-strip {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 28px;
}

.abt-us .strip-img {
  flex: 1 1 0;
  height: 160px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08);
  position: relative;
}

.abt-us .strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.1s ease-out;
}

.abt-us .strip-img:hover img {
  transform: scale(1.05);
}

.abt-us .strip-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(183, 76, 165, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.abt-us .svg-divider {
  display: block;
  width: 100%;
  height: 32px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .abt-us .diag-h1 {
    font-size: 48px;
  }

  .abt-us .diag-img-col {
    flex: 0 0 300px;
  }

  .abt-us .diag-img-frame {
    width: 300px;
    height: 260px;
  }

  .abt-us .team-layout {
    gap: 28px;
  }

  .abt-us .team-portrait-col {
    flex: 0 0 220px;
  }

  .abt-us .portrait-frame {
    width: 220px;
    height: 275px;
  }
}

@media (max-width: 768px) {
  .abt-us .diag-inner {
    flex-direction: column;
    gap: 28px;
  }

  .abt-us .diag-h1 {
    font-size: 36px;
  }

  .abt-us .diag-img-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt-us .diag-img-frame {
    width: 100%;
    height: 240px;
  }

  .abt-us .diag-edge-line {
    display: none;
  }

  .abt-us .story-grid {
    grid-template-columns: 1fr;
  }

  .abt-us .team-layout {
    flex-direction: column;
    gap: 28px;
  }

  .abt-us .team-portrait-col {
    flex: 0 0 auto;
    width: 100%;
  }

  .abt-us .portrait-frame {
    width: 200px;
    height: 250px;
    margin: 0 auto;
  }

  .abt-us .check-list {
    grid-template-columns: 1fr;
  }

  .abt-us .team-img-strip {
    flex-direction: column;
  }

  .abt-us .strip-img {
    height: 180px;
  }

  .abt-us .code-block {
    font-size: 13px;
    white-space: pre-wrap;
  }
}

@media (max-width: 320px) {
  .abt-us .diag-h1 {
    font-size: 28px;
  }

  .abt-us .diag-inner,
  .abt-us .story-inner,
  .abt-us .team-inner {
    padding: 0 16px;
  }
}

.ctus {
  background: #0e0810;
  min-height: 100vh;
  position: relative;
}

.ctus .reveal {
  opacity: 0;
  transform: translateY(32px);
  animation: revealUp 0.55s ease-out forwards;
}

.ctus .reveal-d1 {
  animation-delay: 0.08s;
}

.ctus .reveal-d2 {
  animation-delay: 0.18s;
}

.ctus .reveal-d3 {
  animation-delay: 0.28s;
}

.ctus .reveal-d4 {
  animation-delay: 0.38s;
}

.ctus .reveal-d5 {
  animation-delay: 0.48s;
}

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

.ctus .pg-area {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.ctus .lbl-tag {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C38EBB;
  font-weight: 600;
  margin-bottom: 16px;
}

.ctus .fade-mark {
  position: absolute;
  font-size: 220px;
  line-height: 1.15;
  color: #B74CA5;
  opacity: 0.04;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  bottom: -40px;
  left: -20px;
  z-index: 0;
}

.ctus .split-band {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 100vh;
  position: relative;
}

.ctus .img-col {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}

.ctus .img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.12s ease-out;
}

.ctus .img-col:hover img {
  transform: scale(1.04);
}

.ctus .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(183, 76, 165, 0.38) 0%, rgba(14, 8, 16, 0.72) 100%);
  pointer-events: none;
}

.ctus .img-badge {
  position: absolute;
  bottom: 56px;
  left: 28px;
  background: rgba(14, 8, 16, 0.82);
  border: 1px solid rgba(195, 142, 187, 0.22);
  border-radius: 6px;
  padding: 16px 28px;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
}

.ctus .img-badge-label {
  font-size: 15px;
  color: #C38EBB;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 8px;
}

.ctus .img-badge-val {
  font-size: 21px;
  color: #FDFBFC;
  font-weight: 700;
  line-height: 1.15;
}

.ctus .corner-deco {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.ctus .corner-deco.tl {
  top: 28px;
  left: 28px;
  border-top: 2px solid rgba(183, 76, 165, 0.55);
  border-left: 2px solid rgba(183, 76, 165, 0.55);
}

.ctus .corner-deco.br {
  bottom: 28px;
  right: 28px;
  border-bottom: 2px solid rgba(183, 76, 165, 0.55);
  border-right: 2px solid rgba(183, 76, 165, 0.55);
}

.ctus .txt-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 56px 96px 56px;
  position: relative;
  background: #0e0810;
}

.ctus .pg-h1 {
  font-size: 68px;
  line-height: 1.15;
  color: #FDFBFC;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 28px 0;
}

.ctus .pg-h1 .accent-dot {
  color: #B74CA5;
}

.ctus .lead-p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.72);
  max-width: 460px;
  margin: 0 0 56px 0;
}

.ctus .contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ctus .cinfo-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.ctus .cinfo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(183, 76, 165, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(183, 76, 165, 0.2);
}

.ctus .cinfo-icon svg {
  width: 18px;
  height: 18px;
  fill: #C38EBB;
}

.ctus .cinfo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ctus .cinfo-lbl {
  font-size: 15px;
  color: rgba(253, 251, 252, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
}

.ctus .cinfo-val {
  font-size: 17px;
  color: #FDFBFC;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.1s ease-out;
}

.ctus .cinfo-val:hover {
  color: #B74CA5;
}

.ctus .form-panel {
  background: conic-gradient(from 210deg at 15% 85%, rgba(183, 76, 165, 0.14) 0deg, rgba(14, 8, 16, 0) 90deg, rgba(195, 142, 187, 0.07) 200deg, rgba(14, 8, 16, 0) 360deg);
  border-top: 1px solid rgba(195, 142, 187, 0.1);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.ctus .chevron-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ctus .chevron-bg svg {
  position: absolute;
  opacity: 0.035;
  fill: none;
  stroke: #C38EBB;
  stroke-width: 1.5;
}

.ctus .form-layout {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
}

.ctus .form-aside {
  flex: 0 0 320px;
  padding-top: 8px;
}

.ctus .form-aside-h {
  font-size: 21px;
  line-height: 1.15;
  color: #FDFBFC;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.ctus .form-aside-p {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.62);
  margin: 0 0 28px 0;
}

.ctus .radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.ctus .radio-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.ctus .radio-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(195, 142, 187, 0.4);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.1s ease-out, background 0.1s ease-out;
  position: relative;
}

.ctus .radio-item input[type="radio"]:checked {
  border-color: #B74CA5;
  background: #B74CA5;
  box-shadow: inset 0 0 0 3px #0e0810;
}

.ctus .radio-item input[type="radio"]:focus {
  outline: 2px solid #C38EBB;
  outline-offset: 2px;
}

.ctus .radio-label {
  font-size: 15px;
  color: rgba(253, 251, 252, 0.75);
  line-height: 1.65;
  cursor: pointer;
}

.ctus .aside-divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #B74CA5, transparent);
  margin-bottom: 28px;
}

.ctus .form-main {
  flex: 1;
}

.ctus .field-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 16px;
}

.ctus .field-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ctus .field-wrap.full {
  flex: 0 0 100%;
}

.ctus .field-lbl {
  font-size: 15px;
  color: rgba(253, 251, 252, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.15;
}

.ctus .field-inp {
  background: rgba(253, 251, 252, 0.04);
  border: 1px solid rgba(195, 142, 187, 0.18);
  border-radius: 6px;
  padding: 16px;
  font-size: 17px;
  color: #FDFBFC;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.1s ease-out, box-shadow 0.1s ease-out;
  box-shadow: inset 0 1px 2px rgba(183, 76, 165, 0.06);
}

.ctus .field-inp::placeholder {
  color: rgba(253, 251, 252, 0.25);
  transition: opacity 0.12s ease-out;
}

.ctus .field-inp:focus::placeholder {
  opacity: 0;
}

.ctus .field-inp:focus {
  border-color: #B74CA5;
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08), inset 0 1px 2px rgba(183, 76, 165, 0.06);
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
  margin-top: 16px;
}

.ctus .privacy-check {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 2px solid rgba(195, 142, 187, 0.4);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: border-color 0.1s ease-out, background 0.1s ease-out;
  position: relative;
}

.ctus .privacy-check:checked {
  border-color: #B74CA5;
  background: #B74CA5;
}

.ctus .privacy-check:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #FDFBFC;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.ctus .privacy-check:focus {
  outline: 2px solid #C38EBB;
  outline-offset: 2px;
}

.ctus .privacy-text {
  font-size: 15px;
  color: rgba(253, 251, 252, 0.55);
  line-height: 1.65;
}

.ctus .privacy-text a {
  color: #C38EBB;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.08s ease-out;
}

.ctus .privacy-text a:hover {
  color: #B74CA5;
}

.ctus .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #B74CA5;
  color: #FDFBFC;
  border: none;
  border-radius: 6px;
  padding: 16px 56px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
  transition: filter 0.1s linear;
}

.ctus .submit-btn:hover {
  filter: brightness(1.15);
}

.ctus .submit-btn:focus {
  outline: 2px solid #C38EBB;
  outline-offset: 3px;
}

.ctus .submit-btn:active {
  filter: brightness(0.95);
}

@media (max-width: 1024px) {
  .ctus .split-band {
    flex-direction: column;
    min-height: auto;
  }

  .ctus .img-col {
    flex: 0 0 auto;
    height: 360px;
  }

  .ctus .txt-col {
    padding: 56px 28px;
  }

  .ctus .pg-h1 {
    font-size: 68px;
  }

  .ctus .form-layout {
    flex-direction: column;
    gap: 28px;
  }

  .ctus .form-aside {
    flex: 0 0 auto;
  }
}

@media (max-width: 768px) {
  .ctus .pg-h1 {
    font-size: 21px;
  }

  .ctus .txt-col {
    padding: 56px 16px;
  }

  .ctus .field-row {
    flex-direction: column;
    gap: 16px;
  }

  .ctus .form-panel {
    padding: 56px 0;
  }

  .ctus .pg-area {
    padding: 0 16px;
  }

  .ctus .fade-mark {
    font-size: 120px;
  }

  .ctus .submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 320px) {
  .ctus .pg-h1 {
    font-size: 21px;
  }

  .ctus .submit-btn {
    padding: 16px 28px;
  }
}

.lp-pg {
  background: #0e0910;
  min-height: 100vh;
  overflow-x: hidden;
}

.lp-pg .dot-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(183, 76, 165, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.lp-pg .lp-hero {
  position: relative;
  padding: 96px 28px;
  background: #0e0910;
}

.lp-pg .lp-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lp-pg .lp-hero-tag {
  display: inline-block;
  background: rgba(183, 76, 165, 0.15);
  border: 1px solid rgba(183, 76, 165, 0.35);
  border-radius: 2px;
  color: #C38EBB;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  margin-bottom: 28px;
  clip-path: inset(0 100% 0 0);
  animation: wipe-reveal 0.12s linear 0.1s forwards;
}

@keyframes wipe-reveal {
  to {
    clip-path: inset(0 0% 0 0);
  }
}

.lp-pg .lp-h1 {
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #FDFBFC;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 28px 0;
  max-width: 900px;
}

.lp-pg .lp-h1 span {
  color: #B74CA5;
}

.lp-pg .lp-hero-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.72);
  max-width: 560px;
  margin: 0 0 28px 0;
}

.lp-pg .lp-hero-link {
  display: inline-block;
  background: #B74CA5;
  color: #FDFBFC;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 2px;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
  transition: brightness 0.1s linear;
  font-weight: 600;
}

.lp-pg .lp-hero-link:hover {
  filter: brightness(1.18);
}

.lp-pg .lp-corner-curve {
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 320px;
  height: 220px;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lp-pg .lp-corner-curve svg {
  width: 100%;
  height: 100%;
}

.lp-pg .lp-divider {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

.lp-pg .lp-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(183, 76, 165, 0.22);
}

.lp-pg .lp-divider-word {
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(195, 142, 187, 0.6);
}

.lp-pg .lp-process {
  padding: 96px 28px;
  background: linear-gradient(160deg, #130b14 60%, #1a0d1a 100%);
  position: relative;
}

.lp-pg .lp-process-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.lp-pg .lp-process-top {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.lp-pg .lp-process-text {
  flex: 1;
}

.lp-pg .lp-process-img-col {
  flex: 0 0 420px;
  max-width: 420px;
}

.lp-pg .lp-process-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 52px 0 rgba(183, 76, 165, 0.10);
  position: relative;
}

.lp-pg .lp-process-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.18) saturate(1.1) brightness(0.92);
  transition: transform 0.12s ease-out;
}

.lp-pg .lp-process-img-wrap:hover img {
  transform: scale(1.04);
}

.lp-pg .lp-h2 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.08em;
  color: #FDFBFC;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.lp-pg .lp-process-desc {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.72);
  margin: 0 0 28px 0;
}

.lp-pg .lp-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-pg .lp-step {
  background: rgba(183, 76, 165, 0.07);
  border: 1px solid rgba(183, 76, 165, 0.18);
  border-radius: 6px;
  padding: 16px;
  transition: border-color 0.1s ease-out;
}

.lp-pg .lp-step:hover {
  border-color: rgba(183, 76, 165, 0.45);
}

.lp-pg .lp-step-num {
  font-size: 21px;
  font-weight: 700;
  color: #B74CA5;
  line-height: 1.15;
  margin-bottom: 8px;
}

.lp-pg .lp-step-label {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #FDFBFC;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-pg .lp-step-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.65);
  margin: 0;
}

.lp-pg .lp-strip {
  background: #0e0910;
  padding: 56px 28px;
}

.lp-pg .lp-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: space-between;
  align-items: stretch;
}

.lp-pg .lp-feat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  padding: 16px 8px;
}

.lp-pg .lp-feat-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.lp-pg .lp-feat-icon svg {
  width: 36px;
  height: 36px;
}

.lp-pg .lp-feat-label {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #FDFBFC;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-pg .lp-feat-sub {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.6);
  margin: 0;
}

.lp-pg .lp-feat-sep {
  width: 1px;
  background: rgba(183, 76, 165, 0.2);
  align-self: stretch;
}

.lp-pg .lp-team {
  padding: 96px 28px 56px;
  background: conic-gradient(from 210deg at 80% 20%, #1a0d1a 0deg, #130b14 120deg, #0e0910 240deg, #1a0d1a 360deg);
  position: relative;
}

.lp-pg .lp-team-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.lp-pg .lp-team-header {
  text-align: center;
  margin-bottom: 56px;
}

.lp-pg .lp-team-intro {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.7);
  max-width: 540px;
  margin: 16px auto 0;
}

.lp-pg .lp-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lp-pg .lp-member {
  background: rgba(183, 76, 165, 0.06);
  border: 1px solid rgba(183, 76, 165, 0.15);
  border-radius: 6px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.1s ease-out;
}

.lp-pg .lp-member:hover {
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
}

.lp-pg .lp-portrait-wrap {
  width: 80px;
  height: 107px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08);
}

.lp-pg .lp-portrait-wrap img {
  width: 80px;
  height: 107px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.12s ease-out;
}

.lp-pg .lp-member:hover .lp-portrait-wrap img {
  transform: scale(1.05);
}

.lp-pg .lp-member-name {
  font-size: 15px;
  font-weight: 700;
  color: #FDFBFC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-pg .lp-member-role {
  font-size: 15px;
  line-height: 1.65;
  color: #C38EBB;
  margin: 0 0 8px 0;
}

.lp-pg .lp-member-note {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.55);
  margin: 0;
}

.lp-pg .lp-member-noimg {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  background: rgba(183, 76, 165, 0.15);
  margin-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.lp-pg .lp-member-noimg svg {
  width: 32px;
  height: 32px;
}

.lp-pg .lp-reviews {
  padding: 56px 28px 96px;
  background: #0e0910;
  position: relative;
}

.lp-pg .lp-reviews-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.lp-pg .lp-reviews-top {
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: flex-start;
  margin-bottom: 56px;
}

.lp-pg .lp-reviews-left {
  flex: 0 0 340px;
}

.lp-pg .lp-rating-block {
  background: rgba(183, 76, 165, 0.08);
  border: 1px solid rgba(183, 76, 165, 0.22);
  border-radius: 6px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
}

.lp-pg .lp-rating-num {
  font-size: 68px;
  font-weight: 700;
  line-height: 1.15;
  color: #B74CA5;
  letter-spacing: -0.02em;
}

.lp-pg .lp-rating-stars {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}

.lp-pg .lp-star {
  width: 18px;
  height: 18px;
}

.lp-pg .lp-rating-count {
  font-size: 15px;
  color: rgba(253, 251, 252, 0.6);
  margin: 8px 0 0 0;
  letter-spacing: 0.06em;
}

.lp-pg .lp-reviews-right {
  flex: 1;
}

.lp-pg .lp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.lp-pg .lp-review-card {
  background: rgba(183, 76, 165, 0.05);
  border: 1px solid rgba(183, 76, 165, 0.14);
  border-radius: 6px;
  padding: 16px;
  transition: border-color 0.08s linear;
}

.lp-pg .lp-review-card:hover {
  border-color: rgba(183, 76, 165, 0.38);
}

.lp-pg .lp-review-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.lp-pg .lp-rev-portrait {
  width: 48px;
  height: 64px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.lp-pg .lp-rev-portrait img {
  width: 48px;
  height: 64px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lp-pg .lp-rev-noimg {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: rgba(183, 76, 165, 0.18);
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.lp-pg .lp-rev-noimg svg {
  width: 22px;
  height: 22px;
}

.lp-pg .lp-rev-name {
  font-size: 15px;
  font-weight: 700;
  color: #FDFBFC;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.lp-pg .lp-rev-pos {
  font-size: 15px;
  color: #C38EBB;
}

.lp-pg .lp-rev-text {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.68);
  margin: 0;
}

.lp-pg .lp-program {
  padding: 96px 28px;
  background: #130b14;
  position: relative;
}

.lp-pg .lp-program-split {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #0e0910;
  z-index: 0;
}

.lp-pg .lp-program-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lp-pg .lp-program-card {
  background: #1a0d1a;
  border: 1px solid rgba(183, 76, 165, 0.22);
  border-radius: 10px;
  box-shadow: 0 12px 52px 0 rgba(183, 76, 165, 0.10);
  overflow: hidden;
}

.lp-pg .lp-program-head {
  background: conic-gradient(from 190deg at 30% 60%, #1a0d1a 0deg, #230f23 90deg, #2a1029 180deg, #1a0d1a 360deg);
  padding: 56px;
  display: flex;
  flex-direction: row;
  gap: 56px;
  align-items: center;
}

.lp-pg .lp-program-head-text {
  flex: 1;
}

.lp-pg .lp-program-img-wrap {
  flex: 0 0 380px;
  max-width: 380px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11);
}

.lp-pg .lp-program-img-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: sepia(0.2) saturate(1.15) brightness(0.88);
  transition: transform 0.12s ease-out;
}

.lp-pg .lp-program-img-wrap:hover img {
  transform: scale(1.04);
}

.lp-pg .lp-h3 {
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: 0.08em;
  color: #FDFBFC;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}

.lp-pg .lp-program-para {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.72);
  margin: 0 0 16px 0;
}

.lp-pg .lp-program-body {
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.lp-pg .lp-module {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: flex-start;
}

.lp-pg .lp-module-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 2px;
  background: rgba(183, 76, 165, 0.2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #B74CA5;
  letter-spacing: 0.04em;
}

.lp-pg .lp-module-text {
  flex: 1;
}

.lp-pg .lp-module-title {
  font-size: 15px;
  font-weight: 700;
  color: #FDFBFC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lp-pg .lp-module-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.62);
  margin: 0;
}

.lp-pg .lp-letter-hover {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.lp-pg .lp-letter-hover .lp-ch {
  display: inline-block;
  transition: color 0.08s linear;
  color: #FDFBFC;
}

.lp-pg .lp-letter-hover:hover .lp-ch {
  color: #B74CA5;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(1) {
  transition-delay: 0s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(2) {
  transition-delay: 0.015s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(3) {
  transition-delay: 0.03s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(4) {
  transition-delay: 0.045s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(5) {
  transition-delay: 0.06s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(6) {
  transition-delay: 0.075s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(7) {
  transition-delay: 0.09s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(8) {
  transition-delay: 0.105s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(9) {
  transition-delay: 0.12s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(10) {
  transition-delay: 0.135s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(11) {
  transition-delay: 0.15s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(12) {
  transition-delay: 0.165s;
}

.lp-pg .lp-letter-hover:hover .lp-ch:nth-child(n+13) {
  transition-delay: 0.18s;
}

@media (max-width: 1024px) {
  .lp-pg .lp-h1 {
    font-size: 48px;
  }

  .lp-pg .lp-process-top {
    flex-direction: column;
  }

  .lp-pg .lp-process-img-col {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .lp-pg .lp-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-pg .lp-reviews-top {
    flex-direction: column;
  }

  .lp-pg .lp-reviews-left {
    flex: none;
    width: 100%;
  }

  .lp-pg .lp-program-head {
    flex-direction: column;
  }

  .lp-pg .lp-program-img-wrap {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .lp-pg .lp-strip-inner {
    flex-wrap: wrap;
  }

  .lp-pg .lp-feat-sep {
    display: none;
  }
}

@media (max-width: 768px) {
  .lp-pg .lp-hero {
    padding: 56px 16px;
  }

  .lp-pg .lp-h1 {
    font-size: 36px;
  }

  .lp-pg .lp-steps {
    grid-template-columns: 1fr;
  }

  .lp-pg .lp-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-pg .lp-reviews-grid {
    grid-template-columns: 1fr;
  }

  .lp-pg .lp-program-head {
    padding: 28px;
  }

  .lp-pg .lp-program-body {
    padding: 28px;
    grid-template-columns: 1fr;
  }

  .lp-pg .lp-process {
    padding: 56px 16px;
  }

  .lp-pg .lp-team {
    padding: 56px 16px;
  }

  .lp-pg .lp-reviews {
    padding: 56px 16px;
  }

  .lp-pg .lp-program {
    padding: 56px 16px;
  }

  .lp-pg .lp-strip {
    padding: 28px 16px;
  }

  .lp-pg .lp-strip-inner {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 320px) {
  .lp-pg .lp-h1 {
    font-size: 28px;
  }

  .lp-pg .lp-team-grid {
    grid-template-columns: 1fr;
  }
}

.success-pg {
  min-height: 100vh;
  background: #0e0810;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 28px;
}

.success-pg .success-wrap {
  max-width: 560px;
  width: 100%;
  text-align: center;
}

.success-pg .icon-ring {
  width: 80px;
  height: 80px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, #B74CA5 0%, #C38EBB 45%, #2a0e26 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px 0 rgba(183, 76, 165, 0.11), 0 12px 52px 0 rgba(183, 76, 165, 0.10);
}

.success-pg .icon-ring svg {
  display: block;
}

.success-pg .success-title {
  font-size: 68px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FDFBFC;
  margin: 0 0 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.success-pg .success-sub {
  font-size: 17px;
  line-height: 1.65;
  color: #C38EBB;
  margin: 0 0 56px;
}

.success-pg .divider-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #B74CA5, #C38EBB);
  margin: 0 auto 56px;
  border-radius: 2px;
}

.success-pg .success-note {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(253, 251, 252, 0.62);
  margin: 0 0 56px;
}

.success-pg .back-btn {
  display: inline-block;
  padding: 16px 28px;
  background: transparent;
  border: 1px solid #B74CA5;
  border-radius: 6px;
  color: #FDFBFC;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.12s linear, border-color 0.1s ease-out;
  box-shadow: 0 3px 4px 0 rgba(183, 76, 165, 0.08);
}

.success-pg .back-btn:hover {
  background: rgba(183, 76, 165, 0.14);
  border-color: #C38EBB;
}

.success-pg .back-btn:focus {
  outline: 2px solid #C38EBB;
  outline-offset: 3px;
}

@media (max-width: 768px) {
  .success-pg {
    padding: 56px 16px;
  }

  .success-pg .success-title {
    font-size: 21px;
    letter-spacing: 0.04em;
  }

  .success-pg .icon-ring {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
  }
}