@import "https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap";
@import "https://fonts.googleapis.com/css2?family=Lexend:wght@400;700&display=swap";

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

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  font-family: 'Karla', sans-serif
}

.pg-hdr {
  position: relative;
  background: #4424A1;
  overflow: hidden
}

.pg-hdr::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #F48C02 0%, #BDF6C6 50%, #F48C02 100%)
}

.pg-hdr__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 36px 12px;
  gap: 24px
}

.pg-hdr__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0
}

.pg-hdr__logo-mount {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 10px 0 #4424a12e 2px 5px 14px 0 #4424a11c;
  flex-shrink: 0;
  overflow: hidden
}

.pg-hdr__logo-mount img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block
}

.pg-hdr__wordmark {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.pg-hdr__name {
  font-family: 'Lexend', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .01em
}

.pg-hdr__tagline {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #BDF6C6;
  line-height: 1.15;
  letter-spacing: .06em;
  text-transform: uppercase
}

.pg-hdr__contact-strip {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-shrink: 0
}

.pg-hdr__contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #BDF6C6;
  font-size: 14px;
  font-family: 'Karla', sans-serif;
  line-height: 1.15;
  transition: color .15s ease-out
}

.pg-hdr__contact-item:hover,
.pg-hdr__contact-item:focus {
  color: #F48C02;
  outline: none;
  transform: scale(1.02)
}

.pg-hdr__contact-item svg {
  flex-shrink: 0;
  color: #F48C02
}

.pg-hdr__nav-bar {
  background: linear-gradient(90deg, #F48C02 0%, #5c32b8 100%);
  border-top: 1px solid #ffffff1f
}

.pg-hdr__nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: stretch
}

.pg-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  flex-wrap: wrap
}

.pg-nav__item {
  position: relative;
  display: flex;
  align-items: stretch
}

.pg-nav__lnk {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 24px;
  font-family: 'Lexend', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s ease-out, color .12s ease;
  min-height: 44px
}

.pg-nav__lnk:hover,
.pg-nav__lnk:focus {
  background: #ffffff26;
  color: #fff;
  outline: none;
  transform: scale(1.02)
}

.pg-nav__lnk--has-sub {
  padding-right: 18px
}

.pg-nav__arrow {
  display: inline-flex;
  align-items: center;
  margin-left: 2px;
  transition: transform .15s ease-out
}

.pg-nav__item:hover .pg-nav__arrow,
.pg-nav__item:focus-within .pg-nav__arrow {
  transform: rotate(180deg)
}

.pg-nav__sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 3px 3px 18px 18px;
  box-shadow: 2px 8px 60px 0 #4424a11f;
  list-style: none;
  margin: 0;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .15s ease-out;
  z-index: 500
}

.pg-nav__sub::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent
}

.pg-nav__item:hover .pg-nav__sub,
.pg-nav__item:focus-within .pg-nav__sub {
  opacity: 1;
  pointer-events: auto
}

.pg-nav__sub-lnk {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4424A1;
  text-decoration: none;
  transition: background .12s ease, color .12s ease;
  min-height: 44px
}

.pg-nav__sub-lnk:hover,
.pg-nav__sub-lnk:focus {
  background: #BDF6C6;
  color: #4424A1;
  outline: none
}

.pg-ftr {
  background: #4424A1;
  position: relative;
  overflow: hidden
}

.pg-ftr::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, #ffffff06 0px, #ffffff06 1px, transparent 1px, transparent 12px);
  pointer-events: none
}

.pg-ftr__body {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 36px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 36px;
  align-items: start
}

.pg-ftr__brand {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.pg-ftr__logo-mount {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 10px 0 #4424a12e 2px 5px 14px 0 #f48c021c;
  overflow: hidden
}

.pg-ftr__logo-mount img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  display: block
}

.pg-ftr__name {
  font-family: 'Lexend', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.15
}

.pg-ftr__since {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #BDF6C6;
  line-height: 1.45
}

.pg-ftr__mid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 36px
}

.pg-ftr__addr {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.pg-ftr__addr-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: #ffffffbf;
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  line-height: 1.45
}

.pg-ftr__addr-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #F48C02
}

.pg-ftr__addr-lnk {
  color: #ffffffbf;
  text-decoration: none;
  transition: color .15s ease-out
}

.pg-ftr__addr-lnk:hover,
.pg-ftr__addr-lnk:focus {
  color: #BDF6C6;
  outline: none
}

.pg-ftr__legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end
}

.pg-ftr__leg-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end
}

.pg-ftr__leg-lnk {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #fff9;
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .12s ease;
  min-height: 44px;
  display: flex;
  align-items: center
}

.pg-ftr__leg-lnk:hover,
.pg-ftr__leg-lnk:focus {
  color: #BDF6C6;
  outline: none
}

.pg-ftr__base {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 36px 36px;
  border-top: 1px solid #ffffff1a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap
}

.pg-ftr__copy {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: #ffffff73;
  line-height: 1.45
}

.pg-ftr__accent-bar {
  height: 4px;
  background: linear-gradient(90deg, #F48C02 0%, #BDF6C6 60%, #4424A1 100%);
  width: 100%
}

@media (max-width: 900px) {
  .pg-hdr__top {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 12px;
    gap: 12px
  }

  .pg-hdr__contact-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
  }

  .pg-hdr__nav-inner {
    padding: 0 24px
  }

  .pg-nav {
    flex-wrap: wrap
  }

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

  .pg-ftr__body {
    grid-template-columns: 1fr;
    padding: 36px 24px 24px;
    gap: 24px
  }

  .pg-ftr__legal {
    align-items: flex-start
  }

  .pg-ftr__leg-nav {
    align-items: flex-start
  }

  .pg-ftr__mid {
    padding: 0
  }

  .pg-ftr__base {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start
  }
}

@media (max-width: 600px) {
  .pg-hdr__top {
    padding: 12px
  }

  .pg-hdr__nav-inner {
    padding: 0 12px
  }

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

.pg-nav__item:focus-within .pg-nav__sub {
  opacity: 1;
  pointer-events: auto
}

:focus-visible {
  transform: scale(1.02);
  outline: 2px solid #F48C02;
  outline-offset: 2px
}

.policy-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 72px 36px;
  color: #2a2040;
  line-height: 1.7;
  font-size: 17px
}

.policy-inner h1 {
  font-size: 54px;
  line-height: 1.15;
  color: #4424A1;
  margin-bottom: 36px;
  margin-top: 0;
  letter-spacing: -.5px;
  padding-bottom: 24px;
  border-bottom: 2px solid #BDF6C6
}

.policy-inner h2 {
  font-size: 38px;
  line-height: 1.15;
  color: #4424A1;
  margin-top: 72px;
  margin-bottom: 24px;
  letter-spacing: -.2px
}

.policy-inner h3 {
  font-size: 21px;
  line-height: 1.45;
  color: #2a2040;
  margin-top: 36px;
  margin-bottom: 12px;
  font-weight: 700
}

.policy-inner h4 {
  font-size: 17px;
  line-height: 1.45;
  color: #F48C02;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase
}

.policy-inner h5 {
  font-size: 14px;
  line-height: 1.45;
  color: #4424A1;
  margin-top: 24px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase
}

.policy-inner h6 {
  font-size: 14px;
  line-height: 1.45;
  color: #6b5fa0;
  margin-top: 12px;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: .05em
}

.policy-inner strong,
.policy-inner b {
  font-weight: 700;
  color: #2a2040
}

.policy-inner a {
  color: #4424A1;
  text-decoration: underline;
  text-decoration-color: #BDF6C6;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color .15s ease-out, text-decoration-color .15s ease-out
}

.policy-inner a:hover {
  color: #F48C02;
  text-decoration-color: #F48C02
}

.policy-inner a:visited {
  color: #6b5fa0;
  text-decoration-color: #BDF6C6
}

.policy-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 36px;
  margin-bottom: 36px;
  font-size: 14px;
  line-height: 1.45;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.policy-inner thead {
  background-color: #4424A1;
  color: #fff
}

.policy-inner thead th {
  padding: 12px 24px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  border: none
}

.policy-inner tbody tr {
  border-bottom: 1px solid #4424a117;
  transition: background-color .12s ease-out
}

.policy-inner tbody tr:last-child {
  border-bottom: none
}

.policy-inner tbody tr:nth-child(even) {
  background-color: #bdf6c62e
}

.policy-inner tbody tr:hover {
  background-color: #f48c0212
}

.policy-inner td {
  padding: 12px 24px;
  color: #2a2040;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.7
}

.policy-inner th {
  padding: 12px 24px;
  vertical-align: middle
}

.policy-inner hr {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, #BDF6C6 0%, #f48c0240 50%, #4424a11a 100%);
  margin-top: 72px;
  margin-bottom: 72px;
  border-radius: 3px
}

.policy-inner div {
  margin-bottom: 12px
}

.policy-inner div p {
  margin-top: 0;
  margin-bottom: 12px
}

@media (max-width: 768px) {
  .policy-inner {
    padding: 36px 24px
  }

  .policy-inner h1 {
    font-size: 38px
  }

  .policy-inner h2 {
    font-size: 21px;
    margin-top: 36px
  }

  .policy-inner h3 {
    font-size: 17px
  }

  .policy-inner table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .policy-inner thead th,
  .policy-inner td {
    padding: 12px;
    white-space: nowrap
  }

  .policy-inner hr {
    margin-top: 36px;
    margin-bottom: 36px
  }
}

@media (max-width: 480px) {
  .policy-inner {
    padding: 24px 12px
  }

  .policy-inner h1 {
    font-size: 21px;
    padding-bottom: 12px
  }

  .policy-inner h2 {
    font-size: 17px;
    margin-top: 24px;
    margin-bottom: 12px
  }

  .policy-inner h3 {
    font-size: 14px
  }

  .policy-inner h4,
  .policy-inner h5,
  .policy-inner h6 {
    font-size: 14px
  }
}

.wbd {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden
}

.wbd .reveal {
  opacity: 0;
  transform: translateX(-32px);
  animation: slideIn .18s ease-out forwards
}

.wbd .reveal--2 {
  animation-delay: .07s
}

.wbd .reveal--3 {
  animation-delay: .13s
}

