html {
  word-break: break-word;
  overflow-wrap: anywhere;
}

body {
  margin: 0;
  font-family: "Noto Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background-color: #ffffff;
  color: #1a1a2e;
}

.sitehead {
  background: linear-gradient(135deg, #5F3F9F 0%, #7a5ab5 55%, #B99CCC 100%);
  position: relative;
  overflow: hidden;
}

.sitehead::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(95,63,159,0.18) 0%, rgba(185,156,204,0.10) 100%);
  pointer-events: none;
}

.sitehead-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.sitehead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
  border-bottom: 1px solid rgba(240,239,243,0.18);
  gap: 40px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.brand-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 38px;
  background-color: #ffffff;
  box-shadow:
    0 1px 2px 0 rgba(95,63,159,0.07),
    0 7px 22px 0 rgba(95,63,159,0.08),
    0 0 0 3px rgba(185,156,204,0.45);
  flex-shrink: 0;
}

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

.brand-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.brand-sub {
  font-size: 15px;
  font-weight: 400;
  color: rgba(240,239,243,0.82);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 4px;
}

.head-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.head-contact a {
  color: rgba(240,239,243,0.88);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.head-contact a:focus {
  outline: none;
  border-bottom: 2px solid #F0EFF3;
  background: rgba(240,239,243,0.08);
}

.head-contact a:hover {
  color: #ffffff;
}

.head-divider {
  width: 1px;
  height: 32px;
  background: rgba(240,239,243,0.25);
  flex-shrink: 0;
}

.sitehead-nav {
  padding: 16px 0 20px;
}

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

.primnav li {
  display: flex;
}

.primnav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 22px;
  font-size: 15px;
  font-weight: 400;
  color: rgba(240,239,243,0.90);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.6;
  transition: background-color 0.35s cubic-bezier(0.34,1.2,0.64,1), color 0.35s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  overflow: hidden;
  min-height: 44px;
}

.primnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: rgba(240,239,243,0.70);
  transition: width 0.40s cubic-bezier(0.34,1.2,0.64,1);
}

.primnav a:hover::after {
  width: 100%;
}

.primnav a:hover {
  background-color: rgba(240,239,243,0.14);
  color: #ffffff;
}

.primnav a:focus {
  outline: none;
  background-color: rgba(240,239,243,0.18);
  color: #ffffff;
}

.primnav li.active a {
  background-color: rgba(255,255,255,0.18);
  color: #ffffff;
  font-weight: 700;
}

.head-accent {
  position: absolute;
  top: -20px;
  right: 80px;
  width: 160px;
  height: 160px;
  border-radius: 38px;
  background: rgba(185,156,204,0.12);
  transform: rotate(28deg);
  pointer-events: none;
}

.head-accent2 {
  position: absolute;
  bottom: 8px;
  right: 240px;
  width: 60px;
  height: 60px;
  border-radius: 22px;
  background: rgba(240,239,243,0.07);
  transform: rotate(-14deg);
  pointer-events: none;
}

.sitefooter {
  background-color: #2a1a4e;
  position: relative;
  overflow: hidden;
}

.sitefooter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle, rgba(185,156,204,0.13) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

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

.footer-wave svg {
  display: block;
  width: 100%;
  height: 52px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0 40px;
  padding: 40px 0;
  align-items: start;
}

.footer-col-div {
  background: rgba(185,156,204,0.20);
  height: 100%;
  min-height: 100px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 38px;
  background-color: #ffffff;
  box-shadow:
    0 1px 2px 0 rgba(95,63,159,0.07),
    0 7px 22px 0 rgba(95,63,159,0.08),
    0 0 0 3px rgba(185,156,204,0.35);
  flex-shrink: 0;
}

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

.footer-tagline {
  font-size: 15px;
  color: rgba(240,239,243,0.72);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: 0;
}

.footer-brandname {
  font-size: 15px;
  font-weight: 700;
  color: #F0EFF3;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

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

.footer-col-label {
  font-size: 15px;
  font-weight: 700;
  color: #B99CCC;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0 0 8px;
}

.footer-contact-block p {
  font-size: 15px;
  color: rgba(240,239,243,0.72);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: 0;
}

.footer-contact-block a {
  font-size: 15px;
  color: rgba(240,239,243,0.82);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.42s ease-in-out;
  display: block;
}

.footer-contact-block a:hover {
  color: #ffffff;
}

.footer-contact-block a:focus {
  outline: none;
  color: #ffffff;
  background: rgba(240,239,243,0.08);
  border-radius: 6px;
}

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

.footer-links a {
  font-size: 15px;
  color: rgba(240,239,243,0.80);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.6;
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1), padding-left 0.38s cubic-bezier(0.34,1.2,0.64,1);
  display: block;
  padding: 4px 0;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 8px;
}

.footer-links a:focus {
  outline: none;
  color: #ffffff;
  background: rgba(240,239,243,0.08);
  border-radius: 6px;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(185,156,204,0.18);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 15px;
  color: rgba(240,239,243,0.50);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 15px;
  color: rgba(240,239,243,0.55);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.35s ease-in-out;
}

.footer-legal a:hover {
  color: rgba(240,239,243,0.90);
}

.footer-legal a:focus {
  outline: none;
  color: rgba(240,239,243,0.90);
  background: rgba(240,239,243,0.08);
  border-radius: 6px;
}

.cookiestrip {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 300px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow:
    0 1px 2px 0 rgba(95,63,159,0.07),
    0 7px 22px 0 rgba(95,63,159,0.08),
    0 8px 52px 0 rgba(95,63,159,0.10);
  padding: 20px;
  z-index: 8000;
  display: none;
  border: 1px solid rgba(185,156,204,0.30);
}

.cookiestrip p {
  font-size: 15px;
  color: #2a1a4e;
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0 0 16px;
}

.cookie-btns {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-btns a {
  font-size: 15px;
  color: #5F3F9F;
  text-decoration: underline;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: color 0.38s cubic-bezier(0.34,1.2,0.64,1);
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
}

.cookie-btns a:hover {
  color: #2a1a4e;
}

.cookie-btns a:focus {
  outline: none;
  color: #2a1a4e;
  background: rgba(95,63,159,0.08);
  border-radius: 6px;
}

@media (max-width: 768px) {
  .sitehead-inner {
    padding: 0 16px;
  }

  .sitehead-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0 12px;
  }

  .head-contact {
    gap: 16px;
  }

  .head-accent {
    display: none;
  }

  .head-accent2 {
    display: none;
  }

  .footer-inner {
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px 0;
  }

  .footer-col-div {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .cookiestrip {
    left: 16px;
    right: 16px;
    width: auto;
  }
}

@media (max-width: 360px) {
  .primnav a {
    padding: 8px 8px;
    font-size: 15px;
  }

  .brand-name {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .head-contact {
    display: flex;
  }
}

@media (min-width: 1440px) {
  .sitehead-inner {
    padding: 0 80px;
  }

  .footer-inner {
    padding: 0 80px;
  }
}.content-doc {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a2230;
    line-height: 1.9;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.content-doc strong,
.content-doc b {
    font-weight: 700;
    color: #5F3F9F;
    letter-spacing: 0.02em;
}

.content-doc a {
    color: #5F3F9F;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.35s cubic-bezier(0.34,1.2,0.64,1), text-decoration-color 0.38s ease-in-out;
}

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

.content-doc a:focus-visible {
    outline: 2px solid #5F3F9F;
    outline-offset: 2px;
    border-radius: 1px;
}

.content-doc table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.content-doc thead {
    background: #5F3F9F;
    color: #ffffff;
}

.content-doc thead th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 15px;
    line-height: 1.6;
}

.content-doc tbody tr {
    background: #ffffff;
    transition: background-color 0.32s ease-in-out;
}

.content-doc tbody tr:nth-child(even) {
    background: #F0EFF3;
}

.content-doc tbody tr:hover {
    background: #e8e4f2;
}

.content-doc td {
    padding: 16px 20px;
    color: #2a2230;
    line-height: 1.6;
    vertical-align: top;
    border-bottom: 1px solid rgba(185,156,204,0.25);
}

.content-doc tbody tr:last-child td {
    border-bottom: none;
}

.content-doc th {
    padding: 16px 20px;
    vertical-align: middle;
}

.content-doc hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #B99CCC, transparent);
    margin: 40px 0;
    opacity: 0.6;
}

.content-doc div {
    margin: 20px 0;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .content-doc {
        padding: 40px 16px;
    }

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

    .content-doc thead th,
    .content-doc td {
        padding: 12px 16px;
    }

    .content-doc hr {
        margin: 20px 0;
    }
}

@media (max-width: 360px) {
    .content-doc {
        padding: 20px 8px;
    }

    .content-doc table {
        font-size: 15px;
    }
}

@media (min-width: 1440px) {
    .content-doc {
        padding: 80px 0;
    }
}
.wbdet {
  background: #fff;
  overflow-x: clip;
}

.wbdet .splitscreen {
  display: flex;
  flex-direction: row;
  min-height: 520px;
  position: relative;
}

.wbdet .splitscreen .textside {
  flex: 1 1 50%;
  background: #F0EFF3;
  padding: 80px 40px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.wbdet .splitscreen .imgside {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  border: 1px solid #B99CCC;
}

.wbdet .splitscreen .imgside img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wbdet .splitscreen .imgside .imgoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to bottom, rgba(95,63,159,0.55), transparent);
  pointer-events: none;
}

.wbdet .splitscreen .corner-br {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-bottom: 3px solid #5F3F9F;
  border-right: 3px solid #5F3F9F;
  border-radius: 0 0 6px 0;
  pointer-events: none;
}

.wbdet .splitscreen .corner-tl {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 32px;
  height: 32px;
  border-top: 3px solid #5F3F9F;
  border-left: 3px solid #5F3F9F;
  border-radius: 6px 0 0 0;
  pointer-events: none;
}

.wbdet .splitscreen .accentline {
  width: 40px;
  height: 3px;
  background: #5F3F9F;
  margin-bottom: 16px;
  border-radius: 1px;
}

.wbdet .splitscreen .ttag {
  font-size: 15px;
  color: #5F3F9F;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  font-weight: 600;
}

.wbdet .splitscreen h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #5F3F9F;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  max-width: 520px;
}

