html {
  box-sizing: border-box
}

body {
  margin: 0;
  min-height: 100vh
}

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

.hd {
  position: relative;
  z-index: 100;
  background: linear-gradient(135deg, #771985 0%, #844BC3 100%)
}

.hd_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  padding: 12px 52px;
  border-bottom: 1px solid #dcafe040
}

.hd_brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.hd_logo_box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 2px -1px #77198512 0 4px 28px -1px #77198514;
  border: 2px solid #dcafe080;
  flex-shrink: 0
}

.hd_logo_box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.hd_brand_name {
  font-family: 'EB Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -.02em
}

.hd_addr {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #dcafe0e6;
  line-height: 1.6
}

.hd_addr .oi {
  font-size: 14px;
  color: #DCAFE0;
  flex-shrink: 0
}

.hd_bottom {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 52px
}

.hd_nav {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0
}

.hd_nav a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #ffffffd9;
  text-decoration: none;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-radius: 0;
  position: relative;
  letter-spacing: .03em;
  transition: color .6s ease, background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden
}

.hd_nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #DCAFE0;
  border-radius: 5px 5px 0 0;
  transition: width .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.hd_nav a:hover {
  color: #fff;
  background: #ffffff14
}

.hd_nav a:hover::after {
  width: 100%
}

.hd_nav a:focus {
  outline: 2px solid #fff;
  outline-offset: -2px;
  filter: invert(1)
}

.hd_nav a .oi {
  font-size: 14px;
  opacity: .7
}

@media (max-width: 992px) {
  .hd_top {
    padding: 12px 24px;
    flex-wrap: wrap;
    gap: 12px
  }

  .hd_bottom {
    padding: 0 24px
  }

  .hd_nav {
    flex-wrap: wrap
  }

  .hd_nav a {
    padding: 12px;
    font-size: 14px
  }

  .hd_addr {
    font-size: 14px
  }
}

@media (max-width: 576px) {
  .hd_top {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start
  }

  .hd_bottom {
    padding: 0 12px
  }

  .hd_nav a {
    padding: 12px 6px;
    font-size: 14px
  }
}

.ft {
  background: linear-gradient(160deg, #2a0630 0%, #771985 45%, #844BC3 100%);
  position: relative;
  overflow: hidden
}

.ft::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DCAFE0 0%, #844BC3 50%, #771985 100%)
}

.ft_body {
  max-width: 1600px;
  margin: 0 auto;
  padding: 52px 52px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px
}

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

.ft_logo_wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none
}

.ft_logo_box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #fffffff2;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px -1px #844bc314 0 12px 36px -1px #7719851f;
  border: 1px solid #dcafe066;
  flex-shrink: 0
}

.ft_logo_box img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  display: block
}

.ft_brand_label {
  font-family: 'EB Garamond', serif;
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2
}

.ft_tagline {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #dcafe0cc;
  line-height: 1.6;
  max-width: 360px
}

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

.ft_contact_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #fffc;
  line-height: 1.6
}

.ft_contact_item .oi {
  font-size: 14px;
  color: #DCAFE0;
  flex-shrink: 0;
  margin-top: 2px
}

.ft_contact_item a {
  color: #ffffffd9;
  text-decoration: none;
  transition: color .5s ease
}

.ft_contact_item a:hover {
  color: #DCAFE0
}

.ft_contact_item a:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  filter: invert(1)
}

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

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

.ft_nav_label {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: #DCAFE0;
  line-height: 1.2;
  letter-spacing: -.01em;
  padding-bottom: 6px;
  border-bottom: 1px solid #dcafe033;
  margin-bottom: 6px
}

.ft_nav_group a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #ffffffbf;
  text-decoration: none;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ft_nav_group a:hover {
  color: #fff
}

.ft_nav_group a:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  filter: invert(1)
}

.ft_nav_group a .oi {
  font-size: 12px;
  color: #dcafe099;
  flex-shrink: 0
}

.ft_bar {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 52px;
  border-top: 1px solid #dcafe026;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px
}

.ft_copy {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #dcafe099;
  line-height: 1.6
}

.ft_legal a {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #dcafe0b3;
  text-decoration: none;
  transition: color .5s ease
}

.ft_legal a:hover {
  color: #fff
}

.ft_legal a:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  filter: invert(1)
}

@media (max-width: 992px) {
  .ft_body {
    grid-template-columns: 1fr;
    padding: 52px 24px 24px;
    gap: 24px
  }

  .ft_bar {
    padding: 24px
  }
}

@media (max-width: 576px) {
  .ft_body {
    padding: 24px 12px 12px
  }

  .ft_bar {
    padding: 12px;
    flex-direction: column;
    align-items: flex-start
  }
}

.ck_bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: #fff;
  box-shadow: 0 -4px 28px -1px #77198514 0 -12px 36px -1px #7719851f;
  border-top: 2px solid #DCAFE0;
  border-radius: 16px 16px 0 0
}

.ck_inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 24px 52px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap
}

.ck_text_block {
  flex: 1;
  min-width: 240px
}

.ck_headline {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: #2a0630;
  line-height: 1.2;
  margin: 0 0 6px
}

.ck_desc {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #3d1045;
  line-height: 1.6;
  margin: 0
}

.ck_desc a {
  color: #771985;
  text-decoration: underline;
  transition: color .5s ease
}

.ck_desc a:hover {
  color: #844BC3
}

.ck_desc a:focus {
  outline: 2px solid #771985;
  outline-offset: 2px;
  filter: invert(1)
}

.ck_cats {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 200px
}

.ck_cats .pretty {
  margin: 0
}

.ck_cats .pretty .state label {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #2a0630;
  line-height: 1.6
}

.ck_cats .pretty.p-default input:checked~.state label::before {
  border-color: #771985
}

.ck_cats .pretty.p-default input:checked~.state label::after {
  background-color: #771985
}

.ck_actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
  min-width: 140px
}

.ck_btn_accept {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: #771985;
  border: 2px solid #771985;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s ease;
  min-height: 44px
}

.ck_btn_accept:hover {
  background: #844BC3;
  border-color: #844BC3
}

.ck_btn_accept:focus {
  outline: 2px solid #771985;
  outline-offset: 2px;
  filter: invert(1)
}

.ck_btn_decline {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #771985;
  background: transparent;
  border: 2px solid #771985;
  border-radius: 10px;
  padding: 12px 24px;
  cursor: pointer;
  text-align: center;
  transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s ease;
  min-height: 44px
}

.ck_btn_decline:hover {
  background: #77198514
}

.ck_btn_decline:focus {
  outline: 2px solid #771985;
  outline-offset: 2px;
  filter: invert(1)
}

.ck_tab_trigger {
  position: fixed;
  left: 0;
  bottom: 96px;
  z-index: 1400;
  background: #771985;
  color: #fff;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 0 10px 10px 0;
  padding: 12px;
  cursor: pointer;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  box-shadow: 0 4px 28px -1px #77198514;
  transition: background .5s ease;
  min-height: 44px;
  min-width: 44px
}

.ck_tab_trigger:hover {
  background: #844BC3
}

.ck_tab_trigger:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  filter: invert(1)
}

@media (max-width: 992px) {
  .ck_inner {
    padding: 24px;
    flex-direction: column
  }

  .ck_actions {
    flex-direction: row;
    width: 100%
  }

  .ck_btn_accept,
  .ck_btn_decline {
    flex: 1
  }
}

@media (max-width: 576px) {
  .ck_inner {
    padding: 12px
  }

  .ck_actions {
    flex-direction: column
  }
}

.terms-text {
  max-width: 1600px;
  margin: 0 auto;
  padding: 52px 96px
}

.terms-text h1 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #771985;
  margin-bottom: 24px;
  margin-top: 0;
  padding-bottom: 24px;
  border-bottom: 2px solid #DCAFE0
}

.terms-text h2 {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.015em;
  color: #771985;
  margin-top: 52px;
  margin-bottom: 24px
}

.terms-text h3 {
  font-size: 21px;
  line-height: 1.6;
  letter-spacing: -.01em;
  color: #844BC3;
  margin-top: 24px;
  margin-bottom: 12px
}

.terms-text h4 {
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -.005em;
  color: #844BC3;
  margin-top: 24px;
  margin-bottom: 12px
}

.terms-text h5 {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #771985;
  margin-top: 24px;
  margin-bottom: 12px
}

.terms-text h6 {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
  color: #844BC3;
  margin-top: 12px;
  margin-bottom: 6px
}

.terms-text p {
  font-size: 17px;
  line-height: 2;
  color: #2d1a33;
  margin-top: 0;
  margin-bottom: 24px
}

.terms-text strong,
.terms-text b {
  font-weight: 700;
  color: #1e0f24
}

.terms-text em,
.terms-text i {
  font-style: italic;
  color: #3d1f4a
}

.terms-text a {
  color: #771985;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .6s ease, text-decoration-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.terms-text a:hover {
  color: #844BC3;
  text-decoration-color: #DCAFE0
}

.terms-text a:visited {
  color: #5a1265
}