.wbd .reveal--4 {
  animation-delay: .19s
}

.wbd .reveal--5 {
  animation-delay: .25s
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.wbd .pg-hero {
  position: relative;
  background: linear-gradient(to top, #fff 0%, #f5f0ff 60%, #ede8ff 100%);
  padding: 72px 24px 0;
  text-align: center
}

.wbd .pg-hero__img-wrap {
  position: relative;
  display: inline-block;
  max-width: 860px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.wbd .pg-hero__img-wrap img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px
}

.wbd .pg-hero__vignette {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: radial-gradient(ellipse at center, transparent 38%, #4424a161 100%);
  pointer-events: none
}

.wbd .pg-hero__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0 12px
}

.wbd .pg-hero__tag {
  display: inline-block;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 6px 12px
}

.wbd .pg-hero__badge {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 6px;
  font-size: 14px;
  color: #4424A1;
  padding: 6px 12px;
  box-shadow: 2px 1px 5px 0 #f48c0214;
  font-weight: 600
}

.wbd .pg-hero__badge svg {
  flex-shrink: 0
}

.wbd .pg-hero__h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1240;
  max-width: 820px;
  margin: 12px auto;
  letter-spacing: -.01em
}

.wbd .pg-hero__sub {
  font-size: 21px;
  line-height: 1.45;
  color: #4424A1;
  max-width: 580px;
  margin: 0 auto 24px;
  font-weight: 400
}

.wbd .pg-hero__strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0 36px
}

.wbd .pg-hero__stat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #3a2d6b;
  font-weight: 500
}

.wbd .pg-hero__stat svg {
  color: #F48C02
}

.wbd .pg-hero__wave {
  display: block;
  width: 100%;
  margin-bottom: -2px
}

.wbd .pg-hero__deco-lines {
  position: absolute;
  top: 24px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none
}

.wbd .pg-hero__deco-lines span {
  display: block;
  height: 2px;
  background: #4424A1;
  opacity: .13;
  border-radius: 3px
}

.wbd .pg-hero__deco-lines span:nth-child(1) {
  width: 48px
}

.wbd .pg-hero__deco-lines span:nth-child(2) {
  width: 32px
}

.wbd .pg-hero__deco-lines span:nth-child(3) {
  width: 60px
}

.wbd .pg-hero__deco-lines span:nth-child(4) {
  width: 24px
}

.wbd .pg-body {
  background: #fff;
  padding: 72px 24px
}

.wbd .pg-body__grid {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  gap: 36px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: start
}

.wbd .pg-sidebar--left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px
}

.wbd .pg-sidebar--right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px
}

.wbd .sdb-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.wbd .sdb-card__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4424A1;
  margin-bottom: 12px;
  display: block
}

.wbd .sdb-card__val {
  font-size: 38px;
  font-weight: 800;
  color: #1b1240;
  line-height: 1.15;
  display: block
}

.wbd .sdb-card__note {
  font-size: 14px;
  color: #6b5ea8;
  margin-top: 6px;
  display: block;
  line-height: 1.45
}

.wbd .sdb-card__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #3a2d6b;
  padding: 6px 0;
  border-bottom: 1px solid #ede8ff;
  font-weight: 500
}

.wbd .sdb-card__row:last-child {
  border-bottom: none !important
}

.wbd .sdb-card__row svg {
  color: #F48C02;
  flex-shrink: 0
}

.wbd .sdb-enroll {
  background: linear-gradient(to top, #4424A1 0%, #6b44e0 100%);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.wbd .sdb-enroll__price {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15
}

.wbd .sdb-enroll__note {
  font-size: 14px;
  color: #c4b8f5;
  line-height: 1.45
}

.wbd .btn-enroll {
  display: block;
  width: 100%;
  background: #F48C02;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none !important;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color .15s ease-out, transform .12s ease-out;
  letter-spacing: .04em
}

.wbd .btn-enroll:hover {
  background: #d47800
}

.wbd .btn-enroll:focus {
  outline: 3px solid #BDF6C6;
  outline-offset: 2px
}

.wbd .btn-enroll:active {
  transform: scale(0.97)
}

.wbd .btn-enroll--shake {
  animation: shake .18s ease-out
}

@keyframes shake {

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

  25% {
    transform: translateX(-6px)
  }

  75% {
    transform: translateX(6px)
  }
}

.wbd .pg-center {
  min-width: 0
}

.wbd .pg-center__prog {
  background: linear-gradient(to top, #fff 0%, #f5f0ff 100%);
  border-radius: 18px;
  padding: 36px;
  margin-bottom: 36px;
  box-shadow: 2px 1px 5px 0 #4424a114
}

.wbd .prog__heading {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1b1240;
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.wbd .prog__heading svg {
  color: #4424A1
}

.wbd .prog-body h2 {
  font-size: 21px;
  font-weight: 700;
  color: #1b1240;
  margin: 24px 0 6px;
  line-height: 1.45
}

.wbd .prog-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #4424A1;
  margin: 12px 0 6px;
  line-height: 1.45
}

.wbd .prog-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f5c;
  margin-bottom: 12px
}

.wbd .prog-body small {
  font-size: 14px;
  color: #6b5ea8;
  line-height: 1.45;
  display: block;
  margin-bottom: 6px
}

.wbd .prog-body ul,
.wbd .prog-body ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.wbd .prog-body ol {
  counter-reset: prog-count
}

.wbd .prog-body ol li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f5c;
  counter-increment: prog-count
}

.wbd .prog-body ol li::before {
  content: counter(prog-count);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 28px;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px
}

.wbd .prog-body ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f5c
}

.wbd .prog-body ul li::before {
  content: "";
  display: block;
  min-width: 10px;
  height: 10px;
  border-radius: 28px;
  background: #F48C02;
  margin-top: 7px;
  flex-shrink: 0
}

.wbd .prog-body dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 12px;
  margin-bottom: 12px
}

.wbd .prog-body dt {
  font-size: 14px;
  font-weight: 700;
  color: #4424A1;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-top: 2px
}

.wbd .prog-body dd {
  font-size: 17px;
  color: #2a1f5c;
  line-height: 1.7;
  margin: 0
}

.wbd .prog-body blockquote {
  border-left: 4px solid #F48C02;
  border-top: 1px solid #ede8ff;
  border-bottom: 1px solid #ede8ff;
  border-right: 1px solid #ede8ff;
  border-radius: 3px 18px 18px 3px;
  background: #fdf7ee;
  padding: 12px 24px;
  margin: 12px 0;
  font-size: 17px;
  font-style: italic;
  color: #3a2d6b;
  line-height: 1.7
}

.wbd .prog-body cite {
  font-size: 14px;
  color: #6b5ea8;
  font-style: normal;
  display: block;
  margin-top: 6px
}

.wbd .pg-center__desc {
  border-radius: 18px;
  padding: 36px;
  background: #fff;
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.wbd .desc__heading {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1b1240;
  margin-bottom: 24px
}

.wbd .desc-body h2 {
  font-size: 21px;
  font-weight: 700;
  color: #1b1240;
  margin: 24px 0 6px;
  line-height: 1.45
}

.wbd .desc-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: #4424A1;
  margin: 12px 0 6px;
  line-height: 1.45
}

.wbd .desc-body p {
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f5c;
  margin-bottom: 12px
}

.wbd .desc-body ul,
.wbd .desc-body ol {
  padding-left: 0;
  list-style: none;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.wbd .desc-body ol {
  counter-reset: desc-count
}

.wbd .desc-body ol li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f5c;
  counter-increment: desc-count
}

.wbd .desc-body ol li::before {
  content: counter(desc-count);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  border-radius: 28px;
  background: #F48C02;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px
}

.wbd .desc-body ul li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f5c
}

.wbd .desc-body ul li::before {
  content: "";
  display: block;
  min-width: 10px;
  height: 10px;
  border-radius: 28px;
  background: #4424A1;
  margin-top: 7px;
  flex-shrink: 0
}

.wbd .desc-body blockquote {
  border-left: 4px solid #4424A1;
  border-top: 1px solid #ede8ff;
  border-bottom: 1px solid #ede8ff;
  border-right: 1px solid #ede8ff;
  border-radius: 3px 18px 18px 3px;
  background: #f0eeff;
  padding: 12px 24px;
  margin: 12px 0;
  font-size: 17px;
  font-style: italic;
  color: #3a2d6b;
  line-height: 1.7
}

.wbd .desc-body cite {
  font-size: 14px;
  color: #6b5ea8;
  font-style: normal;
  display: block;
  margin-top: 6px
}

.wbd .desc-body figure {
  margin: 24px 0;
  border-radius: 18px;
  overflow: hidden
}

.wbd .desc-body figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 18px
}

.wbd .desc-body figcaption {
  font-size: 14px;
  color: #6b5ea8;
  margin-top: 6px;
  text-align: center;
  line-height: 1.45
}