.wbdet .splitscreen .tagline {
  font-size: 15px;
  line-height: 1.6;
  color: #2a2230;
  margin-bottom: 40px;
  max-width: 420px;
}

.wbdet .splitscreen .actlinks {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.wbdet .btnprim {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5F3F9F;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
  transition: background 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1), padding 0.35s ease-in-out;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.wbdet .btnprim .btnicon {
  opacity: 0;
  width: 0;
  transition: opacity 0.35s ease-in-out, width 0.35s ease-in-out;
  display: inline-block;
  overflow: hidden;
}

.wbdet .btnprim:hover .btnicon,
.wbdet .btnprim:focus .btnicon {
  opacity: 1;
  width: 16px;
}

.wbdet .btnprim:hover,
.wbdet .btnprim:focus {
  background: #4a2f80;
  box-shadow: 0 8px 52px 0 rgba(95,63,159,0.10);
  outline: none;
}

.wbdet .btnprim:active {
  background: #3b2464;
}

.wbdet .btnout {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #5F3F9F;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 10px;
  border: 2px solid #5F3F9F;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.42s cubic-bezier(0.34,1.2,0.64,1), color 0.42s cubic-bezier(0.34,1.2,0.64,1);
  text-decoration: none;
}

.wbdet .btnout:hover,
.wbdet .btnout:focus {
  background: #5F3F9F;
  color: #fff;
  outline: none;
}

.wbdet .pricecard {
  background: #fff;
  border-radius: 22px;
  padding: 20px 40px;
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 40px;
  max-width: 320px;
}

.wbdet .pricecard .priceval {
  font-size: 36px;
  color: #5F3F9F;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.wbdet .pricecard .pricenote {
  font-size: 15px;
  color: #4a3d5e;
  line-height: 1.6;
}

.wbdet .pricecard .seatsbadge {
  display: inline-block;
  background: #F0EFF3;
  color: #5F3F9F;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  padding: 4px 16px;
  margin-top: 8px;
  letter-spacing: 0.01em;
}

.wbdet .descstrip {
  background: #fff;
  padding: 80px 0 40px 0;
  position: relative;
}

.wbdet .descstrip .zigzag {
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 0;
  margin-bottom: 40px;
}

.wbdet .descstrip .innerrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.wbdet .descstrip .leftcol {
  flex: 0 0 260px;
  min-width: 0;
}

.wbdet .descstrip .rightcol {
  flex: 1 1 0;
  min-width: 0;
}

.wbdet .descstrip .accentline {
  width: 40px;
  height: 3px;
  background: #5F3F9F;
  margin-bottom: 16px;
  border-radius: 1px;
}

.wbdet .descstrip .leftcol h2 {
  font-size: 36px;
  color: #5F3F9F;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.wbdet .descstrip .leftcol .sublabel {
  font-size: 15px;
  color: #4a3d5e;
  line-height: 1.6;
}

.wbdet .descstrip .rightcol .descbody {
  font-size: 15px;
  color: #2a2230;
  line-height: 1.9;
  letter-spacing: 0.01em;
}

.wbdet .descstrip .rightcol .descbody p {
  margin-bottom: 16px;
}

.wbdet .descstrip .rightcol .descbody h2 {
  font-size: 36px;
  color: #5F3F9F;
  margin-bottom: 16px;
  margin-top: 40px;
  line-height: 1.2;
}

.wbdet .descstrip .rightcol .descbody strong {
  color: #5F3F9F;
}

.wbdet .descstrip .rightcol .descbody small {
  font-size: 15px;
  color: #4a3d5e;
}

.wbdet .descstrip .rightcol .descbody ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.wbdet .descstrip .rightcol .descbody li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.wbdet .descstrip .rightcol .descbody dl {
  margin-bottom: 16px;
}

.wbdet .descstrip .rightcol .descbody dt {
  font-weight: 700;
  color: #5F3F9F;
  margin-top: 8px;
}

.wbdet .descstrip .rightcol .descbody dd {
  margin-left: 20px;
  color: #2a2230;
}

.wbdet .progblock {
  background: linear-gradient(to left, #F0EFF3, #e8e4f0);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.wbdet .progblock .curlsvg {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0.08;
  pointer-events: none;
  width: 160px;
  height: 160px;
}

.wbdet .progblock .innerrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 40px;
  align-items: start;
}

.wbdet .progblock .col1 {
  min-width: 0;
}

.wbdet .progblock .col2 {
  min-width: 0;
}

.wbdet .progblock .col3 {
  min-width: 0;
}

.wbdet .progblock .accentline {
  width: 40px;
  height: 3px;
  background: #5F3F9F;
  margin-bottom: 16px;
  border-radius: 1px;
}

.wbdet .progblock h2 {
  font-size: 36px;
  color: #5F3F9F;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}

.wbdet .progblock .col1 .sublabel {
  font-size: 15px;
  color: #4a3d5e;
  line-height: 1.6;
}

.wbdet .progblock .col2 .metalist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.wbdet .progblock .col2 .metaitem {
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
  font-size: 15px;
  color: #2a2230;
  line-height: 1.6;
}

.wbdet .progblock .col2 .metaitem strong {
  display: block;
  color: #5F3F9F;
  font-weight: 700;
  margin-bottom: 4px;
}

.wbdet .progblock .col3 .steplist {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.wbdet .progblock .col3 .steplist::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #B99CCC;
  border-radius: 1px;
}

.wbdet .progblock .col3 .stepitem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 0;
  position: relative;
}

.wbdet .progblock .col3 .stepnum {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 38px;
  background: #5F3F9F;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
}

.wbdet .progblock .col3 .steptxt {
  flex: 1 1 0;
  min-width: 0;
}

.wbdet .progblock .col3 .steptxt .stephead {
  font-size: 15px;
  font-weight: 700;
  color: #5F3F9F;
  line-height: 1.6;
  margin-bottom: 4px;
}

.wbdet .progblock .col3 .steptxt .stepdesc {
  font-size: 15px;
  color: #2a2230;
  line-height: 1.6;
}

.wbdet .progblock .col3 .steptxt p {
  font-size: 15px;
  color: #2a2230;
  line-height: 1.6;
  margin: 0;
}

.wbdet .progblock .col3 .steptxt h2 {
  font-size: 15px;
  color: #5F3F9F;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 0;
}

.wbdet .progblock .col3 .steptxt h3 {
  font-size: 15px;
  color: #5F3F9F;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 0;
}

.wbdet .progblock .col3 .steptxt mark {
  background: #B99CCC;
  color: #2a2230;
  border-radius: 1px;
  padding: 0 4px;
}

.wbdet .progblock .col3 .steptxt ul {
  padding-left: 20px;
  margin: 4px 0;
}

.wbdet .progblock .col3 .steptxt li {
  font-size: 15px;
  color: #2a2230;
  line-height: 1.6;
  margin-bottom: 4px;
}

.wbdet .progblock .col3 .steptxt dl {
  margin: 4px 0;
}

.wbdet .progblock .col3 .steptxt dt {
  font-weight: 700;
  color: #5F3F9F;
}

.wbdet .progblock .col3 .steptxt dd {
  margin-left: 16px;
  color: #2a2230;
  font-size: 15px;
}

.wbdet .progblock .col3 .steptxt blockquote {
  border-left: none;
  background: #F0EFF3;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 15px;
  color: #4a3d5e;
  line-height: 1.6;
  margin: 8px 0;
}

.wbdet .progblock .col3 .programraw {
  font-size: 15px;
  color: #2a2230;
  line-height: 1.9;
}

.wbdet .progblock .col3 .programraw p {
  margin-bottom: 8px;
}

.wbdet .progblock .col3 .programraw h2 {
  font-size: 36px;
  color: #5F3F9F;
  margin-bottom: 8px;
  margin-top: 16px;
}

.wbdet .progblock .col3 .programraw h3 {
  font-size: 15px;
  color: #5F3F9F;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 8px;
}

.wbdet .progblock .col3 .programraw mark {
  background: #B99CCC;
  color: #2a2230;
  border-radius: 1px;
  padding: 0 4px;
}

.wbdet .progblock .col3 .programraw ul {
  padding-left: 20px;
  margin-bottom: 8px;
}

.wbdet .progblock .col3 .programraw li {
  margin-bottom: 4px;
  line-height: 1.6;
}

.wbdet .progblock .col3 .programraw dl {
  margin-bottom: 8px;
}

.wbdet .progblock .col3 .programraw dt {
  font-weight: 700;
  color: #5F3F9F;
}

.wbdet .progblock .col3 .programraw dd {
  margin-left: 16px;
}

.wbdet .progblock .col3 .programraw blockquote {
  background: #F0EFF3;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 15px;
  color: #4a3d5e;
  line-height: 1.6;
  margin: 8px 0;
}

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

.wbdet .revealfocus {
  position: relative;
}

.wbdet .revealfocus .revealcov {
  position: absolute;
  inset: 0;
  background: #F0EFF3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #5F3F9F;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: opacity 0.40s ease-in-out;
  z-index: 2;
  pointer-events: none;
}

.wbdet .revealfocus:focus-within .revealcov,
.wbdet .revealfocus:focus .revealcov {
  opacity: 0;
  pointer-events: none;
}

.wbdet .revealfocus .revealinner {
  padding: 20px;
  opacity: 0;
  transition: opacity 0.40s ease-in-out;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.wbdet .revealfocus:focus-within .revealinner,
.wbdet .revealfocus:focus .revealinner {
  opacity: 1;
}

.wbdet .revealfocus .revealinner:focus {
  outline: 2px solid #5F3F9F;
  outline-offset: 2px;
}

@keyframes wbdetRevealUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wbdet .splitscreen .textside {
  animation: wbdetRevealUp 0.45s cubic-bezier(0.34,1.2,0.64,1) both;
}

.wbdet .splitscreen .imgside {
  animation: wbdetRevealUp 0.45s cubic-bezier(0.34,1.2,0.64,1) 0.08s both;
}

.wbdet .descstrip .innerrow {
  animation: wbdetRevealUp 0.42s cubic-bezier(0.34,1.2,0.64,1) 0.12s both;
}

.wbdet .progblock .innerrow {
  animation: wbdetRevealUp 0.44s cubic-bezier(0.34,1.2,0.64,1) 0.18s both;
}

@media (max-width: 1024px) {
  .wbdet .splitscreen {
    flex-direction: column;
  }
  .wbdet .splitscreen .textside {
    flex: none;
    padding: 40px 40px 40px 40px;
  }
  .wbdet .splitscreen .imgside {
    flex: none;
    min-height: 300px;
  }
  .wbdet .progblock .innerrow {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .wbdet .progblock .col3 {
    grid-column: 1 / -1;
  }
  .wbdet .descstrip .innerrow {
    flex-direction: column;
    gap: 40px;
  }
  .wbdet .descstrip .leftcol {
    flex: none;
  }
}

@media (max-width: 768px) {
  .wbdet .splitscreen h1 {
    font-size: 36px;
  }
  .wbdet .splitscreen .textside {
    padding: 40px 20px;
  }
  .wbdet .descstrip .innerrow {
    padding: 0 20px;
    gap: 20px;
  }
  .wbdet .progblock .innerrow {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .wbdet .progblock .col3 {
    grid-column: auto;
  }
  .wbdet .actlinks {
    flex-direction: column;
  }
  .wbdet .pricecard {
    max-width: 100%;
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .wbdet .splitscreen h1 {
    font-size: 36px;
  }
  .wbdet .btnprim,
  .wbdet .btnout {
    padding: 16px 20px;
    font-size: 15px;
  }
}

.prm {
  overflow-x: hidden;
  background: #ffffff;
}

.prm * {
  box-sizing: border-box;
}

.prm .maxw {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.prm .zigzag-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  display: block;
}

.prm .zigzag-divider svg {
  display: block;
  width: 100%;
}


.prm .titblk {
  position: relative;
  background: #F0EFF3;
  overflow: hidden;
}

.prm .titblk-noise {
  position: absolute;
  inset: 0;
  background-image: 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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.prm .titblk-stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -47deg,
    transparent,
    transparent 18px,
    rgba(95, 63, 159, 0.04) 18px,
    rgba(95, 63, 159, 0.04) 20px
  );
  pointer-events: none;
  z-index: 0;
}

.prm .titblk-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
  padding-top: 80px;
  padding-bottom: 80px;
}

.prm .titblk-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.prm .titblk-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prm .titblk-dot {
  width: 8px;
  height: 8px;
  border-radius: 38px;
  background: #5F3F9F;
  flex-shrink: 0;
}

.prm .titblk-label {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #5F3F9F;
  font-weight: 600;
}

.prm .titblk-h1 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1230;
  margin: 0;
}

.prm .titblk-h1 span {
  color: #5F3F9F;
  display: block;
}

.prm .titblk-sub {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  max-width: 460px;
  margin: 0;
}

.prm .titblk-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.prm .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: #5F3F9F;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border-radius: 6px;
  border: 2px solid #5F3F9F;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.38s cubic-bezier(0.34,1.2,0.64,1), color 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
  overflow: hidden;
  position: relative;
}

.prm .btn-primary .btn-icon {
  display: inline-block;
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), opacity 0.35s ease-in-out;
}

