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

body {
  margin: 0;
  overscroll-behavior: contain;
  overflow-x: hidden
}

.site-header {
  position: relative;
  background: linear-gradient(135deg, #1b0e24 0%, #2a1040 55%, #3b1a20 100%);
  padding: 32px 48px;
  overflow: hidden
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #d95e3314 0%, #9a37b91f 100%);
  pointer-events: none
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #D95E33, #9A37B9, #D95E33);
  pointer-events: none
}

.header-grid {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1
}

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

.brand-capsule {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #0d0716;
  border-radius: 38px;
  padding: 8px 16px 8px 8px;
  box-shadow: 0 3px 3px 1px #9a37b912 0 6px 22px 1px #9a37b914;
  border: 1px solid #9a37b940
}

.brand-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 38px;
  background-color: #0d0716;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #d95e3366;
  box-shadow: 0 0 0 3px #9a37b933
}

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

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

.brand-name {
  font-family: 'Lexend', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: #f5f0fb;
  letter-spacing: 0
}

.brand-tagline {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #d95e33e6
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px
}

.header-contact-strip {
  display: flex;
  align-items: center;
  gap: 32px
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e5bf;
  text-decoration: none;
  transition: color .5s ease-in-out
}

.contact-item:hover {
  color: #E3E9E5
}

.contact-item:focus {
  outline: none;
  transform: scale(1.02);
  color: #E3E9E5
}

.contact-item .mdi {
  font-size: 16px;
  color: #D95E33
}

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

.nav-link {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.15;
  color: #e3e9e5d9;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 5px;
  border: 1px solid transparent;
  transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center
}

.nav-link:hover {
  color: #f5f0fb;
  background-color: #9a37b926;
  border-color: #9a37b94d
}

.nav-link:focus {
  outline: none;
  transform: scale(1.02);
  color: #f5f0fb;
  border-color: #d95e3380
}

.nav-link.active {
  color: #f5f0fb;
  background-color: #d95e332e;
  border-color: #d95e3366
}

.nav-accent-dot {
  width: 5px;
  height: 5px;
  border-radius: 38px;
  background: linear-gradient(135deg, #D95E33, #9A37B9);
  flex-shrink: 0;
  margin: 0 8px
}

.header-deco {
  position: absolute;
  top: -32px;
  right: 96px;
  width: 180px;
  height: 180px;
  border-radius: 38px;
  background: #9a37b90f;
  border: 1px solid #9a37b91a;
  transform: rotate(20deg);
  pointer-events: none
}

.header-deco-sm {
  position: absolute;
  bottom: 16px;
  right: 320px;
  width: 60px;
  height: 60px;
  border-radius: 38px;
  background: #d95e3312;
  border: 1px solid #d95e331f;
  transform: rotate(-10deg);
  pointer-events: none
}

@media (max-width: 1200px) {
  .site-header {
    padding: 32px
  }

  .header-grid {
    gap: 32px
  }

  .header-contact-strip {
    gap: 16px
  }
}

@media (max-width: 900px) {
  .header-grid {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .header-right {
    align-items: flex-start
  }

  .primary-nav {
    justify-content: flex-start
  }

  .header-deco {
    display: none
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 16px
  }

  .header-contact-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .brand-capsule {
    padding: 8px 16px 8px 8px
  }
}

.site-footer {
  background: linear-gradient(160deg, #1b0e24 0%, #2a1040 60%, #1b1020 100%);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #D95E33, #9A37B9, #D95E33) 1;
  padding: 96px 48px 48px;
  position: relative;
  overflow: hidden
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, #9a37b90d 0%, #d95e330a 100%);
  pointer-events: none
}

.footer-grid {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 96px;
  align-items: start;
  position: relative;
  z-index: 1
}

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

.footer-logo-wrap {
  width: 75px;
  height: 75px;
  border-radius: 38px;
  background-color: #0d0716;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border: 2px solid #d95e3359;
  box-shadow: 0 3px 3px 1px #d95e3312 0 6px 22px 1px #d95e3314
}

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

.footer-brand-name {
  font-family: 'Lexend', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: #f5f0fb
}

.footer-brand-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e599;
  max-width: 220px
}

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

.footer-col-label {
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  color: #D95E33;
  text-transform: uppercase;
  letter-spacing: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #d95e3333
}

.footer-link {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e5b3;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  transition: color .55s ease-in-out
}

.footer-link:hover {
  color: #E3E9E5
}

.footer-link:focus {
  outline: none;
  transform: scale(1.02);
  color: #E3E9E5
}

.footer-link .mdi {
  font-size: 16px;
  color: #9A37B9;
  flex-shrink: 0
}

.footer-contact-item {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e5b3;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-height: 44px;
  transition: color .55s ease-in-out
}

.footer-contact-item:hover {
  color: #E3E9E5
}

.footer-contact-item:focus {
  outline: none;
  transform: scale(1.02);
  color: #E3E9E5
}

.footer-contact-item .mdi {
  font-size: 16px;
  color: #9A37B9;
  flex-shrink: 0;
  margin-top: 4px
}

.footer-bottom {
  max-width: 1170px;
  margin: 96px auto 0;
  padding-top: 32px;
  border-top: 1px solid #9a37b933;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1
}

.footer-copy {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e573
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.footer-legal-link {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e580;
  text-decoration: none;
  transition: color .5s ease-in-out
}

.footer-legal-link:hover {
  color: #e3e9e5d9
}

.footer-legal-link:focus {
  outline: none;
  transform: scale(1.02);
  color: #e3e9e5d9
}

@media (max-width: 1200px) {
  .site-footer {
    padding: 96px 32px 48px
  }

  .footer-grid {
    gap: 48px
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px
  }

  .footer-brand {
    grid-column: 1 / -1
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 48px 16px 32px
  }

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

  .footer-brand {
    grid-column: auto
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 48px
  }

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

.cookie-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  background: #1b0e24;
  border-top: 2px solid #9a37b966;
  box-shadow: 0 9px 60px 1px #9a37b924
}

.cookie-bar-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 32px 48px
}

.cookie-bar-head {
  font-family: 'Lexend', sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
  color: #f5f0fb;
  margin-bottom: 8px
}

.cookie-bar-text {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e5bf;
  margin-bottom: 16px
}

.cookie-bar-text ul {
  margin: 8px 0 0;
  padding-left: 16px;
  list-style: disc
}

.cookie-bar-text li {
  margin-bottom: 0
}

.cookie-detail-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: #9A37B9;
  text-decoration: underline;
  padding: 0;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  transition: color .5s ease-in-out
}

.cookie-detail-toggle:hover {
  color: #D95E33
}

.cookie-detail-toggle:focus {
  outline: none;
  transform: scale(1.02)
}

.cookie-categories {
  display: none;
  margin-bottom: 16px;
  padding: 16px;
  background: #9a37b914;
  border-radius: 5px;
  border: 1px solid #9a37b933
}

.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #9a37b91a
}

.cookie-category-row:last-child {
  border-bottom: none
}

.cookie-cat-label {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  color: #e3e9e5e6
}

.cookie-cat-desc {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #e3e9e58c;
  margin-left: 8px
}

.cookie-toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0
}

.cookie-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute
}

.cookie-toggle-switch input:focus+.toggle-track {
  outline: 2px solid #9A37B9;
  outline-offset: 2px
}

.cookie-toggle-switch input:checked+.toggle-track {
  background: #9A37B9;
  box-shadow: inset 0 2px 4px #9a37b94d
}

.cookie-toggle-switch input:checked+.toggle-track::after {
  left: 22px
}

.toggle-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e3e9e533;
  border-radius: 38px;
  transition: background-color .5s ease-in-out;
  cursor: pointer
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #f5f0fb;
  border-radius: 38px;
  transition: left .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.toggle-always-on {
  font-family: 'Rubik', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #d95e33cc
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap
}

.cookie-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  text-decoration: underline;
  padding: 8px 0;
  min-height: 44px;
  transition: color .5s ease-in-out
}