.wbd .mark-phrase {
  background: linear-gradient(to top, #F48C02 18%, transparent 18%);
  padding-bottom: 2px
}

.wbd .pg-hero__deco-tri {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 80px;
  border-color: transparent transparent #F48C02;
  opacity: .18;
  pointer-events: none
}

.wbd .sdb-rating {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.wbd .sdb-rating__stars {
  display: flex;
  flex-direction: row;
  gap: 3px
}

.wbd .sdb-rating__stars svg {
  color: #F48C02
}

.wbd .sdb-rating__val {
  font-size: 21px;
  font-weight: 800;
  color: #1b1240
}

.wbd .sdb-rating__count {
  font-size: 14px;
  color: #6b5ea8
}

@media (max-width: 1024px) {
  .wbd .pg-body__grid {
    grid-template-columns: 1fr
  }

  .wbd .pg-sidebar--left,
  .wbd .pg-sidebar--right {
    position: static;
    flex-direction: row;
    flex-wrap: wrap
  }

  .wbd .sdb-card,
  .wbd .sdb-enroll {
    flex: 1 1 220px
  }
}

@media (max-width: 680px) {
  .wbd .pg-hero__h1 {
    font-size: 38px
  }

  .wbd .pg-hero__sub {
    font-size: 17px
  }

  .wbd .pg-hero__img-wrap img {
    height: 220px
  }

  .wbd .pg-center__prog,
  .wbd .pg-center__desc {
    padding: 24px
  }

  .wbd .pg-body {
    padding: 36px 12px
  }
}

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

.lp-pg .lp-pg__inner {
  max-width: 1600px;
  margin: 0 auto
}

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

.lp-pg ::selection {
  background: #4424A1;
  color: #fff;
  font-weight: 700
}

.lp-pg ::-moz-selection {
  background: #4424A1;
  color: #fff;
  font-weight: 700
}

.lp-pg .ttl-blk {
  position: relative;
  background: linear-gradient(to top, #F48C02, #fff);
  border-top: 3px solid #F48C02;
  border-bottom: 3px solid #BDF6C6;
  padding: 72px 36px;
  overflow: hidden
}

.lp-pg .ttl-blk__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px
}

.lp-pg .ttl-blk__text {
  flex: 1 1 0;
  position: relative;
  z-index: 2
}

.lp-pg .ttl-blk__bracket {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: #4424A1;
  border-style: solid;
  opacity: .55
}

.lp-pg .ttl-blk__bracket--tl {
  top: -6px;
  left: -6px;
  border-width: 3px 0 0 3px;
  border-radius: 3px 0 0 0
}

.lp-pg .ttl-blk__bracket--br {
  bottom: -6px;
  right: -6px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 3px 0
}

.lp-pg .ttl-blk__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #4424A1;
  background: #bdf6c661;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 24px
}

.lp-pg .ttl-blk__h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 900;
  color: #1b0e3d;
  margin: 0 0 24px;
  letter-spacing: -.01em
}

.lp-pg .ttl-blk__img-wrap {
  flex: 0 0 420px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 480px;
  box-shadow: 2px 8px 60px 0 #f48c021f
}

.lp-pg .ttl-blk__img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #ffffffb8 0%, transparent 55%);
  pointer-events: none
}

.lp-pg .ttl-blk__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .88
}

.lp-pg .ttl-blk__bracket-img {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: #BDF6C6;
  border-style: solid;
  z-index: 3
}

.lp-pg .ttl-blk__bracket-img--tl {
  top: 12px;
  left: 12px;
  border-width: 3px 0 0 3px;
  border-radius: 3px 0 0 0
}

.lp-pg .ttl-blk__bracket-img--br {
  bottom: 12px;
  right: 12px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 3px 0
}

.lp-pg .rev {
  opacity: 0;
  transform: translateY(32px);
  animation: revUp .18s ease-out forwards
}

.lp-pg .rev--d1 {
  animation-delay: .08s
}

.lp-pg .rev--d2 {
  animation-delay: .14s
}

.lp-pg .rev--d3 {
  animation-delay: .19s
}

.lp-pg .rev--d4 {
  animation-delay: .24s
}

.lp-pg .rev--d5 {
  animation-delay: .28s
}

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

.lp-pg .prog-det {
  background: #fff;
  padding: 72px 36px;
  border-top: 2px solid #BDF6C6;
  position: relative
}

.lp-pg .prog-det__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.lp-pg .prog-det__left {
  display: flex;
  flex-direction: column;
  gap: 36px
}

.lp-pg .prog-det__eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #F48C02;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.lp-pg .prog-det__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F48C02;
  flex-shrink: 0
}

.lp-pg .prog-det__h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b0e3d;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.lp-pg .prog-det__body {
  font-size: 17px;
  line-height: 1.7;
  color: #2d2340;
  margin: 0
}

.lp-pg .prog-det__accent {
  background: #f48c0214;
  border-left: 4px solid #F48C02;
  border-top: 1px solid #f48c0233;
  border-radius: 0 6px 6px 0;
  padding: 24px
}

.lp-pg .prog-det__accent-text {
  font-size: 17px;
  line-height: 1.45;
  color: #2d2340;
  margin: 0;
  font-style: italic
}

.lp-pg .prog-det__right {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lp-pg .prog-det__phase-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0
}

.lp-pg .prog-det__phase {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: #4424a10a;
  transition: border-color .15s ease-out, background .15s ease-out;
  cursor: default
}

.lp-pg .prog-det__phase:hover {
  border-color: #4424A1;
  border-style: dashed;
  background: #4424a112
}

.lp-pg .prog-det__phase-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  letter-spacing: .02em
}

.lp-pg .prog-det__phase-body {
  flex: 1 1 0
}

.lp-pg .prog-det__phase-title {
  font-size: 17px;
  font-weight: 700;
  color: #1b0e3d;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .06em
}

.lp-pg .prog-det__phase-desc {
  font-size: 14px;
  line-height: 1.7;
  color: #4a3e6b;
  margin: 0
}

.lp-pg .prog-det__phase-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #BDF6C6;
  margin-top: 14px;
  flex-shrink: 0
}

.lp-pg .prog-det__portraits {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 12px
}

.lp-pg .prog-det__portrait-card {
  flex: 1 1 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.lp-pg .prog-det__portrait-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .9
}

.lp-pg .prog-det__portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: linear-gradient(to top, #4424a1d1, transparent);
  display: flex;
  flex-direction: column;
  gap: 6px
}

.lp-pg .prog-det__portrait-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em
}

.lp-pg .prog-det__portrait-role {
  font-size: 14px;
  color: #BDF6C6;
  letter-spacing: .02em
}

.lp-pg .prog-det__texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0
}

.lp-pg .prog-det__texture svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: .025
}

.lp-pg .prog-det__left,
.lp-pg .prog-det__right {
  position: relative;
  z-index: 1
}

.lp-pg .prog-det__img-wrap {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 2px 5px 14px 0 #f48c021c;
  position: relative
}

.lp-pg .prog-det__img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #4424a14d, transparent 60%);
  z-index: 1;
  pointer-events: none
}

.lp-pg .prog-det__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  opacity: .85
}

.lp-pg .btn-prim {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #4424A1;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  letter-spacing: .04em;
  box-shadow: 2px 5px 14px 0 #4424a11c;
  transition: background .15s ease-out, box-shadow .12s ease-out;
  text-decoration: none
}

.lp-pg .btn-prim:hover {
  background: #341880;
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.lp-pg .btn-prim:focus-visible {
  outline: 3px solid #F48C02;
  outline-offset: 3px
}

.lp-pg .btn-prim:active {
  background: #2a1266;
  box-shadow: inset 0 6px 10px 0 #4424a12e
}

.lp-pg .btn-prim.shake {
  animation: btnShake .18s ease-out
}

@keyframes btnShake {
  0% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-5px)
  }

  50% {
    transform: translateX(5px)
  }

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

  100% {
    transform: translateX(0)
  }
}

.lp-pg .metrics {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px
}

.lp-pg .metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 24px;
  background: #bdf6c647;
  border-radius: 6px;
  border: 1px solid #bdf6c6b3
}

.lp-pg .metric__val {
  font-size: 38px;
  font-weight: 900;
  color: #4424A1;
  line-height: 1.15
}

.lp-pg .metric__label {
  font-size: 14px;
  color: #4a3e6b;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600
}

@media (max-width: 1024px) {
  .lp-pg .ttl-blk__h1 {
    font-size: 38px
  }

  .lp-pg .ttl-blk__img-wrap {
    flex: 0 0 320px;
    height: 380px
  }

  .lp-pg .prog-det__inner {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

@media (max-width: 768px) {
  .lp-pg .ttl-blk__inner {
    flex-direction: column;
    gap: 36px
  }

  .lp-pg .ttl-blk__img-wrap {
    display: none
  }

  .lp-pg .ttl-blk__h1 {
    font-size: 38px
  }

  .lp-pg .prog-det__portraits {
    display: none
  }

  .lp-pg .metrics {
    gap: 12px
  }

  .lp-pg .metric__val {
    font-size: 21px
  }

  .lp-pg .prog-det__img-wrap {
    display: none
  }
}

@media (max-width: 480px) {
  .lp-pg .ttl-blk {
    padding: 36px 24px
  }

  .lp-pg .prog-det {
    padding: 36px 24px
  }

  .lp-pg .ttl-blk__h1 {
    font-size: 21px
  }

  .lp-pg .prog-det__h2 {
    font-size: 21px
  }
}

.svc {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden
}

.svc .ttl-blk {
  position: relative;
  padding: 72px;
  background-color: #1a1208;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 72px;
  min-height: 0
}

.svc .ttl-blk::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-47deg, #f48c020a 0px, #f48c020a 2px, transparent 2px, transparent 18px);
  pointer-events: none
}

.svc .ttl-img-col {
  flex: 0 0 420px;
  position: relative;
  border-radius: 3px;
  overflow: hidden
}

.svc .ttl-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.4) brightness(0.7)
}

.svc .ttl-img-col::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f48c0261 0%, #4424a138 100%);
  pointer-events: none
}

.svc .ttl-txt-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1
}

.svc .ttl-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #F48C02;
  padding: 6px 12px;
  border: 1px dashed #f48c0273;
  border-radius: 3px;
  width: fit-content
}

.svc .ttl-h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: -.01em
}

.svc .ttl-h1 span {
  color: #F48C02
}

.svc .ttl-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffffb8;
  margin: 0;
  max-width: 520px
}

.svc .ttl-dots {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center
}

.svc .ttl-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F48C02;
  display: block;
  opacity: 1
}

.svc .ttl-dots span:nth-child(2) {
  background: #4424A1;
  opacity: .7
}

.svc .ttl-dots span:nth-child(3) {
  background: #BDF6C6;
  opacity: .5
}

.svc .ttl-dots span:nth-child(4) {
  background: #F48C02;
  opacity: .3
}

.svc .ttl-dots span:nth-child(5) {
  background: #4424A1;
  opacity: .2
}

.svc .ttl-dashed-box {
  border: 1px dashed #bdf6c64d;
  border-radius: 6px;
  padding: 24px;
  margin-top: 12px
}

.svc .ttl-dashed-box p {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff8c;
  margin: 0;
  letter-spacing: .03em
}

.svc .metrics-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin-top: 36px;
  border-top: 1px solid #ffffff1a;
  padding-top: 24px;
  gap: 0
}

.svc .metric-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 24px;
  border-right: 1px solid #ffffff1a
}

.svc .metric-item:first-child {
  padding-left: 0
}

.svc .metric-item:last-child {
  border-right: none
}