.prm .btn-primary .btn-txt {
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.prm .btn-primary:hover .btn-icon {
  transform: translateX(0);
  opacity: 1;
}

.prm .btn-primary:hover .btn-txt {
  transform: translateX(4px);
}

.prm .btn-primary:hover {
  background: #4a2f85;
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.prm .btn-primary:focus {
  outline: 3px solid #B99CCC;
  outline-offset: 2px;
}

.prm .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: transparent;
  color: #5F3F9F;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  border-radius: 6px;
  border: 2px solid #B99CCC;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: border-color 0.42s ease-in-out, color 0.42s ease-in-out, background 0.42s ease-in-out;
  overflow: hidden;
  position: relative;
}

.prm .btn-secondary .btn-icon {
  display: inline-block;
  transform: translateX(-4px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), opacity 0.35s ease-in-out;
}

.prm .btn-secondary .btn-txt {
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.prm .btn-secondary:hover .btn-icon {
  transform: translateX(0);
  opacity: 1;
}

.prm .btn-secondary:hover .btn-txt {
  transform: translateX(4px);
}

.prm .btn-secondary:hover {
  border-color: #5F3F9F;
  background: rgba(95,63,159,0.06);
}

.prm .btn-secondary:focus {
  outline: 3px solid #B99CCC;
  outline-offset: 2px;
}

.prm .titblk-imgside {
  position: relative;
  display: flex;
  align-items: stretch;
}

.prm .titblk-imgframe {
  width: 100%;
  border: 1px solid rgba(95,63,159,0.18);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.prm .titblk-imgframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) brightness(0.95);
}

.prm .titblk-imgbadge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(95,63,159,0.92);
  color: #ffffff;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
}


.prm .platcurr {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.prm .platcurr-geo {
  position: absolute;
  top: 40px;
  right: 0;
  width: 220px;
  height: 220px;
  border: 1.5px solid rgba(185,156,204,0.18);
  border-radius: 38px;
  pointer-events: none;
  animation: geoOutlinePulse 4.2s ease-in-out infinite;
}

.prm .platcurr-geo2 {
  position: absolute;
  bottom: 40px;
  left: 20px;
  width: 120px;
  height: 120px;
  border: 1.5px solid rgba(95,63,159,0.10);
  border-radius: 22px;
  pointer-events: none;
  animation: geoOutlinePulse 5.8s ease-in-out infinite reverse;
}

@keyframes geoOutlinePulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.prm .platcurr-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.prm .platcurr-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prm .accentline {
  width: 40px;
  height: 3px;
  background: linear-gradient(to left, #5F3F9F, #B99CCC);
  border-radius: 1px;
  margin-bottom: 4px;
}

.prm .platcurr-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1230;
  margin: 0;
}

.prm .platcurr-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  margin: 0;
}

.prm .platcurr-img {
  border: 1px solid rgba(95,63,159,0.14);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}

.prm .platcurr-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prm .platcurr-metrics {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prm .platcurr-metrow {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.prm .metcard {
  background: #F0EFF3;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
  transition: box-shadow 0.40s cubic-bezier(0.34,1.2,0.64,1), transform 0.40s cubic-bezier(0.34,1.2,0.64,1);
  cursor: default;
}

.prm .platcurr-metrow:hover .metcard {
  transform: scale(0.97);
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
}

.prm .platcurr-metrow:hover .metcard:hover {
  transform: scale(1.04);
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.prm .metcard-num {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  font-weight: 700;
}

.prm .metcard-lbl {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2d2540;
}


.prm .supblk {
  background: #F0EFF3;
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
}

.prm .supblk-texwrap {
  padding-left: 20%;
  padding-right: 20%;
}

.prm .supblk-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1230;
  margin: 0 0 20px 0;
}

.prm .supblk-lead {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  margin: 0 0 40px 0;
}

.prm .supblk-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-bottom: 80px;
}

.prm .supcard {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
  transition: box-shadow 0.36s cubic-bezier(0.34,1.2,0.64,1), transform 0.36s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
}

.prm .supcard:hover {
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
  transform: translateY(-4px);
}

.prm .supcard-dot {
  width: 10px;
  height: 10px;
  border-radius: 38px;
  background: #5F3F9F;
  margin-bottom: 4px;
}

.prm .supcard-h3 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #1b1230;
  font-weight: 700;
  margin: 0;
}

.prm .supcard-p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  margin: 0;
}

.prm .supblk-portraits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 40px;
}

.prm .support-person {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px;
  background: #ffffff;
}

.prm .support-person.alt {
  background: #F0EFF3;
}

.prm .support-imgframe {
  width: 100%;
  aspect-ratio: 7/9;
  border: 1px solid rgba(95,63,159,0.16);
  overflow: hidden;
  border-radius: 1px;
  flex-shrink: 0;
}

.prm .support-imgframe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.prm .support-name {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #1b1230;
  font-weight: 700;
  margin: 0;
}

.prm .support-role {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin: 0;
}

.prm .support-quote {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  margin: 0;
}


.prm .longval {
  background: #1b1230;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.prm .longval-geo {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 300px;
  height: 300px;
  border: 1.5px solid rgba(185,156,204,0.10);
  border-radius: 38px;
  pointer-events: none;
  animation: geoOutlinePulse 6.5s ease-in-out infinite;
}

.prm .longval-geo2 {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 180px;
  height: 180px;
  border: 1.5px solid rgba(185,156,204,0.08);
  border-radius: 22px;
  pointer-events: none;
  animation: geoOutlinePulse 4.8s ease-in-out infinite reverse;
}

.prm .longval-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 40px;
}

.prm .longval-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F0EFF3;
  margin: 0;
}

.prm .longval-accentline {
  width: 40px;
  height: 3px;
  background: linear-gradient(to left, #5F3F9F, #B99CCC);
  border-radius: 1px;
  margin-bottom: 16px;
}

.prm .longval-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #c2b8d8;
  margin: 0;
}

.prm .longval-img {
  border: 1px solid rgba(185,156,204,0.20);
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
  margin-bottom: 40px;
}

.prm .longval-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) brightness(0.85);
}

.prm .longval-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prm .pillar {
  border-top: 2px solid rgba(185,156,204,0.25);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.40s ease-in-out;
}

.prm .pillar:hover {
  border-color: #B99CCC;
}

.prm .pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 38px;
  background: #B99CCC;
}

.prm .pillar-h3 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #F0EFF3;
  font-weight: 700;
  margin: 0;
}

.prm .pillar-p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #c2b8d8;
  margin: 0;
}


.prm .hesit {
  background: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.prm .hesit-geo {
  position: absolute;
  top: 60px;
  left: 40px;
  width: 160px;
  height: 160px;
  border: 1.5px solid rgba(95,63,159,0.08);
  border-radius: 22px;
  pointer-events: none;
  animation: geoOutlinePulse 5.2s ease-in-out infinite;
}

.prm .hesit-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}

.prm .hesit-textcol {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prm .hesit-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1b1230;
  margin: 0;
}

.prm .hesit-body {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  margin: 0;
  padding-left: 80px;
  padding-right: 80px;
}

.prm .hesit-qlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.prm .hesit-qitem {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: #F0EFF3;
  border-radius: 10px;
  transition: background 0.38s ease-in-out, box-shadow 0.38s ease-in-out;
}