.terms-text ul,
.terms-text ol {
  font-size: 17px;
  line-height: 2;
  color: #2d1a33;
  margin-top: 0;
  margin-bottom: 24px;
  padding-left: 24px
}

.terms-text li {
  margin-bottom: 6px
}

.terms-text li:last-child {
  margin-bottom: 0
}

.terms-text hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #DCAFE0 20%, #844BC3 50%, #DCAFE0 80%, transparent);
  margin-top: 52px;
  margin-bottom: 52px
}

.terms-text table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
  color: #2d1a33;
  margin-bottom: 24px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 2px -1px #77198512 0 4px 28px -1px #77198514
}

.terms-text thead {
  background: linear-gradient(135deg, #771985 0%, #844BC3 100%)
}

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

.terms-text tbody tr {
  border-bottom: 1px solid #DCAFE0;
  transition: background-color .5s ease
}

.terms-text tbody tr:last-child {
  border-bottom: none
}

.terms-text tbody tr:nth-child(even) {
  background-color: #f7eef8
}

.terms-text tbody tr:hover {
  background-color: #f0dff2
}

.terms-text td {
  padding: 12px 24px;
  font-size: 14px;
  line-height: 1.6;
  color: #2d1a33;
  vertical-align: top;
  border-right: 1px solid #DCAFE0
}

.terms-text td:last-child {
  border-right: none
}

.terms-text th {
  padding: 12px 24px;
  vertical-align: middle;
  border-right: 1px solid #fff3
}

.terms-text th:last-child {
  border-right: none
}

@media (max-width: 1200px) {
  .terms-text {
    padding: 52px
  }

  .terms-text h1 {
    font-size: 54px
  }
}

@media (max-width: 992px) {
  .terms-text {
    padding: 52px 24px
  }

  .terms-text h1 {
    font-size: 28px
  }

  .terms-text h2 {
    font-size: 21px;
    margin-top: 24px
  }

  .terms-text h3 {
    font-size: 17px
  }

  .terms-text table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }
}

@media (max-width: 576px) {
  .terms-text {
    padding: 24px 12px
  }

  .terms-text h1 {
    font-size: 28px;
    padding-bottom: 12px
  }

  .terms-text h2 {
    font-size: 21px;
    margin-top: 24px;
    margin-bottom: 12px
  }

  .terms-text h3 {
    font-size: 17px
  }

  .terms-text h4,
  .terms-text h5,
  .terms-text h6 {
    font-size: 14px
  }

  .terms-text p,
  .terms-text ul,
  .terms-text ol {
    font-size: 14px;
    line-height: 1.6
  }

  .terms-text hr {
    margin-top: 24px;
    margin-bottom: 24px
  }

  .terms-text td,
  .terms-text th {
    padding: 6px 12px
  }
}

.rt_root {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.rt_root .spotlight_bg {
  position: relative
}

.rt_root .spotlight_bg::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, #844bc32e 0%, transparent 70%);
  pointer-events: none;
  animation: drift_light 8s ease-in-out infinite alternate;
  top: 10%;
  left: 10%;
  z-index: 0
}

@keyframes drift_light {
  0% {
    transform: translate(0, 0)
  }

  100% {
    transform: translate(200px, 80px)
  }
}

.rt_root .title_blk {
  background: linear-gradient(158deg, #3a0a45 0%, #771985 45%, #844BC3 100%);
  padding: 52px 96px 96px;
  position: relative;
  text-align: center
}

.rt_root .title_blk .geo_shape {
  position: absolute;
  border-radius: 10px;
  opacity: .07;
  pointer-events: none
}

.rt_root .title_blk .geo_a {
  width: 180px;
  height: 180px;
  background: #DCAFE0;
  top: -40px;
  left: 8%;
  transform: rotate(22deg);
  border-radius: 40px
}

.rt_root .title_blk .geo_b {
  width: 120px;
  height: 120px;
  background: #fff;
  bottom: 24px;
  right: 6%;
  transform: rotate(-15deg);
  border-radius: 26px
}

.rt_root .title_blk .geo_c {
  width: 80px;
  height: 80px;
  background: #DCAFE0;
  top: 30%;
  right: 12%;
  transform: rotate(35deg);
  border-radius: 16px
}

.rt_root .title_blk .tag_line {
  display: inline-block;
  background: #dcafe02e;
  border: 1px solid #dcafe066;
  color: #DCAFE0;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 6px 24px;
  border-radius: 40px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1
}

.rt_root .title_blk .t_h1 {
  font-size: 70px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.03em;
  text-shadow: 0 4px 32px #77198580 0 1px 0 #0003;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto
}

.rt_root .title_blk .t_sub {
  font-size: 21px;
  line-height: 1.6;
  color: #ffffffd1;
  max-width: 560px;
  margin: 0 auto 52px;
  position: relative;
  z-index: 1
}

.rt_root .title_blk .t_actions {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  position: relative;
  z-index: 1
}

.rt_root .btn_pri {
  display: inline-block;
  padding: 12px 52px;
  background: #fff;
  color: #771985;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .6s ease, box-shadow .5s ease;
  text-decoration: none
}

.rt_root .btn_pri::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #DCAFE0;
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.rt_root .btn_pri:hover::before {
  transform: translateX(0)
}

.rt_root .btn_pri:hover {
  box-shadow: 0 12px 36px -1px #7719851f
}

.rt_root .btn_pri span {
  position: relative;
  z-index: 1
}

.rt_root .btn_ghost {
  display: inline-block;
  padding: 12px 52px;
  background: transparent;
  color: #fff;
  font-size: 17px;
  border-radius: 10px;
  border: 2px solid #ffffff80;
  cursor: pointer;
  text-decoration: none;
  transition: background .5s ease, border-color .5s ease
}

.rt_root .btn_ghost:hover {
  background: #ffffff1a;
  border-color: #fff
}

.rt_root .arrow_div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 0
}

.rt_root .arrow_div .arr {
  width: 12px;
  height: 12px;
  border-right: 2px solid #DCAFE0;
  border-bottom: 2px solid #DCAFE0;
  transform: rotate(-45deg);
  opacity: .5
}

.rt_root .arrow_div .arr:nth-child(2) {
  opacity: .7
}

.rt_root .arrow_div .arr:nth-child(3) {
  opacity: .9
}

.rt_root .diff_sec {
  padding: 96px 96px 52px;
  background: #fff
}

.rt_root .diff_sec .sec_label {
  font-size: 14px;
  letter-spacing: .1em;
  color: #771985;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase
}

.rt_root .diff_sec .sec_h2 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-align: center;
  color: #2a0030;
  text-shadow: 0 2px 12px #77198514;
  margin-bottom: 52px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto
}

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

.rt_root .diff_card {
  background: #faf5fc;
  border-radius: 16px;
  padding: 52px 24px 24px;
  text-align: center;
  box-shadow: 0 3px 2px -1px #77198512;
  transition: box-shadow .7s ease, transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden
}

.rt_root .diff_card:hover {
  box-shadow: 0 12px 36px -1px #7719851f;
  transform: translateY(-4px)
}

.rt_root .diff_card .card_icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #771985, #844BC3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px
}

.rt_root .diff_card .card_icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.rt_root .diff_card .card_h4 {
  font-size: 21px;
  line-height: 1.2;
  color: #2a0030;
  margin-bottom: 12px
}

.rt_root .diff_card .card_p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3050
}

.rt_root .diff_img_row {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center
}

.rt_root .diff_img_wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px -1px #77198514;
  position: relative
}

.rt_root .diff_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #77198559 0%, transparent 60%);
  pointer-events: none
}

.rt_root .diff_img_wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.rt_root .diff_img_wrap:hover img {
  transform: scale(1.04)
}

.rt_root .diff_txt_col {
  padding: 24px
}

.rt_root .diff_txt_col .col_h3 {
  font-size: 28px;
  line-height: 1.2;
  color: #2a0030;
  margin-bottom: 12px;
  text-shadow: 0 1px 6px #7719851a
}

.rt_root .diff_txt_col .col_p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3050;
  margin-bottom: 12px
}

.rt_root .support_sec {
  padding: 96px;
  background: linear-gradient(158deg, #f5eef8 0%, #ede0f5 100%);
  position: relative
}

.rt_root .support_sec .spotlight_bg::before {
  background: radial-gradient(ellipse at center, #844bc31f 0%, transparent 70%)
}

.rt_root .support_layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 52px;
  align-items: start
}

.rt_root .support_left .sec_h2 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #2a0030;
  text-shadow: 0 2px 12px #7719851a;
  margin-bottom: 24px
}

.rt_root .support_left .lead_p {
  font-size: 21px;
  line-height: 1.6;
  color: #4a3050;
  margin-bottom: 24px;
  max-width: 520px
}

.rt_root .support_items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px
}

.rt_root .sup_item {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 3px 2px -1px #77198512;
  transition: box-shadow .6s ease
}

.rt_root .sup_item:hover {
  box-shadow: 0 4px 28px -1px #77198514
}

.rt_root .sup_item .sup_dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #771985;
  margin-top: 6px;
  flex-shrink: 0
}