.svc .metric-val {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #F48C02
}

.svc .metric-lbl {
  font-size: 14px;
  line-height: 1.45;
  color: #ffffff80;
  letter-spacing: .08em;
  text-transform: uppercase
}

.svc .off-strip {
  background: #fff;
  padding: 72px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
  border-bottom: 1px solid #4424a11a
}

.svc .off-label-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px
}

.svc .off-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4424A1
}

.svc .off-h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1020;
  margin: 0;
  letter-spacing: -.01em
}

.svc .off-sub {
  font-size: 17px;
  line-height: 1.7;
  color: #3d3550;
  margin: 0
}

.svc .off-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #F48C02;
  text-decoration: none;
  padding: 12px 24px;
  background: #f48c0214;
  border-radius: 6px;
  border: 1px solid #f48c0238;
  transition: background .15s ease-out, border-color .15s ease-out;
  width: fit-content
}

.svc .off-link:hover {
  background: #f48c0229;
  border-color: #f48c0280
}

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

.svc .off-card {
  background: #fdfbf8;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 5px 14px 0 #f48c021c;
  border: 1px solid #f48c0214;
  transition: box-shadow .18s ease-out, transform .18s ease-out;
  cursor: default
}

.svc .off-card:hover {
  box-shadow: 2px 8px 60px 0 #f48c021f;
  transform: translateY(-2px)
}

.svc .off-card--wide {
  grid-column: span 2
}

.svc .off-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(180deg, #BDF6C6 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.svc .off-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: #4424A1;
  stroke-width: 1.8;
  fill: none
}

.svc .off-card__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.svc .off-card__ttl {
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: #1b1020;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .06em
}

.svc .off-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3550;
  margin: 0
}

.svc .off-card__accent {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #F48C02;
  background: #f48c0217;
  border-radius: 3px;
  padding: 3px 8px;
  letter-spacing: .04em
}

.svc .bg-photo-sec {
  position: relative;
  padding: 72px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px
}

.svc .bg-photo-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(./featured_photos/2026-06-13-photo6.jpg);
  background-size: cover;
  background-position: center;
  filter: brightness(0.18) saturate(0.3);
  z-index: 0
}

.svc .bg-photo-sec::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #4424a18c 0%, #f48c022e 100%);
  z-index: 1;
  pointer-events: none
}

.svc .bg-photo-inner {
  position: relative;
  z-index: 2;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.svc .bg-photo-aside {
  position: relative;
  z-index: 2;
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.svc .bg-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #BDF6C6
}

.svc .bg-h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  margin: 0
}

.svc .bg-body {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffffc7;
  margin: 0
}

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

.svc .bg-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.45;
  color: #ffffffd9
}

.svc .bg-list__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #F48C02;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px
}

.svc .bg-card {
  background: #ffffff14;
  border: 1px dashed #bdf6c659;
  border-radius: 18px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(4px)
}

.svc .bg-card__ttl {
  font-size: 17px;
  font-weight: 700;
  color: #BDF6C6;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .08em
}

.svc .bg-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffffb3;
  margin: 0
}

.svc .bg-dots {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center
}

.svc .bg-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #BDF6C6;
  display: block
}

.svc .bg-dots span:nth-child(even) {
  background: #F48C02;
  opacity: .6
}

.svc .aud-sec {
  background: linear-gradient(180deg, #edeaf8 0%, #fff 100%);
  padding: 72px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-top: 1px solid #4424a11a
}

.svc .aud-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: end
}

.svc .aud-tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #4424A1
}

.svc .aud-h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #1b1020;
  margin: 0
}

.svc .aud-intro {
  font-size: 17px;
  line-height: 1.7;
  color: #3d3550;
  margin: 0
}

.svc .aud-intro-b {
  font-size: 17px;
  line-height: 1.7;
  color: #3d3550;
  margin: 0
}

.svc .aud-portrait-wrap {
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center
}

.svc .aud-portrait {
  width: 220px;
  height: 220px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 0 #4424a11f;
  flex-shrink: 0
}

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

.svc .aud-quote-name {
  font-size: 14px;
  font-weight: 700;
  color: #4424A1;
  letter-spacing: .06em;
  text-transform: uppercase
}

.svc .aud-quote-role {
  font-size: 14px;
  color: #3d3550
}

.svc .aud-quote-text {
  font-size: 17px;
  line-height: 1.7;
  color: #1b1020;
  font-style: italic;
  margin: 0;
  padding: 12px 0 0;
  border-top: 2px solid #F48C02
}

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

.svc .aud-item {
  background: #fff;
  border-radius: 18px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 1px 5px 0 #4424a114;
  border-left: 4px solid #BDF6C6;
  border-top: 1px solid #4424a10f;
  transition: box-shadow .2s ease-out
}

.svc .aud-item:hover {
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.svc .aud-item--accent {
  border-left-color: #F48C02
}

.svc .aud-item--deep {
  border-left-color: #4424A1
}

.svc .aud-item__num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.svc .aud-item__ttl {
  font-size: 17px;
  font-weight: 700;
  color: #1b1020;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .05em
}

.svc .aud-item__body {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3550;
  margin: 0
}

.svc .aud-cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding-top: 12px
}

.svc .aud-cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: #4424A1;
  border-radius: 6px;
  padding: 12px 36px;
  text-decoration: none;
  border: none;
  box-shadow: 2px 5px 14px 0 #4424a11c;
  transition: background .15s ease-out, box-shadow .2s ease-out
}

.svc .aud-cta:hover {
  background: #3519861;
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.svc .aud-note {
  font-size: 14px;
  line-height: 1.7;
  color: #3d3550;
  margin: 0
}

@keyframes svc-rotate-in {
  from {
    opacity: 0;
    transform: rotate(-6deg) translateY(24px)
  }

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

.svc .ttl-txt-col {
  animation: svc-rotate-in .55s ease-out both
}

.svc .ttl-img-col {
  animation: svc-rotate-in .45s .08s ease-out both
}

@keyframes svc-fadein {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-2deg)
  }

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

.svc .off-card {
  animation: svc-fadein .38s ease-out both
}

.svc .off-card:nth-child(1) {
  animation-delay: .05s
}

.svc .off-card:nth-child(2) {
  animation-delay: .12s
}

.svc .off-card:nth-child(3) {
  animation-delay: .19s
}

.svc .aud-item {
  animation: svc-fadein .32s ease-out both
}

.svc .aud-item:nth-child(1) {
  animation-delay: .04s
}

.svc .aud-item:nth-child(2) {
  animation-delay: .1s
}

.svc .aud-item:nth-child(3) {
  animation-delay: .16s
}

@media (max-width: 1100px) {
  .svc .ttl-blk {
    flex-direction: column;
    padding: 36px;
    gap: 36px
  }

  .svc .ttl-img-col {
    flex: 0 0 260px;
    height: 260px;
    display: none
  }

  .svc .off-strip {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 36px
  }

  .svc .off-label-col {
    position: static
  }

  .svc .bg-photo-sec {
    flex-direction: column;
    padding: 36px;
    gap: 36px
  }

  .svc .bg-photo-aside {
    flex: 0 0 auto
  }

  .svc .aud-sec {
    padding: 36px
  }

  .svc .aud-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px
  }

  .svc .aud-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 720px) {
  .svc .ttl-blk {
    padding: 24px;
    gap: 24px
  }

  .svc .ttl-h1 {
    font-size: 38px
  }

  .svc .off-strip {
    padding: 24px;
    gap: 24px
  }

  .svc .off-grid {
    grid-template-columns: 1fr
  }

  .svc .off-card--wide {
    grid-column: span 1
  }

  .svc .bg-photo-sec {
    padding: 24px;
    gap: 24px
  }

  .svc .bg-h2 {
    font-size: 21px
  }

  .svc .aud-sec {
    padding: 24px;
    gap: 24px
  }

  .svc .aud-top {
    grid-template-columns: 1fr
  }

  .svc .aud-portrait-wrap {
    display: none
  }

  .svc .aud-grid {
    grid-template-columns: 1fr
  }

  .svc .aud-h2 {
    font-size: 21px
  }

  .svc .metrics-row {
    flex-direction: column;
    gap: 12px
  }

  .svc .metric-item {
    border-right: none;
    border-bottom: 1px solid #ffffff1a;
    padding: 0 0 12px
  }

  .svc .metric-item:last-child {
    border-bottom: none
  }

  .svc .aud-cta-row {
    flex-direction: column;
    align-items: flex-start
  }
}

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

.wbnr .pg-lead {
  position: relative;
  padding: 72px 24px 36px;
  background: linear-gradient(0deg, #fff 0%, #f5f0ff 100%);
  overflow: hidden
}

.wbnr .pg-lead__deco-tl {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 90px;
  height: 90px;
  border-top: 2px solid #4424A1;
  border-left: 2px solid #4424A1;
  border-radius: 3px 0 0 0;
  opacity: .18;
  pointer-events: none
}

.wbnr .pg-lead__deco-br {
  position: absolute;
  bottom: 36px;
  right: 36px;
  width: 60px;
  height: 60px;
  border-bottom: 2px solid #F48C02;
  border-right: 2px solid #F48C02;
  border-radius: 0 0 3px 0;
  opacity: .22;
  pointer-events: none
}

.wbnr .pg-lead__deco-circle {
  position: absolute;
  top: -40px;
  right: 12%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #BDF6C6;
  opacity: .09;
  pointer-events: none
}

.wbnr .pg-lead__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px
}

.wbnr .pg-lead__text {
  flex: 1 1 auto
}

.wbnr .pg-lead__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4424A1;
  background: #ede8ff;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 24px
}

.wbnr .pg-lead__h1 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a0a4a;
  margin: 0 0 24px;
  max-width: 680px
}

.wbnr .pg-lead__h1 span {
  display: block;
  color: #F48C02
}

.wbnr .pg-lead__desc {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3060;
  max-width: 520px;
  margin: 0
}

.wbnr .pg-lead__stat {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px
}

.wbnr .pg-lead__stat-num {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.15;
  color: #4424A1;
  opacity: .13;
  pointer-events: none;
  user-select: none
}