.cookie-btn:focus {
  outline: none;
  transform: scale(1.02)
}

.cookie-btn.accept {
  color: #D95E33
}

.cookie-btn.accept:hover {
  color: #f5f0fb
}

.cookie-btn.reject {
  color: #e3e9e5a6
}

.cookie-btn.reject:hover {
  color: #e3e9e5e6
}

@media (max-width: 600px) {
  .cookie-bar-inner {
    padding: 16px
  }

  .cookie-actions {
    gap: 16px
  }
}

.legal-box {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 48px
}

.legal-box h1 {
  font-size: 54px;
  line-height: 1.15;
  color: #1b1b1b;
  margin-bottom: 32px;
  margin-top: 0
}

.legal-box h2 {
  font-size: 28px;
  line-height: 1.15;
  color: #1b1b1b;
  margin-top: 48px;
  margin-bottom: 16px
}

.legal-box h3 {
  font-size: 28px;
  line-height: 1.15;
  color: #2e2e2e;
  margin-top: 32px;
  margin-bottom: 16px
}

.legal-box h4 {
  font-size: 14px;
  line-height: 1.15;
  color: #2e2e2e;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 32px;
  margin-bottom: 8px
}

.legal-box h5 {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-top: 16px;
  margin-bottom: 8px
}

.legal-box h6 {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-top: 16px;
  margin-bottom: 8px
}

.legal-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-top: 0;
  margin-bottom: 16px
}

.legal-box ul {
  margin: 0 0 16px;
  padding-left: 32px;
  list-style: none
}

.legal-box ol {
  margin: 0 0 16px;
  padding-left: 32px;
  list-style: none;
  counter-reset: policy-counter
}

.legal-box ul li {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px
}

.legal-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 38px;
  background-color: #D95E33
}

.legal-box ol li {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a;
  margin-bottom: 8px;
  position: relative;
  padding-left: 16px;
  counter-increment: policy-counter
}

.legal-box ol li::before {
  content: counter(policy-counter) ".";
  position: absolute;
  left: -16px;
  top: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #D95E33;
  font-weight: 600
}

.legal-box ul ul,
.legal-box ol ol,
.legal-box ul ol,
.legal-box ol ul {
  margin-top: 8px;
  margin-bottom: 0
}

.legal-box a {
  color: #D95E33;
  text-decoration: underline;
  text-decoration-color: #d95e3359;
  text-underline-offset: 3px;
  transition: color .5s ease-in-out, text-decoration-color .45s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.legal-box a:hover {
  color: #9A37B9;
  text-decoration-color: #9a37b980
}

.legal-box a:active {
  color: #7a2a96
}

.legal-box hr {
  border: none;
  border-top: 1.5px solid #E3E9E5;
  margin: 48px 0;
  background: none
}

.legal-box div {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a3a
}

.legal-box div+div {
  margin-top: 16px
}

@media (max-width: 900px) {
  .legal-box {
    padding: 64px 32px
  }

  .legal-box h1 {
    font-size: 54px
  }
}

@media (max-width: 600px) {
  .legal-box {
    padding: 48px 16px
  }

  .legal-box h1 {
    font-size: 28px;
    line-height: 1.15
  }

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

  .legal-box h3 {
    font-size: 28px
  }
}

.abt-us {
  background: #fff;
  overflow-x: clip
}

.abt-us *,
.abt-us ::before,
.abt-us ::after {
  box-sizing: border-box
}

.abt-us a {
  color: #D95E33;
  text-decoration: underline;
  transition: text-decoration-color .5s ease-in-out
}

.abt-us a:hover {
  text-decoration-color: transparent
}

.abt-us ::selection {
  background: #D95E33;
  color: #fff
}

.abt-title {
  position: relative;
  padding: 96px 32px 128px;
  background: linear-gradient(277deg, #9A37B9 0%, #D95E33 100%);
  overflow: hidden
}

.abt-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 18px);
  pointer-events: none
}

.abt-title-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1
}

.abt-title-text h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0 0 32px
}

.abt-title-text h1 span {
  display: block;
  opacity: .75;
  font-weight: 400
}

.abt-title-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffffe0;
  margin: 0;
  max-width: 420px
}

.abt-title-img-wrap {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 9px 60px 1px #d95e3324
}

.abt-title-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.6) sepia(0.3);
  transition: filter .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-title-img-wrap:hover img {
  filter: saturate(1) sepia(0)
}

.abt-title-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b973 0%, #d95e3359 100%);
  pointer-events: none;
  transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-title-img-wrap:hover::after {
  opacity: 0
}

.abt-title-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff26;
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 5px;
  border: 1px solid #ffffff40;
  z-index: 2
}

.abt-title-deco {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  opacity: .25
}

.abt-title-deco span {
  display: block;
  height: 1px;
  background: #fff
}

.abt-divider-torn {
  display: block;
  width: 100%;
  line-height: 0;
  margin-bottom: -2px
}

.abt-who {
  background: #E3E9E5;
  padding: 96px 32px;
  position: relative
}

.abt-who-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.abt-who-col-a {
  position: relative
}

.abt-who-col-b {
  margin-top: 96px
}

.abt-who-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #9A37B9;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px
}

.abt-who-label i {
  font-size: 16px
}

.abt-who-col-a h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 32px
}

.abt-who-col-a h2 em {
  font-style: normal;
  color: #D95E33
}

.abt-who-img-wrap {
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 6px 22px 1px #9a37b914;
  position: relative
}

.abt-who-img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7);
  transition: filter .6s ease-in-out
}

.abt-who-img-wrap:hover img {
  filter: saturate(1)
}

.abt-who-img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b94d 0%, #d95e3333 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .6s ease-in-out
}

.abt-who-img-wrap:hover::before {
  opacity: 0
}

.abt-who-corner-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background: #D95E33;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 5px
}

.abt-who-col-b h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 32px
}

.abt-who-accent {
  width: 40px;
  height: 3px;
  background: #D95E33;
  border-radius: 5px;
  margin-bottom: 16px
}

.abt-who-col-b p {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  margin: 0 0 16px
}

.abt-glossary {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.abt-glossary-item {
  background: #fff;
  border-radius: 5px;
  padding: 16px;
  box-shadow: 0 3px 3px 1px #d95e3312;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  opacity: 0;
  transform: translateY(24px) rotateX(12deg);
  animation: card-flip-in .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.abt-glossary-item:nth-child(1) {
  animation-delay: .1s
}

.abt-glossary-item:nth-child(2) {
  animation-delay: .25s
}

.abt-glossary-item:nth-child(3) {
  animation-delay: .4s
}

@keyframes card-flip-in {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg)
  }
}

.abt-glossary-dt {
  font-size: 14px;
  font-weight: 700;
  color: #9A37B9;
  white-space: nowrap
}

.abt-glossary-dd {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  margin: 0
}

.abt-who-deco {
  position: absolute;
  top: 32px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  opacity: .3
}

.abt-who-deco span {
  display: block;
  height: 1px;
  background: #9A37B9
}

.abt-divider-torn2 {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -2px
}

.abt-team {
  background: #fff;
  padding: 96px 32px;
  position: relative
}

.abt-team-inner {
  max-width: 1170px;
  margin: 0 auto
}

.abt-team-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start
}

.abt-team-heading h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 16px
}

.abt-team-heading p {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  margin: 0
}

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

.abt-stat-card {
  background: linear-gradient(277deg, #9a37b90f 0%, #d95e330a 100%);
  border-radius: 5px;
  padding: 32px 16px;
  text-align: center;
  border: 1px solid #9a37b91f;
  box-shadow: 0 3px 3px 1px #d95e3312;
  opacity: 0;
  animation: card-flip-in .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.abt-stat-card:nth-child(1) {
  animation-delay: .15s
}

.abt-stat-card:nth-child(2) {
  animation-delay: .3s
}

.abt-stat-card:nth-child(3) {
  animation-delay: .45s
}

.abt-stat-num {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #D95E33;
  display: block
}

.abt-stat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  display: block;
  margin-top: 8px
}

.abt-team-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start
}