.rt_root .sup_item .sup_txt {
  font-size: 17px;
  line-height: 1.6;
  color: #2a0030
}

.rt_root .support_right {
  position: relative
}

.rt_root .sup_img_wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px -1px #7719851f;
  position: relative
}

.rt_root .sup_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #77198540 0%, transparent 50%);
  pointer-events: none
}

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

.rt_root .sup_img_wrap:hover img {
  transform: scale(1.05)
}

.rt_root .arrow_div2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 0
}

.rt_root .arrow_div2 .arr2 {
  width: 12px;
  height: 12px;
  border-right: 2px solid #844BC3;
  border-bottom: 2px solid #844BC3;
  transform: rotate(-45deg);
  opacity: .4
}

.rt_root .arrow_div2 .arr2:nth-child(2) {
  opacity: .65
}

.rt_root .arrow_div2 .arr2:nth-child(3) {
  opacity: .9
}

.rt_root .invest_sec {
  padding: 96px;
  background: #fff;
  position: relative
}

.rt_root .invest_sec .sec_label {
  font-size: 14px;
  letter-spacing: .1em;
  color: #771985;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase
}

.rt_root .invest_sec .sec_h2 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-align: center;
  color: #2a0030;
  text-shadow: 0 2px 12px #77198514;
  margin-bottom: 52px
}

.rt_root .invest_layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px
}

.rt_root .inv_card {
  border-radius: 16px;
  border: 2px dashed #DCAFE0;
  padding: 24px;
  text-align: center;
  transition: border-color .6s ease, box-shadow .6s ease;
  position: relative
}

.rt_root .inv_card:hover {
  border-color: #844BC3;
  box-shadow: 0 4px 28px -1px #77198514
}

.rt_root .inv_card.featured {
  border-color: #771985 !important;
  background: linear-gradient(158deg, #faf5fc 0%, #f0e4f7 100%);
  box-shadow: 0 12px 36px -1px #7719851f
}

.rt_root .inv_card .badge {
  display: inline-block;
  background: #771985;
  color: #fff;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 40px;
  margin-bottom: 12px
}

.rt_root .inv_card .plan_name {
  font-size: 21px;
  line-height: 1.2;
  color: #2a0030;
  margin-bottom: 6px
}

.rt_root .inv_card .plan_price {
  font-size: 54px;
  line-height: 1.2;
  color: #771985;
  letter-spacing: -.02em;
  margin-bottom: 6px
}

.rt_root .inv_card .plan_period {
  font-size: 14px;
  color: #7a5a85;
  margin-bottom: 24px
}

.rt_root .inv_card .plan_desc {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3050
}

.rt_root .info_row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #faf5fc;
  border-radius: 16px;
  padding: 24px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 3px 2px -1px #77198512
}

.rt_root .info_pair {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e8d8ee
}

.rt_root .info_pair:last-child {
  border-bottom: none
}

.rt_root .info_pair .lbl {
  font-size: 14px;
  color: #7a5a85;
  letter-spacing: .05em
}

.rt_root .info_pair .val {
  font-size: 17px;
  color: #2a0030;
  font-weight: 600
}

.rt_root .hesit_sec {
  padding: 96px;
  background: linear-gradient(158deg, #2a0030 0%, #771985 60%, #844BC3 100%);
  position: relative
}

.rt_root .hesit_sec .spotlight_bg::before {
  background: radial-gradient(ellipse at center, #dcafe01f 0%, transparent 70%)
}

.rt_root .hesit_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center
}

.rt_root .hesit_left .sec_h2 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  text-shadow: 0 4px 24px #00000040;
  margin-bottom: 24px
}

.rt_root .hesit_left .lead_p {
  font-size: 17px;
  line-height: 1.6;
  color: #ffffffd9;
  margin-bottom: 24px;
  max-width: 480px
}

.rt_root .hesit_right {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.rt_root .hesit_card {
  background: #ffffff1a;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #dcafe040;
  backdrop-filter: blur(6px);
  transition: background .6s ease, border-color .5s ease
}

.rt_root .hesit_card:hover {
  background: #ffffff29;
  border-color: #dcafe080
}

.rt_root .hesit_card .q_txt {
  font-size: 17px;
  line-height: 1.6;
  color: #DCAFE0;
  font-weight: 600;
  margin-bottom: 6px
}

.rt_root .hesit_card .a_txt {
  font-size: 17px;
  line-height: 1.6;
  color: #fffc
}

.rt_root .testimonial_strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-top: 52px;
  background: #ffffff14;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #dcafe033
}

.rt_root .testi_portrait {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid #dcafe080
}

.rt_root .testi_portrait img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center;
  display: block
}

.rt_root .testi_body .testi_q {
  font-size: 17px;
  line-height: 1.6;
  color: #ffffffe0;
  margin-bottom: 6px
}

.rt_root .testi_body .testi_name {
  font-size: 14px;
  color: #DCAFE0
}

.rt_root .arrow_div3 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 12px 0
}

.rt_root .arrow_div3 .arr3 {
  width: 12px;
  height: 12px;
  border-right: 2px solid #DCAFE0;
  border-bottom: 2px solid #DCAFE0;
  transform: rotate(-45deg);
  opacity: .4
}

.rt_root .arrow_div3 .arr3:nth-child(2) {
  opacity: .65
}

.rt_root .arrow_div3 .arr3:nth-child(3) {
  opacity: .9
}

.rt_root .offer_sec {
  padding: 96px;
  background: #f5eef8
}

.rt_root .offer_sec .sec_label {
  font-size: 14px;
  letter-spacing: .1em;
  color: #771985;
  text-align: center;
  margin-bottom: 12px;
  text-transform: uppercase
}

.rt_root .offer_sec .sec_h2 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-align: center;
  color: #2a0030;
  text-shadow: 0 2px 12px #77198514;
  margin-bottom: 12px
}

.rt_root .offer_sec .sec_sub {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3050;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 52px
}

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

.rt_root .off_card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px -1px #77198514;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow .7s ease, transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.rt_root .off_card:hover {
  box-shadow: 0 12px 36px -1px #7719851f;
  transform: translateY(-4px)
}

.rt_root .off_card .off_img_wrap {
  position: relative;
  overflow: hidden
}

.rt_root .off_card .off_img_wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.rt_root .off_card:hover .off_img_wrap img {
  transform: scale(1.05)
}

.rt_root .off_card .off_img_wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, #77198566 100%);
  pointer-events: none
}

.rt_root .off_card .off_body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.rt_root .off_card .off_tag {
  font-size: 14px;
  color: #771985;
  letter-spacing: .06em;
  text-transform: uppercase
}

.rt_root .off_card .off_h4 {
  font-size: 21px;
  line-height: 1.2;
  color: #2a0030
}

.rt_root .off_card .off_p {
  font-size: 17px;
  line-height: 1.6;
  color: #4a3050;
  flex: 1
}

.rt_root .off_card .off_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 17px;
  color: #771985;
  text-decoration: none;
  font-weight: 600;
  transition: color .5s ease
}

.rt_root .off_card .off_link:hover {
  color: #844BC3
}

.rt_root .off_card .off_link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .5s ease
}

.rt_root .off_card .off_link:hover svg {
  transform: translateX(4px)
}

.rt_root .off_card.wide {
  grid-column: span 2;
  flex-direction: row
}

.rt_root .off_card.wide .off_img_wrap {
  width: 40%;
  flex-shrink: 0
}

.rt_root .off_card.wide .off_img_wrap img {
  height: 100%;
  min-height: 220px
}

.rt_root .off_card.wide .off_body {
  flex: 1
}

@media (max-width: 1200px) {
  .rt_root .title_blk {
    padding: 52px 52px 96px
  }

  .rt_root .title_blk .t_h1 {
    font-size: 54px
  }

  .rt_root .diff_sec {
    padding: 96px 52px 52px
  }

  .rt_root .diff_grid {
    grid-template-columns: 1fr 1fr
  }

  .rt_root .support_sec {
    padding: 96px 52px
  }

  .rt_root .invest_sec {
    padding: 96px 52px
  }

  .rt_root .hesit_sec {
    padding: 96px 52px
  }

  .rt_root .offer_sec {
    padding: 96px 52px
  }
}

@media (max-width: 992px) {
  .rt_root .title_blk {
    padding: 52px 24px 96px
  }

  .rt_root .title_blk .t_h1 {
    font-size: 54px
  }

  .rt_root .title_blk .t_actions {
    flex-direction: column;
    align-items: center
  }

  .rt_root .diff_sec {
    padding: 52px 24px
  }

  .rt_root .diff_grid {
    grid-template-columns: 1fr
  }

  .rt_root .diff_img_row {
    grid-template-columns: 1fr
  }

  .rt_root .support_sec {
    padding: 52px 24px
  }

  .rt_root .support_layout {
    grid-template-columns: 1fr
  }

  .rt_root .invest_sec {
    padding: 52px 24px
  }

  .rt_root .invest_layout {
    grid-template-columns: 1fr
  }

  .rt_root .hesit_sec {
    padding: 52px 24px
  }

  .rt_root .hesit_layout {
    grid-template-columns: 1fr
  }

  .rt_root .offer_sec {
    padding: 52px 24px
  }

  .rt_root .offer_grid {
    grid-template-columns: 1fr
  }

  .rt_root .off_card.wide {
    flex-direction: column;
    grid-column: span 1
  }

  .rt_root .off_card.wide .off_img_wrap {
    width: 100%
  }

  .rt_root .off_card.wide .off_img_wrap img {
    height: 220px
  }

  .rt_root .testimonial_strip {
    flex-direction: column;
    text-align: center
  }
}