.prm .hesit-qitem:hover {
  background: #ebe8f4;
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.prm .hesit-qdot {
  width: 8px;
  height: 8px;
  border-radius: 38px;
  background: #5F3F9F;
  flex-shrink: 0;
  margin-top: 6px;
}

.prm .hesit-qtxt {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  margin: 0;
}

.prm .hesit-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prm .hesit-statbox {
  background: #5F3F9F;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 52px 0 rgba(95,63,159,0.10);
}

.prm .hesit-statnum {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #ffffff;
  font-weight: 700;
}

.prm .hesit-statlbl {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: rgba(240,239,243,0.85);
}

.prm .hesit-notebox {
  background: #F0EFF3;
  border-radius: 10px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prm .hesit-notedot {
  width: 8px;
  height: 8px;
  border-radius: 38px;
  background: #B99CCC;
}

.prm .hesit-notetxt {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2540;
  margin: 0;
}


@media (max-width: 1024px) {
  .prm .titblk-grid {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 20px;
  }

  .prm .titblk-imgside {
    min-height: 280px;
  }

  .prm .platcurr-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prm .platcurr-metrow {
    grid-template-columns: 1fr 1fr;
  }

  .prm .supblk-cards {
    grid-template-columns: 1fr 1fr;
  }

  .prm .supblk-texwrap {
    padding-left: 0;
    padding-right: 0;
  }

  .prm .supblk-portraits {
    grid-template-columns: 1fr;
  }

  .prm .longval-top {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prm .longval-pillars {
    grid-template-columns: 1fr 1fr;
  }

  .prm .hesit-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .prm .hesit-body {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .prm .titblk-h1 {
    font-size: 36px;
  }

  .prm .platcurr-metrow {
    grid-template-columns: 1fr;
  }

  .prm .supblk-cards {
    grid-template-columns: 1fr;
  }

  .prm .longval-pillars {
    grid-template-columns: 1fr;
  }

  .prm .hesit-statnum {
    font-size: 36px;
  }

  .prm .platcurr {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .prm .supblk {
    padding-top: 40px;
  }

  .prm .supblk-cards {
    padding-bottom: 40px;
  }

  .prm .longval {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .prm .hesit {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .prm .support-person {
    padding: 20px;
  }
}

@media (max-width: 360px) {
  .prm .titblk-h1 {
    font-size: 36px;
  }

  .prm .titblk-actions {
    flex-direction: column;
  }

  .prm .metcard-num {
    font-size: 36px;
  }
}

.abtus {
  overflow-x: clip;
  position: relative;
}

.abtus .pg-wrap {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.abtus .reveal-load {
  animation: blurReveal 0.42s cubic-bezier(0.34,1.2,0.64,1) both;
}

@keyframes blurReveal {
  from { opacity: 0; filter: blur(8px); }
  to { opacity: 1; filter: blur(0); }
}

.abtus .reveal-delay1 { animation-delay: 0.08s; }
.abtus .reveal-delay2 { animation-delay: 0.18s; }
.abtus .reveal-delay3 { animation-delay: 0.28s; }


.abtus .titblk {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #1b1525;
  overflow: hidden;
}

.abtus .titblk-grain {
  position: absolute;
  inset: 0;
  background-image: 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.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/feColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.abtus .titblk-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.abtus .titblk-circles span {
  position: absolute;
  border-radius: 38px;
  border: 1px solid rgba(95,63,159,0.18);
}

.abtus .titblk-circles span:nth-child(1) {
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: rgba(95,63,159,0.06);
}

.abtus .titblk-circles span:nth-child(2) {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 60px;
  background: rgba(185,156,204,0.05);
}

.abtus .titblk-circles span:nth-child(3) {
  width: 90px;
  height: 90px;
  top: 40px;
  left: 30%;
  background: rgba(95,63,159,0.04);
}

.abtus .titblk-img-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(185,156,204,0.22);
  box-shadow: 0 8px 52px 0 rgba(95,63,159,0.10);
  flex-shrink: 0;
}

.abtus .titblk-img-wrap img {
  display: block;
  width: 420px;
  height: 320px;
  object-fit: cover;
  object-position: center;
}

.abtus .titblk-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1b1525 0%, transparent 55%);
  pointer-events: none;
}

.abtus .titblk-layout {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 80px;
}

.abtus .titblk-text {
  flex: 1;
}

.abtus .titblk-label {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #B99CCC;
  border: 1px solid rgba(185,156,204,0.3);
  border-radius: 6px;
  padding: 4px 16px;
  margin-bottom: 20px;
}

.abtus .titblk-h1 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F0EFF3;
  margin-bottom: 20px;
}

.abtus .titblk-h1 .grad-word {
  background: linear-gradient(to left, #5F3F9F, #B99CCC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.abtus .titblk-sub {
  font-size: 15px;
  line-height: 1.9;
  color: #c8bfd8;
  letter-spacing: 0.01em;
  max-width: 480px;
}


.abtus .typeword {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typeIn 1.1s steps(14, end) 0.3s both;
  border-right: 2px solid #B99CCC;
  animation-fill-mode: both;
}

@keyframes typeIn {
  from { width: 0; }
  to { width: 100%; }
}


.abtus .statblk {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #F0EFF3;
  position: relative;
}

.abtus .statblk-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.abtus .statblk-left {
  position: relative;
}

.abtus .statblk-deco {
  position: absolute;
  top: 0;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.abtus .statblk-deco span {
  display: block;
  height: 1px;
  background: #5F3F9F;
  opacity: 0.3;
}

.abtus .statblk-accent-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to left, #5F3F9F, #B99CCC);
  margin-bottom: 16px;
  border-radius: 1px;
}

.abtus .statblk-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin-bottom: 20px;
}

.abtus .statblk-body {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2035;
  letter-spacing: 0.01em;
  margin-bottom: 40px;
}

.abtus .stat-hero-num {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  font-weight: 700;
  display: block;
}

.abtus .stat-hero-label {
  font-size: 15px;
  line-height: 1.6;
  color: #2a2035;
  letter-spacing: 0.02em;
  display: block;
  margin-top: 8px;
  max-width: 260px;
}

.abtus .stat-hero-wrap {
  position: relative;
  padding: 40px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(95,63,159,0.12);
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.abtus .stat-hero-counter {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: #B99CCC;
  letter-spacing: 0.02em;
  background: rgba(95,63,159,0.06);
  border-radius: 6px;
  padding: 4px 8px;
}

.abtus .stat-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.abtus .stat-support-item {
  background: rgba(95,63,159,0.05);
  border-radius: 6px;
  padding: 16px;
  border: 1px solid rgba(95,63,159,0.08);
}

.abtus .stat-support-val {
  font-size: 36px;
  line-height: 1.2;
  color: #5F3F9F;
  letter-spacing: 0.01em;
  display: block;
  font-weight: 600;
}

.abtus .stat-support-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #2a2035;
  letter-spacing: 0.01em;
  margin-top: 4px;
  display: block;
}


.abtus .skillbars {
  margin-top: 40px;
}

.abtus .skillbar-row {
  margin-bottom: 16px;
}

.abtus .skillbar-label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 15px;
  line-height: 1.6;
  color: #2a2035;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.abtus .skillbar-track {
  height: 6px;
  background: rgba(95,63,159,0.1);
  border-radius: 1px;
  overflow: hidden;
}

.abtus .skillbar-fill {
  height: 100%;
  border-radius: 1px;
  background: linear-gradient(to left, #5F3F9F, #B99CCC);
  animation: barGrow 0.44s cubic-bezier(0.34,1.2,0.64,1) both;
}

@keyframes barGrow {
  from { width: 0 !important; }
}

.abtus .skillbar-fill.d1 { animation-delay: 0.1s; }
.abtus .skillbar-fill.d2 { animation-delay: 0.2s; }
.abtus .skillbar-fill.d3 { animation-delay: 0.3s; }
.abtus .skillbar-fill.d4 { animation-delay: 0.38s; }


.abtus .teamblk {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  position: relative;
}

.abtus .teamblk-head {
  margin-bottom: 40px;
}

.abtus .teamblk-accent-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to left, #5F3F9F, #B99CCC);
  margin-bottom: 16px;
  border-radius: 1px;
}

.abtus .teamblk-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin-bottom: 16px;
}

.abtus .teamblk-intro {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2035;
  letter-spacing: 0.01em;
  max-width: 560px;
}

.abtus .team-row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(95,63,159,0.1);
}

.abtus .team-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.abtus .team-row.rev {
  flex-direction: row-reverse;
}

.abtus .team-portrait-wrap {
  flex-shrink: 0;
  position: relative;
}

.abtus .team-portrait-wrap img {
  display: block;
  width: 140px;
  height: 210px;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(95,63,159,0.18);
}

.abtus .team-portrait-counter {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: #5F3F9F;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 0.01em;
}

.abtus .team-info {
  flex: 1;
}

.abtus .team-name {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #2a2035;
  margin-bottom: 4px;
}

.abtus .team-role {
  font-size: 15px;
  line-height: 1.6;
  color: #5F3F9F;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.abtus .team-bio {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2035;
  letter-spacing: 0.01em;
  max-width: 520px;
}

.abtus .team-noport {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(95,63,159,0.1);
}

.abtus .team-noport-icon {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  background: rgba(95,63,159,0.06);
  border-radius: 10px;
  border: 1px solid rgba(95,63,159,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.abtus .team-noport-icon svg {
  width: 48px;
  height: 48px;
  opacity: 0.4;
}


.abtus .featblk {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  background: #1b1525;
  overflow: hidden;
}

.abtus .featblk-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(95,63,159,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.abtus .featblk-hex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100'%3E%3Cpolygon points='28,2 54,16 54,44 28,58 2,44 2,16' fill='none' stroke='%23B99CCC' stroke-width='1'/%3E%3Cpolygon points='28,52 54,66 54,94 28,108 2,94 2,66' fill='none' stroke='%23B99CCC' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 100px;
}

.abtus .featblk-head {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.abtus .featblk-accent-line {
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to left, #5F3F9F, #B99CCC);
  border-radius: 1px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.abtus .featblk-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F0EFF3;
  margin-bottom: 16px;
}

.abtus .featblk-sub {
  font-size: 15px;
  line-height: 1.9;
  color: #c8bfd8;
  letter-spacing: 0.01em;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.abtus .featblk-cols {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  align-items: start;
  position: relative;
}

.abtus .featblk-col {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(185,156,204,0.15);
  border-radius: 10px;
  padding: 40px 20px;
  position: relative;
  transition: border-color 0.38s ease-in-out, box-shadow 0.38s ease-in-out;
}

.abtus .featblk-col:hover {
  border-color: rgba(185,156,204,0.35);
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.abtus .featblk-col.center {
  padding-top: 80px;
  padding-bottom: 80px;
  background: rgba(95,63,159,0.18);
  border-color: rgba(185,156,204,0.28);
  box-shadow: 0 8px 52px 0 rgba(95,63,159,0.10);
}

.abtus .featblk-col-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(185,156,204,0.5);
  letter-spacing: 0.02em;
}

.abtus .featblk-img-wrap {
  margin-bottom: 20px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(185,156,204,0.18);
}

.abtus .featblk-img-wrap img {
  display: block;
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
}

.abtus .featblk-col-h3 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #B99CCC;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.abtus .featblk-col-body {
  font-size: 15px;
  line-height: 1.9;
  color: #c8bfd8;
  letter-spacing: 0.01em;
}

.abtus .featblk-col-h4 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F0EFF3;
  margin-bottom: 16px;
}


.abtus .txt-link {
  color: #5F3F9F;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: font-size 0.35s cubic-bezier(0.34,1.2,0.64,1);
}

.abtus .txt-link:hover {
  font-size: 16px;
}


.abtus .btn-prim {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #5F3F9F;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background-color 0.36s ease-in-out, box-shadow 0.36s ease-in-out;
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
  text-decoration: none;
}

.abtus .btn-prim:hover {
  background: #4a2f82;
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.abtus .btn-prim:focus {
  outline: 2px solid #B99CCC;
  outline-offset: 3px;
}

.abtus .btn-prim .btn-icon {
  display: inline-block;
  width: 0;
  overflow: hidden;
  transition: width 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.abtus .btn-prim:hover .btn-icon {
  width: 16px;
}

.abtus .btn-prim .btn-txt {
  transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.abtus .btn-prim:hover .btn-txt {
  transform: translateX(4px);
}


.abtus .btn-sec {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: #5F3F9F;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  border: 1px solid #5F3F9F;
  border-radius: 22px;
  cursor: pointer;
  transition: background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  text-decoration: none;
}

.abtus .btn-sec:hover {
  background: rgba(95,63,159,0.08);
}

.abtus .btn-sec:focus {
  outline: 2px solid #5F3F9F;
  outline-offset: 3px;
}


@media (max-width: 1024px) {
  .abtus .titblk-layout {
    gap: 40px;
  }
  .abtus .titblk-img-wrap img {
    width: 320px;
    height: 240px;
  }
  .abtus .statblk-inner {
    gap: 40px;
  }
  .abtus .featblk-cols {
    grid-template-columns: 1fr;
  }
  .abtus .featblk-col.center {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .abtus .titblk-layout {
    flex-direction: column;
    gap: 40px;
  }
  .abtus .titblk-img-wrap img {
    width: 100%;
    height: 220px;
  }
  .abtus .titblk-img-wrap {
    width: 100%;
  }
  .abtus .titblk-h1 {
    font-size: 36px;
  }
  .abtus .statblk-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .abtus .stat-support-grid {
    grid-template-columns: 1fr 1fr;
  }
  .abtus .team-row,
  .abtus .team-row.rev,
  .abtus .team-noport {
    flex-direction: column;
    gap: 20px;
  }
  .abtus .featblk-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .abtus .titblk-h1 {
    font-size: 36px;
  }
  .abtus .stat-hero-num {
    font-size: 50px;
  }
  .abtus .stat-support-grid {
    grid-template-columns: 1fr;
  }
  .abtus .btn-prim,
  .abtus .btn-sec {
    padding: 16px 20px;
  }
}

.ctus {
  max-width: 100%;
  overflow-x: hidden;
}

.ctus .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.ctus .reach-band {
  padding: 80px 20px 80px;
  position: relative;
  background: #F0EFF3;
  overflow: hidden;
}

.ctus .reach-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 28px,
    rgba(95, 63, 159, 0.045) 28px,
    rgba(95, 63, 159, 0.045) 30px
  );
  pointer-events: none;
}

.ctus .reach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
}

.ctus .reach-left {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ctus .reach-eyebrow {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.ctus .reach-eyebrow-line {
  width: 32px;
  height: 2px;
  background: #5F3F9F;
  border-radius: 1px;
  flex-shrink: 0;
}

.ctus .reach-eyebrow-text {
  font-size: 15px;
  color: #5F3F9F;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ctus .reach-heading {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1330;
  margin: 0;
}

.ctus .reach-heading em {
  font-style: normal;
  color: #5F3F9F;
}

.ctus .reach-desc {
  font-size: 15px;
  line-height: 1.9;
  color: #2d2540;
  margin: 0;
}

.ctus .reach-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ctus .detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ctus .detail-label {
  font-size: 15px;
  color: #5F3F9F;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ctus .detail-val {
  font-size: 15px;
  color: #2d2540;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.38s ease-in-out;
}

.ctus .detail-val:hover {
  color: #5F3F9F;
  font-size: 15px;
}

.ctus .detail-val a {
  color: #2d2540;
  text-decoration: none;
  transition: color 0.38s ease-in-out;
}

.ctus .detail-val a:hover {
  color: #5F3F9F;
}

.ctus .reach-deco-line {
  width: 2px;
  background: linear-gradient(to bottom, #5F3F9F, #B99CCC, transparent);
  border-radius: 1px;
  align-self: stretch;
  min-height: 80px;
  flex-shrink: 0;
}

.ctus .reach-right {
  flex: 1 1 0;
}

.ctus .form-card {
  background: #fff;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 8px 52px 0 rgba(95, 63, 159, 0.10);
  border: 1px solid rgba(185, 156, 204, 0.25);
}

.ctus .form-title {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #1e1330;
  margin: 0 0 8px;
}

.ctus .form-sub {
  font-size: 15px;
  line-height: 1.6;
  color: #4a3d5c;
  margin: 0 0 40px;
}

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

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

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

.ctus .field-lbl {
  font-size: 15px;
  color: #2d2540;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.ctus .field-inp {
  font-size: 15px;
  line-height: 1.6;
  color: #1e1330;
  background: #F0EFF3;
  border: 1px solid rgba(185, 156, 204, 0.4);
  border-radius: 6px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: inset 0 1px 3px 0 rgba(95, 63, 159, 0.07);
  width: 100%;
  box-sizing: border-box;
}

.ctus .field-inp::placeholder {
  color: #9b8ab0;
  font-weight: 300;
  letter-spacing: 0.01em;
}

.ctus .field-inp:focus {
  border-color: #5F3F9F;
  box-shadow: inset 0 1px 3px 0 rgba(95, 63, 159, 0.07), 0 0 0 3px rgba(95, 63, 159, 0.12);
}

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

.ctus .radio-group-lbl {
  font-size: 15px;
  color: #2d2540;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.ctus .radio-options {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px;
}

.ctus .radio-opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 22px;
  border: 1px solid rgba(185, 156, 204, 0.5);
  background: #F0EFF3;
  transition: background 0.32s ease-in-out, border-color 0.32s ease-in-out;
}

.ctus .radio-opt:hover {
  background: rgba(185, 156, 204, 0.25);
  border-color: #B99CCC;
}

.ctus .radio-opt input[type="radio"] {
  accent-color: #5F3F9F;
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.ctus .radio-opt input[type="radio"]:checked + .radio-text {
  color: #5F3F9F;
}

.ctus .radio-opt:has(input:checked) {
  background: rgba(95, 63, 159, 0.08);
  border-color: #5F3F9F;
}

.ctus .radio-text {
  font-size: 15px;
  color: #2d2540;
  line-height: 1.2;
  transition: color 0.32s ease-in-out;
}

.ctus .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
}

.ctus .privacy-check {
  accent-color: #5F3F9F;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}

.ctus .privacy-txt {
  font-size: 15px;
  color: #4a3d5c;
  line-height: 1.6;
  margin: 0;
}

.ctus .privacy-txt a {
  color: #5F3F9F;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: color 0.33s ease-in-out;
}

.ctus .privacy-txt a:hover {
  color: #3d2870;
}

.ctus .submit-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(to left, #5F3F9F, #3d2870);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 7px 22px 0 rgba(95, 63, 159, 0.08);
  transition: box-shadow 0.4s cubic-bezier(0.34,1.2,0.64,1), transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  overflow: hidden;
}

.ctus .submit-btn:hover {
  box-shadow: 0 8px 52px 0 rgba(95, 63, 159, 0.10);
  transform: translateY(-2px);
}

.ctus .submit-btn:focus {
  outline: 3px solid rgba(95, 63, 159, 0.4);
  outline-offset: 2px;
}

.ctus .submit-btn:active {
  transform: translateY(0);
}

.ctus .btn-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.ctus .submit-btn:hover .btn-icon {
  transform: translateX(4px);
}

.ctus .info-band {
  padding: 80px 20px;
  background: #fff;
  position: relative;
}

.ctus .info-dashed {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 2px dashed #B99CCC;
  padding-top: 80px;
}

.ctus .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 7px 22px 0 rgba(95, 63, 159, 0.08);
}

.ctus .info-col {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ctus .info-col.bg-primary {
  background: #5F3F9F;
}

.ctus .info-col.bg-secondary {
  background: #B99CCC;
}

.ctus .info-col.bg-light {
  background: #F0EFF3;
}

.ctus .info-col-head {
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin: 0;
}

.ctus .info-col.bg-primary .info-col-head {
  color: rgba(255,255,255,0.7);
}

.ctus .info-col.bg-secondary .info-col-head {
  color: rgba(30, 19, 48, 0.7);
}

.ctus .info-col.bg-light .info-col-head {
  color: #5F3F9F;
}

.ctus .info-col-val {
  font-size: 15px;
  line-height: 1.9;
  margin: 0;
}

.ctus .info-col.bg-primary .info-col-val {
  color: #fff;
}

.ctus .info-col.bg-secondary .info-col-val {
  color: #1e1330;
}

.ctus .info-col.bg-light .info-col-val {
  color: #2d2540;
}

.ctus .info-col-link {
  text-decoration: none;
  transition: opacity 0.37s ease-in-out;
}

.ctus .info-col.bg-primary .info-col-link {
  color: #fff;
}

.ctus .info-col.bg-secondary .info-col-link {
  color: #1e1330;
}

.ctus .info-col.bg-light .info-col-link {
  color: #2d2540;
}

.ctus .info-col-link:hover {
  opacity: 0.75;
}

.ctus .info-accent-line {
  width: 28px;
  height: 2px;
  border-radius: 1px;
}

.ctus .info-col.bg-primary .info-accent-line {
  background: rgba(255,255,255,0.4);
}

.ctus .info-col.bg-secondary .info-accent-line {
  background: rgba(30, 19, 48, 0.3);
}

.ctus .info-col.bg-light .info-accent-line {
  background: #5F3F9F;
}

.ctus .info-col-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(185, 156, 204, 0.35);
  flex-shrink: 0;
}

.ctus .info-col-img img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: brightness(0.88);
  transition: filter 0.42s cubic-bezier(0.34,1.2,0.64,1);
}

.ctus .info-col-img img:hover {
  filter: brightness(1.05);
}

@keyframes waveIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ctus .anim-item {
  animation: waveIn 0.45s cubic-bezier(0.34,1.2,0.64,1) both;
}

.ctus .anim-item:nth-child(1) { animation-delay: 0.05s; }
.ctus .anim-item:nth-child(2) { animation-delay: 0.13s; }
.ctus .anim-item:nth-child(3) { animation-delay: 0.21s; }
.ctus .anim-item:nth-child(4) { animation-delay: 0.29s; }
.ctus .anim-item:nth-child(5) { animation-delay: 0.37s; }

@keyframes colorWash {
  0% { background-color: #F0EFF3; }
  50% { background-color: #e8e3f0; }
  100% { background-color: #F0EFF3; }
}

.ctus .reach-band {
  animation: colorWash 9s ease-in-out infinite;
}

@media (max-width: 1024px) {
  .ctus .reach-inner {
    gap: 40px;
  }
  .ctus .reach-left {
    flex: 0 0 280px;
  }
  .ctus .reach-heading {
    font-size: 36px;
  }
  .ctus .info-col {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .ctus .reach-inner {
    flex-direction: column;
    gap: 40px;
  }
  .ctus .reach-left {
    flex: none;
    width: 100%;
  }
  .ctus .reach-deco-line {
    display: none;
  }
  .ctus .reach-heading {
    font-size: 36px;
  }
  .ctus .form-row {
    flex-direction: column;
    gap: 20px;
  }
  .ctus .info-grid {
    grid-template-columns: 1fr;
  }
  .ctus .form-card {
    padding: 20px;
  }
  .ctus .radio-options {
    flex-direction: column;
  }
  .ctus .reach-band {
    padding: 40px 20px;
  }
  .ctus .info-band {
    padding: 40px 20px;
  }
  .ctus .info-dashed {
    padding-top: 40px;
  }
}

@media (max-width: 360px) {
  .ctus .reach-heading {
    font-size: 36px;
  }
  .ctus .form-title {
    font-size: 36px;
  }
  .ctus .submit-btn {
    padding: 16px 20px;
    width: 100%;
    justify-content: center;
  }
}

.webnrs {
  max-width: 100%;
  overflow-x: hidden;
}

.webnrs .pg-bound {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.webnrs .titblk {
  position: relative;
  background: linear-gradient(to left, #2a1a5e, #5F3F9F);
  padding-top: 80px;
  padding-bottom: 80px;
  overflow: hidden;
}

.webnrs .titblk-pat {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.webnrs .titblk-pat::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(185, 156, 204, 0.25);
  border-radius: 6px;
  transform: rotate(20deg);
}

.webnrs .titblk-pat::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 40px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(185, 156, 204, 0.2);
  border-radius: 22px;
}

.webnrs .titblk-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 40px;
}

.webnrs .titblk-text {
  flex: 1 1 0;
}

.webnrs .titblk-eyebrow {
  display: block;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  color: #B99CCC;
  margin-bottom: 16px;
}

.webnrs .titblk-h1 {
  font-size: 68px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F0EFF3;
  margin-bottom: 20px;
}

.webnrs .titblk-sub {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #d4c8e8;
  max-width: 520px;
}

.webnrs .titblk-img {
  flex: 0 0 auto;
  position: relative;
  width: 260px;
  align-self: flex-end;
}

.webnrs .titblk-img img {
  width: 260px;
  height: 320px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  display: block;
  border: 1px solid rgba(185, 156, 204, 0.3);
  filter: saturate(0.7) brightness(0.85);
}

.webnrs .titblk-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(95, 63, 159, 0.5), transparent);
  border-radius: 10px;
  pointer-events: none;
}

.webnrs .divdr-dashdot {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.webnrs .divdr-dashdot span {
  display: inline-block;
  background: #B99CCC;
  flex-shrink: 0;
}

.webnrs .divdr-dashdot span.dot {
  width: 4px;
  height: 4px;
  border-radius: 38px;
}

.webnrs .divdr-dashdot span.dash {
  width: 16px;
  height: 2px;
  border-radius: 1px;
}

.webnrs .cardgrid-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #F0EFF3;
}

.webnrs .cardgrid-sec .pg-bound {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.webnrs .sec-label {
  display: block;
  width: 32px;
  height: 2px;
  background: #5F3F9F;
  border-radius: 1px;
  margin-bottom: 16px;
}

.webnrs .sec-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin-bottom: 8px;
}

.webnrs .sec-lead {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2d2040;
  margin-bottom: 40px;
  max-width: 560px;
}

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

.webnrs .wcard {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 7px 22px 0 rgba(95, 63, 159, 0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1), transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
  overflow: hidden;
}

.webnrs .wcard:hover {
  box-shadow: 0 8px 52px 0 rgba(95, 63, 159, 0.10);
  transform: translateY(-4px) perspective(600px) rotateX(1.5deg);
}

.webnrs .wcard-imgwrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.webnrs .wcard-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-bottom: 1px solid rgba(185, 156, 204, 0.25);
  transition: transform 0.42s ease-in-out;
}

.webnrs .wcard:hover .wcard-imgwrap img {
  transform: scale(1.04);
}

.webnrs .wcard-seats {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(95, 63, 159, 0.92);
  color: #F0EFF3;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 4px 8px;
  border-radius: 6px;
}

.webnrs .wcard-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  gap: 8px;
}

.webnrs .wcard-h3 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #3a2570;
  font-weight: 700;
  margin-bottom: 4px;
}

.webnrs .wcard-desc {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2040;
  flex: 1 1 auto;
}

.webnrs .wcard-foot {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.webnrs .wcard-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.webnrs .wcard-pricenum {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  font-weight: 700;
}

.webnrs .wcard-pricenote {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #7a6090;
}

.webnrs .wcard-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #5F3F9F;
  color: #F0EFF3;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border-radius: 22px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.35s cubic-bezier(0.34,1.2,0.64,1), padding-left 0.35s cubic-bezier(0.34,1.2,0.64,1);
  position: relative;
  overflow: hidden;
}

.webnrs .wcard-btn .btn-icon {
  display: inline-block;
  width: 0;
  overflow: hidden;
  transition: width 0.35s cubic-bezier(0.34,1.2,0.64,1);
  flex-shrink: 0;
}

.webnrs .wcard-btn .btn-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: #F0EFF3;
}

.webnrs .wcard-btn:hover {
  background: #3a2570;
  padding-left: 12px;
}

.webnrs .wcard-btn:hover .btn-icon {
  width: 20px;
}

.webnrs .wcard-btn:focus {
  outline: 2px solid #5F3F9F;
  outline-offset: 2px;
}

.webnrs .divdr-dashdot2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 16px 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.webnrs .divdr-dashdot2 span {
  display: inline-block;
  background: #5F3F9F;
  flex-shrink: 0;
}

.webnrs .divdr-dashdot2 span.dot {
  width: 4px;
  height: 4px;
  border-radius: 38px;
}

.webnrs .divdr-dashdot2 span.dash {
  width: 12px;
  height: 2px;
  border-radius: 1px;
}

.webnrs .about-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  position: relative;
}

.webnrs .about-sec::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235F3F9F' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.webnrs .about-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
}

.webnrs .about-imgcol {
  flex: 0 0 auto;
}

.webnrs .about-imgcol img {
  width: 320px;
  height: 420px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(185, 156, 204, 0.4);
  display: block;
  box-shadow: 0 7px 22px 0 rgba(95, 63, 159, 0.08);
}

.webnrs .about-textcol {
  flex: 1 1 0;
  padding-left: 20px;
  padding-right: 80px;
}

.webnrs .about-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin-bottom: 16px;
}

.webnrs .about-p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2040;
  margin-bottom: 16px;
}