.abt-portrait-wrap {
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 6px 22px 1px #9a37b914;
  aspect-ratio: 7/9
}

.abt-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75);
  transition: filter .5s ease-in-out
}

.abt-portrait-wrap:hover img {
  filter: saturate(1)
}

.abt-portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b947 0%, #d95e332e 100%);
  pointer-events: none;
  transition: opacity .5s ease-in-out
}

.abt-portrait-wrap:hover::after {
  opacity: 0
}

.abt-portrait-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 2;
  background: #9A37B9;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 5px
}

.abt-team-bio {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.abt-team-bio-name {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 8px
}

.abt-team-bio-role {
  font-size: 14px;
  font-weight: 600;
  color: #9A37B9;
  margin: 0 0 16px
}

.abt-bio-accent {
  width: 40px;
  height: 3px;
  background: #9A37B9;
  border-radius: 5px;
  margin-bottom: 16px
}

.abt-team-bio p {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  margin: 0
}

.abt-frosted {
  background: #e3e9e58c;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid #9a37b91f;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 6px 22px 1px #9a37b914
}

.abt-frosted h4 {
  font-size: 14px;
  font-weight: 700;
  color: #9A37B9;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.abt-reach-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.abt-reach-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a
}

.abt-reach-list li i {
  color: #D95E33;
  font-size: 16px;
  flex-shrink: 0
}

.abt-img-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px
}

.abt-img-card {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 3px 1px #d95e3312;
  position: relative
}

.abt-img-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.65);
  transition: filter .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-img-card:hover img {
  filter: saturate(1)
}

.abt-img-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b959 0%, #d95e3340 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-img-card:hover::before {
  opacity: 0
}

.abt-team-deco {
  position: absolute;
  top: 48px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
  opacity: .2
}

.abt-team-deco span {
  display: block;
  height: 1px;
  background: #D95E33
}

.abt-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none !important;
  text-decoration: none;
  transition: background .5s ease-in-out, box-shadow .5s ease-in-out, padding .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.abt-btn i {
  font-size: 18px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .45s ease-in-out, transform .45s ease-in-out;
  position: absolute;
  left: 16px
}

.abt-btn span {
  transition: transform .45s ease-in-out;
  display: inline-block
}

.abt-btn:hover i {
  opacity: 1;
  transform: translateX(0)
}

.abt-btn:hover span {
  transform: translateX(24px)
}

.abt-btn.primary {
  background: #D95E33;
  color: #fff;
  box-shadow: 0 6px 22px 1px #d95e3314
}

.abt-btn.primary:hover {
  background: #bf4e27;
  box-shadow: 0 9px 60px 1px #d95e3324
}

.abt-btn.primary:active {
  box-shadow: inset 0 2px 8px #d95e3340
}

.abt-btn.secondary {
  background: #E3E9E5;
  color: #1a1a2e;
  box-shadow: 0 3px 3px 1px #d95e3312
}

.abt-btn.secondary:hover {
  background: #d0d8d4
}

@media (max-width: 900px) {
  .abt-title-inner {
    grid-template-columns: 1fr
  }

  .abt-title-img-wrap {
    display: none
  }

  .abt-who-inner {
    grid-template-columns: 1fr
  }

  .abt-who-col-b {
    margin-top: 0
  }

  .abt-team-top {
    grid-template-columns: 1fr
  }

  .abt-team-grid {
    grid-template-columns: 1fr
  }

  .abt-portrait-wrap {
    max-width: 280px
  }

  .abt-stats-row {
    grid-template-columns: 1fr
  }
}

@media (max-width: 600px) {
  .abt-title {
    padding: 48px 16px 96px
  }

  .abt-title-text h1 {
    font-size: 28px
  }

  .abt-who {
    padding: 48px 16px
  }

  .abt-team {
    padding: 48px 16px
  }

  .abt-img-pair {
    grid-template-columns: 1fr
  }
}

@media (max-width: 1200px) {

  .abt-title-inner,
  .abt-who-inner,
  .abt-team-inner {
    padding: 0 16px
  }
}

.ctus {
  background: #fff;
  overflow-x: clip
}

.ctus .pg-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  max-width: 100%
}

.ctus .pg-split .img-zone {
  position: relative;
  overflow: hidden;
  background: #1b1b2e
}

.ctus .pg-split .img-zone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.35) brightness(0.72);
  transform: scale(0.97);
  animation: imgload .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes imgload {
  to {
    transform: scale(1)
  }
}

.ctus .pg-split .img-zone:hover img {
  filter: saturate(1) brightness(0.88);
  transition: filter .55s ease-in-out
}

.ctus .pg-split .img-zone .color-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9937b97a, #d95e3361);
  pointer-events: none;
  transition: opacity .55s ease-in-out
}

.ctus .pg-split .img-zone:hover .color-overlay {
  opacity: 0
}

.ctus .pg-split .img-zone .img-border-frame {
  position: absolute;
  inset: 16px;
  border: 2px solid #e3e9e500;
  border-radius: 5px;
  pointer-events: none;
  transition: border-color .55s ease-in-out
}

.ctus .pg-split .img-zone:hover .img-border-frame {
  border-color: #e3e9e58c
}

.ctus .pg-split .img-zone .atmo-spot {
  position: absolute;
  border-radius: 38px;
  pointer-events: none
}

.ctus .pg-split .img-zone .atmo-spot.sp1 {
  width: 280px;
  height: 280px;
  background: #d95e3338;
  filter: blur(72px);
  top: -48px;
  right: -48px
}

.ctus .pg-split .img-zone .atmo-spot.sp2 {
  width: 200px;
  height: 200px;
  background: #9937b92e;
  filter: blur(56px);
  bottom: 32px;
  left: -32px
}

.ctus .pg-split .img-zone .img-text {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  color: #fff
}

.ctus .pg-split .img-zone .img-text .accent-bar {
  width: 38px;
  height: 3px;
  background: #D95E33;
  border-radius: 5px;
  margin-bottom: 16px
}

.ctus .pg-split .img-zone .img-text h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px
}

.ctus .pg-split .img-zone .img-text h1 span {
  display: block;
  color: #E3E9E5;
  opacity: .82
}

.ctus .pg-split .img-zone .img-text .sub-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #e3e9e5c7;
  margin: 0;
  max-width: 340px
}

.ctus .pg-split .form-zone {
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 48px
}

.ctus .pg-split .form-zone .form-header {
  margin-bottom: 48px
}

.ctus .pg-split .form-zone .form-header .diamond-sep {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px
}

.ctus .pg-split .form-zone .form-header .diamond-sep .dmnd {
  width: 8px;
  height: 8px;
  background: #9A37B9;
  transform: rotate(45deg);
  border-radius: 1px;
  flex-shrink: 0
}

.ctus .pg-split .form-zone .form-header .diamond-sep .dline {
  height: 1px;
  background: linear-gradient(90deg, #9A37B9, transparent);
  flex: 1
}

.ctus .pg-split .form-zone .form-header h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b2e;
  margin: 0 0 8px
}

.ctus .pg-split .form-zone .form-header p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d52;
  margin: 0
}

.ctus .pg-split .form-zone .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.ctus .pg-split .form-zone .contact-form .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.ctus .pg-split .form-zone .contact-form .field-group {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .pg-split .form-zone .contact-form .field-group label {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  color: #1b1b2e
}

.ctus .pg-split .form-zone .contact-form .field-group input,
.ctus .pg-split .form-zone .contact-form .field-group select,
.ctus .pg-split .form-zone .contact-form .field-group textarea {
  padding: 16px;
  border: 1.5px solid #E3E9E5;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.7;
  color: #1b1b2e;
  background: #fff;
  outline: none;
  transition: border-color .45s ease-in-out, box-shadow .45s ease-in-out;
  appearance: none;
  -webkit-appearance: none
}

.ctus .pg-split .form-zone .contact-form .field-group input::placeholder,
.ctus .pg-split .form-zone .contact-form .field-group textarea::placeholder {
  color: #9a9aaf
}

.ctus .pg-split .form-zone .contact-form .field-group input:focus,
.ctus .pg-split .form-zone .contact-form .field-group select:focus,
.ctus .pg-split .form-zone .contact-form .field-group textarea:focus {
  border-color: #9A37B9;
  box-shadow: 0 3px 3px 1px #9a37b912
}

.ctus .pg-split .form-zone .contact-form .field-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A37B9' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer
}