@media (max-width: 576px) {
  .rt_root .title_blk .t_h1 {
    font-size: 28px
  }

  .rt_root .title_blk .t_sub {
    font-size: 17px
  }

  .rt_root .diff_sec .sec_h2 {
    font-size: 28px
  }

  .rt_root .support_left .sec_h2 {
    font-size: 28px
  }

  .rt_root .invest_sec .sec_h2 {
    font-size: 28px
  }

  .rt_root .hesit_left .sec_h2 {
    font-size: 28px
  }

  .rt_root .offer_sec .sec_h2 {
    font-size: 28px
  }

  .rt_root .inv_card .plan_price {
    font-size: 28px
  }

  .rt_root .btn_pri {
    padding: 12px 24px
  }

  .rt_root .btn_ghost {
    padding: 12px 24px
  }
}

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

.ct_pg .grad_band {
  height: 6px;
  background: linear-gradient(90deg, #771985 0%, #844BC3 50%, #DCAFE0 100%);
  width: 100%
}

.ct_pg .top_blk {
  position: relative;
  padding: 96px 24px;
  background: linear-gradient(135deg, #771985 0%, #844BC3 60%, #DCAFE0 100%);
  background-size: 300% 300%;
  animation: bg_shift 6s ease infinite;
  overflow: hidden
}

@keyframes bg_shift {
  0% {
    background-position: 0 50%
  }

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

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

.ct_pg .top_blk::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse at center, #dcafe059 0%, transparent 70%);
  border-radius: 40px;
  pointer-events: none
}

.ct_pg .top_blk::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at center, #844bc34d 0%, transparent 70%);
  border-radius: 40px;
  pointer-events: none
}

.ct_pg .top_inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 52px;
  position: relative;
  z-index: 1
}

.ct_pg .top_txt {
  flex: 1;
  text-align: left
}

.ct_pg .top_tag {
  display: inline-block;
  background: #ffffff2e;
  color: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  padding: 6px 24px;
  border-radius: 26px;
  margin-bottom: 24px;
  border: 1px solid #ffffff4d
}

.ct_pg .top_h1 {
  font-size: 54px;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px #7719854d
}

.ct_pg .top_desc {
  font-size: 17px;
  line-height: 1.6;
  color: #ffffffe0;
  max-width: 480px
}

.ct_pg .top_img_wrap {
  flex: 0 0 420px;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px -1px #7719851f
}

.ct_pg .top_img_wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, #77198559 0%, transparent 60%);
  pointer-events: none
}

.ct_pg .top_img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ct_pg .top_img_wrap:hover .top_img {
  transform: scale(1.04)
}

.ct_pg .top_img_wrap:hover {
  box-shadow: 0 12px 36px -1px #77198538
}

.ct_pg .info_strip {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 52px;
  flex-wrap: wrap
}

.ct_pg .info_item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: #ffffff21;
  border: 1px solid #ffffff38;
  border-radius: 10px;
  padding: 12px 24px;
  flex: 1;
  min-width: 200px;
  transition: background .5s ease
}

.ct_pg .info_item:hover {
  background: #ffffff38
}

.ct_pg .info_icon {
  width: 36px;
  height: 36px;
  background: #fff3;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ct_pg .info_icon .oi {
  color: #fff;
  font-size: 17px
}

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

.ct_pg .info_lbl {
  font-size: 14px;
  color: #ffffffb3;
  line-height: 1.2
}

.ct_pg .info_data {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  font-weight: 600
}

.ct_pg .info_data a {
  color: #fff;
  text-decoration: none;
  transition: opacity .5s ease
}

.ct_pg .info_data a:hover {
  opacity: .8
}

.ct_pg .form_blk {
  padding: 96px 24px;
  background: #fff;
  position: relative
}

.ct_pg .form_blk::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 80% 20%, #dcafe02e 0%, transparent 60%);
  pointer-events: none
}

.ct_pg .diag_accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(145deg, #dcafe01f 0%, #844bc30f 100%);
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none
}

.ct_pg .form_inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 96px;
  align-items: flex-start;
  position: relative;
  z-index: 1
}

.ct_pg .form_aside {
  flex: 0 0 340px;
  padding-top: 12px
}

.ct_pg .aside_icon_lg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #771985 0%, #844BC3 100%);
  border-radius: 26px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 28px -1px #77198514
}

.ct_pg .aside_icon_lg .oi {
  color: #fff;
  font-size: 28px
}

.ct_pg .aside_h2 {
  font-size: 28px;
  line-height: 1.2;
  color: #1b0a1e;
  letter-spacing: -.01em;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px #77198512
}

.ct_pg .aside_desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3d2044;
  margin-bottom: 52px
}

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

.ct_pg .step_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ct_pg .step_row:hover {
  transform: translateX(6px)
}

.ct_pg .step_num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #771985 0%, #844BC3 100%);
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0
}

.ct_pg .step_txt {
  font-size: 14px;
  line-height: 1.6;
  color: #3d2044;
  padding-top: 6px
}

.ct_pg .form_card {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  padding: 52px;
  box-shadow: 0 3px 2px -1px #77198512 0 4px 28px -1px #77198514;
  border: 1px solid #dcafe066
}

.ct_pg .form_card form {
  display: flex;
  flex-direction: column;
  gap: 24px
}

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

.ct_pg .field_lbl {
  font-size: 14px;
  color: #1b0a1e;
  font-weight: 600;
  line-height: 1.2
}

.ct_pg .field_inp {
  width: 100%;
  padding: 12px 24px;
  border: 1.5px solid #dcafe099;
  border-radius: 10px;
  font-size: 17px;
  color: #1b0a1e;
  background: #fdf8fe;
  outline: none;
  transition: border-color .5s ease, box-shadow .5s ease;
  box-sizing: border-box
}

.ct_pg .field_inp::placeholder {
  color: #9e7aaa
}

.ct_pg .field_inp:focus {
  border-color: #844BC3;
  box-shadow: 0 4px 28px -1px #844bc314
}

.ct_pg .budget_lbl {
  font-size: 14px;
  color: #1b0a1e;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px
}

.ct_pg .budget_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px
}

.ct_pg .budget_opt {
  position: relative
}

.ct_pg .budget_opt input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0
}

.ct_pg .budget_opt label {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1.5px solid #dcafe099;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  color: #3d2044;
  background: #fdf8fe;
  transition: border-color .6s ease, background .6s ease, box-shadow .6s ease;
  line-height: 1.2
}

.ct_pg .budget_opt label::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 40px;
  border: 2px solid #dcafe0cc;
  flex-shrink: 0;
  transition: border-color .5s ease, background .5s ease;
  background: #fff
}

.ct_pg .budget_opt input[type="radio"]:checked+label {
  border-color: #771985;
  background: #7719850d;
  box-shadow: 0 3px 2px -1px #77198512
}

.ct_pg .budget_opt input[type="radio"]:checked+label::before {
  border-color: #771985;
  background: #771985;
  box-shadow: inset 0 0 0 3px #fff
}

.ct_pg .budget_opt input[type="radio"]:focus+label {
  outline: 2px solid #844BC3;
  outline-offset: 2px
}

.ct_pg .privacy_row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.ct_pg .privacy_row .pretty {
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px
}

.ct_pg .privacy_row .pretty .state label {
  font-size: 14px;
  color: #3d2044;
  line-height: 1.6
}

.ct_pg .privacy_row .pretty input {
  cursor: pointer
}

.ct_pg .privacy_txt {
  font-size: 14px;
  color: #3d2044;
  line-height: 1.6
}

.ct_pg .privacy_txt a {
  color: #771985;
  text-decoration: underline;
  transition: opacity .5s ease
}

.ct_pg .privacy_txt a:hover {
  opacity: .75
}

.ct_pg .submit_btn {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 52px;
  background: #771985;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: box-shadow .6s ease, transform .5s ease;
  box-shadow: 0 4px 28px -1px #77198514;
  align-self: flex-start
}

.ct_pg .submit_btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #844BC3;
  transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.ct_pg .submit_btn:hover::before {
  left: 0
}

.ct_pg .submit_btn:hover {
  box-shadow: 0 12px 36px -1px #7719851f;
  transform: translateY(-2px)
}

.ct_pg .submit_btn:active {
  transform: translateY(0)
}

.ct_pg .submit_btn span {
  position: relative;
  z-index: 1
}

.ct_pg .submit_btn .oi {
  position: relative;
  z-index: 1
}

.ct_pg .form_h3 {
  font-size: 28px;
  line-height: 1.2;
  color: #1b0a1e;
  letter-spacing: -.01em;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px #77198512
}