.wbnr .pg-lead__divider {
  margin: 36px auto 0;
  max-width: 1600px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #4424A1 0px, #4424A1 18px, transparent 18px, transparent 26px, #F48C02 26px, #F48C02 36px, transparent 36px, transparent 44px);
  opacity: .18
}

.wbnr .card-grid {
  padding: 72px 24px;
  max-width: 1600px;
  margin: 0 auto
}

.wbnr .card-grid__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px
}

.wbnr .wcard {
  border-radius: 18px;
  background: #fff;
  box-shadow: 2px 5px 14px 0 #4424a11c;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s ease-out, transform .15s ease-out;
  position: relative
}

.wbnr .wcard:hover {
  box-shadow: 2px 8px 60px 0 #4424a11f;
  transform: translateY(-3px)
}

.wbnr .wcard__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden
}

.wbnr .wcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .2s ease-out
}

.wbnr .wcard:hover .wcard__img {
  transform: scale(1.04)
}

.wbnr .wcard__overlay {
  position: absolute;
  inset: 0;
  background: #1a0a4a00;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  transition: background .18s ease-out
}

.wbnr .wcard:hover .wcard__overlay {
  background: #1a0a4a9e
}

.wbnr .wcard__overlay-text {
  font-size: 17px;
  line-height: 1.45;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .18s ease-out, transform .15s ease-out
}

.wbnr .wcard:hover .wcard__overlay-text {
  opacity: 1;
  transform: translateY(0)
}

.wbnr .wcard__slide-label {
  position: absolute;
  top: 24px;
  left: -120px;
  background: #F48C02;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 0 3px 3px 0;
  transition: left .18s ease-out
}

.wbnr .wcard:hover .wcard__slide-label {
  left: 0
}

.wbnr .wcard__body {
  padding: 24px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.wbnr .wcard__tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center
}

.wbnr .wcard__tag {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4424A1;
  background: #ede8ff;
  padding: 6px 12px;
  border-radius: 3px
}

.wbnr .wcard__tag--fmt {
  color: #2a6b2a;
  background: #BDF6C6
}

.wbnr .wcard__h2 {
  font-size: 21px;
  line-height: 1.45;
  font-weight: 800;
  color: #1a0a4a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.wbnr .wcard__desc {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3060;
  margin: 0;
  flex: 1 1 auto
}

.wbnr .wcard__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  border-top: 1px solid #ede8ff;
  padding-top: 12px
}

.wbnr .wcard__meta-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #5a4a8a
}

.wbnr .wcard__meta-item svg {
  flex-shrink: 0
}

.wbnr .wcard__foot {
  padding: 0 24px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap
}

.wbnr .wcard__price-wrap {
  display: flex;
  flex-direction: column;
  gap: 0
}

.wbnr .wcard__price {
  font-size: 21px;
  font-weight: 900;
  color: #1a0a4a;
  line-height: 1.15
}

.wbnr .wcard__price-note {
  font-size: 14px;
  color: #7a6aaa;
  line-height: 1.45
}

.wbnr .wcard__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .18s ease-out, box-shadow .15s ease-out;
  box-shadow: 2px 1px 5px 0 #4424a114
}

.wbnr .wcard__btn:hover {
  background: #F48C02;
  box-shadow: 2px 5px 14px 0 #f48c021c
}

.wbnr .wcard__btn:focus-visible {
  outline: 3px solid #F48C02;
  outline-offset: 2px
}

.wbnr .wcard__btn:active {
  background: #3a1e8a
}

.wbnr .wcard__date {
  font-size: 14px;
  color: #9a8acc;
  letter-spacing: .06em
}

.wbnr .sec-divider {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px
}

.wbnr .sec-divider__line {
  height: 2px;
  background: repeating-linear-gradient(90deg, #4424A1 0px, #4424A1 12px, transparent 12px, transparent 18px, #F48C02 18px, #F48C02 28px, transparent 28px, transparent 36px);
  opacity: .15
}

.wbnr .bleed-bg {
  position: relative;
  overflow: hidden;
  background: #f5f0ff;
  padding: 72px 24px
}

.wbnr .bleed-bg__anim {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: #F48C02;
  opacity: 0;
  animation: bleed-corner 7s ease-in-out infinite;
  pointer-events: none
}

@keyframes bleed-corner {
  0% {
    opacity: 0;
    transform: scale(0.7) translate(40px, -40px)
  }

  40% {
    opacity: .13;
    transform: scale(1.1) translate(0, 0)
  }

  70% {
    opacity: .09;
    transform: scale(1.05) translate(10px, -10px)
  }

  100% {
    opacity: 0;
    transform: scale(0.7) translate(40px, -40px)
  }
}

.wbnr .bleed-bg__anim--sec {
  top: auto;
  right: auto;
  bottom: -80px;
  left: -80px;
  background: #4424A1;
  animation-delay: 3.5s;
  width: 240px;
  height: 240px
}

.wbnr .bleed-bg__inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.wbnr .feat-grid {
  display: grid;
  grid-template-columns: 80px 1fr 80px 1fr;
  gap: 24px 36px;
  align-items: start
}

.wbnr .feat-grid__label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  padding-top: 6px
}

.wbnr .feat-grid__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #4424A1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 2px 5px 14px 0 #4424a11c;
  flex-shrink: 0
}

.wbnr .feat-grid__icon--alt {
  background: #F48C02;
  box-shadow: 2px 5px 14px 0 #f48c021c
}

.wbnr .feat-grid__lbl-txt {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #4424A1;
  text-align: center
}

.wbnr .feat-grid__para {
  font-size: 17px;
  line-height: 1.7;
  color: #2a1a5a;
  margin: 0
}

.wbnr .feat-grid__h3 {
  font-size: 21px;
  font-weight: 800;
  color: #1a0a4a;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0 0 12px;
  line-height: 1.15
}

.wbnr .feat-grid__block {
  display: flex;
  flex-direction: column
}

.wbnr .bleed-bg__h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a0a4a;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.15;
  margin: 0 0 36px
}

.wbnr .img-blur-sec {
  position: relative;
  padding: 72px 24px;
  overflow: hidden
}

.wbnr .img-blur-sec__bg {
  position: absolute;
  inset: 0;
  background-image: url(./featured_photos/2025-12-14panel8.jpg);
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.45);
  transform: scale(1.06);
  pointer-events: none
}

.wbnr .img-blur-sec__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center
}

.wbnr .img-blur-sec__text {
  color: #fff
}

.wbnr .img-blur-sec__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #BDF6C6;
  margin-bottom: 24px
}

.wbnr .img-blur-sec__h2 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0 0 24px
}

.wbnr .img-blur-sec__para {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffffd9;
  margin: 0 0 24px
}

.wbnr .img-blur-sec__steps {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.wbnr .step-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px
}

.wbnr .step-item__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F48C02;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  box-shadow: 2px 1px 5px 0 #f48c0214
}

.wbnr .step-item__body {
  flex: 1 1 auto
}

.wbnr .step-item__ttl {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.wbnr .step-item__txt {
  font-size: 14px;
  line-height: 1.7;
  color: #ffffffc7;
  margin: 0
}

.wbnr .reviews-sec {
  padding: 72px 24px;
  background: #fff
}

.wbnr .reviews-sec__inner {
  max-width: 1600px;
  margin: 0 auto
}

.wbnr .reviews-sec__h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a0a4a;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.15;
  margin: 0 0 12px
}

.wbnr .reviews-sec__sub {
  font-size: 17px;
  line-height: 1.7;
  color: #5a4a8a;
  margin: 0 0 36px;
  max-width: 600px
}

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

.wbnr .rev-card {
  background: #f5f0ff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 1px 5px 0 #4424a114;
  transition: box-shadow .15s ease-out
}

.wbnr .rev-card:hover {
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.wbnr .rev-card__stars {
  display: flex;
  flex-direction: row;
  gap: 6px
}

.wbnr .rev-card__star {
  width: 16px;
  height: 16px;
  color: #F48C02
}

.wbnr .rev-card__quote {
  font-size: 17px;
  line-height: 1.7;
  color: #2a1a5a;
  margin: 0
}

.wbnr .rev-card__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: 6px
}

.wbnr .rev-card__portrait {
  width: 48px;
  height: 48px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  box-shadow: 2px 1px 5px 0 #4424a114
}

.wbnr .rev-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #1a0a4a;
  letter-spacing: .05em;
  text-transform: uppercase
}

.wbnr .rev-card__role {
  font-size: 14px;
  color: #7a6aaa
}

.wbnr .rev-card__no-portrait {
  width: 48px;
  height: 48px;
  border-radius: 28px;
  background: #BDF6C6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.wbnr .form-sec {
  padding: 72px 24px;
  background: linear-gradient(0deg, #f5f0ff 0%, #fff 100%);
  position: relative
}

.wbnr .form-sec__deco {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden
}

.wbnr .form-sec__deco-c1 {
  position: absolute;
  bottom: -60px;
  right: 8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid #4424A1;
  opacity: .07
}

.wbnr .form-sec__deco-c2 {
  position: absolute;
  top: 24px;
  left: 5%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #F48C02;
  opacity: .1
}

.wbnr .form-sec__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.wbnr .form-sec__text {
  padding-top: 12px
}

.wbnr .form-sec__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F48C02;
  background: #fff5e0;
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 24px
}

.wbnr .form-sec__h2 {
  font-size: 38px;
  font-weight: 800;
  color: #1a0a4a;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.15;
  margin: 0 0 24px
}

.wbnr .form-sec__para {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3060;
  margin: 0
}

.wbnr .enroll-form {
  background: #fff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 2px 8px 60px 0 #4424a11f;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.wbnr .enroll-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.wbnr .enroll-form__lbl {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4424A1
}

.wbnr .enroll-form__inp {
  font-size: 17px;
  line-height: 1.45;
  color: #1a0a4a;
  background: #f5f0ff;
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 12px;
  outline: none;
  transition: border-color .18s ease-out, background .15s ease-out;
  width: 100%;
  box-sizing: border-box
}

.wbnr .enroll-form__inp::placeholder {
  color: #3a306061
}

.wbnr .enroll-form__inp:focus {
  border-color: #4424A1;
  background: #fff
}

.wbnr .enroll-form__inp--area {
  resize: vertical;
  min-height: 100px
}

.wbnr .enroll-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px
}