.ctus .pg-split .form-zone .contact-form .field-group textarea {
  resize: vertical;
  min-height: 96px
}

.ctus .pg-split .form-zone .contact-form .priority-row {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .pg-split .form-zone .contact-form .priority-row .priority-label {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  color: #1b1b2e
}

.ctus .pg-split .form-zone .contact-form .priority-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt {
  position: relative
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 1.5px solid #E3E9E5;
  border-radius: 5px;
  cursor: pointer;
  transition: border-color .45s ease-in-out, background .45s ease-in-out;
  text-align: center
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt input[type="radio"]:checked+.plabel {
  border-color: #D95E33;
  background: #d95e330f;
  box-shadow: inset 0 2px 6px #d95e3314
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel:hover {
  border-color: #9A37B9
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel .picon {
  width: 28px;
  height: 28px;
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel .picon.low {
  background: #e3e9e5cc;
  color: #5a6b62
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel .picon.mid {
  background: #d95e331f;
  color: #D95E33
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel .picon.high {
  background: #9a37b91f;
  color: #9A37B9
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel .pname {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  color: #1b1b2e
}

.ctus .pg-split .form-zone .contact-form .priority-options .popt .plabel .pdesc {
  font-size: 14px;
  line-height: 1.15;
  color: #6a6a82
}

.ctus .pg-split .form-zone .contact-form .privacy-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #e3e9e561;
  border-radius: 5px
}

.ctus .pg-split .form-zone .contact-form .privacy-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #9A37B9;
  cursor: pointer
}

.ctus .pg-split .form-zone .contact-form .privacy-row input[type="checkbox"]:checked {
  box-shadow: inset 0 1px 3px #9a37b92e
}

.ctus .pg-split .form-zone .contact-form .privacy-row .priv-text {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d52;
  margin: 0
}

.ctus .pg-split .form-zone .contact-form .privacy-row .priv-text a {
  color: #9A37B9;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: text-decoration-color .45s ease-in-out
}

.ctus .pg-split .form-zone .contact-form .privacy-row .priv-text a:hover {
  text-decoration-color: transparent
}

.ctus .pg-split .form-zone .contact-form .submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  color: #fff !important;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .45s ease-in-out;
  align-self: flex-start
}

.ctus .pg-split .form-zone .contact-form .submit-btn .btn-icon {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .45s ease-in-out, transform .45s ease-in-out
}

.ctus .pg-split .form-zone .contact-form .submit-btn .btn-text {
  transition: transform .45s ease-in-out
}

.ctus .pg-split .form-zone .contact-form .submit-btn:hover .btn-icon {
  opacity: 1;
  transform: translateX(0)
}

.ctus .pg-split .form-zone .contact-form .submit-btn:hover .btn-text {
  transform: translateX(8px)
}

.ctus .pg-split .form-zone .contact-form .submit-btn:hover {
  box-shadow: 0 9px 60px 1px #9a37b924
}

.ctus .pg-split .form-zone .contact-form .submit-btn:active {
  transform: scale(0.98);
  box-shadow: inset 0 2px 6px #9a37b92e
}

.ctus .pg-split .form-zone .contact-form .submit-btn:focus-visible {
  outline: 2px solid #9A37B9;
  outline-offset: 3px
}

.ctus .contact-details-strip {
  background: #f4f2f8;
  position: relative;
  overflow: hidden
}

.ctus .contact-details-strip .strip-bg-circles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.ctus .contact-details-strip .strip-bg-circles .bc {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid #9a37b917
}

.ctus .contact-details-strip .strip-bg-circles .bc1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -80px
}

.ctus .contact-details-strip .strip-bg-circles .bc2 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 80px
}

.ctus .contact-details-strip .strip-bg-circles .bc3 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  right: 120px
}

.ctus .contact-details-strip .strip-bg-circles .bc4 {
  width: 160px;
  height: 160px;
  bottom: -20px;
  right: 300px
}

.ctus .contact-details-strip .strip-bg-circles .bc5 {
  width: 380px;
  height: 380px;
  top: -120px;
  right: -80px;
  border-color: #d95e3312
}

.ctus .contact-details-strip .strip-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 96px 48px;
  position: relative;
  z-index: 1
}

.ctus .contact-details-strip .strip-inner .strip-top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 32px
}

.ctus .contact-details-strip .strip-inner .strip-top .strip-heading h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b2e;
  margin: 0 0 8px
}

.ctus .contact-details-strip .strip-inner .strip-top .strip-heading p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d52;
  margin: 0;
  max-width: 440px
}

.ctus .contact-details-strip .strip-inner .strip-top .divider-asym {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  flex: 1;
  max-width: 220px
}

.ctus .contact-details-strip .strip-inner .strip-top .divider-asym .short-seg {
  width: 24px;
  height: 2px;
  background: #D95E33;
  border-radius: 5px;
  flex-shrink: 0
}

.ctus .contact-details-strip .strip-inner .strip-top .divider-asym .long-seg {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #D95E33, #e3e9e566)
}