.ct_pg .form_sub {
  font-size: 14px;
  color: #5a3a63;
  line-height: 1.6;
  margin-bottom: 24px
}

.ct_pg .overlay_anim {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #7719850a;
  animation: fade_overlay 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 0
}

@keyframes fade_overlay {

  0%,
  100% {
    opacity: 0
  }

  50% {
    opacity: 1
  }
}

@media (max-width: 992px) {
  .ct_pg .top_inner {
    flex-direction: column
  }

  .ct_pg .top_img_wrap {
    flex: 0 0 auto;
    width: 100%
  }

  .ct_pg .form_inner {
    flex-direction: column;
    gap: 52px
  }

  .ct_pg .form_aside {
    flex: 0 0 auto;
    width: 100%
  }

  .ct_pg .form_card {
    padding: 24px
  }

  .ct_pg .budget_grid {
    grid-template-columns: 1fr
  }

  .ct_pg .info_strip {
    flex-direction: column
  }
}

@media (max-width: 576px) {
  .ct_pg .top_h1 {
    font-size: 28px
  }

  .ct_pg .top_blk {
    padding: 52px 24px
  }

  .ct_pg .form_blk {
    padding: 52px 24px
  }

  .ct_pg .submit_btn {
    width: 100%;
    padding: 12px 24px
  }

  .ct_pg .info_item {
    min-width: unset
  }
}

@media (min-width: 1200px) {
  .ct_pg .form_inner {
    align-items: flex-start
  }
}

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

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

.lrn_prog .ttl_blk {
  background: #fff;
  padding: 52px 24px;
  position: relative;
  text-align: center
}

.lrn_prog .ttl_blk .circ_deco {
  position: absolute;
  border-radius: 50%;
  opacity: .07;
  pointer-events: none
}

.lrn_prog .ttl_blk .circ_deco.c1 {
  width: 320px;
  height: 320px;
  background: #771985;
  top: -80px;
  left: -60px
}

.lrn_prog .ttl_blk .circ_deco.c2 {
  width: 200px;
  height: 200px;
  background: #844BC3;
  bottom: -40px;
  right: 80px
}

.lrn_prog .ttl_blk .circ_deco.c3 {
  width: 120px;
  height: 120px;
  background: #771985;
  top: 30px;
  right: 200px
}

.lrn_prog .ttl_inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto
}

.lrn_prog .ttl_eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .12em;
  color: #771985;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 6px 24px;
  border: 1.5px solid #DCAFE0;
  border-radius: 40px;
  background: #fff
}

.lrn_prog .ttl_h1 {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 800;
  color: #1d0a21;
  letter-spacing: -.03em;
  margin: 0 0 24px;
  text-shadow: 0 4px 24px #7719851a
}

.lrn_prog .ttl_sub {
  font-size: 21px;
  line-height: 1.6;
  color: #3d2244;
  max-width: 560px;
  margin: 0 auto 24px
}

.lrn_prog .ttl_rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f5edf7;
  border-radius: 26px;
  padding: 6px 24px;
  font-size: 14px;
  color: #3d2244
}

.lrn_prog .ttl_rating .stars {
  display: flex;
  gap: 6px
}

.lrn_prog .ttl_rating .star_svg {
  width: 16px;
  height: 16px
}

.lrn_prog .wave_div {
  width: 100%;
  line-height: 0;
  overflow: hidden
}

.lrn_prog .wave_div svg {
  display: block;
  width: 100%
}

.lrn_prog .prog_det {
  background: #fff;
  padding: 96px 24px;
  position: relative
}

.lrn_prog .prog_det_bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f5edf7 0%, #fff 55%, #eee6f5 100%);
  pointer-events: none
}

.lrn_prog .prog_det_inner {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1
}

.lrn_prog .prog_det_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  align-items: start
}

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

.lrn_prog .prog_label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #844BC3;
  margin-bottom: 12px
}

.lrn_prog .prog_h2 {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 800;
  color: #1d0a21;
  letter-spacing: -.02em;
  text-shadow: 0 3px 18px #844bc31a;
  margin: 0 0 12px
}

.lrn_prog .prog_desc {
  font-size: 17px;
  line-height: 1.6;
  color: #3d2244;
  max-width: 520px
}

.lrn_prog .prog_img_wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px -1px #7719851f;
  position: relative;
  aspect-ratio: 4/3;
  transition: box-shadow .6s ease
}

.lrn_prog .prog_img_wrap:hover {
  box-shadow: 0 12px 36px -1px #77198538
}

.lrn_prog .prog_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn_prog .prog_img_wrap:hover img {
  transform: scale(1.05)
}

.lrn_prog .prog_img_fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, #7719852e 100%);
  pointer-events: none
}

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

.lrn_prog .mod_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 2px -1px #77198512;
  transition: box-shadow .5s ease, transform .5s ease
}

.lrn_prog .mod_item:hover {
  box-shadow: 0 4px 28px -1px #77198514;
  transform: translateY(-2px)
}

.lrn_prog .mod_num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, #771985, #844BC3);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center
}

.lrn_prog .mod_text {
  font-size: 14px;
  line-height: 1.6;
  color: #3d2244;
  font-weight: 500
}

.lrn_prog .side_card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 28px -1px #77198514;
  display: flex;
  flex-direction: column;
  gap: 24px
}

.lrn_prog .side_card.accent_bg {
  background: linear-gradient(160deg, #771985 0%, #844BC3 100%);
  color: #fff
}

.lrn_prog .stat_item {
  text-align: center
}

.lrn_prog .stat_big {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 800;
  color: #771985;
  letter-spacing: -.03em
}

.lrn_prog .stat_big sup {
  font-size: 21px;
  font-weight: 700;
  color: #844BC3;
  vertical-align: super
}

.lrn_prog .stat_label {
  font-size: 14px;
  color: #5c3d6e;
  line-height: 1.6
}

.lrn_prog .side_card.accent_bg .stat_big {
  color: #fff
}

.lrn_prog .side_card.accent_bg sup {
  color: #DCAFE0
}

.lrn_prog .side_card.accent_bg .stat_label {
  color: #DCAFE0
}

.lrn_prog .side_card.accent_bg .prog_label {
  color: #DCAFE0
}

.lrn_prog .divider_line {
  height: 1px;
  background: #dcafe066
}

.lrn_prog .side_card.accent_bg .divider_line {
  background: #fff3
}

.lrn_prog .feat_row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #3d2244
}

.lrn_prog .side_card.accent_bg .feat_row {
  color: #f0e0f4
}

.lrn_prog .feat_icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: #dcafe04d;
  display: flex;
  align-items: center;
  justify-content: center
}

.lrn_prog .side_card.accent_bg .feat_icon {
  background: #ffffff26
}

.lrn_prog .feat_icon .oi {
  font-size: 14px;
  color: #771985
}

.lrn_prog .side_card.accent_bg .feat_icon .oi {
  color: #DCAFE0
}

.lrn_prog .wave2_div {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #fff
}

.lrn_prog .wave2_div svg {
  display: block;
  width: 100%
}

.lrn_prog .social_sec {
  background: #f5edf7;
  padding: 96px 24px;
  position: relative
}

.lrn_prog .spiral_deco {
  position: absolute;
  top: 52px;
  right: 52px;
  width: 80px;
  height: 80px;
  opacity: .12;
  pointer-events: none
}

.lrn_prog .social_inner {
  max-width: 1600px;
  margin: 0 auto
}

.lrn_prog .social_header {
  text-align: center;
  margin-bottom: 52px
}

.lrn_prog .social_h2 {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 800;
  color: #1d0a21;
  letter-spacing: -.02em;
  text-shadow: 0 3px 16px #77198517;
  margin: 0 0 12px
}

.lrn_prog .social_sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3d2244;
  max-width: 480px;
  margin: 0 auto
}

.lrn_prog .social_layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start
}

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

.lrn_prog .testi_card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 28px -1px #77198514;
  transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn_prog .testi_card:hover {
  box-shadow: 0 12px 36px -1px #7719851f;
  transform: translateY(-3px)
}

.lrn_prog .testi_top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px
}

.lrn_prog .testi_avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid #DCAFE0
}

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

.lrn_prog .testi_avatar.no_img {
  background: linear-gradient(135deg, #771985, #844BC3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 21px;
  font-weight: 700
}

.lrn_prog .testi_name {
  font-size: 17px;
  font-weight: 700;
  color: #1d0a21;
  line-height: 1.2
}

.lrn_prog .testi_role {
  font-size: 14px;
  color: #844BC3;
  line-height: 1.6
}

.lrn_prog .testi_quote {
  font-size: 17px;
  line-height: 1.6;
  color: #3d2244
}

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

.lrn_prog .offer_card {
  background: linear-gradient(155deg, #771985 0%, #844BC3 100%);
  border-radius: 16px;
  padding: 52px 24px;
  text-align: center;
  color: #fff;
  box-shadow: 0 12px 36px -1px #7719851f;
  position: relative
}

.lrn_prog .offer_card_label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #DCAFE0;
  margin-bottom: 12px
}

.lrn_prog .offer_price_big {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em
}

.lrn_prog .offer_price_big sup {
  font-size: 28px;
  font-weight: 700;
  color: #DCAFE0;
  vertical-align: super
}

.lrn_prog .offer_period {
  font-size: 14px;
  color: #DCAFE0;
  margin-bottom: 24px
}

.lrn_prog .offer_h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 2px 12px #00000026
}