.wbnr .enroll-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #4424A1;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 12px 36px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background .18s ease-out, box-shadow .15s ease-out;
  box-shadow: 2px 5px 14px 0 #4424a11c;
  align-self: flex-start
}

.wbnr .enroll-form__submit:hover {
  background: #F48C02;
  box-shadow: 2px 8px 60px 0 #f48c021f
}

.wbnr .enroll-form__submit:focus-visible {
  outline: 3px solid #F48C02;
  outline-offset: 2px
}

.wbnr .enroll-form__submit:active {
  background: #3a1e8a
}

.wbnr .enroll-form__submit.shake {
  animation: btn-shake .18s ease-out
}

@keyframes btn-shake {
  0% {
    transform: translateX(0)
  }

  25% {
    transform: translateX(-5px)
  }

  50% {
    transform: translateX(5px)
  }

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

  100% {
    transform: translateX(0)
  }
}

.wbnr .enroll-form__agree {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #5a4a8a;
  line-height: 1.45
}

.wbnr .enroll-form__agree input[type="checkbox"] {
  margin-top: 2px;
  accent-color: #4424A1;
  flex-shrink: 0
}

@media (max-width: 900px) {
  .wbnr .pg-lead__h1 {
    font-size: 38px
  }

  .wbnr .pg-lead__stat {
    display: none
  }

  .wbnr .card-grid__row {
    grid-template-columns: 1fr
  }

  .wbnr .feat-grid {
    grid-template-columns: 60px 1fr
  }

  .wbnr .feat-grid__label:nth-child(3),
  .wbnr .feat-grid__block:nth-child(4) {
    display: none
  }

  .wbnr .img-blur-sec__inner {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .wbnr .reviews-grid {
    grid-template-columns: 1fr
  }

  .wbnr .form-sec__inner {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .wbnr .enroll-form__row {
    grid-template-columns: 1fr
  }

  .wbnr .wcard__img-wrap {
    display: none
  }
}

@media (max-width: 600px) {
  .wbnr .pg-lead {
    padding: 36px 24px 24px
  }

  .wbnr .pg-lead__h1 {
    font-size: 21px
  }

  .wbnr .bleed-bg__h2 {
    font-size: 21px
  }

  .wbnr .img-blur-sec__h2 {
    font-size: 21px
  }

  .wbnr .reviews-sec__h2 {
    font-size: 21px
  }

  .wbnr .form-sec__h2 {
    font-size: 21px
  }

  .wbnr .feat-grid {
    grid-template-columns: 1fr
  }

  .wbnr .feat-grid__label {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start
  }
}

.abt-us {
  max-width: 1600px;
  margin: 0 auto;
  overflow: hidden
}

.abt-us .sec-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  position: relative
}

.abt-us .sec-story__left {
  background: #fff;
  padding: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1
}

.abt-us .sec-story__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to top, #F48C02, #fff)
}

.abt-us .sec-story__right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(162deg, #4424A1 0%, #F48C02 60%, #BDF6C6 100%);
  opacity: .18;
  z-index: 1
}

.abt-us .sec-story__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  mix-blend-mode: luminosity
}

.abt-us .sec-story__decor {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 420px;
  height: 420px;
  z-index: 0;
  pointer-events: none
}

.abt-us .sec-story__decor svg {
  width: 100%;
  height: 100%
}

.abt-us .sec-story__anchor {
  position: absolute;
  bottom: 24px;
  right: 36px;
  font-size: 120px;
  font-weight: 900;
  color: #F48C02;
  opacity: .07;
  line-height: 1.15;
  letter-spacing: -6px;
  z-index: 0;
  pointer-events: none;
  user-select: none
}

.abt-us .sec-story__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #F48C02;
  margin-bottom: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.abt-us .sec-story__label-line {
  display: block;
  width: 36px;
  height: 2px;
  background: #F48C02;
  border-radius: 3px
}

.abt-us .sec-story__h1 {
  font-size: 54px;
  font-weight: 900;
  line-height: 1.15;
  color: #1e1233;
  margin-bottom: 36px;
  position: relative;
  z-index: 1
}

.abt-us .sec-story__h1 em {
  font-style: normal;
  background: #BDF6C6;
  padding: 0 8px;
  border-radius: 3px
}

.abt-us .sec-story__body {
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f50;
  max-width: 520px;
  position: relative;
  z-index: 1
}

.abt-us .sec-story__body p {
  margin-bottom: 24px
}

.abt-us .sec-story__body p:last-child {
  margin-bottom: 0
}

.abt-us .sec-story__stats {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin-top: 36px;
  position: relative;
  z-index: 1
}

.abt-us .stat__num {
  font-size: 38px;
  font-weight: 900;
  color: #4424A1;
  line-height: 1.15
}

.abt-us .stat__desc {
  font-size: 14px;
  color: #4424A1;
  line-height: 1.45;
  letter-spacing: .06em;
  margin-top: 6px;
  max-width: 100px
}

.abt-us .stat__item {
  display: flex;
  flex-direction: column;
  border-left: 3px solid #BDF6C6;
  padding-left: 12px
}

.abt-us .sec-story__img-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, #4424a152 0%, #f48c0214 100%);
  pointer-events: none
}

.abt-us .sec-detail {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  background: #fff;
  position: relative
}

.abt-us .sec-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #BDF6C6 0%, #F48C02 50%, #4424A1 100%);
  border-radius: 0 0 3px 3px
}

.abt-us .sec-detail__col {
  padding: 72px 36px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #4424a114;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .18s ease-out, transform .15s ease-out
}

.abt-us .sec-detail__col:last-child {
  border-right: none;
  background: linear-gradient(to top, #4424A1 0%, #2a1f50 100%)
}

.abt-us .sec-detail__col--vis {
  opacity: 1;
  transform: translateY(0)
}

.abt-us .sec-detail__col:last-child .sec-detail__h4,
.abt-us .sec-detail__col:last-child .sec-detail__para,
.abt-us .sec-detail__col:last-child .sec-detail__tag {
  color: #fff
}

.abt-us .sec-detail__col:last-child .sec-detail__icon {
  background: #ffffff1f;
  color: #BDF6C6
}

.abt-us .sec-detail__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: #f48c021a;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #F48C02;
  margin-bottom: 24px;
  flex-shrink: 0
}

.abt-us .sec-detail__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.6
}

.abt-us .sec-detail__h4 {
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #1e1233;
  margin-bottom: 12px;
  line-height: 1.45
}

.abt-us .sec-detail__para {
  font-size: 17px;
  line-height: 1.7;
  color: #2a1f50;
  flex: 1
}

.abt-us .sec-detail__tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #F48C02;
  margin-top: 24px;
  border-bottom: 2px solid #BDF6C6;
  padding-bottom: 6px
}

.abt-us .sec-detail__col:last-child .sec-detail__tag {
  border-bottom-color: #bdf6c666
}

.abt-us .sec-detail__img-wrap {
  width: 100%;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative
}

.abt-us .sec-detail__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}

.abt-us .sec-detail__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #f48c0247 0%, transparent 60%);
  pointer-events: none
}

.abt-us .sec-detail__portrait {
  width: 100%;
  aspect-ratio: 5/7;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
  position: relative
}

.abt-us .sec-detail__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.7) contrast(1.08)
}

.abt-us .sec-detail__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #4424a159 0%, transparent 55%);
  pointer-events: none
}

.abt-us .sec-detail__name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 6px
}

.abt-us .sec-detail__role {
  font-size: 14px;
  color: #BDF6C6;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 12px
}

.abt-us .diag {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt-us .diag__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.abt-us .diag__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #BDF6C6;
  flex-shrink: 0
}

.abt-us .diag__line {
  flex: 1;
  height: 1px;
  background: #bdf6c64d
}

.abt-us .diag__label {
  font-size: 14px;
  color: #ffffffb3;
  letter-spacing: .08em;
  white-space: nowrap
}

.abt-us .diag__arrow {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #F48C02;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

@keyframes abt-wave-in {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

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

.abt-us .sec-story__left>* {
  animation: abt-wave-in .18s ease-out both
}

.abt-us .sec-story__label {
  animation-delay: .05s
}

.abt-us .sec-story__h1 {
  animation-delay: .1s
}

.abt-us .sec-story__body {
  animation-delay: .15s
}

.abt-us .sec-story__stats {
  animation-delay: .2s
}

@media (max-width: 1100px) {
  .abt-us .sec-story {
    grid-template-columns: 1fr
  }

  .abt-us .sec-story__right {
    display: none
  }

  .abt-us .sec-detail {
    grid-template-columns: 1fr 1fr
  }

  .abt-us .sec-detail__col:nth-child(2) {
    border-right: none
  }

  .abt-us .sec-detail__col:nth-child(3) {
    border-right: 1px solid #4424a114
  }
}

@media (max-width: 700px) {
  .abt-us .sec-story__left {
    padding: 36px 24px
  }

  .abt-us .sec-story__h1 {
    font-size: 38px
  }

  .abt-us .sec-story__stats {
    flex-direction: column;
    gap: 24px
  }

  .abt-us .sec-detail {
    grid-template-columns: 1fr
  }

  .abt-us .sec-detail__col {
    border-right: none;
    border-bottom: 1px solid #4424a114;
    padding: 36px 24px
  }

  .abt-us .sec-detail__col:last-child {
    border-bottom: none
  }

  .abt-us .sec-detail__img-wrap {
    display: none
  }
}

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

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

.frst ::selection {
  background: #4424A1;
  color: #fff;
  font-weight: 700
}

.frst .pill {
  display: inline-block;
  background: #BDF6C6;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 28px;
  margin-bottom: 24px
}

.frst .pill--sec {
  background: #f48c0221;
  color: #4424A1
}

.frst .pill--dark {
  background: #4424a11a;
  color: #4424A1
}

.frst .titl {
  position: relative;
  padding: 96px 0 48px;
  background: linear-gradient(to bottom, #4424a1eb 0%, #4424a18c 40%, transparent 100%)
}

.frst .titl-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden
}

.frst .titl-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.72) saturate(0.9)
}

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

.frst .titl-body {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px
}

.frst .titl-body h1 {
  font-size: 70px;
  line-height: 1.15;
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px;
  max-width: 820px;
  letter-spacing: -.01em
}