.ctus .contact-details-strip .strip-inner .cards-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 6px 22px 1px #9a37b914;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card:hover {
  box-shadow: 0 9px 60px 1px #9a37b924
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-icon-wrap.orange {
  background: #d95e331a;
  color: #D95E33
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-icon-wrap.purple {
  background: #9a37b91a;
  color: #9A37B9
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-icon-wrap.teal {
  background: #e3e9e5cc;
  color: #3d6b5a
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-label {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  color: #9a9aaf;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-val {
  font-size: 14px;
  line-height: 1.7;
  color: #1b1b2e;
  font-weight: 500;
  margin: 0
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-val a {
  color: #1b1b2e;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .45s ease-in-out, text-decoration-color .45s ease-in-out
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .card-val a:hover {
  color: #9A37B9;
  text-decoration-color: transparent
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card.addr-card {
  grid-column: 1
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .addr-detail {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .addr-detail .addr-line {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d52;
  margin: 0
}

.ctus .contact-details-strip .strip-inner .cards-row .det-card .addr-detail .addr-line strong {
  color: #1b1b2e
}

@media (max-width: 1200px) {
  .ctus .pg-split {
    grid-template-columns: 1fr 1fr
  }

  .ctus .pg-split .img-zone .img-text h1 {
    font-size: 28px
  }

  .ctus .pg-split .form-zone {
    padding: 48px 32px
  }

  .ctus .contact-details-strip .strip-inner {
    padding: 96px 32px
  }

  .ctus .contact-details-strip .strip-inner .cards-row {
    grid-template-columns: 1fr 1fr
  }

  .ctus .contact-details-strip .strip-inner .cards-row .det-card.addr-card {
    grid-column: 1 / -1
  }
}

@media (max-width: 900px) {
  .ctus .pg-split {
    grid-template-columns: 1fr
  }

  .ctus .pg-split .img-zone {
    min-height: 360px
  }

  .ctus .pg-split .img-zone .img-text h1 {
    font-size: 28px
  }

  .ctus .pg-split .form-zone {
    padding: 48px 32px
  }

  .ctus .contact-details-strip .strip-inner .strip-top {
    flex-direction: column;
    align-items: flex-start
  }

  .ctus .contact-details-strip .strip-inner .cards-row {
    grid-template-columns: 1fr
  }

  .ctus .contact-details-strip .strip-inner .cards-row .det-card.addr-card {
    grid-column: 1
  }
}

@media (max-width: 600px) {
  .ctus .pg-split .img-zone {
    min-height: 280px
  }

  .ctus .pg-split .img-zone .img-text {
    bottom: 32px;
    left: 32px;
    right: 32px
  }

  .ctus .pg-split .img-zone .img-text h1 {
    font-size: 28px
  }

  .ctus .pg-split .form-zone {
    padding: 48px 16px
  }

  .ctus .pg-split .form-zone .contact-form .field-row {
    grid-template-columns: 1fr
  }

  .ctus .pg-split .form-zone .contact-form .priority-options {
    grid-template-columns: 1fr
  }

  .ctus .contact-details-strip .strip-inner {
    padding: 48px 16px
  }
}

.stud-mat {
  background: #fff;
  overflow-x: clip
}

.stud-mat *,
.stud-mat ::before,
.stud-mat ::after {
  box-sizing: border-box
}

.stud-mat img {
  display: block;
  max-width: 100%
}

.stud-mat ::selection {
  background: #D95E33;
  color: #fff
}

.stud-mat a {
  color: #D95E33;
  text-decoration: underline;
  transition: text-decoration-color .5s ease-in-out
}

.stud-mat a:hover {
  text-decoration-color: transparent
}

@keyframes border-glow-build {
  0% {
    box-shadow: 0 0 0 0 #d95e3300
  }

  100% {
    box-shadow: 0 6px 22px 1px #d95e3314
  }
}

@keyframes glow-pulse-secondary {
  0% {
    box-shadow: 0 0 0 0 #9a37b900
  }

  100% {
    box-shadow: 0 9px 60px 1px #9a37b924
  }
}

.stud-mat .pg-strip {
  position: relative;
  padding: 48px 0;
  background: #fff;
  overflow: hidden
}

.stud-mat .pg-strip-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px
}

.stud-mat .strip-img-col {
  flex: 0 0 260px;
  position: relative;
  border-radius: 5px;
  overflow: hidden
}

.stud-mat .strip-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stud-mat .strip-img-col:hover img {
  transform: scale(1.04)
}

.stud-mat .strip-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b98c 0%, #d95e3359 60%, transparent 100%);
  transition: opacity .55s ease-in-out;
  pointer-events: none
}

.stud-mat .strip-img-col:hover .strip-img-overlay {
  opacity: 0
}

.stud-mat .strip-dot-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden
}

.stud-mat .strip-dot-bg::before {
  content: '';
  position: absolute;
  top: -32px;
  right: -32px;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, #d95e331f 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  border-radius: 5px
}

.stud-mat .strip-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px
}

.stud-mat .accent-bar {
  width: 40px;
  height: 3px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  border-radius: 5px;
  flex-shrink: 0
}

.stud-mat .strip-label {
  font-size: 14px;
  line-height: 1.7;
  color: #9A37B9;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase
}

.stud-mat .strip-heading {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1e2e;
  margin: 0
}

.stud-mat .strip-heading em {
  font-style: normal;
  color: #D95E33
}

.stud-mat .strip-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d4a;
  margin: 0;
  max-width: 540px
}

.stud-mat .thin-lines-deco {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none
}

.stud-mat .thin-lines-deco span {
  display: block;
  height: 1px;
  background: #9a37b92e;
  border-radius: 5px
}

.stud-mat .divider-asym {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.stud-mat .divider-asym .d-short {
  width: 48px;
  height: 2px;
  background: #D95E33;
  border-radius: 5px;
  flex-shrink: 0
}

.stud-mat .divider-asym .d-long {
  flex: 1;
  height: 1px;
  background: #E3E9E5;
  border-radius: 5px
}

.stud-mat .resources-sec {
  padding: 96px 0;
  background: #f7f5f9;
  position: relative
}

.stud-mat .resources-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 32px
}

.stud-mat .resources-top {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px
}

.stud-mat .resources-head {
  flex: 0 0 auto;
  max-width: 420px
}

.stud-mat .resources-head h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1e2e;
  margin: 0 0 16px
}

.stud-mat .resources-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d4a;
  margin: 0
}

.stud-mat .res-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.stud-mat .res-card {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: border-glow-build .65s ease-in-out forwards;
  transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stud-mat .res-card:hover {
  box-shadow: 0 9px 60px 1px #d95e3324;
  transform: translateY(-4px)
}

.stud-mat .res-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.stud-mat .res-card-icon.orange {
  background: #d95e331a;
  color: #D95E33
}

.stud-mat .res-card-icon.purple {
  background: #9a37b91a;
  color: #9A37B9
}

.stud-mat .res-card-icon.teal {
  background: #e3e9e599;
  color: #3d3d4a
}

.stud-mat .res-card-icon .mdi {
  font-size: 28px
}

.stud-mat .res-card h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #1e1e2e;
  margin: 0
}

.stud-mat .res-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d4a;
  margin: 0;
  flex: 1
}

.stud-mat .res-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #D95E33;
  border: 1.5px solid #d95e3340;
  border-radius: 5px;
  padding: 8px 16px;
  align-self: flex-start;
  transition: background .5s ease-in-out, border-color .5s ease-in-out
}

.stud-mat .res-card-tag:hover {
  background: #d95e3312;
  border-color: #d95e3380
}

.stud-mat .res-card-tag.purple-tag {
  color: #9A37B9;
  border-color: #9a37b940
}

.stud-mat .res-card-tag.purple-tag:hover {
  background: #9a37b912;
  border-color: #9a37b980
}

.stud-mat .experts-sec {
  padding: 96px 0 48px;
  background: #fff;
  position: relative
}

.stud-mat .experts-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 32px
}

.stud-mat .experts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.stud-mat .experts-text-col {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.stud-mat .experts-text-col h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1e2e;
  margin: 0
}

.stud-mat .experts-text-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d4a;
  margin: 0
}

.stud-mat .expert-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0
}

.stud-mat .expert-item {
  background: #fff;
  border-radius: 5px;
  border: 1.5px solid #E3E9E5;
  padding: 16px 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  animation: glow-pulse-secondary .65s ease-in-out forwards;
  transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stud-mat .expert-item:hover {
  box-shadow: 0 6px 22px 1px #9a37b914
}

.stud-mat .expert-avatar {
  width: 64px;
  height: 90px;
  border-radius: 5px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 3px 3px 1px #9a37b912
}

.stud-mat .expert-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stud-mat .expert-item:hover .expert-avatar img {
  transform: scale(1.06)
}

.stud-mat .expert-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px
}

.stud-mat .expert-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e1e2e;
  line-height: 1.15
}

.stud-mat .expert-role {
  font-size: 14px;
  color: #9A37B9;
  font-weight: 500;
  line-height: 1.7
}

.stud-mat .expert-note {
  font-size: 14px;
  color: #3d3d4a;
  line-height: 1.7
}

.stud-mat .experts-portrait-col {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.stud-mat .experts-portrait-col h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #1e1e2e;
  margin: 0
}

.stud-mat .experts-portrait-col p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d4a;
  margin: 0
}

.stud-mat .deco-lines-corner {
  position: absolute;
  top: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none
}

.stud-mat .deco-lines-corner span {
  display: block;
  height: 1px;
  background: #d95e3326;
  border-radius: 5px
}

.stud-mat .btn-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 5px;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .45s ease-in-out;
  box-shadow: 0 3px 3px 1px #d95e3312;
  position: relative;
  overflow: hidden
}

.stud-mat .btn-primary:hover {
  box-shadow: 0 9px 60px 1px #d95e3324;
  transform: translateY(-2px)
}

.stud-mat .btn-primary:active {
  box-shadow: inset 0 2px 8px #d95e3340;
  transform: translateY(0)
}

.stud-mat .btn-primary .btn-icon {
  font-size: 18px;
  transition: transform .45s ease-in-out;
  flex-shrink: 0
}

.stud-mat .btn-primary:hover .btn-icon {
  transform: translateX(3px)
}

.stud-mat .btn-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #1e1e2e;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid #E3E9E5;
  border-radius: 5px;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
  box-shadow: 0 3px 3px 1px #d95e3312
}

.stud-mat .btn-secondary:hover {
  border-color: #D95E33;
  box-shadow: 0 6px 22px 1px #d95e3314
}