.lrn_prog .offer_desc {
  font-size: 17px;
  line-height: 1.6;
  color: #e8d0ec;
  margin-bottom: 24px
}

.lrn_prog .btn_primary {
  display: inline-block;
  padding: 12px 52px;
  background: #fff;
  color: #771985;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .55s ease, box-shadow .55s ease;
  box-shadow: 0 3px 2px -1px #77198512
}

.lrn_prog .btn_primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #771985, #844BC3);
  transform: translateX(-100%);
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.lrn_prog .btn_primary:hover::before {
  transform: translateX(0)
}

.lrn_prog .btn_primary:hover {
  color: #fff;
  box-shadow: 0 4px 28px -1px #7719852e
}

.lrn_prog .btn_primary span {
  position: relative;
  z-index: 1
}

.lrn_prog .btn_secondary {
  display: inline-block;
  padding: 12px 52px;
  background: transparent;
  color: #771985;
  font-size: 17px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  border: 2px solid #771985;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color .55s ease, border-color .55s ease
}

.lrn_prog .btn_secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #771985;
  transform: translateX(-100%);
  transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.lrn_prog .btn_secondary:hover::before {
  transform: translateX(0)
}

.lrn_prog .btn_secondary:hover {
  color: #fff
}

.lrn_prog .btn_secondary span {
  position: relative;
  z-index: 1
}

.lrn_prog .img_card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px -1px #77198514;
  aspect-ratio: 16/9;
  position: relative
}

.lrn_prog .img_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn_prog .img_card:hover img {
  transform: scale(1.05)
}

.lrn_prog .img_fade_overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #7719851f 0%, transparent 60%);
  pointer-events: none
}

.lrn_prog .wave3_div {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  background: #f5edf7
}

.lrn_prog .wave3_div svg {
  display: block;
  width: 100%
}

@media (max-width: 992px) {
  .lrn_prog .ttl_h1 {
    font-size: 54px
  }

  .lrn_prog .prog_det_grid {
    grid-template-columns: 1fr 1fr
  }

  .lrn_prog .prog_main_col {
    grid-column: 1 / -1
  }

  .lrn_prog .social_layout {
    grid-template-columns: 1fr
  }

  .lrn_prog .social_h2 {
    font-size: 28px
  }
}

@media (max-width: 576px) {
  .lrn_prog .ttl_h1 {
    font-size: 28px
  }

  .lrn_prog .prog_h2 {
    font-size: 28px
  }

  .lrn_prog .prog_det_grid {
    grid-template-columns: 1fr
  }

  .lrn_prog .prog_det {
    padding: 52px 24px
  }

  .lrn_prog .social_sec {
    padding: 52px 24px
  }

  .lrn_prog .offer_price_big {
    font-size: 54px
  }

  .lrn_prog .stat_big {
    font-size: 28px
  }

  .lrn_prog .btn_primary,
  .lrn_prog .btn_secondary {
    padding: 12px 24px;
    font-size: 14px
  }
}

.abt {
  max-width: 1600px;
  margin: 0 auto;
  overflow-x: clip
}

.abt .sec-one {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 52px;
  padding: 96px 52px;
  align-items: center;
  position: relative
}

.abt .sec-one::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, #f5eef7 0%, #fff 60%);
  z-index: 0
}

.abt .sec-one .txt_col {
  position: relative;
  z-index: 1
}

.abt .sec-one .img_col {
  position: relative;
  z-index: 1
}

.abt .sec-one .img_col .deco_bg {
  position: absolute;
  top: -24px;
  right: -24px;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: radial-gradient(ellipse at center, #844bc32e 0%, transparent 70%);
  z-index: 0;
  pointer-events: none
}

.abt .sec-one .img_col .portrait_wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 12px 36px -1px #7719851f
}

.abt .sec-one .img_col .portrait_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .sec-one .img_col .portrait_wrap:hover img {
  transform: scale(1.04)
}

.abt .sec-one .img_col .dashed_border {
  position: absolute;
  top: 16px;
  left: -16px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border: 2px dashed #77198559;
  border-radius: 5px;
  z-index: 2;
  pointer-events: none
}

.abt .sec-one .tag_line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #77198514;
  border-radius: 40px;
  padding: 6px 24px;
  margin-bottom: 24px
}

.abt .sec-one .tag_line span {
  font-size: 14px;
  color: #771985;
  font-weight: 600;
  letter-spacing: .04em
}

.abt .sec-one .h1_wrap {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px
}

.abt .sec-one .h1_wrap h1 {
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1b0a1e;
  margin: 0;
  text-shadow: 0 4px 18px #7719851a
}

.abt .sec-one .h1_wrap h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #771985, #844BC3);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent
}

.abt .sec-one .live_count {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #771985;
  color: #fff;
  border-radius: 10px;
  padding: 12px 24px;
  min-width: 96px;
  flex-shrink: 0;
  margin-top: 12px;
  box-shadow: 0 4px 28px -1px #77198514
}

.abt .sec-one .live_count .num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2
}

.abt .sec-one .live_count .lbl {
  font-size: 14px;
  line-height: 1.6;
  opacity: .88;
  text-align: center
}

.abt .sec-one .lead_p {
  font-size: 21px;
  line-height: 1.6;
  color: #3d1a45;
  margin: 0 0 24px;
  max-width: 560px
}

.abt .sec-one .metrics_row {
  display: flex;
  flex-direction: row;
  gap: 52px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 2px solid #7719851f
}

.abt .sec-one .metric_item {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.abt .sec-one .metric_item .big_num {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  color: #771985;
  letter-spacing: -.02em
}

.abt .sec-one .metric_item .metric_lbl {
  font-size: 14px;
  line-height: 1.6;
  color: #5a3660
}

.abt .sec-one .divider_double {
  width: 64px;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.abt .sec-one .divider_double span {
  display: block;
  height: 1px;
  background: #7719854d;
  width: 100%
}

.abt .sec-two {
  position: relative;
  padding: 96px 52px;
  background: #2a0d30;
  overflow: hidden
}

.abt .sec-two .bg_img_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0
}

.abt .sec-two .bg_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  mix-blend-mode: luminosity;
  opacity: .18
}

.abt .sec-two .bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #771985d1 0%, #2a0d30f2 100%);
  mix-blend-mode: multiply;
  z-index: 1;
  pointer-events: none
}

.abt .sec-two .drift_accent {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 40px;
  background: radial-gradient(ellipse at center, #844bc338 0%, transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
  animation: drift_move 7s ease-in-out infinite alternate
}

@keyframes drift_move {
  0% {
    transform: translate(0, 0);
    opacity: .7
  }

  100% {
    transform: translate(-60px, 80px);
    opacity: 1
  }
}

.abt .sec-two .rel_wrap {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto
}

.abt .sec-two .top_label {
  font-size: 14px;
  letter-spacing: .08em;
  color: #DCAFE0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
  text-align: center
}

.abt .sec-two .sec_h2 {
  font-size: 54px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  text-align: center;
  margin: 0 0 52px;
  text-shadow: 0 3px 2px #7719852e 0 12px 36px #77198538
}

.abt .sec-two .cols_312 {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 24px;
  align-items: start
}

.abt .sec-two .card_item {
  background: #ffffff0f;
  border-radius: 16px;
  padding: 24px;
  position: relative;
  box-shadow: 0 3px 2px -1px #77198512 0 4px 28px -1px #77198514;
  transition: background .5s ease, box-shadow .6s ease
}

.abt .sec-two .card_item:hover {
  background: #ffffff1a;
  box-shadow: 0 3px 2px -1px #7719851f 0 12px 36px -1px #77198538
}

.abt .sec-two .card_item .corner_acc {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: #771985;
  border-radius: 0 16px 0 26px
}

.abt .sec-two .card_item h4 {
  font-size: 17px;
  line-height: 1.6;
  color: #DCAFE0;
  margin: 0 0 12px;
  font-weight: 700
}

.abt .sec-two .card_item p {
  font-size: 14px;
  line-height: 1.6;
  color: #dcafe0cc;
  margin: 0
}

.abt .sec-two .card_item.big {
  padding: 52px 24px 24px
}

.abt .sec-two .card_item.big h3 {
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -.01em;
  text-shadow: 0 3px 2px #77198512
}

.abt .sec-two .card_item.big .big_p {
  font-size: 17px;
  line-height: 1.6;
  color: #ffffffd1;
  margin: 0 0 24px
}

.abt .sec-two .card_item.big .img_thumb {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 24px
}

.abt .sec-two .card_item.big .img_thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .sec-two .card_item.big .img_thumb:hover img {
  transform: scale(1.05)
}

.abt .sec-two .card_item.big .micro_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.abt .sec-two .card_item.big .micro_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #dcafe0d9
}