.frst .titl-body h1 .punc {
  color: #F48C02
}

.frst .titl-sub {
  font-size: 21px;
  line-height: 1.45;
  color: #ffffffe0;
  max-width: 560px;
  margin: 0 0 36px
}

.frst .titl-meta {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap
}

.frst .titl-stat {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.frst .titl-stat__num {
  font-size: 38px;
  font-weight: 800;
  color: #F48C02;
  line-height: 1.15
}

.frst .titl-stat__lbl {
  font-size: 14px;
  color: #ffffffb8;
  letter-spacing: .1em;
  text-transform: uppercase
}

.frst .titl-div {
  width: 2px;
  height: 48px;
  background: #ffffff40
}

.frst .recog {
  padding: 72px 0;
  background: #fff;
  position: relative
}

.frst .recog::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, #F48C02 30%, #4424A1 70%, transparent);
  margin-bottom: 72px
}

.frst .recog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.frst .recog-lead h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #2a1060;
  margin: 0 0 24px;
  letter-spacing: .01em;
  text-transform: uppercase
}

.frst .recog-lead p {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3350;
  margin: 0 0 24px
}

.frst .recog-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.frst .recog-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .2s ease-out
}

.frst .recog-img-wrap:hover img {
  transform: scale(1.03)
}

.frst .recog-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.frst .badge-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 6px;
  border: 1.5px solid #4424a11f;
  border-left: 4px solid #4424A1;
  background: #fff;
  box-shadow: 2px 1px 5px 0 #4424a114;
  transition: box-shadow .15s ease-out, border-color .15s ease-out
}

.frst .badge-row:hover {
  box-shadow: 2px 5px 14px 0 #4424a11c;
  border-left-color: #F48C02
}

.frst .badge-row__ico {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: #4424a114;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #4424A1
}

.frst .badge-row__txt {
  font-size: 14px;
  font-weight: 600;
  color: #2a1060;
  letter-spacing: .04em
}

.frst .stories {
  padding: 72px 0;
  background: linear-gradient(to top, #bdf6c638 0%, #f48c020f 100%);
  position: relative
}

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

.frst .story-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 24px 24px;
  box-shadow: 2px 5px 14px 0 #f48c021c;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s ease-out, transform .18s ease-out;
  position: relative
}

.frst .story-card:hover {
  box-shadow: 2px 8px 60px 0 #f48c021f;
  transform: translateY(-3px)
}

.frst .story-card__accent {
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 4px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(to right, #F48C02, #4424A1)
}

.frst .story-card__who {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px
}

.frst .story-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 3px;
  background: #4424a11a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4424A1;
  flex-shrink: 0;
  overflow: hidden
}

.frst .story-card__avatar img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  object-position: center;
  display: block
}

.frst .story-card__name {
  font-size: 17px;
  font-weight: 700;
  color: #2a1060;
  line-height: 1.15
}

.frst .story-card__role {
  font-size: 14px;
  color: #7a6fa0;
  letter-spacing: .06em
}

.frst .story-card__body {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3350;
  margin: 0
}

.frst .story-card__out {
  font-size: 14px;
  font-weight: 700;
  color: #F48C02;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: #f48c0217;
  border-radius: 3px;
  display: inline-block
}

.frst .stories-hd h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #2a1060;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .03em
}

.frst .stories-hd p {
  font-size: 17px;
  line-height: 1.45;
  color: #3a3350;
  max-width: 600px;
  margin: 0
}

.frst .forwhom {
  padding: 72px 0;
  background: #fff
}

.frst .forwhom-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 72px;
  align-items: center
}

.frst .forwhom-img-wrap {
  position: relative
}

.frst .forwhom-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 18px;
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.frst .forwhom-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid #f48c024d;
  border-radius: 18px;
  pointer-events: none;
  z-index: 0
}

.frst .forwhom-img-wrap img {
  position: relative;
  z-index: 1
}

.frst .forwhom-txt h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #2a1060;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .03em
}

.frst .forwhom-txt p {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3350;
  margin: 0 0 24px
}

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

.frst .forwhom-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  line-height: 1.45;
  color: #3a3350
}

.frst .forwhom-list__num {
  width: 28px;
  height: 28px;
  border-radius: 28px;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px
}

.frst .prob {
  padding: 72px 0;
  position: relative;
  overflow: hidden
}

.frst .prob-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #2a1060
}

.frst .prob-grid-anim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(#bdf6c612 1px, transparent 1px), linear-gradient(90deg, #bdf6c612 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridpulse 4s ease-in-out infinite
}

@keyframes gridpulse {

  0%,
  100% {
    opacity: .5
  }

  50% {
    opacity: 1
  }
}

.frst .prob-inner {
  position: relative;
  z-index: 2;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px
}

.frst .prob-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start
}

.frst .prob-txt h2 {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 900;
  color: #fff;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .02em
}

.frst .prob-txt h2 em {
  color: #F48C02;
  font-style: normal
}

.frst .prob-txt p {
  font-size: 17px;
  line-height: 1.7;
  color: #ffffffd1;
  margin: 0 0 24px
}

.frst .prob-cards {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.frst .prob-card {
  background: #ffffff12;
  border: 1px solid #bdf6c62e;
  border-radius: 6px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  transition: background .15s ease-out, box-shadow .15s ease-out;
  box-shadow: inset 0 4px 10px 0 #4424a126
}

.frst .prob-card:hover {
  background: #ffffff1f;
  box-shadow: 2px 5px 14px 0 #4424a11c inset 0 4px 10px 0 #4424a11a
}

.frst .prob-card__ico {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #f48c022e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #F48C02
}

.frst .prob-card__lbl {
  font-size: 14px;
  font-weight: 700;
  color: #BDF6C6;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px
}

.frst .prob-card__desc {
  font-size: 17px;
  line-height: 1.45;
  color: #ffffffd1;
  margin: 0
}

.frst .exmpl {
  padding: 72px 0;
  background: #fff
}

.frst .exmpl-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 72px;
  align-items: start
}

.frst .exmpl-txt h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #2a1060;
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: .03em
}

.frst .exmpl-txt p {
  font-size: 17px;
  line-height: 1.7;
  color: #3a3350;
  margin: 0 0 24px
}

.frst .exmpl-info {
  background: #4424a10a;
  border-radius: 6px;
  border: 1.5px solid #4424a11a;
  border-left: 4px solid #F48C02;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 2px 1px 5px 0 #f48c0214
}

.frst .info-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #4424a114
}

.frst .info-row:last-child {
  border-bottom: none;
  padding-bottom: 0
}

.frst .info-row__lbl {
  font-size: 14px;
  color: #7a6fa0;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600
}

.frst .info-row__val {
  font-size: 17px;
  font-weight: 700;
  color: #2a1060;
  text-align: right
}

.frst .exmpl-img-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.frst .exmpl-img-wrap img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .2s ease-out
}

.frst .exmpl-img-wrap:hover img {
  transform: scale(1.02)
}

.frst .exmpl-img-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, #2a1060d9 0%, transparent 100%);
  color: #fff;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600
}

.frst .div-fade {
  height: 1px;
  background: linear-gradient(to right, transparent, #4424a133 50%, transparent);
  margin: 0
}

.frst .div-center {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0 24px
}

.frst .div-center__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, #f48c024d)
}

.frst .div-center__line--rev {
  background: linear-gradient(to left, transparent, #f48c024d)
}

.frst .div-center__dot {
  width: 10px;
  height: 10px;
  border-radius: 28px;
  background: #F48C02;
  box-shadow: 0 0 0 4px #f48c022e
}

@media (max-width: 1100px) {

  .frst .recog-grid,
  .frst .forwhom-layout,
  .frst .prob-layout,
  .frst .exmpl-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

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

  .frst .titl-body h1 {
    font-size: 54px
  }
}

@media (max-width: 700px) {
  .frst .titl-body h1 {
    font-size: 38px
  }

  .frst .titl-sub {
    font-size: 17px
  }

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

  .frst .recog-img-wrap,
  .frst .forwhom-img-wrap,
  .frst .exmpl-img-wrap {
    display: none
  }

  .frst .titl-meta {
    gap: 24px
  }

  .frst .prob-txt h2 {
    font-size: 38px
  }
}

.ctus {
  max-width: 100%;
  overflow-x: clip;
  background: #fff
}

.ctus__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px
}

.ctus a {
  color: #4424A1;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .15s ease-out
}

.ctus a:hover {
  color: #F48C02
}

.ctus__reach {
  padding: 72px 0 36px;
  background: linear-gradient(to bottom, #f5f0ff 0%, #fff 100%);
  position: relative
}

.ctus__reach::after {
  content: '';
  display: block;
  width: 38%;
  height: 2px;
  background: linear-gradient(to right, #4424A1 0%, transparent 100%);
  margin: 36px auto 0
}

.ctus__reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start
}

.ctus__reach-left {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus__reach-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4424A1;
  background: #ede8ff;
  padding: 6px 12px;
  border-radius: 3px;
  width: fit-content
}

.ctus__reach-h {
  font-size: 54px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a0a4a;
  margin: 0
}

.ctus__reach-h em {
  font-style: normal;
  background: linear-gradient(to top, #F48C02 30%, transparent 30%);
  padding: 0 4px
}

.ctus__reach-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #2d2060;
  margin: 0;
  max-width: 480px
}

.ctus__reach-img-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.ctus__reach-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #4424a147 0%, transparent 60%);
  z-index: 1;
  pointer-events: none
}

.ctus__reach-img-frame {
  display: block;
  border: 4px solid #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.ctus__reach-img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: sepia(0.18) contrast(1.08) brightness(0.97)
}

.ctus__reach-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase
}

.ctus__dots-row {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px
}

.ctus__dot {
  border-radius: 50%;
  background: #BDF6C6;
  flex-shrink: 0
}

.ctus__dot--sm {
  width: 6px;
  height: 6px
}

.ctus__dot--md {
  width: 10px;
  height: 10px;
  background: #F48C02;
  opacity: .6
}

.ctus__dot--lg {
  width: 14px;
  height: 14px;
  background: #4424A1;
  opacity: .25
}

.ctus__info-strip {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 12px
}