.webnrs .divdr-line {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.webnrs .divdr-line hr {
  border: none;
  border-top: 1px dashed #B99CCC;
  margin: 0;
}

.webnrs .team-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(to left, #F0EFF3, #e8e2f5);
  position: relative;
  overflow: hidden;
}

.webnrs .team-geo {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(95, 63, 159, 0.12);
  border-radius: 22px;
  transform: rotate(30deg);
  pointer-events: none;
  animation: geospin 12s ease-in-out infinite alternate;
}

@keyframes geospin {
  from { transform: rotate(30deg) scale(1); }
  to { transform: rotate(45deg) scale(1.08); }
}

.webnrs .team-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.webnrs .team-intro {
  flex: 1 1 0;
}

.webnrs .team-intro .sec-label {
  margin-bottom: 16px;
}

.webnrs .team-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin-bottom: 16px;
}

.webnrs .team-p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2040;
  margin-bottom: 16px;
}

.webnrs .team-cards {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.webnrs .tcard {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 1px 2px 0 rgba(95, 63, 159, 0.07);
  transition: box-shadow 0.4s ease-in-out;
}

.webnrs .tcard:hover {
  box-shadow: 0 7px 22px 0 rgba(95, 63, 159, 0.08);
}

.webnrs .tcard-portrait {
  width: 80px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(185, 156, 204, 0.35);
}

.webnrs .tcard-portrait img {
  width: 80px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.webnrs .tcard-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.webnrs .tcard-name {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #3a2570;
  font-weight: 700;
}

.webnrs .tcard-role {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #7a6090;
}

.webnrs .tcard-bio {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2040;
  max-width: 220px;
}

.webnrs .divdr-thick {
  height: 4px;
  background: linear-gradient(to left, #B99CCC, #5F3F9F);
  margin: 0;
}

.webnrs .metrics-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #5F3F9F;
  position: relative;
  overflow: hidden;
}

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

.webnrs .metrics-bg-circle {
  position: absolute;
  border-radius: 38px;
  border: 1px solid rgba(240, 239, 243, 0.08);
  animation: bgmove 10s ease-in-out infinite alternate;
}

.webnrs .metrics-bg-circle.c1 {
  width: 200px;
  height: 200px;
  top: -40px;
  left: -40px;
  animation-duration: 10s;
}

.webnrs .metrics-bg-circle.c2 {
  width: 140px;
  height: 140px;
  bottom: -30px;
  right: 60px;
  animation-duration: 14s;
  animation-direction: alternate-reverse;
}

@keyframes bgmove {
  from { transform: translate(0, 0); }
  to { transform: translate(20px, 16px); }
}

.webnrs .metrics-inner {
  position: relative;
  z-index: 1;
}

.webnrs .metrics-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #F0EFF3;
  margin-bottom: 8px;
}

.webnrs .metrics-lead {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #d4c8e8;
  margin-bottom: 40px;
  max-width: 500px;
}

.webnrs .metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.webnrs .mitem {
  background: rgba(240, 239, 243, 0.08);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(185, 156, 204, 0.2);
  transition: background 0.36s cubic-bezier(0.34,1.2,0.64,1);
}

.webnrs .mitem:hover {
  background: rgba(240, 239, 243, 0.14);
}

.webnrs .mitem-num {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B99CCC;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.webnrs .mitem-label {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #F0EFF3;
}

.webnrs .contact-sec {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
}

.webnrs .contact-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.webnrs .contact-form-col {
  flex: 1 1 0;
}

.webnrs .contact-info-col {
  flex: 0 0 auto;
  padding-top: 40px;
}

.webnrs .contact-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin-bottom: 8px;
}

.webnrs .contact-p {
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.01em;
  color: #2d2040;
  margin-bottom: 20px;
}

.webnrs .cform {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.webnrs .cform-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.webnrs .cform-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
}

.webnrs .cform-label {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #3a2570;
  font-weight: 600;
}

.webnrs .cform-input {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2d2040;
  background: #F0EFF3;
  border: 1px solid rgba(185, 156, 204, 0.4);
  border-radius: 6px;
  padding: 8px 16px;
  box-shadow: inset 0 1px 2px 0 rgba(95, 63, 159, 0.07);
  transition: border-color 0.35s ease-in-out;
  outline: none;
  width: 100%;
}

.webnrs .cform-input::placeholder {
  color: #b0a0c8;
  font-weight: 300;
}

.webnrs .cform-input:focus {
  border-color: #5F3F9F;
}

.webnrs .cform-textarea {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2d2040;
  background: #F0EFF3;
  border: 1px solid rgba(185, 156, 204, 0.4);
  border-radius: 6px;
  padding: 8px 16px;
  box-shadow: inset 0 1px 2px 0 rgba(95, 63, 159, 0.07);
  transition: border-color 0.35s ease-in-out;
  outline: none;
  resize: vertical;
  min-height: 120px;
  width: 100%;
}

.webnrs .cform-textarea::placeholder {
  color: #b0a0c8;
  font-weight: 300;
}

.webnrs .cform-textarea:focus {
  border-color: #5F3F9F;
}

.webnrs .cform-submit {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #5F3F9F;
  color: #F0EFF3;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  padding: 8px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.38s cubic-bezier(0.34,1.2,0.64,1), padding-left 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.webnrs .cform-submit .btn-icon {
  display: inline-block;
  width: 0;
  overflow: hidden;
  transition: width 0.38s cubic-bezier(0.34,1.2,0.64,1);
  flex-shrink: 0;
}

.webnrs .cform-submit .btn-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  fill: #F0EFF3;
}