.abt .sec-two .card_item.big .micro_list li .dot_acc {
  width: 8px;
  height: 8px;
  border-radius: 40px;
  background: #844BC3;
  flex-shrink: 0
}

.abt .sec-two .img_card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 28px -1px #77198514
}

.abt .sec-two .img_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .sec-two .img_card:hover img {
  transform: scale(1.04)
}

.abt .sec-two .img_card.tall {
  aspect-ratio: 3/4
}

.abt .sec-two .img_card.sq {
  aspect-ratio: 1/1
}

.abt .sec-two .bottom_row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
  align-items: start
}

.abt .sec-two .person_card {
  background: #ffffff0f;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 3px 2px -1px #77198512;
  transition: background .55s ease
}

.abt .sec-two .person_card:hover {
  background: #ffffff1a
}

.abt .sec-two .person_card .person_name {
  font-size: 17px;
  color: #fff;
  font-weight: 700;
  line-height: 1.2
}

.abt .sec-two .person_card .person_role {
  font-size: 14px;
  color: #DCAFE0;
  line-height: 1.6
}

.abt .sec-two .person_card .quote_txt {
  font-size: 14px;
  color: #dcafe0cc;
  line-height: 1.6;
  font-style: italic;
  margin: 0
}

.abt .sec-two .stat_block {
  background: #77198547;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 3px 2px -1px #77198512 0 4px 28px -1px #77198514
}

.abt .sec-two .stat_block .s_num {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  letter-spacing: -.02em
}

.abt .sec-two .stat_block .s_lbl {
  font-size: 14px;
  color: #DCAFE0;
  line-height: 1.6;
  text-align: center
}

.abt .sec-two .divider_dbl {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 52px 0 0
}

.abt .sec-two .divider_dbl span {
  display: block;
  height: 1px;
  background: #dcafe038
}

@media (max-width: 1200px) {
  .abt .sec-one {
    grid-template-columns: 1fr 340px;
    gap: 24px;
    padding: 52px 24px
  }

  .abt .sec-one .h1_wrap h1 {
    font-size: 54px
  }

  .abt .sec-two .cols_312 {
    grid-template-columns: 1fr 1fr
  }

  .abt .sec-two .card_item.big {
    grid-column: 1 / -1
  }

  .abt .sec-two {
    padding: 52px 24px
  }
}

@media (max-width: 992px) {
  .abt .sec-one {
    grid-template-columns: 1fr;
    padding: 52px 24px
  }

  .abt .sec-one .img_col {
    max-width: 320px;
    margin: 0 auto
  }

  .abt .sec-one .h1_wrap h1 {
    font-size: 54px
  }

  .abt .sec-one .metrics_row {
    gap: 24px
  }

  .abt .sec-two .cols_312 {
    grid-template-columns: 1fr
  }

  .abt .sec-two .bottom_row {
    grid-template-columns: 1fr
  }

  .abt .sec-two .sec_h2 {
    font-size: 28px
  }
}

@media (max-width: 576px) {
  .abt .sec-one .h1_wrap {
    flex-direction: column;
    gap: 12px
  }

  .abt .sec-one .h1_wrap h1 {
    font-size: 28px
  }

  .abt .sec-one .metrics_row {
    flex-direction: column;
    gap: 12px
  }

  .abt .sec-one .metric_item .big_num {
    font-size: 28px
  }

  .abt .sec-two .sec_h2 {
    font-size: 21px
  }

  .abt .sec-two {
    padding: 52px 12px
  }

  .abt .sec-one {
    padding: 52px 12px
  }
}

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

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

.srv_pg a {
  color: #771985;
  text-decoration: underline;
  transition: opacity .6s ease
}

.srv_pg a:hover {
  opacity: .75
}

.srv_pg .max_w {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px
}

.srv_pg .ttl_blk {
  padding-top: 96px;
  padding-bottom: 52px;
  background: #fff;
  position: relative
}

.srv_pg .ttl_blk .max_w {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 52px
}

.srv_pg .ttl_left {
  flex: 1 1 55%;
  min-width: 0
}

.srv_pg .ttl_eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #771985;
  text-transform: uppercase;
  margin-bottom: 24px
}

.srv_pg .ttl_h1 {
  font-size: 70px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #1b0d20;
  margin: 0 0 24px;
  text-shadow: 0 4px 18px #7719851a
}

.srv_pg .ttl_h1 .accent_dot {
  color: #771985
}

.srv_pg .ttl_sub {
  font-size: 21px;
  line-height: 1.6;
  color: #3a2040;
  max-width: 520px;
  margin: 0
}

.srv_pg .ttl_img_col {
  flex: 0 0 420px;
  max-width: 420px
}

.srv_pg .ttl_img_wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 36px -1px #7719851f;
  opacity: 0;
  animation: srv_fade_in .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s forwards
}

.srv_pg .ttl_img_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.srv_pg .ttl_img_wrap:hover img {
  transform: scale(1.04)
}

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

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

.srv_pg .ttl_h1_wrap {
  clip-path: inset(0 100% 0 0);
  animation: srv_wipe .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .05s forwards
}

@keyframes srv_wipe {
  from {
    clip-path: inset(0 100% 0 0)
  }

  to {
    clip-path: inset(0 0% 0 0)
  }
}

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

.srv_pg .mosaic_blk {
  background: #f4edf6;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative
}

.srv_pg .mosaic_blk .zigzag_bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='30'%3E%3Cpolyline points='0,30 10,0 20,30 30,0 40,30 50,0 60,30' fill='none' stroke='%23844BC3' stroke-width='1.2' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 60px 30px;
  pointer-events: none
}

.srv_pg .mosaic_blk .dots_corner {
  position: absolute;
  top: 24px;
  right: 52px;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: flex-end;
  pointer-events: none
}

.srv_pg .mosaic_blk .dots_corner span {
  background: #844BC3;
  border-radius: 40px;
  opacity: .18;
  display: block
}

.srv_pg .mosaic_blk .dots_corner span:nth-child(1) {
  width: 6px;
  height: 6px
}

.srv_pg .mosaic_blk .dots_corner span:nth-child(2) {
  width: 10px;
  height: 10px
}

.srv_pg .mosaic_blk .dots_corner span:nth-child(3) {
  width: 16px;
  height: 16px
}

.srv_pg .mosaic_blk .dots_corner span:nth-child(4) {
  width: 10px;
  height: 10px
}

.srv_pg .mosaic_blk .dots_corner span:nth-child(5) {
  width: 6px;
  height: 6px
}

.srv_pg .mosaic_lbl {
  text-align: center;
  margin-bottom: 52px
}

.srv_pg .mosaic_lbl h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: #1b0d20;
  margin: 0 0 12px;
  text-shadow: 0 3px 12px #7719851a
}

.srv_pg .mosaic_lbl p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a2040;
  margin: 0 auto;
  max-width: 560px
}

.srv_pg .mosaic_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px
}

.srv_pg .srv_card {
  background: #fff;
  border-radius: 16px;
  padding: 52px 24px 24px;
  box-shadow: 0 4px 28px -1px #77198514;
  position: relative;
  overflow: hidden;
  transition: box-shadow .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  clip-path: inset(0 0 0 0);
  animation: srv_wipe .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.srv_pg .srv_card:nth-child(1) {
  animation-delay: .1s
}

.srv_pg .srv_card:nth-child(2) {
  animation-delay: .2s
}

.srv_pg .srv_card:nth-child(3) {
  animation-delay: .3s
}

.srv_pg .srv_card:nth-child(4) {
  animation-delay: .15s
}

.srv_pg .srv_card:nth-child(5) {
  animation-delay: .25s
}

.srv_pg .srv_card:nth-child(6) {
  animation-delay: .35s
}

.srv_pg .srv_card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #771985, #844BC3);
  border-radius: 5px 0 0 5px;
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.srv_pg .srv_card:hover::before {
  transform: scaleY(1)
}

.srv_pg .srv_card:hover {
  box-shadow: 0 12px 36px -1px #7719851f;
  transform: translateY(-4px)
}

.srv_pg .card_num {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #DCAFE0;
  letter-spacing: .06em;
  line-height: 1.2
}

.srv_pg .card_icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #771985, #844BC3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px
}

.srv_pg .card_icon svg {
  width: 20px;
  height: 20px;
  fill: #fff
}

.srv_pg .srv_card h4 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  color: #1b0d20;
  margin: 0 0 12px
}

.srv_pg .srv_card p {
  font-size: 17px;
  line-height: 1.6;
  color: #3a2040;
  margin: 0
}

.srv_pg .srv_card.wide {
  grid-column: span 2
}

.srv_pg .expert_blk {
  background: #fff;
  padding-top: 96px;
  padding-bottom: 96px
}

.srv_pg .expert_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 52px;
  background: linear-gradient(120deg, #771985 0%, #844BC3 100%);
  border-radius: 26px;
  padding: 52px;
  box-shadow: 0 12px 36px -1px #7719851f;
  position: relative;
  overflow: hidden
}

.srv_pg .expert_inner::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 220px;
  height: 220px;
  border-radius: 40px;
  background: #dcafe01f;
  transform: rotate(20deg);
  pointer-events: none
}