.ctus__info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #f9f5ff;
  border-left: 3px solid #BDF6C6;
  border-top: 1px solid #ede8ff;
  flex: 1;
  min-width: 160px;
  box-shadow: 2px 1px 5px 0 #4424a114
}

.ctus__info-icon {
  color: #4424A1;
  flex-shrink: 0;
  margin-top: 2px
}

.ctus__info-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4424A1;
  display: block;
  margin-bottom: 6px
}

.ctus__info-val {
  font-size: 14px;
  line-height: 1.45;
  color: #2d2060;
  margin: 0
}

.ctus__form-sec {
  padding: 72px 0;
  background: #fff;
  position: relative
}

.ctus__form-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #4424A1 40%, #F48C02 60%, transparent)
}

.ctus__form-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start
}

.ctus__form-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 24px
}

.ctus__form-aside-h {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 800;
  color: #1a0a4a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em
}

.ctus__form-aside-p {
  font-size: 17px;
  line-height: 1.7;
  color: #4d3d8a;
  margin: 0
}

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

.ctus__channel-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #2d2060;
  padding: 12px;
  border-radius: 6px;
  background: linear-gradient(to top, #f5f0ff 0%, #fff 100%);
  border: 1px solid #ede8ff;
  box-shadow: 2px 1px 5px 0 #4424a114
}

.ctus__channel-list li .ctus__ch-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #4424A1;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ctus__form-card {
  background: linear-gradient(to top, #f5f0ff 0%, #fff 100%);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 2px 8px 60px 0 #4424a11f;
  border: 1px solid #ede8ff
}

.ctus__form {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.ctus__fld {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.ctus__lbl {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #4424A1
}

.ctus__lbl span {
  color: #F48C02;
  margin-left: 2px
}

.ctus__inp {
  padding: 12px;
  border-radius: 6px;
  border: 2px solid #ede8ff;
  background: #fff;
  font-size: 17px;
  color: #1a0a4a;
  outline: none;
  transition: border-color .15s ease-out, box-shadow .18s ease;
  box-shadow: inset 0 4px 8px 0 #4424a10d;
  width: 100%;
  box-sizing: border-box
}

.ctus__inp::placeholder {
  color: #4424a14d
}

.ctus__inp:focus {
  border-color: #4424A1;
  box-shadow: inset 0 4px 10px 0 #4424a114 2px 5px 14px 0 #4424a11c
}

.ctus__inp:invalid:not(:placeholder-shown) {
  border-color: #F48C02
}

.ctus__sel-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px
}

.ctus__ch-opt {
  position: relative
}

.ctus__ch-opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.ctus__ch-opt label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;
  border-radius: 6px;
  border: 2px solid #ede8ff;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #4d3d8a;
  text-align: center;
  transition: border-color .15s ease-out, background .15s ease-out, transform .12s ease;
  box-shadow: 2px 1px 5px 0 #4424a114
}

.ctus__ch-opt label:hover {
  border-color: #4424A1;
  background: #f5f0ff
}

.ctus__ch-opt input[type="radio"]:checked+label {
  border-color: #4424A1;
  background: #4424A1;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.ctus__ch-opt input[type="radio"]:checked+label .ctus__ch-icon {
  color: #BDF6C6
}

.ctus__ch-icon {
  color: #4424A1;
  transition: color .12s ease
}

.ctus__textarea {
  padding: 12px;
  border-radius: 6px;
  border: 2px solid #ede8ff;
  background: #fff;
  font-size: 17px;
  color: #1a0a4a;
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: border-color .15s ease-out, box-shadow .18s ease;
  box-shadow: inset 0 6px 10px 0 #4424a10d;
  width: 100%;
  box-sizing: border-box
}

.ctus__textarea::placeholder {
  color: #4424a14d
}

.ctus__textarea:focus {
  border-color: #4424A1;
  box-shadow: inset 0 6px 10px 0 #4424a114 2px 5px 14px 0 #4424a11c
}

.ctus__privacy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 6px;
  background: #ede8ff;
  border: 1px solid #d4c8ff
}

.ctus__privacy input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #4424A1;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer
}

.ctus__privacy-txt {
  font-size: 14px;
  line-height: 1.7;
  color: #2d2060;
  margin: 0
}

.ctus__btn-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px
}

.ctus__submit {
  padding: 12px 36px;
  border-radius: 6px;
  background: #4424A1;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .06em;
  border: none;
  cursor: pointer;
  transition: background .15s ease-out, transform .12s ease, box-shadow .18s ease;
  box-shadow: 2px 5px 14px 0 #4424a11c
}

.ctus__submit:hover {
  background: #F48C02;
  box-shadow: 2px 8px 60px 0 #f48c021f;
  transform: translateY(-1px)
}

.ctus__submit:active {
  transform: translateY(1px);
  box-shadow: 2px 1px 5px 0 #4424a114
}

.ctus__submit:focus-visible {
  outline: 3px solid #F48C02;
  outline-offset: 3px
}

@keyframes ctus-shake {

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

  20% {
    transform: translateX(-5px)
  }

  40% {
    transform: translateX(5px)
  }

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

  80% {
    transform: translateX(4px)
  }
}

.ctus__submit--shake {
  animation: ctus-shake .2s ease-out
}

@keyframes ctus-flip {
  0% {
    transform: rotateY(90deg);
    opacity: 0
  }

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

.ctus__flip-item {
  animation: ctus-flip .2s ease-out both
}

.ctus__flip-item:nth-child(1) {
  animation-delay: .05s
}

.ctus__flip-item:nth-child(2) {
  animation-delay: .12s
}

.ctus__flip-item:nth-child(3) {
  animation-delay: .19s
}

.ctus__alt-sec {
  padding: 72px 0;
  background: linear-gradient(to bottom, #f0f7f0 0%, #fff 100%);
  position: relative
}

.ctus__alt-sec::before {
  content: '';
  position: absolute;
  top: 0;
  right: 15%;
  width: 55%;
  height: 2px;
  background: linear-gradient(to left, transparent, #BDF6C6 50%, transparent)
}

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

.ctus__alt-card {
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  border: 1px solid #d4f0d8;
  box-shadow: 2px 5px 14px 0 #4424a11c;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .15s ease-out, box-shadow .18s ease
}

.ctus__alt-card:hover {
  transform: scale(1.03);
  box-shadow: 2px 8px 60px 0 #4424a11f
}

.ctus__alt-card:not(:hover) {
  transform: scale(0.98)
}

.ctus__alt-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(to top, #BDF6C6 0%, #fff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 1px 5px 0 #4424a114
}

.ctus__alt-icon-wrap svg {
  color: #4424A1
}

.ctus__alt-h {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #1a0a4a;
  margin: 0
}

.ctus__alt-p {
  font-size: 14px;
  line-height: 1.7;
  color: #4d3d8a;
  margin: 0
}

.ctus__alt-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #4424A1;
  text-decoration: none;
  border-bottom: 2px solid #BDF6C6;
  padding-bottom: 2px;
  transition: color .15s ease-out, border-color .15s ease-out;
  width: fit-content
}

.ctus__alt-link:hover {
  color: #F48C02;
  border-color: #F48C02;
  text-decoration: none
}

.ctus__alt-sec-h {
  font-size: 38px;
  font-weight: 800;
  color: #1a0a4a;
  margin: 0 0 36px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .05em
}

.ctus__blob-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.ctus__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0
}

.ctus__blob--a {
  width: 220px;
  height: 180px;
  background: #bdf6c673;
  top: -40px;
  right: -30px
}

.ctus__blob--b {
  width: 160px;
  height: 140px;
  background: #f48c022e;
  bottom: -20px;
  left: -20px
}

@media (max-width: 1024px) {
  .ctus__reach-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .ctus__reach-img-wrap {
    display: none
  }

  .ctus__form-layout {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .ctus__form-aside {
    position: static
  }

  .ctus__alt-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width: 640px) {
  .ctus__reach-h {
    font-size: 38px
  }

  .ctus__sel-group {
    grid-template-columns: 1fr
  }

  .ctus__alt-grid {
    grid-template-columns: 1fr
  }

  .ctus__info-strip {
    flex-direction: column
  }

  .ctus__btn-row {
    flex-direction: column;
    align-items: flex-start
  }

  .ctus__form-card {
    padding: 24px
  }
}

.succ-pg {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 24px;
  background: linear-gradient(to top, #f5f0ff 0%, #fff 100%)
}

.succ-pg .succ-card {
  max-width: 600px;
  width: 100%;
  background: #fff;
  border-radius: 18px;
  padding: 72px 36px;
  box-shadow: 2px 8px 60px 0 #4424a11f;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center
}

.succ-pg .succ-card__icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 28px;
  background: #BDF6C6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  flex-shrink: 0
}

.succ-pg .succ-card__icon-wrap svg {
  display: block
}

.succ-pg .succ-card__heading {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #4424A1;
  margin: 0 0 24px;
  text-transform: uppercase
}

.succ-pg .succ-card__body {
  font-size: 17px;
  line-height: 1.7;
  color: #2a2240;
  margin: 0 0 12px;
  max-width: 440px
}

.succ-pg .succ-card__note {
  font-size: 14px;
  line-height: 1.45;
  color: #6a5fa8;
  margin: 0 0 36px;
  letter-spacing: .03em
}

.succ-pg .succ-card__divider {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: #F48C02;
  margin: 0 auto 36px;
  border: none
}

.succ-pg .succ-card__link {
  display: inline-block;
  background: #4424A1;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 6px;
  box-shadow: 2px 5px 14px 0 #4424a11c;
  transition: background .15s ease-out, box-shadow .2s ease-out;
  letter-spacing: .02em
}

.succ-pg .succ-card__link:hover {
  background: #F48C02;
  box-shadow: 2px 8px 60px 0 #f48c021f
}

.succ-pg .succ-card__link:focus-visible {
  outline: 3px solid #F48C02;
  outline-offset: 3px
}

.succ-pg .succ-card__link:active {
  background: #341a8a;
  box-shadow: inset 2px 4px 10px 0 #4424a12e
}

@media (max-width: 480px) {
  .succ-pg {
    padding: 36px 12px
  }

  .succ-pg .succ-card {
    padding: 36px 24px
  }

  .succ-pg .succ-card__heading {
    font-size: 21px
  }
}