.webnrs .cform-submit:hover {
  background: #3a2570;
  padding-left: 12px;
}

.webnrs .cform-submit:hover .btn-icon {
  width: 20px;
}

.webnrs .cform-submit:focus {
  outline: 2px solid #5F3F9F;
  outline-offset: 2px;
}

.webnrs .cinfo-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.webnrs .cinfo-label {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #7a6090;
  font-weight: 600;
  text-transform: uppercase;
}

.webnrs .cinfo-val {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #2d2040;
}

.webnrs .cinfo-val a {
  color: #5F3F9F;
  text-decoration: none;
  transition: font-size 0.32s cubic-bezier(0.34,1.2,0.64,1);
  display: inline-block;
}

.webnrs .cinfo-val a:hover {
  font-size: 16px;
}

@media (max-width: 1024px) {
  .webnrs .titblk-h1 {
    font-size: 50px;
  }
  .webnrs .titblk-img {
    width: 200px;
  }
  .webnrs .titblk-img img {
    width: 200px;
    height: 260px;
  }
  .webnrs .about-textcol {
    padding-right: 20px;
  }
  .webnrs .metrics-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .webnrs .titblk-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .webnrs .titblk-h1 {
    font-size: 36px;
  }
  .webnrs .titblk-img {
    width: 100%;
  }
  .webnrs .titblk-img img {
    width: 100%;
    height: 200px;
  }
  .webnrs .cardgrid {
    grid-template-columns: 1fr;
  }
  .webnrs .about-inner {
    flex-direction: column;
  }
  .webnrs .about-imgcol img {
    width: 100%;
    height: 260px;
  }
  .webnrs .about-textcol {
    padding-left: 0;
    padding-right: 0;
  }
  .webnrs .team-grid {
    flex-direction: column;
  }
  .webnrs .team-cards {
    width: 100%;
  }
  .webnrs .metrics-row {
    grid-template-columns: 1fr;
  }
  .webnrs .contact-layout {
    flex-direction: column;
  }
  .webnrs .contact-info-col {
    padding-top: 0;
  }
  .webnrs .cform-row {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .webnrs .titblk {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .webnrs .titblk-h1 {
    font-size: 36px;
  }
  .webnrs .wcard-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

.lrnprog {
  max-width: 100%;
  overflow-x: hidden;
}

.lrnprog .pg-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}




.lrnprog .titl-blk {
  position: relative;
  background: #1a0f2e;
  padding-top: 40px;
  padding-bottom: 80px;
}

.lrnprog .titl-blk::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #F0EFF3;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.lrnprog .titl-img-area {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(95,63,159,0.18);
  margin-bottom: 40px;
  position: relative;
}

.lrnprog .titl-img-area img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%);
  display: block;
}