.srv_pg .expert_portrait {
  flex: 0 0 160px;
  width: 160px;
  height: 160px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 4px 28px -1px #77198514;
  flex-shrink: 0
}

.srv_pg .expert_portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.srv_pg .expert_portrait:hover img {
  transform: scale(1.06)
}

.srv_pg .expert_text {
  flex: 1 1 auto;
  min-width: 0
}

.srv_pg .expert_quote {
  font-size: 21px;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 24px;
  font-style: italic
}

.srv_pg .expert_name {
  font-size: 17px;
  font-weight: 700;
  color: #DCAFE0;
  margin: 0 0 6px;
  line-height: 1.2
}

.srv_pg .expert_role {
  font-size: 14px;
  color: #dcafe0bf;
  line-height: 1.6;
  margin: 0
}

.srv_pg .expert_stats {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center
}

.srv_pg .stat_item {
  text-align: center;
  padding: 12px 24px;
  background: #ffffff1a;
  border-radius: 10px;
  min-width: 120px
}

.srv_pg .stat_num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  display: block
}

.srv_pg .stat_lbl {
  font-size: 14px;
  color: #DCAFE0;
  line-height: 1.6;
  display: block
}

.srv_pg .form_blk {
  background: #1b0d20;
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative
}

.srv_pg .form_blk .zigzag_bg_dark {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='30'%3E%3Cpolyline points='0,30 10,0 20,30 30,0 40,30 50,0 60,30' fill='none' stroke='%23DCAFE0' stroke-width='1' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 60px 30px;
  pointer-events: none
}

.srv_pg .form_wrap {
  display: flex;
  flex-direction: row;
  gap: 52px;
  align-items: flex-start;
  position: relative;
  z-index: 1
}

.srv_pg .form_left {
  flex: 0 0 380px;
  max-width: 380px
}

.srv_pg .form_left h2 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 3px 14px #844bc34d
}

.srv_pg .form_left h2 .accent_dot {
  color: #DCAFE0
}

.srv_pg .form_left p {
  font-size: 17px;
  line-height: 1.6;
  color: #DCAFE0;
  margin: 0
}

.srv_pg .form_right {
  flex: 1 1 auto;
  min-width: 0
}

.srv_pg .contact_form {
  background: #fff;
  border-radius: 16px;
  padding: 52px;
  box-shadow: 0 12px 36px -1px #7719851f
}

.srv_pg .form_row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 24px
}

.srv_pg .form_field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1 1 auto;
  min-width: 0
}

.srv_pg .form_field label {
  font-size: 14px;
  font-weight: 700;
  color: #1b0d20;
  letter-spacing: .04em;
  line-height: 1.2
}

.srv_pg .form_field input,
.srv_pg .form_field select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #DCAFE0;
  border-radius: 10px;
  font-size: 17px;
  color: #1b0d20;
  background: #fff;
  outline: none;
  transition: border-color .5s ease, box-shadow .5s ease;
  appearance: none;
  -webkit-appearance: none
}

.srv_pg .form_field input::placeholder {
  color: #a082a8
}

.srv_pg .form_field input:focus,
.srv_pg .form_field select:focus {
  border-color: #771985;
  box-shadow: 0 3px 2px -1px #77198512
}

.srv_pg .form_field input:focus-visible,
.srv_pg .form_field select:focus-visible {
  outline: 3px solid #771985 !important;
  outline-offset: 2px !important
}

.srv_pg .form_field.full {
  width: 100%;
  flex: 1 1 100%
}

.srv_pg .form_full_row {
  margin-bottom: 24px
}

.srv_pg .select_wrap {
  position: relative
}

.srv_pg .select_wrap select {
  width: 100%;
  padding-right: 40px;
  cursor: pointer
}

.srv_pg .select_wrap .sel_arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center
}

.srv_pg .select_wrap .sel_arrow svg {
  width: 14px;
  height: 14px;
  fill: #771985
}

.srv_pg .privacy_row {
  margin-bottom: 24px
}

.srv_pg .privacy_row .pretty {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px
}

.srv_pg .privacy_row .pretty input {
  margin-top: 3px;
  accent-color: #771985;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  cursor: pointer
}

.srv_pg .privacy_row .pretty input:focus-visible {
  outline: 3px solid #771985 !important;
  outline-offset: 2px !important
}

.srv_pg .privacy_txt {
  font-size: 14px;
  line-height: 1.6;
  color: #3a2040
}

.srv_pg .privacy_txt a {
  color: #771985;
  font-weight: 700
}

.srv_pg .btn_submit {
  display: inline-block;
  position: relative;
  padding: 12px 52px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  background: #771985;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: color .6s ease, box-shadow .5s ease;
  box-shadow: 0 4px 28px -1px #77198514
}

.srv_pg .btn_submit::before {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: #844BC3;
  transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0
}

.srv_pg .btn_submit:hover::before {
  left: 0
}

.srv_pg .btn_submit span {
  position: relative;
  z-index: 1
}

.srv_pg .btn_submit:hover {
  box-shadow: 0 12px 36px -1px #7719851f
}

.srv_pg .btn_submit:focus-visible {
  outline: 3px solid #DCAFE0 !important;
  outline-offset: 3px !important
}

@media (max-width: 992px) {
  .srv_pg .ttl_blk .max_w {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start
  }

  .srv_pg .ttl_img_col {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%
  }

  .srv_pg .ttl_h1 {
    font-size: 54px
  }

  .srv_pg .mosaic_grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .srv_pg .srv_card.wide {
    grid-column: span 1
  }

  .srv_pg .expert_inner {
    flex-direction: column;
    padding: 24px;
    gap: 24px
  }

  .srv_pg .expert_stats {
    flex-direction: row;
    width: 100%;
    justify-content: center
  }

  .srv_pg .form_wrap {
    flex-direction: column;
    gap: 24px
  }

  .srv_pg .form_left {
    flex: 0 0 auto;
    max-width: 100%
  }

  .srv_pg .contact_form {
    padding: 24px
  }

  .srv_pg .mosaic_lbl h2 {
    font-size: 28px
  }

  .srv_pg .form_left h2 {
    font-size: 28px
  }
}

@media (max-width: 576px) {
  .srv_pg .ttl_h1 {
    font-size: 28px
  }

  .srv_pg .mosaic_grid {
    grid-template-columns: 1fr
  }

  .srv_pg .form_row {
    flex-direction: column;
    gap: 12px
  }

  .srv_pg .expert_stats {
    flex-direction: column;
    align-items: center
  }

  .srv_pg .expert_inner {
    padding: 24px
  }

  .srv_pg .stat_item {
    width: 100%
  }

  .srv_pg .ttl_blk {
    padding-top: 52px
  }

  .srv_pg .mosaic_blk,
  .srv_pg .expert_blk,
  .srv_pg .form_blk {
    padding-top: 52px;
    padding-bottom: 52px
  }
}

@media (min-width: 1200px) {
  .srv_pg .mosaic_grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

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

.success_pg .card {
  max-width: 560px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 52px;
  box-shadow: 0 3px 2px -1px #77198512 0 4px 28px -1px #77198514 0 12px 36px -1px #7719851f;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px
}

.success_pg .icon_wrap {
  width: 72px;
  height: 72px;
  border-radius: 40px;
  background: linear-gradient(135deg, #771985 0%, #844BC3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px -1px #844bc347
}

.success_pg .icon_wrap svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.success_pg .heading {
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #771985;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 12px #7719851a
}

.success_pg .sub {
  font-size: 17px;
  line-height: 1.6;
  color: #3a1a40;
  text-align: center;
  margin: 0;
  max-width: 400px
}

.success_pg .divider {
  width: 48px;
  height: 3px;
  border-radius: 5px;
  background: linear-gradient(90deg, #771985, #844BC3)
}

.success_pg .note {
  font-size: 14px;
  line-height: 1.6;
  color: #6a4a72;
  text-align: center;
  margin: 0;
  max-width: 380px
}

.success_pg .btn_home {
  display: inline-block;
  padding: 12px 52px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #771985 0%, #844BC3 100%);
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 2px -1px #77198512 0 4px 28px -1px #77198514;
  transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s ease
}

.success_pg .btn_home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #844BC3 0%, #771985 100%);
  opacity: 0;
  transition: opacity .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 10px
}

.success_pg .btn_home:hover::before {
  opacity: 1
}

.success_pg .btn_home:hover {
  box-shadow: 0 3px 2px -1px #7719851a 0 4px 28px -1px #7719852e 0 12px 36px -1px #77198529
}

.success_pg .btn_home span {
  position: relative;
  z-index: 1
}

.success_pg .btn_home:focus-visible {
  outline: 3px solid #844BC3;
  outline-offset: 3px
}

@media (max-width: 576px) {
  .success_pg {
    padding: 52px 12px
  }

  .success_pg .card {
    padding: 24px;
    gap: 24px
  }

  .success_pg .heading {
    font-size: 21px
  }

  .success_pg .btn_home {
    width: 100%;
    text-align: center;
    padding: 12px 24px
  }
}