.stud-mat .btn-secondary:active {
  box-shadow: inset 0 2px 6px #d95e331f
}

.stud-mat .btn-secondary .btn-icon {
  font-size: 18px;
  transition: transform .45s ease-in-out
}

.stud-mat .btn-secondary:hover .btn-icon {
  transform: translateX(3px)
}

.stud-mat .cta-strip {
  padding: 48px 0;
  background: linear-gradient(277deg, #9a37b90f, #d95e330a);
  border-top: 1px solid #E3E9E5;
  border-bottom: 1px solid #E3E9E5
}

.stud-mat .cta-strip-inner {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 48px
}

.stud-mat .cta-strip-text h4 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1e2e;
  margin: 0 0 8px
}

.stud-mat .cta-strip-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3d4a;
  margin: 0
}

.stud-mat .cta-strip-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-shrink: 0
}

@media (max-width: 1200px) {
  .stud-mat .strip-heading {
    font-size: 54px
  }

  .stud-mat .res-cards {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 900px) {
  .stud-mat .pg-strip-inner {
    flex-direction: column;
    gap: 32px
  }

  .stud-mat .strip-img-col {
    flex: 0 0 auto;
    height: 260px;
    width: 100%
  }

  .stud-mat .strip-heading {
    font-size: 54px
  }

  .stud-mat .resources-top {
    flex-direction: column;
    gap: 32px
  }

  .stud-mat .experts-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .stud-mat .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px
  }
}

@media (max-width: 600px) {
  .stud-mat .pg-strip {
    padding: 32px 0
  }

  .stud-mat .pg-strip-inner {
    padding: 0 16px;
    gap: 32px
  }

  .stud-mat .strip-heading {
    font-size: 28px
  }

  .stud-mat .resources-sec {
    padding: 48px 0
  }

  .stud-mat .resources-inner {
    padding: 0 16px
  }

  .stud-mat .res-cards {
    grid-template-columns: 1fr;
    gap: 16px
  }

  .stud-mat .experts-sec {
    padding: 48px 0 32px
  }

  .stud-mat .experts-inner {
    padding: 0 16px
  }

  .stud-mat .expert-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px
  }

  .stud-mat .cta-strip {
    padding: 32px 0
  }

  .stud-mat .cta-strip-inner {
    padding: 0 16px
  }

  .stud-mat .cta-strip-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%
  }

  .stud-mat .divider-asym {
    padding: 0 16px
  }
}

.int-std {
  background: #fff;
  overflow-x: clip;
  position: relative
}

.int-std *,
.int-std ::before,
.int-std ::after {
  box-sizing: border-box
}

.int-std .pg-container {
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px
}

.int-std .title-band {
  position: relative;
  padding: 96px 32px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  background-size: 300% 300%;
  animation: grad-shift 8s ease-in-out infinite
}

@keyframes grad-shift {
  0% {
    background-position: 0 50%
  }

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

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

.int-std .title-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #ffffff1f 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none
}

.int-std .title-band-inner {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 96px
}

.int-std .title-text-col {
  flex: 1 1 0;
  position: relative;
  z-index: 1
}

.int-std .title-eyebrow {
  display: inline-block;
  background: #ffffff2e;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  padding: 8px 16px;
  border-radius: 5px;
  margin-bottom: 32px;
  letter-spacing: .06em;
  text-transform: uppercase
}

.int-std .title-h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0 0 32px
}

.int-std .title-desc {
  font-size: 28px;
  line-height: 1.7;
  color: #ffffffe0;
  margin: 0;
  max-width: 520px
}

.int-std .title-img-col {
  flex: 0 0 360px;
  position: relative;
  z-index: 1
}

.int-std .title-img-frame {
  width: 360px;
  height: 460px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 9px 60px 1px #d95e3324;
  position: relative
}

.int-std .title-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation: fade-in-img .65s ease-in-out .4s forwards;
  display: block
}

@keyframes fade-in-img {
  from {
    opacity: 0;
    transform: scale(1.03)
  }

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

.int-std .title-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b98c, #d95e3373);
  transition: opacity .55s ease-in-out;
  pointer-events: none
}

.int-std .title-img-frame:hover .title-img-overlay {
  opacity: 0
}

.int-std .title-bracket-left,
.int-std .title-bracket-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 120px;
  line-height: 1;
  color: #ffffff1f;
  font-weight: 900;
  pointer-events: none;
  user-select: none
}

.int-std .title-bracket-left {
  left: 8px
}

.int-std .title-bracket-right {
  right: 8px
}

.int-std .reach-band {
  padding: 96px 32px;
  background: #E3E9E5;
  position: relative
}

.int-std .reach-band::after {
  content: '';
  display: block;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #D95E33, transparent);
  margin: 0 auto;
  position: absolute;
  bottom: 0;
  left: 30%
}

.int-std .reach-inner {
  max-width: 1170px;
  margin: 0 auto
}

.int-std .reach-header {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px
}

.int-std .reach-label-col {
  flex: 0 0 auto
}

.int-std .reach-accent-bar {
  width: 48px;
  height: 4px;
  background: #D95E33;
  border-radius: 5px;
  margin-bottom: 16px
}

.int-std .reach-h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1b2e;
  margin: 0;
  max-width: 320px
}

.int-std .reach-intro-col {
  flex: 1 1 0;
  padding-top: 8px
}

.int-std .reach-intro-p {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  margin: 0
}

.int-std .reach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px
}

.int-std .reach-card {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 3px 3px 1px #d95e3312;
  transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.int-std .reach-card:hover {
  box-shadow: 0 6px 22px 1px #d95e3314;
  transform: translateY(-4px)
}

.int-std .reach-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.int-std .reach-card-icon .mdi {
  font-size: 24px;
  color: #fff
}

.int-std .reach-card-h {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b2e;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.int-std .reach-card-p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  margin: 0
}

.int-std .reach-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  transform: translateY(100%);
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: center
}

.int-std .reach-card:hover .reach-card-label {
  transform: translateY(0)
}

.int-std .alt-band {
  padding: 96px 32px;
  background: #fff;
  position: relative
}

.int-std .alt-band-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none
}

.int-std .alt-wave {
  position: absolute;
  width: 200%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #9a37b940, #d95e3340, transparent);
  animation: wave-pass 6s ease-in-out infinite;
  top: 50%
}

@keyframes wave-pass {
  0% {
    transform: translateX(-50%)
  }

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

.int-std .alt-inner {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.int-std .alt-heading-row {
  margin-bottom: 48px
}

.int-std .alt-h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1b2e;
  margin: 0 0 16px
}

.int-std .alt-subhead {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  margin: 0;
  max-width: 600px
}

.int-std .alt-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #E3E9E5
}

.int-std .alt-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none
}

.int-std .alt-row.reversed {
  flex-direction: row-reverse
}

.int-std .alt-visual {
  flex: 0 0 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center
}

.int-std .alt-num {
  font-size: 70px;
  line-height: 1.15;
  font-weight: 900;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  text-align: center
}

.int-std .alt-num-label {
  font-size: 14px;
  line-height: 1.7;
  color: #9A37B9;
  font-weight: 600;
  text-align: center;
  margin-top: 8px
}

.int-std .alt-text {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.int-std .alt-text-accent {
  width: 32px;
  height: 3px;
  background: #D95E33;
  border-radius: 5px;
  margin-bottom: 16px
}

.int-std .alt-text-h {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1b2e;
  margin: 0 0 16px
}

.int-std .alt-text-p {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  margin: 0
}

.int-std .voices-band {
  position: relative;
  padding: 96px 32px;
  overflow: hidden
}

.int-std .voices-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, #E3E9E5 55%, #fff 55%);
  pointer-events: none
}

.int-std .voices-inner {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.int-std .voices-h2 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1b2e;
  margin: 0 0 8px
}

.int-std .voices-sub {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  margin: 0 0 48px
}

.int-std .voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start
}

.int-std .voice-card {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 6px 22px 1px #9a37b914;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .6s ease-in-out
}