.lrnprog .titl-img-area .img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,15,46,0.3), rgba(26,15,46,0.72));
}

.lrnprog .titl-txt {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.lrnprog .titl-accent {
  display: inline-block;
  font-size: 15px;
  color: #B99CCC;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.lrnprog .titl-h1 {
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #ffffff;
  margin: 0 0 20px 0;
  max-width: 680px;
}

.lrnprog .titl-h1 em {
  color: #B99CCC;
  font-style: normal;
}

.lrnprog .titl-sub {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 0 40px 0;
}

.lrnprog .titl-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.lrnprog .btn-prim {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: #5F3F9F;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.38s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.38s cubic-bezier(0.34,1.2,0.64,1);
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.lrnprog .btn-prim::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background: rgba(185,156,204,0.25);
  transition: height 0.42s cubic-bezier(0.34,1.2,0.64,1);
  z-index: 0;
}

.lrnprog .btn-prim:hover::before {
  height: 100%;
}

.lrnprog .btn-prim:hover {
  box-shadow: 0 8px 52px 0 rgba(95,63,159,0.10);
}

.lrnprog .btn-prim:focus-visible {
  outline: 3px solid #B99CCC !important;
  outline-offset: 3px !important;
}

.lrnprog .btn-prim .btn-icon {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
  position: relative;
  z-index: 1;
}

.lrnprog .btn-prim .btn-lbl {
  position: relative;
  z-index: 1;
  transition: transform 0.35s ease-in-out;
}

.lrnprog .btn-prim:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

.lrnprog .btn-prim:hover .btn-lbl {
  transform: translateX(6px);
}

.lrnprog .btn-sec {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 22px;
  border: 1px solid rgba(185,156,204,0.55);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.4s ease-in-out, color 0.4s ease-in-out;
}

.lrnprog .btn-sec:hover {
  border-color: #B99CCC;
  color: #B99CCC;
}

.lrnprog .btn-sec:focus-visible {
  outline: 3px solid #B99CCC !important;
  outline-offset: 3px !important;
}


.lrnprog .deco-strokes {
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  z-index: 0;
}

.lrnprog .deco-strokes span {
  display: block;
  height: 2px;
  background: rgba(185,156,204,0.35);
  border-radius: 1px;
}


.lrnprog .prog-overview {
  background: #F0EFF3;
  padding: 80px 0 80px;
  position: relative;
}

.lrnprog .prog-overview::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 50px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.lrnprog .overview-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  align-items: start;
}

.lrnprog .overview-main {
  padding-right: 20px;
}

.lrnprog .section-topline {
  display: block;
  width: 40px;
  height: 3px;
  background: #5F3F9F;
  border-radius: 1px;
  margin-bottom: 16px;
}

.lrnprog .overview-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin: 0 0 20px 0;
}

.lrnprog .overview-body {
  font-size: 15px;
  line-height: 1.9;
  color: #2a2035;
  margin: 0 0 20px 0;
  padding: 0 80px 0 0;
}

.lrnprog .overview-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.lrnprog .meta-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
  position: relative;
}

.lrnprog .meta-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #5F3F9F;
  border-radius: 38px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
}

.lrnprog .meta-label {
  font-size: 15px;
  color: #5F3F9F;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  display: block;
}

.lrnprog .meta-val {
  font-size: 15px;
  color: #2a2035;
  line-height: 1.6;
}


.lrnprog .curriculum {
  background: #ffffff;
  padding: 80px 0 80px;
}

.lrnprog .curr-layout {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
}

.lrnprog .curr-steps {
  flex: 1 1 55%;
}

.lrnprog .curr-preview {
  flex: 1 1 40%;
  position: relative;
}

.lrnprog .curr-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin: 0 0 40px 0;
}

.lrnprog .step-item {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.lrnprog .step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #5F3F9F;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
}

.lrnprog .step-body {
  flex: 1;
}

.lrnprog .step-ttl {
  font-size: 15px;
  font-weight: 700;
  color: #2a2035;
  margin: 0 0 4px 0;
  line-height: 1.6;
}

.lrnprog .step-desc {
  font-size: 15px;
  color: #4a3d60;
  line-height: 1.9;
  margin: 0;
}

.lrnprog .preview-card {
  background: #F0EFF3;
  border-radius: 22px;
  padding: 40px;
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
  position: sticky;
  top: 20px;
}

.lrnprog .preview-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(95,63,159,0.15);
  margin-bottom: 20px;
}

.lrnprog .preview-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lrnprog .preview-tag {
  font-size: 15px;
  color: #5F3F9F;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.01em;
}

.lrnprog .preview-desc {
  font-size: 15px;
  color: #2a2035;
  line-height: 1.9;
  margin: 0;
}


.lrnprog .chart-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.lrnprog .donut-svg {
  flex-shrink: 0;
}

.lrnprog .donut-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lrnprog .legend-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #2a2035;
  line-height: 1.6;
}

.lrnprog .legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}


.lrnprog .instructors {
  background: #2a1a4a;
  padding: 80px 0;
  position: relative;
  animation: bgpulse 5s ease-in-out infinite;
}

@keyframes bgpulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.08); }
}

.lrnprog .instr-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #B99CCC;
  margin: 0 0 8px 0;
}

.lrnprog .instr-intro {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin: 0 0 40px 0;
}

.lrnprog .instr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.lrnprog .instr-card {
  background: rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 20px;
  border: 1px solid rgba(185,156,204,0.18);
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
  transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.lrnprog .instr-card:hover {
  background: rgba(255,255,255,0.11);
  box-shadow: 0 7px 22px 0 rgba(95,63,159,0.08);
}

.lrnprog .instr-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(185,156,204,0.35);
  margin-bottom: 16px;
}

.lrnprog .instr-portrait img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.lrnprog .instr-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px 0;
  line-height: 1.6;
}

.lrnprog .instr-role {
  font-size: 15px;
  color: #B99CCC;
  margin: 0 0 8px 0;
  line-height: 1.6;
}

.lrnprog .instr-bio {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  margin: 0;
}

.lrnprog .instr-no-portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(95,63,159,0.35);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(185,156,204,0.25);
}

.lrnprog .instr-initials {
  font-size: 15px;
  font-weight: 700;
  color: #B99CCC;
  letter-spacing: 0.02em;
}


.lrnprog .faq-blk {
  background: #ffffff;
  padding: 80px 0;
}

.lrnprog .faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.lrnprog .faq-aside {
  position: sticky;
  top: 20px;
}

.lrnprog .faq-h2 {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #5F3F9F;
  margin: 0 0 16px 0;
}

.lrnprog .faq-note {
  font-size: 15px;
  line-height: 1.9;
  color: #4a3d60;
  margin: 0 0 40px 0;
}

.lrnprog .faq-link {
  font-size: 15px;
  color: #5F3F9F;
  text-decoration: underline;
  letter-spacing: 0.01em;
  transition: font-size 0.36s cubic-bezier(0.34,1.2,0.64,1), color 0.36s ease-in-out;
  display: inline-block;
}

.lrnprog .faq-link:hover {
  font-size: 15px;
  color: #2a1a4a;
}

.lrnprog .faq-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lrnprog .faq-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(95,63,159,0.12);
  box-shadow: 0 1px 2px 0 rgba(95,63,159,0.07);
}

.lrnprog .faq-item summary {
  padding: 20px;
  font-size: 15px;
  font-weight: 600;
  color: #2a2035;
  line-height: 1.6;
  cursor: pointer;
  list-style: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background-color 0.37s ease-in-out;
}

.lrnprog .faq-item summary::-webkit-details-marker {
  display: none;
}

.lrnprog .faq-item summary:hover {
  background: #F0EFF3;
}

.lrnprog .faq-item[open] summary {
  background: #F0EFF3;
  color: #5F3F9F;
}

.lrnprog .faq-item summary:focus-visible {
  outline: 3px solid #5F3F9F !important;
  outline-offset: -3px !important;
}

.lrnprog .faq-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border-right: 2px solid #5F3F9F;
  border-bottom: 2px solid #5F3F9F;
  transform: rotate(45deg);
  transition: transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
  margin-top: -4px;
}

.lrnprog .faq-item[open] .faq-arrow {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.lrnprog .faq-answer {
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.9;
  color: #4a3d60;
}


@media (max-width: 1024px) {
  .lrnprog .overview-grid {
    grid-template-columns: 1fr;
  }
  .lrnprog .overview-body {
    padding-right: 0;
  }
  .lrnprog .overview-meta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .lrnprog .meta-item {
    flex: 1 1 160px;
  }
  .lrnprog .instr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .lrnprog .curr-layout {
    flex-direction: column;
  }
  .lrnprog .curr-preview {
    width: 100%;
  }
  .lrnprog .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lrnprog .faq-aside {
    position: static;
  }
}

@media (max-width: 768px) {
  .lrnprog .titl-h1 {
    font-size: 36px;
  }
  .lrnprog .overview-h2,
  .lrnprog .curr-h2,
  .lrnprog .instr-h2,
  .lrnprog .faq-h2 {
    font-size: 36px;
  }
  .lrnprog .instr-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lrnprog .deco-strokes {
    display: none;
  }
  .lrnprog .titl-blk {
    padding-bottom: 80px;
  }
}

@media (max-width: 360px) {
  .lrnprog .titl-h1 {
    font-size: 36px;
  }
  .lrnprog .instr-grid {
    grid-template-columns: 1fr;
  }
  .lrnprog .titl-actions {
    flex-direction: column;
  }
  .lrnprog .btn-prim,
  .lrnprog .btn-sec {
    width: 100%;
    justify-content: center;
  }
}

.successPage {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #F0EFF3;
}

.successPage .successWrap {
    max-width: 1100px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.successPage .successCard {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 8px 52px 0 rgba(95, 63, 159, 0.10);
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    width: 100%;
    max-width: 620px;
    position: relative;
}

.successPage .successCard .iconFrame {
    width: 72px;
    height: 72px;
    border-radius: 38px;
    background: linear-gradient(to left, #F0EFF3, #5F3F9F);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 22px 0 rgba(95, 63, 159, 0.08);
    flex-shrink: 0;
}

.successPage .successCard .iconFrame .checkShape {
    width: 32px;
    height: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.successPage .successCard .iconFrame .checkShape svg {
    width: 32px;
    height: 32px;
    display: block;
}

.successPage .successCard .accentLine {
    width: 40px;
    height: 3px;
    background: linear-gradient(to left, #B99CCC, #5F3F9F);
    border-radius: 1px;
    margin-bottom: 4px;
}

.successPage .successCard .successTitle {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #5F3F9F;
    margin: 0;
}

.successPage .successCard .successBody {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    color: #2a2235;
    margin: 0;
    max-width: 480px;
}

.successPage .successCard .successBody strong {
    color: #5F3F9F;
    font-weight: 600;
}

.successPage .successCard .dividerThin {
    width: 100%;
    height: 1px;
    background: #F0EFF3;
    border-radius: 1px;
}

.successPage .successCard .metaNote {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: #4a3d5c;
    margin: 0;
}

.successPage .successCard .contactRef {
    font-size: 15px;
    line-height: 1.6;
    color: #4a3d5c;
    margin: 0;
}

.successPage .successCard .contactRef a {
    color: #5F3F9F;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: font-size 0.38s cubic-bezier(0.34,1.2,0.64,1), color 0.42s ease-in-out;
}

.successPage .successCard .contactRef a:hover {
    font-size: 15.6px;
    color: #3d2878;
}

.successPage .actionRow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.successPage .actionRow .btnPrimary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: linear-gradient(to left, #B99CCC, #5F3F9F);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 7px 22px 0 rgba(95, 63, 159, 0.08);
    text-decoration: none;
    overflow: hidden;
    position: relative;
    transition: box-shadow 0.35s ease-in-out, transform 0.38s cubic-bezier(0.34,1.2,0.64,1);
}

.successPage .actionRow .btnPrimary:hover {
    box-shadow: 0 8px 52px 0 rgba(95, 63, 159, 0.10);
    transform: translateY(-2px);
}

.successPage .actionRow .btnPrimary:focus-visible {
    outline: 3px solid #5F3F9F;
    outline-offset: 3px;
}

.successPage .actionRow .btnPrimary .btnIcon {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.successPage .actionRow .btnPrimary:hover .btnIcon {
    transform: translateX(-4px);
}

.successPage .actionRow .btnSecondary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: transparent;
    color: #5F3F9F;
    font-size: 15px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 600;
    border: 2px solid #B99CCC;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.36s ease-in-out, color 0.32s ease-in-out, background 0.4s ease-in-out;
}

.successPage .actionRow .btnSecondary:hover {
    border-color: #5F3F9F;
    background: #F0EFF3;
    color: #3d2878;
}

.successPage .actionRow .btnSecondary:focus-visible {
    outline: 3px solid #5F3F9F;
    outline-offset: 3px;
}

.successPage .actionRow .btnSecondary .btnIcon {
    display: flex;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1);
}

.successPage .actionRow .btnSecondary:hover .btnIcon {
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .successPage {
        padding: 40px 16px;
    }

    .successPage .successCard {
        padding: 40px 20px;
        gap: 16px;
    }

    .successPage .successCard .successTitle {
        font-size: 36px;
    }

    .successPage .actionRow {
        flex-direction: column;
        width: 100%;
    }

    .successPage .actionRow .btnPrimary,
    .successPage .actionRow .btnSecondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .successPage .successCard .successTitle {
        font-size: 36px;
    }
}