.int-std .voice-card:hover {
  box-shadow: 0 9px 60px 1px #9a37b924
}

.int-std .voice-portrait-wrap {
  width: 80px;
  height: 112px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative
}

.int-std .voice-portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: filter .55s ease-in-out;
  filter: saturate(0.6)
}

.int-std .voice-portrait-wrap:hover img {
  filter: saturate(1)
}

.int-std .voice-caption {
  position: absolute;
  inset: 0;
  background: #9a37b9b8;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  opacity: 0;
  transition: opacity .5s ease-in-out
}

.int-std .voice-portrait-wrap:hover .voice-caption {
  opacity: 1
}

.int-std .voice-person {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.int-std .voice-meta {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.int-std .voice-name {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #1b1b2e;
  margin: 0
}

.int-std .voice-origin {
  font-size: 14px;
  line-height: 1.7;
  color: #9A37B9;
  margin: 0
}

.int-std .voice-quote {
  font-size: 14px;
  line-height: 1.7;
  color: #4a4a5a;
  margin: 0;
  border-left: 3px solid #D95E33;
  border-top: 1px solid #E3E9E5;
  padding-left: 16px;
  padding-top: 16px
}

.int-std .voice-no-portrait {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.int-std .voice-icon-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center
}

.int-std .voice-icon-placeholder .mdi {
  font-size: 24px;
  color: #fff
}

@media (max-width: 1200px) {
  .int-std .title-band-inner {
    gap: 48px
  }

  .int-std .title-img-col {
    flex: 0 0 300px
  }

  .int-std .title-img-frame {
    width: 300px;
    height: 380px
  }
}

@media (max-width: 900px) {
  .int-std .title-band {
    padding: 48px 32px
  }

  .int-std .title-band-inner {
    flex-direction: column;
    gap: 32px
  }

  .int-std .title-img-col {
    flex: 0 0 auto;
    width: 100%
  }

  .int-std .title-img-frame {
    width: 100%;
    height: 280px
  }

  .int-std .title-h1 {
    font-size: 54px
  }

  .int-std .reach-cards {
    grid-template-columns: repeat(2, 1fr)
  }

  .int-std .reach-header {
    flex-direction: column;
    gap: 16px
  }

  .int-std .alt-row,
  .int-std .alt-row.reversed {
    flex-direction: column;
    gap: 32px
  }

  .int-std .alt-visual {
    flex: 0 0 auto;
    flex-direction: row;
    align-items: center;
    gap: 16px
  }

  .int-std .alt-num {
    font-size: 54px
  }

  .int-std .voices-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (max-width: 600px) {
  .int-std .title-band {
    padding: 48px 16px
  }

  .int-std .title-h1 {
    font-size: 28px
  }

  .int-std .title-desc {
    font-size: 14px
  }

  .int-std .reach-band,
  .int-std .alt-band,
  .int-std .voices-band {
    padding: 48px 16px
  }

  .int-std .reach-cards {
    grid-template-columns: 1fr
  }

  .int-std .voices-grid {
    grid-template-columns: 1fr
  }

  .int-std .title-bracket-left,
  .int-std .title-bracket-right {
    display: none
  }
}

.opn *,
.opn ::before,
.opn ::after {
  box-sizing: border-box
}

.opn {
  background: #fff;
  color: #1e1e2e;
  overflow-x: hidden
}

.opn a {
  color: #D95E33;
  text-decoration: underline;
  transition: text-decoration-color .5s ease-in-out
}

.opn a:hover {
  text-decoration-color: transparent
}

.opn ::selection {
  background: #D95E33;
  color: #fff
}

.opn .pg-wrap {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 32px
}

.opn .accent-bar {
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  margin-bottom: 16px;
  border-radius: 5px
}

.opn .lbl {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9A37B9;
  font-weight: 600
}

.opn .hdg-lg {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1e2e
}

.opn .hdg-md {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 700;
  color: #1e1e2e
}

.opn .body-txt {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a
}

.opn .title-blk {
  padding: 96px 0 48px;
  position: relative;
  background: #fff;
  overflow: hidden
}

.opn .title-blk::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 120px 120px 0;
  border-color: transparent #d95e3317 transparent transparent;
  pointer-events: none
}

.opn .title-blk::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 80px 80px 0 0;
  border-color: #9a37b912 transparent transparent;
  pointer-events: none
}

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

.opn .title-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1
}

.opn .title-left {
  padding-right: 48px
}

.opn .title-left .hdg-lg {
  margin-bottom: 16px
}

.opn .title-left .body-txt {
  margin-bottom: 32px;
  max-width: 440px
}

.opn .title-right {
  position: relative
}

.opn .img-curtain {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 9px 60px 1px #d95e3324
}

.opn .img-curtain img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opn .img-curtain:hover img {
  transform: scale(1.04)
}

.opn .img-curtain .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b959, #d95e3340);
  transition: opacity .55s ease-in-out
}

.opn .img-curtain:hover .overlay {
  opacity: 0
}

.opn .curtain-reveal {
  position: absolute;
  inset: 0;
  background: #fff;
  transform-origin: left center;
  animation: curtainOpen .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards;
  z-index: 2
}

@keyframes curtainOpen {
  0% {
    transform: scaleX(1)
  }

  100% {
    transform: scaleX(0)
  }
}

.opn .title-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 6px 22px 1px #d95e3314;
  transition: box-shadow .5s ease-in-out, transform .45s ease-in-out;
  position: relative;
  overflow: hidden
}

.opn .title-btn:hover {
  box-shadow: 0 9px 60px 1px #d95e3324;
  transform: translateY(-2px);
  text-decoration: none;
  color: #fff
}

.opn .title-btn .btn-icon {
  font-size: 18px;
  transform: translateX(-4px);
  opacity: 0;
  transition: transform .5s ease-in-out, opacity .45s ease-in-out
}

.opn .title-btn .btn-txt {
  transition: transform .5s ease-in-out
}

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

.opn .title-btn:hover .btn-txt {
  transform: translateX(6px)
}

.opn .conditions-blk {
  padding: 96px 0;
  background: #fdf8f6
}

.opn .cond-top {
  max-width: 560px;
  margin-bottom: 48px
}

.opn .cond-top .hdg-md {
  margin-bottom: 16px
}

.opn .cond-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  align-items: start
}

.opn .cond-card {
  background: #fff;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 3px 3px 1px #d95e3312;
  border-top: 3px solid transparent;
  transition: box-shadow .5s ease-in-out, border-color .5s ease-in-out
}

.opn .cond-card:hover {
  box-shadow: 0 6px 22px 1px #d95e3314;
  border-color: #D95E33
}

.opn .cond-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 5px;
  background: linear-gradient(277deg, #9a37b91a, #d95e331a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px
}

.opn .cond-card .icon-wrap i {
  font-size: 22px;
  color: #D95E33
}

.opn .cond-card h4 {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #1e1e2e;
  margin-bottom: 8px
}

.opn .cond-card .body-txt {
  margin: 0
}

.opn .cond-aside {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 6px 22px 1px #9a37b914
}

.opn .cond-aside img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opn .cond-aside:hover img {
  transform: scale(1.05)
}

.opn .cond-aside .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b94d, #d95e3333);
  transition: opacity .55s ease-in-out
}

.opn .cond-aside:hover .overlay {
  opacity: 0
}

.opn .cond-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start
}

.opn .cond-cards-col {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.opn .scale-blk {
  padding: 96px 0;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  position: relative;
  overflow: hidden
}

.opn .scale-blk::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 180px 180px 0;
  border-color: transparent #ffffff0f transparent transparent;
  pointer-events: none
}

.opn .scale-blk::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 140px 140px 0 0;
  border-color: #ffffff0d transparent transparent;
  pointer-events: none
}

.opn .scale-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 48px;
  position: relative;
  z-index: 1
}

.opn .scale-top .hdg-md {
  color: #fff;
  font-size: 28px
}

.opn .scale-top .body-txt {
  color: #ffffffd9
}

.opn .scale-lbl {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffffb3;
  font-weight: 600;
  margin-bottom: 16px
}

.opn .metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1
}

.opn .metric-item {
  background: #ffffff1a;
  border-radius: 5px;
  padding: 32px;
  border: 1px solid #ffffff26;
  transition: background .5s ease-in-out, transform .45s ease-in-out
}

.opn .metric-item:hover {
  background: #ffffff2e;
  transform: translateY(-4px)
}

.opn .metric-num {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  display: block;
  margin-bottom: 8px
}

.opn .metric-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #fffc
}

.opn .metric-item .accent-bar {
  background: #fff6;
  margin-bottom: 16px
}

.opn .rep-blk {
  padding: 96px 0;
  background: #fff;
  position: relative
}

.opn .rep-blk::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100px 100px 0;
  border-color: transparent #9a37b912 transparent transparent;
  pointer-events: none
}

.opn .rep-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 96px;
  align-items: start
}

.opn .rep-left .hdg-md {
  margin-bottom: 16px
}

.opn .rep-left .body-txt {
  margin-bottom: 32px
}

.opn .testimonial-card {
  background: #fdf8f6;
  border-radius: 5px;
  padding: 32px;
  box-shadow: 0 3px 3px 1px #d95e3312;
  border-left: 4px solid #D95E33;
  border-top: 1px solid #d95e331f
}

.opn .testimonial-card .quote-txt {
  font-size: 14px;
  line-height: 1.7;
  color: #3a3a4a;
  margin-bottom: 16px;
  font-style: italic
}

.opn .testimonial-card .person-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px
}

.opn .person-portrait {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 0
}

.opn .person-portrait img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  object-position: center;
  display: block
}

.opn .person-info .name {
  font-size: 14px;
  font-weight: 700;
  color: #1e1e2e;
  line-height: 1.15
}

.opn .person-info .role {
  font-size: 14px;
  color: #9A37B9;
  line-height: 1.7
}

.opn .rep-right {
  display: flex;
  flex-direction: column;
  gap: 32px
}

.opn .rec-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid #E3E9E5
}

.opn .rec-item:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.opn .rec-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 5px;
  background: linear-gradient(277deg, #9a37b914, #d95e3314);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.opn .rec-icon-box i {
  font-size: 26px;
  color: #D95E33
}

.opn .rec-body h5 {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  color: #1e1e2e;
  margin-bottom: 8px
}

.opn .rec-body .body-txt {
  margin: 0
}

.opn .img-scale-wrap {
  position: relative;
  border-radius: 5px;
  overflow: hidden
}

.opn .img-scale-wrap img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.opn .img-scale-wrap:hover img {
  transform: scale(1.05)
}

.opn .img-scale-wrap .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(277deg, #9a37b947, #d95e332e);
  transition: opacity .55s ease-in-out
}

.opn .img-scale-wrap:hover .overlay {
  opacity: 0
}

@media (max-width: 1200px) {
  .opn .title-grid {
    gap: 48px
  }

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

  .opn .rep-layout {
    gap: 48px
  }
}

@media (max-width: 900px) {
  .opn .hdg-lg {
    font-size: 28px
  }

  .opn .title-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .opn .title-left {
    padding-right: 0
  }

  .opn .title-right {
    display: none
  }

  .opn .cond-layout {
    grid-template-columns: 1fr
  }

  .opn .cond-aside {
    display: none
  }

  .opn .cond-grid {
    grid-template-columns: 1fr 1fr
  }

  .opn .scale-top {
    grid-template-columns: 1fr;
    gap: 16px
  }

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

  .opn .rep-layout {
    grid-template-columns: 1fr;
    gap: 48px
  }
}

@media (max-width: 600px) {

  .opn .title-blk,
  .opn .conditions-blk,
  .opn .scale-blk,
  .opn .rep-blk {
    padding: 48px 0
  }

  .opn .pg-wrap {
    padding: 0 16px
  }

  .opn .cond-grid {
    grid-template-columns: 1fr
  }

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

  .opn .metric-num {
    font-size: 28px
  }

  .opn .scale-blk .hdg-md {
    font-size: 28px
  }
}

.success-page {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  background: #fff
}

.success-page .success-wrap {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px
}

.success-page .success-icon-ring {
  width: 96px;
  height: 96px;
  border-radius: 38px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px 1px #d95e3314 0 9px 60px 1px #d95e3324;
  flex-shrink: 0
}

.success-page .success-icon-ring svg {
  width: 48px;
  height: 48px
}

.success-page .success-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center
}

.success-page .success-label {
  font-size: 14px;
  line-height: 1.15;
  color: #D95E33;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600
}

.success-page .success-heading {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #1e1b2e;
  margin: 0
}

.success-page .success-desc {
  font-size: 28px;
  line-height: 1.7;
  color: #3d3550;
  margin: 0;
  max-width: 480px
}

.success-page .success-note {
  font-size: 14px;
  line-height: 1.7;
  color: #6a5f80;
  margin: 0;
  max-width: 420px
}

.success-page .success-divider {
  width: 48px;
  height: 3px;
  border-radius: 5px;
  background: linear-gradient(277deg, #9A37B9, #D95E33)
}

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

.success-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 5px;
  background: linear-gradient(277deg, #9A37B9, #D95E33);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 3px 1px #d95e3312 0 6px 22px 1px #d95e3314;
  transition: box-shadow .5s ease-in-out, transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  position: relative
}

.success-page .btn-primary .btn-icon {
  display: flex;
  align-items: center;
  font-size: 18px;
  transform: translateX(-4px);
  opacity: 0;
  transition: opacity .5s ease-in-out, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-page .btn-primary .btn-text {
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-page .btn-primary:hover {
  box-shadow: 0 6px 22px 1px #d95e3314 0 9px 60px 1px #d95e3324;
  transform: translateY(-2px)
}

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

.success-page .btn-primary:hover .btn-text {
  transform: translateX(6px)
}

.success-page .btn-primary:active {
  box-shadow: inset 0 3px 3px 1px #d95e3324;
  transform: translateY(0)
}

.success-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 5px;
  background: #E3E9E5;
  color: #1e1b2e;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 3px 1px #9a37b912;
  transition: background .55s ease-in-out, box-shadow .55s ease-in-out, transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden
}

.success-page .btn-secondary .btn-icon {
  display: flex;
  align-items: center;
  font-size: 18px;
  transform: translateX(-4px);
  opacity: 0;
  transition: opacity .55s ease-in-out, transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-page .btn-secondary .btn-text {
  transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.success-page .btn-secondary:hover {
  background: #d4ddd7;
  box-shadow: 0 6px 22px 1px #9a37b914;
  transform: translateY(-2px)
}

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

.success-page .btn-secondary:hover .btn-text {
  transform: translateX(6px)
}

.success-page .btn-secondary:active {
  box-shadow: inset 0 3px 3px 1px #9a37b91f;
  transform: translateY(0)
}

.success-page .success-contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 38px;
  background: #E3E9E5;
  border: 1.5px solid #d95e331f;
  box-shadow: 0 3px 3px 1px #d95e3312
}

.success-page .success-contact .contact-icon {
  color: #D95E33;
  font-size: 18px;
  display: flex;
  align-items: center
}

.success-page .success-contact .contact-text {
  font-size: 14px;
  line-height: 1.15;
  color: #3d3550
}

.success-page .success-contact .contact-link {
  color: #D95E33;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: text-decoration-color .5s ease-in-out, color .5s ease-in-out
}

.success-page .success-contact .contact-link:hover {
  color: #9A37B9;
  text-decoration-color: transparent
}

@media (max-width: 600px) {
  .success-page {
    padding: 48px 16px
  }

  .success-page .success-heading {
    font-size: 28px
  }

  .success-page .success-desc {
    font-size: 14px
  }

  .success-page .success-actions {
    flex-direction: column;
    align-items: stretch
  }

  .success-page .btn-primary,
  .success-page .btn-secondary {
    justify-content: center
  }

  .success-page .success-contact {
    flex-direction: column;
    text-align: center;
    padding: 16px
  }
}