html {
box-sizing: border-box;
font-size: 100%
}

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

html,
body {
margin: 0
}

body {
position: relative;
min-height: 100vh;
font-family: 'Open Sans', sans-serif
}

.pg-hdr {
position: relative;
background: #2C3151;
overflow: hidden
}

.pg-hdr::before {
content: '';
position: absolute;
top: -40px;
right: -60px;
width: 320px;
height: 320px;
background: linear-gradient(135deg, #fe52552e 0%, #2c315100 70%);
border-radius: 48px;
pointer-events: none
}

.pg-hdr::after {
content: '';
position: absolute;
bottom: -30px;
left: 10%;
width: 180px;
height: 180px;
background: linear-gradient(225deg, #f1eff012 0%, #2c315100 65%);
border-radius: 48px;
pointer-events: none
}

.hdr-top {
border-bottom: 1px solid #f1eff01a
}

.hdr-top__shell {
max-width: 1280px;
margin: 0 auto;
padding: 8px 40px;
display: flex;
align-items: center;
justify-content: flex-end;
gap: 24px
}

.hdr-contact__item {
display: flex;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #f1eff0b3;
text-decoration: none;
transition: color .18s ease-out
}

.hdr-contact__item:hover,
.hdr-contact__item:focus {
color: #F1EFF0;
outline: none
}

.hdr-contact__item:focus-visible {
outline: 2px solid #FE5255;
outline-offset: 2px;
border-radius: 8px
}

.hdr-contact__icon {
width: 16px;
height: 16px;
flex-shrink: 0;
fill: none;
stroke: #f1eff08c
}

.hdr-main__shell {
max-width: 1280px;
margin: 0 auto;
padding: 0 40px;
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
gap: 40px;
min-height: 96px
}

.hdr-brand {
display: flex;
align-items: center;
gap: 16px;
text-decoration: none;
justify-content: center
}

.hdr-brand__img-hold {
width: 72px;
height: 72px;
border-radius: 8px 8px 8px 0;
border: 1px solid #ffffffd9;
background: #ffffff14;
box-shadow: 0 1px 6px 0 #fe525514 0 4px 22px 0 #2c315114;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
flex-shrink: 0
}

.hdr-brand__img-hold img {
width: 100%;
height: 100%;
object-fit: contain;
display: block
}

.hdr-brand__name {
font-size: 29px;
font-weight: 700;
line-height: 1.2;
color: #F1EFF0;
letter-spacing: 0
}

.hdr-nav {
display: flex;
align-items: center;
flex-wrap: wrap
}

.hdr-nav--left {
justify-content: flex-end
}

.hdr-nav--right {
justify-content: flex-start
}

.hdr-nav__lnk {
display: inline-flex;
align-items: center;
padding: 16px;
font-size: 14px;
font-weight: 700;
line-height: 1.2;
color: #f1eff0cc;
text-decoration: none;
border-radius: 8px;
position: relative;
transition: color .15s ease-out, background .2s cubic-bezier(0.4, 0, 0.6, 1);
white-space: nowrap;
min-height: 44px
}

.hdr-nav__lnk::after {
content: '';
position: absolute;
bottom: 8px;
left: 16px;
right: 16px;
height: 2px;
background: #FE5255;
border-radius: 8px;
transform: scaleX(0);
transform-origin: left center;
transition: transform .18s ease-out
}

.hdr-nav__lnk:hover,
.hdr-nav__lnk:focus {
color: #F1EFF0;
background: #f1eff00f;
outline: none
}

.hdr-nav__lnk:hover::after,
.hdr-nav__lnk:focus::after {
transform: scaleX(1)
}

.hdr-nav__lnk:focus-visible {
outline: 2px solid #FE5255;
outline-offset: 2px
}

.hdr-nav__lnk--active {
color: #FE5255
}

.hdr-nav__lnk--active::after {
transform: scaleX(1)
}

@media (max-width: 960px) {
.hdr-main__shell {
grid-template-columns: 1fr;
grid-template-rows: auto auto;
padding: 24px 24px 16px;
gap: 16px;
min-height: auto;
justify-items: center
}

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

.hdr-brand {
order: 1
}

.hdr-top__shell {
padding: 8px 24px;
flex-wrap: wrap;
justify-content: center;
gap: 16px
}

.hdr-nav-row {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0;
order: 2;
width: 100%
}
}

@media (max-width: 480px) {
.hdr-top__shell {
padding: 8px 16px
}

.hdr-main__shell {
padding: 16px
}

.hdr-brand__name {
font-size: 29px
}

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

.pg-ftr {
background: #2C3151;
position: relative;
overflow: hidden
}

.pg-ftr__geo {
position: absolute;
top: 0;
right: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 160px 160px 0;
border-color: transparent #fe52551a transparent transparent;
pointer-events: none
}

.pg-ftr__geo--bl {
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 0;
border-style: solid;
border-width: 0 0 120px 120px;
border-color: transparent transparent #f1eff00d;
pointer-events: none
}

.pg-ftr__geo--mid {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 500px;
height: 500px;
border-radius: 48px;
background: linear-gradient(160deg, #fe52550a 0%, #f1eff005 100%);
pointer-events: none
}

.ftr-body {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px 40px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
position: relative;
z-index: 1
}

.ftr-brand-col {
display: flex;
flex-direction: column;
gap: 24px
}

.ftr-brand__lnk {
display: inline-flex;
align-items: center;
gap: 16px;
text-decoration: none
}

.ftr-brand__img-hold {
width: 65px;
height: 65px;
border-radius: 8px 0 8px 8px;
border: 1px solid #fffc;
background: #ffffff12;
box-shadow: 0 1px 6px 0 #2c315114;
display: flex;
align-items: center;
justify-content: center;
padding: 8px;
flex-shrink: 0
}

.ftr-brand__img-hold img {
width: 100%;
height: 100%;
object-fit: contain;
display: block
}

.ftr-brand__name {
font-size: 29px;
font-weight: 700;
line-height: 1.2;
color: #F1EFF0
}

.ftr-brand__desc {
font-size: 14px;
line-height: 1.55;
color: #f1eff099;
margin: 0
}

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

.ftr-col__label {
font-size: 14px;
font-weight: 700;
line-height: 1.2;
color: #FE5255;
text-transform: uppercase;
letter-spacing: 0;
margin: 0 0 8px
}

.ftr-addr {
font-size: 14px;
line-height: 1.55;
color: #f1eff0a6;
font-style: normal;
margin: 0
}

.ftr-contact__lnk {
display: inline-flex;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #f1eff0b3;
text-decoration: none;
transition: color .18s ease-out;
min-height: 44px
}

.ftr-contact__lnk:hover,
.ftr-contact__lnk:focus {
color: #F1EFF0;
outline: none
}

.ftr-contact__lnk:focus-visible {
outline: 2px solid #FE5255;
outline-offset: 2px;
border-radius: 8px
}

.ftr-contact__icon {
width: 16px;
height: 16px;
flex-shrink: 0;
fill: none;
stroke: #f1eff080
}

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

.ftr-links__item {
display: inline-flex;
align-items: center;
font-size: 14px;
line-height: 1.55;
color: #f1eff0b3;
text-decoration: none;
padding: 8px 0;
transition: color .15s ease-out;
min-height: 44px
}

.ftr-links__item:hover,
.ftr-links__item:focus {
color: #FE5255;
outline: none
}

.ftr-links__item:focus-visible {
outline: 2px solid #FE5255;
outline-offset: 2px;
border-radius: 8px
}

.ftr-base {
border-top: 1px solid #f1eff01a;
position: relative;
z-index: 1
}

.ftr-base__shell {
max-width: 1280px;
margin: 0 auto;
padding: 24px 40px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
flex-wrap: wrap
}

.ftr-copy {
font-size: 14px;
line-height: 1.55;
color: #f1eff073;
margin: 0
}

.ftr-copy__accent {
color: #f1eff0a6
}

.ftr-base__badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
border: 1px solid #fe52554d;
border-radius: 8px;
font-size: 14px;
line-height: 1.2;
color: #f1eff08c
}

.ftr-base__dot {
width: 8px;
height: 8px;
border-radius: 48px;
background: #FE5255;
flex-shrink: 0
}

@media (max-width: 960px) {
.ftr-body {
grid-template-columns: 1fr 1fr;
padding: 40px 24px 24px;
gap: 40px
}

.ftr-brand-col {
grid-column: 1 / -1
}

.ftr-base__shell {
padding: 24px;
justify-content: center;
text-align: center
}
}

@media (max-width: 480px) {
.ftr-body {
grid-template-columns: 1fr;
padding: 40px 16px 24px;
gap: 24px
}

.ftr-base__shell {
padding: 16px;
flex-direction: column;
gap: 16px
}
}

.ck-mount {
position: fixed;
top: 24px;
right: 24px;
z-index: 1500;
max-width: 340px;
width: calc(100vw - 48px)
}

.ck-card {
background: #F1EFF0;
border-radius: 8px;
box-shadow: 0 9px 40px 0 #2c31511a 0 4px 22px 0 #2c315114;
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px;
transform: translateX(calc(100% + 40px));
transition: transform .38s cubic-bezier(0.4, 0, 0.6, 1)
}

.ck-card--vis {
transform: translateX(0)
}

.ck-card__top {
display: flex;
align-items: flex-start;
justify-content: space-between;
gap: 16px
}

.ck-icon-hold {
width: 40px;
height: 40px;
border-radius: 8px;
background: #2C3151;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.ck-icon-svg {
width: 20px;
height: 20px;
fill: none;
stroke: #F1EFF0
}

.ck-close-btn {
background: transparent;
border: none;
cursor: pointer;
padding: 8px;
border-radius: 8px;
display: flex;
align-items: center;
justify-content: center;
transition: background .15s ease-out;
min-width: 44px;
min-height: 44px
}

.ck-close-btn:hover {
background: #2c315114
}

.ck-close-btn:focus-visible {
outline: 2px solid #2C3151;
outline-offset: 2px
}

.ck-close-svg {
width: 16px;
height: 16px;
stroke: #2C3151;
fill: none
}

.ck-body__txt {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
margin: 0
}

.ck-panel {
display: none;
flex-direction: column;
gap: 16px
}

.ck-panel--open {
display: flex
}

.ck-toggle-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px
}

.ck-toggle-lbl {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700
}

.ck-toggle-sub {
font-size: 14px;
line-height: 1.55;
color: #2c3151a6;
margin: 0
}

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

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

.ck-switch__track {
position: absolute;
inset: 0;
background: #2c315133;
border-radius: 48px;
cursor: pointer;
transition: background .18s ease-out
}

.ck-switch__track::after {
content: '';
position: absolute;
top: 3px;
left: 3px;
width: 18px;
height: 18px;
border-radius: 48px;
background: #fff;
transition: transform .18s ease-out
}

.ck-switch input:checked+.ck-switch__track {
background: #FE5255;
box-shadow: inset 0 1px 3px 0 #2c315126
}

.ck-switch input:checked+.ck-switch__track::after {
transform: translateX(20px)
}

.ck-switch input:focus-visible+.ck-switch__track {
outline: 2px solid #FE5255;
outline-offset: 2px
}

.ck-nec-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px
}

.ck-nec-lbl {
font-size: 14px;
line-height: 1.55;
color: #2c31518c;
font-weight: 700
}

.ck-nec-badge {
font-size: 14px;
line-height: 1.2;
color: #2c315173;
padding: 4px 8px;
border: 1px solid #2c315133;
border-radius: 8px
}

.ck-btns {
display: flex;
gap: 8px
}

.ck-btn {
flex: 1;
padding: 12px 16px;
border-radius: 8px;
font-size: 14px;
font-weight: 700;
line-height: 1.2;
cursor: pointer;
border: 2px solid #2C3151;
background: transparent;
color: #2C3151;
transition: background .2s cubic-bezier(0.4, 0, 0.6, 1), color .2s cubic-bezier(0.4, 0, 0.6, 1);
min-height: 44px
}

.ck-btn:hover {
background: #2C3151;
color: #F1EFF0
}

.ck-btn:focus-visible {
outline: 2px solid #FE5255;
outline-offset: 2px
}

.ck-btn:active {
box-shadow: inset 0 2px 6px 0 #2c315133
}

.ck-btn--prim {
border-color: #FE5255;
color: #FE5255
}

.ck-btn--prim:hover {
background: #FE5255;
color: #fff
}

.ck-more-btn {
background: transparent;
border: none;
cursor: pointer;
font-size: 14px;
line-height: 1.55;
color: #2c3151a6;
text-decoration: underline;
padding: 0;
text-align: left;
transition: color .15s ease-out
}

.ck-more-btn:hover {
color: #2C3151
}

.ck-more-btn:focus-visible {
outline: 2px solid #2C3151;
outline-offset: 2px;
border-radius: 8px
}

.terms-ejqt-inner {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px;
color: #2C3151;
line-height: 1.8
}

.terms-ejqt-inner h1 {
font-size: 55px;
line-height: 1.2;
color: #2C3151;
margin-bottom: 40px;
margin-top: 0;
padding-bottom: 24px;
border-bottom: 2px solid #F1EFF0;
border-left: 4px solid #FE5255;
border-bottom-left-radius: 0;
padding-left: 24px
}

.terms-ejqt-inner h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
margin-top: 80px;
margin-bottom: 24px;
padding-left: 16px;
border-left: 3px solid #FE5255;
border-bottom: 1px solid #F1EFF0;
padding-bottom: 8px
}

.terms-ejqt-inner h3 {
font-size: 29px;
line-height: 1.55;
color: #2C3151;
margin-top: 40px;
margin-bottom: 16px
}

.terms-ejqt-inner h4 {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
margin-top: 24px;
margin-bottom: 8px;
text-transform: uppercase;
letter-spacing: .08em
}

.terms-ejqt-inner h5 {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
margin-top: 24px;
margin-bottom: 8px;
opacity: .85
}

.terms-ejqt-inner h6 {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
margin-top: 16px;
margin-bottom: 8px;
opacity: .7
}

.terms-ejqt-inner p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin-top: 0;
margin-bottom: 16px
}

.terms-ejqt-inner p:last-child {
margin-bottom: 0
}

.terms-ejqt-inner strong,
.terms-ejqt-inner b {
font-weight: 700;
color: #2C3151
}

.terms-ejqt-inner em,
.terms-ejqt-inner i {
font-style: italic;
color: #2C3151
}

.terms-ejqt-inner a {
color: #FE5255;
text-decoration: underline;
text-decoration-thickness: 1px;
text-underline-offset: 3px;
transition: color .18s ease-out, text-decoration-color .14s ease-out
}

.terms-ejqt-inner a:hover {
color: #2C3151;
text-decoration-color: #FE5255
}

.terms-ejqt-inner a:visited {
color: #2C3151
}

.terms-ejqt-inner table {
width: 100%;
border-collapse: collapse;
margin-top: 40px;
margin-bottom: 40px;
font-size: 14px;
line-height: 1.55;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 4px 22px 0 #2c315114
}

.terms-ejqt-inner thead {
background-color: #2C3151;
color: #fff
}

.terms-ejqt-inner thead th {
padding: 16px 24px;
font-size: 14px;
line-height: 1.55;
font-weight: 700;
text-align: left;
color: #fff;
border: none
}

.terms-ejqt-inner tbody {
background-color: #fff
}

.terms-ejqt-inner tbody tr {
border-bottom: 1px solid #F1EFF0;
transition: background-color .16s ease-out
}

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

.terms-ejqt-inner tbody tr:hover {
background-color: #F1EFF0
}

.terms-ejqt-inner th {
padding: 16px 24px;
text-align: left;
font-weight: 700;
font-size: 14px;
line-height: 1.55;
color: #2C3151;
background-color: #F1EFF0;
border-bottom: 2px solid #2c31511f
}

.terms-ejqt-inner td {
padding: 16px 24px;
font-size: 14px;
line-height: 1.55;
color: #2C3151;
vertical-align: top
}

@media (max-width: 960px) {
.terms-ejqt-inner {
padding: 40px 24px
}

.terms-ejqt-inner h1 {
font-size: 29px;
margin-bottom: 24px
}

.terms-ejqt-inner h2 {
font-size: 29px;
margin-top: 40px
}

.terms-ejqt-inner h3 {
font-size: 14px
}

.terms-ejqt-inner table {
display: block;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
margin-top: 24px;
margin-bottom: 24px
}
}

@media (max-width: 480px) {
.terms-ejqt-inner {
padding: 24px 16px
}

.terms-ejqt-inner h1 {
font-size: 29px;
padding-left: 16px;
margin-bottom: 16px
}

.terms-ejqt-inner h2 {
margin-top: 24px;
margin-bottom: 16px
}

.terms-ejqt-inner thead th,
.terms-ejqt-inner td,
.terms-ejqt-inner th {
padding: 8px 16px
}
}

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

.mtd-det .pg-schema {
display: none
}

.mtd-det .top-band {
background: linear-gradient(247deg, #2C3151, #F1EFF0);
padding: 80px 0 40px;
position: relative
}

.mtd-det .top-band__inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 40px;
display: flex;
flex-direction: row;
gap: 80px;
align-items: flex-start
}

.mtd-det .top-band__text {
flex: 1 1 0;
min-width: 0
}

.mtd-det .top-band__label {
display: inline-block;
font-size: 14px;
line-height: 1.55;
color: #FE5255;
background: #fe52551a;
border-radius: 8px;
padding: 8px 16px;
margin-bottom: 24px;
letter-spacing: .08em;
text-transform: uppercase;
font-weight: 700
}

.mtd-det .top-band__h1 {
font-size: 55px;
line-height: 1.2;
color: #fff;
font-weight: 800;
margin: 0 0 24px
}

.mtd-det .top-band__meta {
display: flex;
flex-direction: row;
align-items: center;
gap: 24px;
margin-bottom: 40px;
flex-wrap: wrap
}

.mtd-det .top-band__meta-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #ffffffb8
}

.mtd-det .top-band__meta-item svg {
flex-shrink: 0
}

.mtd-det .top-band__price-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 24px;
flex-wrap: wrap
}

.mtd-det .top-band__price {
font-size: 29px;
line-height: 1.2;
color: #fff;
font-weight: 700
}

.mtd-det .top-band__enroll {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #FE5255;
background: transparent;
border: 2px solid #FE5255;
border-radius: 8px;
padding: 8px 24px;
cursor: pointer;
text-decoration: none;
font-weight: 700;
transition: background .18s ease-out, color .15s ease-out;
position: relative;
overflow: hidden
}

.mtd-det .top-band__enroll:hover {
background: #FE5255;
color: #fff
}

.mtd-det .top-band__enroll:hover .enroll-icon {
transform: translateX(0);
opacity: 1
}

.mtd-det .top-band__enroll:hover .enroll-text {
transform: translateX(8px)
}

.mtd-det .enroll-icon {
transform: translateX(-8px);
opacity: 0;
transition: transform .18s ease-out, opacity .15s ease-out;
flex-shrink: 0
}

.mtd-det .enroll-text {
transition: transform .18s ease-out
}

.mtd-det .top-band__img-col {
flex: 0 0 380px;
width: 380px
}

.mtd-det .top-band__img-wrap {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 9px 40px 0 #2c31511a;
position: relative
}

.mtd-det .top-band__img-wrap img {
width: 100%;
height: 320px;
object-fit: cover;
object-position: center top;
display: block;
filter: saturate(0.55) brightness(0.92);
transition: filter .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.mtd-det .top-band__img-wrap:hover img {
filter: saturate(0.75) brightness(0.97)
}

.mtd-det .top-band__dots {
position: absolute;
bottom: -24px;
right: -16px;
width: 80px;
height: 80px;
pointer-events: none
}

.mtd-det .top-band__dots circle {
fill: #fe525538
}

.mtd-det .top-band__wave {
width: 100%;
overflow: hidden;
line-height: 0;
margin-top: 40px
}

.mtd-det .top-band__wave svg {
display: block;
width: 100%
}

.mtd-det .detail-body {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px;
display: flex;
flex-direction: row;
gap: 80px;
align-items: flex-start
}

.mtd-det .detail-body__main {
flex: 1 1 0;
min-width: 0
}

.mtd-det .detail-body__aside {
flex: 0 0 300px;
width: 300px;
display: flex;
flex-direction: column;
gap: 24px
}

.mtd-det .desc-block {
margin-bottom: 40px
}

.mtd-det .desc-block__kicker {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
margin-bottom: 16px
}

.mtd-det .desc-block__h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
margin: 0 0 24px;
text-transform: uppercase;
letter-spacing: .04em
}

.mtd-det .desc-block__body {
font-size: 14px;
line-height: 1.8;
color: #2C3151
}

.mtd-det .desc-block__body p {
margin: 0 0 16px
}

.mtd-det .desc-block__body p:last-child {
margin-bottom: 0
}

.mtd-det .desc-block__body h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 700;
margin: 24px 0 16px
}

.mtd-det .desc-block__body h3 {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
margin: 16px 0 8px
}

.mtd-det .desc-block__body em {
color: #FE5255;
font-style: normal;
font-weight: 700
}

.mtd-det .desc-block__body ul {
margin: 0 0 16px;
padding: 0;
list-style: none;
counter-reset: desc-list
}

.mtd-det .desc-block__body ul li {
counter-increment: desc-list;
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
margin-bottom: 16px;
font-size: 14px;
line-height: 1.8;
color: #2C3151;
padding-bottom: 16px;
border-bottom: 1px solid #2c31511a;
position: relative
}

.mtd-det .desc-block__body ul li::before {
content: counter(desc-list, decimal-leading-zero);
flex-shrink: 0;
font-size: 14px;
font-weight: 700;
color: #FE5255;
min-width: 24px
}

.mtd-det .desc-block__body blockquote {
margin: 24px 0;
padding: 16px 24px;
background: #F1EFF0;
border-radius: 8px;
font-size: 14px;
line-height: 1.8;
color: #2C3151;
font-style: italic
}

.mtd-det .desc-block__body dl {
margin: 0 0 16px
}

.mtd-det .desc-block__body dt {
font-weight: 700;
color: #2C3151;
font-size: 14px;
line-height: 1.55;
margin-top: 16px
}

.mtd-det .desc-block__body dd {
margin: 8px 0 0;
font-size: 14px;
line-height: 1.8;
color: #2C3151;
padding-left: 16px
}

.mtd-det .prog-block {
background: #F1EFF0;
border-radius: 8px;
padding: 40px;
margin-bottom: 40px
}

.mtd-det .prog-block__h3 {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .08em;
margin: 0 0 24px
}

.mtd-det .prog-block__body {
font-size: 14px;
line-height: 1.8;
color: #2C3151
}

.mtd-det .prog-block__body p {
margin: 0 0 16px
}

.mtd-det .prog-block__body h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 700;
margin: 0 0 16px
}

.mtd-det .prog-block__body h3 {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
margin: 16px 0 8px
}

.mtd-det .prog-block__body ul {
margin: 0;
padding: 0;
list-style: none;
counter-reset: prog-step
}

.mtd-det .prog-block__body ul li {
counter-increment: prog-step;
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
padding: 16px 0;
position: relative
}

.mtd-det .prog-block__body ul li::before {
content: counter(prog-step);
flex-shrink: 0;
width: 32px;
height: 32px;
border-radius: 48px;
background: #2C3151;
color: #fff;
font-size: 14px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
line-height: 1.2
}

.mtd-det .prog-block__body ul li:not(:last-child)::after {
content: '';
position: absolute;
left: 15px;
top: 48px;
width: 2px;
bottom: 0;
background: #2c315126
}

.mtd-det .prog-block__body small {
display: block;
font-size: 14px;
color: #2c315199;
line-height: 1.55;
margin-top: 4px
}

.mtd-det .prog-block__body dl {
margin: 0
}

.mtd-det .prog-block__body dt {
font-weight: 700;
color: #2C3151;
font-size: 14px;
line-height: 1.55;
margin-top: 16px
}

.mtd-det .prog-block__body dd {
margin: 8px 0 0;
font-size: 14px;
line-height: 1.8;
color: #2C3151
}

.mtd-det .reaction-card {
background: #fff;
border-radius: 8px;
padding: 24px;
box-shadow: 0 4px 22px 0 #2c315114;
display: flex;
flex-direction: column;
gap: 16px
}

.mtd-det .reaction-card__label {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em
}

.mtd-det .reaction-card__row {
display: flex;
flex-direction: row;
gap: 8px;
flex-wrap: wrap
}

.mtd-det .rxn-opt {
position: relative
}

.mtd-det .rxn-opt input[type="radio"] {
position: absolute;
opacity: 0;
width: 0;
height: 0;
pointer-events: none
}

.mtd-det .rxn-opt__face {
display: flex;
flex-direction: column;
align-items: center;
gap: 4px;
padding: 8px 16px;
border-radius: 8px;
border: 2px solid #2c31511f;
background: #F1EFF0;
cursor: pointer;
transition: border-color .18s ease-out, background .15s ease-out, box-shadow .18s ease-out, transform .15s cubic-bezier(0.4, 0, 0.6, 1);
user-select: none
}

.mtd-det .rxn-opt__face:hover {
border-color: #fe525566;
background: #fff
}

.mtd-det .rxn-opt input[type="radio"]:checked+.rxn-opt__face {
border-color: #FE5255;
background: #fe525514;
box-shadow: inset 0 1px 6px 0 #fe52551f;
transform: scale(1.08)
}

.mtd-det .rxn-opt input[type="radio"]:focus-visible+.rxn-opt__face {
outline: 2px solid #FE5255;
outline-offset: 2px
}

.mtd-det .rxn-opt__icon {
width: 28px;
height: 28px;
display: block
}

.mtd-det .rxn-opt__word {
font-size: 14px;
line-height: 1.2;
color: #2C3151;
font-weight: 600
}

.mtd-det .aside-stat {
background: linear-gradient(247deg, #2C3151, #3a4170);
border-radius: 8px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px
}

.mtd-det .aside-stat__row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px
}

.mtd-det .aside-stat__num {
font-size: 29px;
line-height: 1.2;
color: #fff;
font-weight: 800
}

.mtd-det .aside-stat__desc {
font-size: 14px;
line-height: 1.55;
color: #ffffffa6
}

.mtd-det .aside-stat__divider {
width: 100%;
height: 1px;
background: #ffffff1f
}

.mtd-det .aside-contact {
background: #F1EFF0;
border-radius: 8px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px
}

.mtd-det .aside-contact__label {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em
}

.mtd-det .aside-contact__link {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
text-decoration: none;
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
transition: color .15s ease-out
}

.mtd-det .aside-contact__link:visited {
text-decoration: line-through
}

.mtd-det .aside-contact__link:hover {
color: #FE5255
}

.mtd-det .aside-contact__btn {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #2C3151;
background: transparent;
border: 2px solid #2C3151;
border-radius: 8px;
padding: 8px 16px;
cursor: pointer;
text-decoration: none;
font-weight: 700;
transition: background .18s ease-out, color .15s ease-out, border-color .18s ease-out;
text-align: center;
justify-content: center
}

.mtd-det .aside-contact__btn:hover {
background: #2C3151;
color: #fff
}

.mtd-det .aside-contact__btn:active {
box-shadow: inset 0 1px 6px 0 #2c31512e
}

@keyframes mtd-appear {
from {
opacity: 0;
transform: scale(0.8)
}

60% {
transform: scale(1.04)
}

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

.mtd-det .top-band__img-wrap {
animation: mtd-appear .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

.mtd-det .prog-block {
animation: mtd-appear .18s cubic-bezier(0.4, 0, 0.6, 1) .08s both
}

.mtd-det .aside-stat {
animation: mtd-appear .2s cubic-bezier(0.4, 0, 0.6, 1) .05s both
}

@media (max-width: 960px) {
.mtd-det .top-band__inner {
flex-direction: column;
gap: 40px;
padding: 0 24px
}

.mtd-det .top-band__img-col {
flex: none;
width: 100%
}

.mtd-det .top-band__h1 {
font-size: 29px
}

.mtd-det .detail-body {
flex-direction: column;
gap: 40px;
padding: 40px 24px
}

.mtd-det .detail-body__aside {
flex: none;
width: 100%
}

.mtd-det .top-band {
padding: 40px 0 24px
}
}

@media (max-width: 480px) {
.mtd-det .top-band__inner {
padding: 0 16px
}

.mtd-det .top-band__h1 {
font-size: 29px
}

.mtd-det .detail-body {
padding: 40px 16px
}

.mtd-det .prog-block {
padding: 24px 16px
}

.mtd-det .reaction-card__row {
gap: 8px
}

.mtd-det .top-band__meta {
gap: 16px
}
}

@media (min-width: 1440px) {
.mtd-det .top-band__inner {
padding: 0 80px
}

.mtd-det .detail-body {
padding: 80px
}
}

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

.ctus__inner {
max-width: 1280px;
margin: 0 auto
}

.ctus__hero {
background: linear-gradient(247deg, #2C3151 0%, #F1EFF0 100%);
padding: 80px 40px;
position: relative
}

.ctus__hero-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 30% 70%;
gap: 40px;
align-items: stretch
}

.ctus__hero-accent {
display: flex;
flex-direction: column;
justify-content: flex-end;
padding: 40px 24px 40px 0
}

.ctus__hero-label {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0;
letter-spacing: .08em;
text-transform: uppercase;
font-weight: 600;
margin-bottom: 24px;
opacity: .72
}

.ctus__hero-stat {
font-size: 70px;
line-height: 1.2;
font-weight: 800;
color: #FE5255
}

.ctus__hero-stat-desc {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0;
margin-top: 8px;
opacity: .82
}

.ctus__hero-main {
padding: 40px 0 40px 40px;
border-left: 1px solid #f1eff02e;
display: flex;
flex-direction: column;
justify-content: center
}

.ctus__hero-tag {
display: inline-block;
font-size: 14px;
line-height: 1.55;
color: #FE5255;
background: #fe52551f;
border-radius: 8px;
padding: 8px 16px;
margin-bottom: 24px;
font-weight: 600
}

.ctus__hero-h1 {
font-size: 55px;
line-height: 1.2;
font-weight: 800;
color: #F1EFF0;
margin: 0 0 24px
}

.ctus__hero-h1 .acc {
color: #FE5255
}

.ctus__hero-sub {
font-size: 14px;
line-height: 1.8;
color: #F1EFF0;
opacity: .82;
max-width: 560px
}

.ctus__hero-noise {
position: absolute;
inset: 0;
pointer-events: none;
opacity: .04;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
background-size: 200px 200px
}

.ctus__hero-circles {
position: absolute;
top: -40px;
right: 0;
width: 340px;
height: 340px;
pointer-events: none;
overflow: hidden
}

.ctus__hero-circles span {
position: absolute;
border-radius: 48px;
border: 1px solid #fe52552e
}

.ctus__hero-circles span:nth-child(1) {
width: 200px;
height: 200px;
top: 40px;
right: 40px
}

.ctus__hero-circles span:nth-child(2) {
width: 280px;
height: 280px;
top: 10px;
right: 10px;
opacity: .5
}

.ctus__hero-circles span:nth-child(3) {
width: 340px;
height: 340px;
top: -20px;
right: -20px;
opacity: .25
}

.ctus__divider {
max-width: 1280px;
margin: 0 auto;
padding: 0 40px;
display: flex;
flex-direction: row;
align-items: center;
gap: 0;
height: 24px
}

.ctus__divider-line {
flex: 1;
height: 1px;
background: #2C3151;
opacity: .13;
position: relative
}

.ctus__divider-tick {
width: 1px;
height: 8px;
background: #2C3151;
opacity: .22;
flex-shrink: 0;
margin: 0 32px
}

.ctus__form-wrap {
background: #fff;
padding: 80px 40px;
position: relative
}

.ctus__form-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 30% 70%;
gap: 80px;
align-items: start
}

.ctus__form-aside {
padding-top: 8px
}

.ctus__form-aside-label {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
text-transform: uppercase;
font-weight: 700;
letter-spacing: .1em;
margin-bottom: 16px
}

.ctus__form-aside-h2 {
font-size: 29px;
line-height: 1.2;
font-weight: 800;
color: #2C3151;
margin: 0 0 24px
}

.ctus__form-aside-h2 .acc {
color: #FE5255
}

.ctus__form-aside-p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
opacity: .72;
margin-bottom: 40px
}

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

.ctus__steps-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 16px 0;
position: relative
}

.ctus__steps-item:not(:last-child)::after {
content: "";
position: absolute;
left: 15px;
top: 44px;
width: 1px;
height: calc(100% - 28px);
background: linear-gradient(180deg, #FE5255 0%, #F1EFF0 100%);
opacity: .4
}

.ctus__steps-num {
width: 32px;
height: 32px;
border-radius: 8px;
background: #F1EFF0;
border: 1px solid #2c31511f;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 700;
color: #2C3151;
flex-shrink: 0;
transition: background .18s ease-out, color .15s ease-out
}

.ctus__steps-item:hover .ctus__steps-num {
background: #FE5255;
color: #fff
}

.ctus__steps-text {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
padding-top: 6px
}

.ctus__form-body {
background: #F1EFF0;
border-radius: 8px;
padding: 40px;
box-shadow: 0 4px 22px 0 #2c315114
}

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

.ctus__form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px
}

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

.ctus__field-lbl {
font-size: 14px;
line-height: 1.55;
font-weight: 600;
color: #2C3151
}

.ctus__field-lbl .req {
color: #FE5255;
margin-left: 2px
}

.ctus__field-inp {
width: 100%;
padding: 8px 16px;
font-size: 14px;
line-height: 1.55;
color: #2C3151;
background: #fff;
border: 1px solid #2c31512e;
border-radius: 8px;
outline: none;
transition: border-color .18s ease-out, box-shadow .15s ease-out;
box-sizing: border-box
}

.ctus__field-inp::placeholder {
color: #2c315161;
transition: opacity .18s ease-out
}

.ctus__field-inp:focus::placeholder {
opacity: 0
}

.ctus__field-inp:focus {
border-color: #FE5255;
box-shadow: 0 1px 6px 0 #fe525514
}

.ctus__field-inp:active {
box-shadow: inset 0 2px 4px 0 #2c315114
}

.ctus__field-ta {
resize: vertical;
min-height: 96px
}

.ctus__privacy {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding: 8px 0
}

.ctus__privacy-chk {
width: 18px;
height: 18px;
margin-top: 2px;
flex-shrink: 0;
accent-color: #FE5255;
cursor: pointer
}

.ctus__privacy-chk:active {
box-shadow: inset 0 1px 3px 0 #fe52552e
}

.ctus__privacy-text {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
opacity: .72
}

.ctus__privacy-text a {
color: #FE5255;
text-decoration: underline;
transition: opacity .15s ease-out
}

.ctus__privacy-text a:visited {
text-decoration: line-through
}

.ctus__privacy-text a:hover {
opacity: .72
}

.ctus__submit-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
padding-top: 8px
}

.ctus__btn {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 0;
padding: 8px 40px;
font-size: 14px;
line-height: 1.55;
font-weight: 700;
color: #FE5255;
background: transparent;
border: 1.5px solid #FE5255;
border-radius: 8px;
cursor: pointer;
overflow: hidden;
position: relative;
transition: color .18s ease-out, background .18s ease-out, border-color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctus__btn-icon {
display: inline-flex;
flex-direction: row;
align-items: center;
width: 0;
overflow: hidden;
transition: width .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctus__btn-icon svg {
flex-shrink: 0
}

.ctus__btn-text {
transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctus__btn:hover {
background: #FE5255;
color: #fff
}

.ctus__btn:hover .ctus__btn-icon {
width: 20px
}

.ctus__btn:hover .ctus__btn-text {
transform: translateX(8px)
}

.ctus__btn:focus {
outline: 2px solid #FE5255;
outline-offset: 2px
}

.ctus__btn:active {
box-shadow: inset 0 2px 6px 0 #fe52552e
}

.ctus__info-wrap {
background: #2C3151;
padding: 80px 40px;
position: relative;
overflow: hidden
}

.ctus__info-wave {
position: absolute;
inset: 0;
pointer-events: none;
background: linear-gradient(247deg, #fe525512 0%, transparent 60%);
animation: ctus-wave 8s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate
}

@keyframes ctus-wave {
0% {
opacity: .5;
transform: translateX(-2%)
}

100% {
opacity: 1;
transform: translateX(2%)
}
}

.ctus__info-circles {
position: absolute;
bottom: -60px;
left: -60px;
width: 320px;
height: 320px;
pointer-events: none
}

.ctus__info-circles span {
position: absolute;
border-radius: 48px;
border: 1px solid #f1eff014
}

.ctus__info-circles span:nth-child(1) {
width: 160px;
height: 160px;
bottom: 40px;
left: 40px
}

.ctus__info-circles span:nth-child(2) {
width: 240px;
height: 240px;
bottom: 10px;
left: 10px;
opacity: .55
}

.ctus__info-circles span:nth-child(3) {
width: 320px;
height: 320px;
bottom: -20px;
left: -20px;
opacity: .28
}

.ctus__info-grid {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 70% 30%;
gap: 80px;
align-items: center;
position: relative
}

.ctus__info-img-wrap {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 9px 40px 0 #2c31511a;
position: relative
}

.ctus__info-img {
width: 100%;
height: 360px;
object-fit: cover;
object-position: center top;
display: block
}

.ctus__info-img-overlay {
position: absolute;
inset: 0;
background: linear-gradient(247deg, #2c315185 0%, #fe52552e 100%);
pointer-events: none
}

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

.ctus__info-label {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
text-transform: uppercase;
font-weight: 700;
letter-spacing: .1em
}

.ctus__info-h2 {
font-size: 29px;
line-height: 1.2;
font-weight: 800;
color: #F1EFF0;
margin: 0
}

.ctus__info-h2 .acc {
color: #FE5255
}

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

.ctus__info-item {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px
}

.ctus__info-icon {
width: 36px;
height: 36px;
border-radius: 8px;
background: #fe52551f;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.ctus__info-icon svg {
width: 18px;
height: 18px;
stroke: #FE5255;
fill: none;
stroke-width: 1.6;
stroke-linecap: round;
stroke-linejoin: round
}

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

.ctus__info-detail-lbl {
font-size: 14px;
line-height: 1.2;
color: #F1EFF0;
opacity: .52;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .07em
}

.ctus__info-detail-val {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0;
font-weight: 500
}

.ctus__info-detail-val a {
color: #F1EFF0;
text-decoration: none;
transition: color .18s ease-out
}

.ctus__info-detail-val a:hover {
color: #FE5255
}

.ctus__info-detail-val a:visited {
text-decoration: line-through
}

@media (max-width: 960px) {
.ctus__hero-grid {
grid-template-columns: 1fr;
gap: 24px
}

.ctus__hero-main {
padding: 24px 0 0;
border-left: none;
border-top: 1px solid #f1eff02e
}

.ctus__hero-h1 {
font-size: 29px
}

.ctus__hero-stat {
font-size: 55px
}

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

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

.ctus__info-img {
height: 240px
}
}

@media (max-width: 480px) {
.ctus__hero {
padding: 40px 16px
}

.ctus__hero-h1 {
font-size: 29px
}

.ctus__form-wrap {
padding: 40px 16px
}

.ctus__form-row {
grid-template-columns: 1fr
}

.ctus__form-body {
padding: 24px 16px
}

.ctus__info-wrap {
padding: 40px 16px
}

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

.ctus__divider {
padding: 0 16px
}
}

@media (min-width: 1440px) {
.ctus__hero-h1 {
font-size: 55px
}
}

.abt-pg {
overflow-x: clip;
position: relative
}

.abt-pg .ldr-reveal {
opacity: 0;
transform: translateX(-40px);
animation: slideFromLeft .18s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.abt-pg .ldr-reveal--right {
transform: translateX(40px);
animation: slideFromRight .18s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.abt-pg .ldr-reveal--delay1 {
animation-delay: .08s
}

.abt-pg .ldr-reveal--delay2 {
animation-delay: .14s
}

.abt-pg .ldr-reveal--delay3 {
animation-delay: .2s
}

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

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

.abt-pg .pg-cap {
background: linear-gradient(247deg, #2C3151 0%, #F1EFF0 100%);
padding: 80px 40px;
position: relative;
overflow: hidden
}

.abt-pg .pg-cap__inner {
max-width: 1280px;
margin: 0 auto;
display: flex;
flex-direction: row;
align-items: center;
gap: 80px
}

.abt-pg .pg-cap__txt {
flex: 1 1 0;
min-width: 0
}

.abt-pg .pg-cap__label {
display: inline-block;
font-size: 14px;
line-height: 1.55;
color: #FE5255;
letter-spacing: .12em;
text-transform: uppercase;
font-weight: 700;
margin-bottom: 24px
}

.abt-pg .pg-cap__h1 {
font-size: 55px;
line-height: 1.2;
color: #F1EFF0;
font-weight: 800;
margin: 0 0 40px;
text-transform: uppercase;
letter-spacing: .04em
}

.abt-pg .pg-cap__h1 span {
color: #FE5255
}

.abt-pg .pg-cap__stat-row {
display: flex;
flex-direction: row;
gap: 40px;
flex-wrap: wrap
}

.abt-pg .pg-cap__stat {
display: flex;
flex-direction: column;
gap: 8px
}

.abt-pg .pg-cap__stat-num {
font-size: 29px;
line-height: 1.2;
color: #FE5255;
font-weight: 800
}

.abt-pg .pg-cap__stat-desc {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0;
opacity: .82
}

.abt-pg .pg-cap__img-col {
flex: 0 0 420px;
position: relative
}

.abt-pg .pg-cap__img-frame {
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 9px 40px 0 #2c31511a
}

.abt-pg .pg-cap__img-frame::before,
.abt-pg .pg-cap__img-frame::after {
content: "";
position: absolute;
width: 24px;
height: 24px;
border-color: #FE5255;
border-style: solid;
z-index: 2;
pointer-events: none
}

.abt-pg .pg-cap__img-frame::before {
top: 12px;
left: 12px;
border-width: 3px 0 0 3px
}

.abt-pg .pg-cap__img-frame::after {
bottom: 12px;
right: 12px;
border-width: 0 3px 3px 0
}

.abt-pg .pg-cap__img {
display: block;
width: 100%;
height: 420px;
object-fit: cover;
object-position: center 30%;
mix-blend-mode: luminosity;
filter: contrast(1.08) brightness(0.92)
}

.abt-pg .pg-cap__img-overlay {
position: absolute;
inset: 0;
background: linear-gradient(247deg, #2c315161 0%, #fe52551a 100%);
pointer-events: none;
border-radius: 8px
}

.abt-pg .pg-cap__decor-line {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
margin-top: 40px
}

.abt-pg .pg-cap__decor-line .line {
flex: 1;
height: 1px;
background: #f1eff038
}

.abt-pg .pg-cap__decor-line .ctr-elem {
width: 10px;
height: 10px;
border-radius: 48px;
background: #FE5255;
flex-shrink: 0
}

.abt-pg .pg-cap__wave {
display: block;
width: 100%;
margin-top: -1px;
line-height: 0
}

.abt-pg .abt-body {
background: #fff;
padding: 80px 40px
}

.abt-pg .abt-body__inner {
max-width: 1280px;
margin: 0 auto
}

.abt-pg .abt-body__grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
gap: 40px;
align-items: start
}

.abt-pg .abt-body__accent-col {
grid-column: 1;
display: flex;
flex-direction: column;
gap: 40px
}

.abt-pg .abt-body__main-col {
grid-column: 2 / 4;
display: flex;
flex-direction: column;
gap: 40px
}

.abt-pg .abt-body__side-col {
grid-column: 4;
display: flex;
flex-direction: column;
gap: 40px
}

.abt-pg .accent-card {
border-radius: 8px;
background: #2C3151;
padding: 24px;
position: relative;
box-shadow: 0 4px 22px 0 #2c315114;
border-top: 3px solid #FE5255
}

.abt-pg .accent-card__num {
font-size: 55px;
line-height: 1.2;
color: #FE5255;
font-weight: 800;
display: block
}

.abt-pg .accent-card__lbl {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0;
margin-top: 8px;
display: block
}

.abt-pg .step-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0
}

.abt-pg .step-list__item {
display: flex;
flex-direction: row;
gap: 16px;
position: relative;
padding-bottom: 24px
}

.abt-pg .step-list__item:last-child {
padding-bottom: 0
}

.abt-pg .step-list__track {
display: flex;
flex-direction: column;
align-items: center;
flex-shrink: 0;
width: 32px
}

.abt-pg .step-list__dot {
width: 32px;
height: 32px;
border-radius: 48px;
background: #FE5255;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 700;
color: #fff;
flex-shrink: 0;
position: relative;
z-index: 1
}

.abt-pg .step-list__line {
flex: 1;
width: 2px;
background: linear-gradient(180deg, #FE5255 0%, #F1EFF0 100%);
margin-top: 4px
}

.abt-pg .step-list__item:last-child .step-list__line {
display: none
}

.abt-pg .step-list__body {
padding-top: 4px;
min-width: 0
}

.abt-pg .step-list__ttl {
font-size: 14px;
line-height: 1.55;
font-weight: 700;
color: #2C3151;
text-transform: uppercase;
letter-spacing: .08em;
margin: 0 0 8px
}

.abt-pg .step-list__desc {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
margin: 0;
opacity: .78
}

.abt-pg .abt-body__h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .06em;
margin: 0 0 24px
}

.abt-pg .abt-body__lead {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0 0 16px
}

.abt-pg .abt-body__lead--single {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 600;
margin: 0 0 16px
}

.abt-pg .img-panel {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 1px 6px 0 #fe525514;
position: relative;
border-top: 3px solid #FE5255
}

.abt-pg .img-panel img {
display: block;
width: 100%;
height: 220px;
object-fit: cover;
object-position: center 40%
}

.abt-pg .team-row {
display: flex;
flex-direction: column;
gap: 24px;
margin-top: 8px
}

.abt-pg .team-card {
background: #F1EFF0;
border-radius: 8px;
padding: 24px;
display: flex;
flex-direction: row;
gap: 16px;
align-items: flex-start;
box-shadow: 0 1px 6px 0 #2c315114;
border-top: 3px solid #2C3151;
transition: box-shadow .16s cubic-bezier(0.4, 0, 0.6, 1), border-top-color .2s ease-out
}

.abt-pg .team-card:hover {
box-shadow: 0 9px 40px 0 #2c31511a;
border-top-color: #FE5255
}

.abt-pg .team-card__avatar {
width: 56px;
height: 56px;
border-radius: 48px;
overflow: hidden;
flex-shrink: 0;
box-shadow: 0 4px 22px 0 #fe525514
}

.abt-pg .team-card__avatar img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block
}

.abt-pg .team-card__info {
min-width: 0
}

.abt-pg .team-card__name {
font-size: 14px;
line-height: 1.55;
font-weight: 700;
color: #2C3151;
margin: 0 0 4px;
text-transform: uppercase;
letter-spacing: .06em
}

.abt-pg .team-card__role {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
margin: 0 0 8px
}

.abt-pg .team-card__quote {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
margin: 0;
opacity: .72
}

.abt-pg .rating-strip {
background: linear-gradient(247deg, #2C3151 0%, #F1EFF0 100%);
border-radius: 8px;
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px;
box-shadow: 0 4px 22px 0 #2c315114
}

.abt-pg .rating-strip__score {
font-size: 55px;
line-height: 1.2;
font-weight: 800;
color: #FE5255
}

.abt-pg .rating-strip__label {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0
}

.abt-pg .rating-strip__stars {
display: flex;
flex-direction: row;
gap: 4px
}

.abt-pg .rating-strip__star {
width: 16px;
height: 16px
}

.abt-pg .rating-strip__count {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0;
opacity: .72
}

.abt-pg .img-duo {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px
}

.abt-pg .img-duo__item {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 1px 6px 0 #fe525514
}

.abt-pg .img-duo__item img {
display: block;
width: 100%;
height: 160px;
object-fit: cover;
object-position: center 35%
}

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

.abt-pg .highlight-box {
background: #F1EFF0;
border-radius: 8px;
padding: 24px;
border-top: 3px solid #FE5255;
box-shadow: 0 1px 6px 0 #2c315114
}

.abt-pg .highlight-box__ttl {
font-size: 14px;
line-height: 1.55;
font-weight: 700;
color: #2C3151;
text-transform: uppercase;
letter-spacing: .08em;
margin: 0 0 8px
}

.abt-pg .highlight-box__body {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0;
opacity: .82
}

.abt-pg .link-styled {
color: #2C3151;
text-decoration: underline;
transition: color .16s ease-out
}

.abt-pg .link-styled:visited {
text-decoration: line-through
}

.abt-pg .link-styled:hover {
color: #FE5255
}

@media (max-width: 960px) {
.abt-pg .pg-cap__inner {
flex-direction: column;
gap: 40px
}

.abt-pg .pg-cap__img-col {
flex: 0 0 auto;
width: 100%
}

.abt-pg .pg-cap__img {
height: 300px
}

.abt-pg .pg-cap__h1 {
font-size: 29px
}

.abt-pg .abt-body__grid {
grid-template-columns: 1fr 1fr;
gap: 24px
}

.abt-pg .abt-body__accent-col {
grid-column: 1;
grid-row: 1
}

.abt-pg .abt-body__main-col {
grid-column: 2;
grid-row: 1 / 3
}

.abt-pg .abt-body__side-col {
grid-column: 1;
grid-row: 2
}
}

@media (max-width: 480px) {
.abt-pg .pg-cap {
padding: 40px 16px
}

.abt-pg .pg-cap__h1 {
font-size: 29px
}

.abt-pg .pg-cap__stat-row {
gap: 24px
}

.abt-pg .abt-body {
padding: 40px 16px
}

.abt-pg .abt-body__grid {
grid-template-columns: 1fr;
gap: 24px
}

.abt-pg .abt-body__accent-col,
.abt-pg .abt-body__main-col,
.abt-pg .abt-body__side-col {
grid-column: 1;
grid-row: auto
}

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

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

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

@media (max-width: 960px) {
.frst .pg-wrap {
padding: 0 24px
}
}

@media (max-width: 480px) {
.frst .pg-wrap {
padding: 0 16px
}
}

.frst .ttl-band {
background: radial-gradient(ellipse at 97% 8%, #FE5255 0%, #2C3151 38%, #F1EFF0 100%);
padding: 40px 0;
position: relative
}

.frst .ttl-band__geo {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden
}

.frst .ttl-band__geo svg {
position: absolute
}

.frst .ttl-band__row {
display: flex;
flex-direction: row;
align-items: center;
gap: 40px
}

.frst .ttl-band__text {
flex: 1 1 0;
min-width: 0;
position: relative;
z-index: 1
}

.frst .ttl-band__label {
display: inline-flex;
align-items: center;
gap: 8px;
margin-bottom: 16px
}

.frst .ttl-band__dot {
width: 10px;
height: 10px;
border-radius: 48px;
background: #FE5255;
flex-shrink: 0
}

.frst .ttl-band__tag {
font-size: 14px;
line-height: 1.55;
color: #F1EFF0;
letter-spacing: .06em;
text-transform: uppercase;
font-weight: 600
}

.frst .ttl-band__h1 {
font-size: 55px;
line-height: 1.2;
color: #fff;
font-weight: 800;
margin: 0 0 16px;
text-transform: uppercase;
letter-spacing: .03em
}

.frst .ttl-band__sub {
font-size: 14px;
line-height: 1.8;
color: #F1EFF0;
max-width: 480px;
margin: 0
}

.frst .ttl-band__img-col {
flex: 0 0 420px;
position: relative;
z-index: 1
}

.frst .ttl-band__img-wrap {
border-radius: 8px;
overflow: hidden;
position: relative;
height: 320px;
box-shadow: 0 9px 40px 0 #2c31511a
}

.frst .ttl-band__img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block
}

.frst .ttl-band__img-wrap::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(247deg, #fe525547 0%, #2c31518c 100%);
pointer-events: none
}

.frst .ttl-band__vignette {
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 50% 50%, transparent 55%, #2c315173 100%);
pointer-events: none;
z-index: 1
}

@media (max-width: 960px) {
.frst .ttl-band__row {
flex-direction: column;
gap: 24px
}

.frst .ttl-band__img-col {
flex: none;
width: 100%
}

.frst .ttl-band__h1 {
font-size: 29px
}
}

@media (max-width: 480px) {
.frst .ttl-band__h1 {
font-size: 29px
}

.frst .ttl-band__img-wrap {
height: 220px
}
}

.frst .div-line {
height: 2px;
background: linear-gradient(247deg, #FE5255 0%, #F1EFF0 100%);
border: none;
margin: 0
}

.frst .rep-sec {
background: #fff;
padding: 80px 0
}

.frst .rep-sec__top {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 80px;
margin-bottom: 40px
}

.frst .rep-sec__lead {
flex: 0 0 340px
}

.frst .rep-sec__eyebrow {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
text-transform: uppercase;
font-weight: 700;
letter-spacing: .08em;
margin-bottom: 16px
}

.frst .rep-sec__h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .04em;
margin: 0
}

.frst .rep-sec__body {
flex: 1 1 0;
min-width: 0
}

.frst .rep-sec__p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0 0 16px
}

.frst .rep-sec__p:last-child {
margin-bottom: 0
}

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

.frst .rep-card {
border-radius: 8px;
border: 1.5px solid #F1EFF0;
padding: 24px;
background: #fff;
box-shadow: 0 1px 6px 0 #fe525514;
transition: box-shadow .18s ease-out, border-color .15s ease-out;
position: relative;
overflow: hidden
}

.frst .rep-card:hover {
box-shadow: 0 4px 22px 0 #fe525514;
border-color: #FE5255
}

.frst .rep-card__sym {
position: absolute;
top: -16px;
right: -8px;
font-size: 70px;
line-height: 1.2;
color: #F1EFF0;
font-weight: 900;
pointer-events: none;
user-select: none;
z-index: 0
}

.frst .rep-card__num {
font-size: 55px;
line-height: 1.2;
color: #FE5255;
font-weight: 900;
margin-bottom: 8px;
position: relative;
z-index: 1
}

.frst .rep-card__lbl {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .05em;
margin-bottom: 8px;
position: relative;
z-index: 1
}

.frst .rep-card__desc {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0;
position: relative;
z-index: 1
}

.frst .rep-sec__img-row {
display: flex;
flex-direction: row;
gap: 24px;
margin-top: 40px;
align-items: stretch
}

.frst .rep-sec__img-wrap {
flex: 0 0 360px;
border-radius: 8px;
overflow: hidden;
position: relative;
height: 240px;
box-shadow: 0 4px 22px 0 #2c315114
}

.frst .rep-sec__img-wrap img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
display: block
}

.frst .rep-sec__img-wrap::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 50% 50%, transparent 50%, #2c315161 100%);
pointer-events: none
}

.frst .rep-sec__aside {
flex: 1 1 0;
min-width: 0;
display: flex;
flex-direction: column;
justify-content: center;
gap: 16px
}

.frst .rep-sec__aside-p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0
}

@media (max-width: 960px) {
.frst .rep-sec__top {
flex-direction: column;
gap: 24px
}

.frst .rep-sec__lead {
flex: none
}

.frst .rep-cards {
grid-template-columns: 1fr 1fr
}

.frst .rep-sec__img-row {
flex-direction: column
}

.frst .rep-sec__img-wrap {
flex: none;
width: 100%
}
}

@media (max-width: 480px) {
.frst .rep-cards {
grid-template-columns: 1fr
}

.frst .rep-sec {
padding: 40px 0
}
}

.frst .div-line--rev {
height: 2px;
background: linear-gradient(247deg, #F1EFF0 0%, #2C3151 100%);
border: none;
margin: 0
}

.frst .sup-sec {
padding: 80px 0;
position: relative;
background: linear-gradient(247deg, #2C3151 0%, #F1EFF0 100%)
}

.frst .sup-sec__bg-img {
position: absolute;
inset: 0;
z-index: 0;
overflow: hidden
}

.frst .sup-sec__bg-img img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center 30%;
display: block;
opacity: .18
}

.frst .sup-sec__inner {
position: relative;
z-index: 1
}

.frst .sup-sec__row {
display: flex;
flex-direction: row;
gap: 80px;
align-items: flex-start
}

.frst .sup-sec__col-left {
flex: 1 1 0;
min-width: 0
}

.frst .sup-sec__h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .04em;
margin: 0 0 16px
}

.frst .sup-sec__intro {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0 0 40px
}

.frst .sup-steps {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0
}

.frst .sup-step {
display: flex;
flex-direction: row;
gap: 16px;
padding: 24px 0;
position: relative
}

.frst .sup-step:not(:last-child)::after {
content: '';
position: absolute;
left: 19px;
top: 56px;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, #FE5255 0%, #F1EFF0 100%)
}

.frst .sup-step__num {
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 48px;
background: #FE5255;
color: #fff;
font-size: 14px;
line-height: 1.2;
font-weight: 800;
display: flex;
align-items: center;
justify-content: center;
position: relative;
z-index: 1
}

.frst .sup-step__body {
flex: 1 1 0;
min-width: 0;
padding-top: 8px
}

.frst .sup-step__h {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .05em;
margin: 0 0 8px
}

.frst .sup-step__p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0
}

.frst .sup-sec__col-right {
flex: 0 0 380px;
display: flex;
flex-direction: column;
gap: 24px
}

.frst .sup-panel {
border-radius: 8px;
background: #ffffffe0;
padding: 24px;
box-shadow: 0 4px 22px 0 #2c315114
}

.frst .sup-panel__h {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
margin: 0 0 8px
}

.frst .sup-panel__p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0
}

@media (max-width: 960px) {
.frst .sup-sec__row {
flex-direction: column;
gap: 40px
}

.frst .sup-sec__col-right {
flex: none;
width: 100%
}

.frst .sup-sec {
padding: 40px 0
}
}

.frst .div-line--mid {
height: 2px;
background: linear-gradient(247deg, #2C3151 0%, #FE5255 60%, #F1EFF0 100%);
border: none;
margin: 0
}

.frst .ppl-sec {
background: #F1EFF0;
padding: 80px 0
}

.frst .ppl-sec__hd {
max-width: 640px;
margin: 0 auto 40px;
text-align: center
}

.frst .ppl-sec__eyebrow {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
text-transform: uppercase;
font-weight: 700;
letter-spacing: .08em;
margin-bottom: 8px
}

.frst .ppl-sec__h2 {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
text-transform: uppercase;
letter-spacing: .04em;
margin: 0
}

.frst .ppl-grid {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: auto auto;
gap: 24px
}

.frst .ppl-card {
border-radius: 8px;
background: #fff;
box-shadow: 0 1px 6px 0 #fe525514;
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.frst .ppl-card:hover {
box-shadow: 0 9px 40px 0 #fe52551a
}

.frst .ppl-card--wide {
grid-column: 1 / -1;
flex-direction: row
}

.frst .ppl-card__img {
position: relative;
overflow: hidden
}

.frst .ppl-card__img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block
}

.frst .ppl-card__img::after {
content: '';
position: absolute;
inset: 0;
background: radial-gradient(ellipse at 50% 50%, transparent 45%, #2c31516b 100%);
pointer-events: none
}

.frst .ppl-card--std .ppl-card__img {
height: 200px;
flex-shrink: 0
}

.frst .ppl-card--wide .ppl-card__img {
flex: 0 0 340px;
height: auto;
min-height: 240px
}

.frst .ppl-card__body {
padding: 24px;
display: flex;
flex-direction: column;
gap: 16px;
flex: 1 1 0
}

.frst .ppl-card__quote {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0;
flex: 1 1 auto
}

.frst .ppl-card__meta {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px
}

.frst .ppl-card__avatar {
width: 36px;
height: 36px;
border-radius: 48px;
background: linear-gradient(247deg, #FE5255 0%, #2C3151 100%);
flex-shrink: 0;
display: flex;
align-items: center;
justify-content: center
}

.frst .ppl-card__avatar-init {
font-size: 14px;
line-height: 1.2;
color: #fff;
font-weight: 700
}

.frst .ppl-card__name {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700
}

.frst .ppl-card__role {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
font-weight: 400
}

.frst .ppl-card__before-after {
display: flex;
flex-direction: row;
gap: 16px
}

.frst .ppl-card__stat {
flex: 1 1 0;
border-radius: 8px;
padding: 16px;
background: #F1EFF0
}

.frst .ppl-card__stat-lbl {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .05em;
margin-bottom: 8px
}

.frst .ppl-card__stat-val {
font-size: 14px;
line-height: 1.8;
color: #2C3151
}

@media (max-width: 960px) {
.frst .ppl-card--wide {
flex-direction: column
}

.frst .ppl-card--wide .ppl-card__img {
flex: none;
height: 220px;
width: 100%
}

.frst .ppl-sec {
padding: 40px 0
}
}

@media (max-width: 480px) {
.frst .ppl-grid {
grid-template-columns: 1fr
}

.frst .ppl-card--wide {
grid-column: auto
}

.frst .ppl-card__before-after {
flex-direction: column
}
}

@keyframes frst-row-in {
from {
opacity: 0;
transform: translateY(18px)
}

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

.frst .rep-card {
opacity: 0;
animation: frst-row-in .2s ease-out forwards
}

.frst .rep-card:nth-child(1) {
animation-delay: .08s
}

.frst .rep-card:nth-child(2) {
animation-delay: .14s
}

.frst .rep-card:nth-child(3) {
animation-delay: .2s
}

.frst .ppl-card {
opacity: 0;
animation: frst-row-in .2s ease-out forwards
}

.frst .ppl-card:nth-child(1) {
animation-delay: .1s
}

.frst .ppl-card:nth-child(2) {
animation-delay: .16s
}

.frst .ppl-card:nth-child(3) {
animation-delay: .22s
}

.frst .btn-out {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 24px;
border-radius: 8px;
border: 2px solid #FE5255;
background: transparent;
color: #FE5255;
font-size: 14px;
line-height: 1.55;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .06em;
cursor: pointer;
text-decoration: none;
transition: background .18s ease-out, color .15s ease-out;
position: relative;
overflow: hidden
}

.frst .btn-out:hover {
background: #FE5255;
color: #fff
}

.frst .btn-out:active {
box-shadow: inset 0 2px 6px 0 #fe525538
}

.frst .btn-out__icon {
width: 16px;
height: 16px;
flex-shrink: 0;
opacity: 0;
transform: translateX(-6px);
transition: opacity .15s ease-out, transform .18s ease-out
}

.frst .btn-out:hover .btn-out__icon {
opacity: 1;
transform: translateX(0)
}

.frst .btn-out__txt {
transition: transform .18s ease-out
}

.frst .btn-out:hover .btn-out__txt {
transform: translateX(4px)
}

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

.mthdlgy .pg-band {
width: 100%;
position: relative
}

.mthdlgy .pg-band__strip {
width: 100%;
height: 180px;
overflow: hidden;
position: relative
}

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

.mthdlgy .pg-band__strip::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(247deg, #2C3151cc, #F1EFF088);
pointer-events: none
}

.mthdlgy .pg-band__txt {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px 40px;
position: relative
}

.mthdlgy .pg-band__bg-ltr {
position: absolute;
top: 16px;
right: 40px;
font-size: 220px;
line-height: 1.2;
color: #F1EFF0;
font-weight: 900;
letter-spacing: -8px;
pointer-events: none;
user-select: none;
z-index: 0
}

.mthdlgy .pg-band__heading {
font-size: 55px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
text-transform: uppercase;
letter-spacing: 2px;
position: relative;
z-index: 1;
max-width: 700px;
margin: 0 0 24px
}

.mthdlgy .pg-band__desc {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
max-width: 560px;
position: relative;
z-index: 1;
margin: 0;
border-top: 2px solid #FE5255;
padding-top: 16px
}

.mthdlgy .crd-grid {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px
}

.mthdlgy .crd-grid__label {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
text-transform: uppercase;
letter-spacing: 3px;
font-weight: 700;
margin: 0 0 8px
}

.mthdlgy .crd-grid__heading {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0 0 40px
}

.mthdlgy .crd-grid__list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
list-style: none;
margin: 0;
padding: 0
}

.mthdlgy .crd {
border-radius: 8px;
background: #fff;
box-shadow: 0 4px 22px 0 #2c315114;
overflow: hidden;
display: flex;
flex-direction: column;
transition: box-shadow .18s ease-out, transform .15s ease-out;
border: 1.5px solid #F1EFF0;
animation: brd-glow .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

.mthdlgy .crd:hover {
box-shadow: 0 9px 40px 0 #2c31511a;
transform: translateY(-2px)
}

@keyframes brd-glow {
from {
box-shadow: 0 0 0 0 #fe525500 0 1px 6px 0 #2c315114;
border-color: transparent
}

to {
box-shadow: 0 0 0 2px #fe52552e 0 4px 22px 0 #2c315114;
border-color: #F1EFF0
}
}

.mthdlgy .crd__img-wrap {
width: 100%;
height: 200px;
overflow: hidden;
position: relative
}

.mthdlgy .crd__img-wrap::after {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 40%, #2c315161 100%);
pointer-events: none
}

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

.mthdlgy .crd:hover .crd__img-wrap img {
transform: scale(1.04)
}

.mthdlgy .crd__body {
padding: 24px;
display: flex;
flex-direction: column;
flex: 1;
gap: 8px
}

.mthdlgy .crd__title {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0
}

.mthdlgy .crd__desc {
font-size: 14px;
line-height: 1.8;
color: #4a4f6a;
margin: 0;
flex: 1
}

.mthdlgy .crd__meta {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
padding-top: 8px
}

.mthdlgy .crd__meta-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #2C3151
}

.mthdlgy .crd__meta-item svg {
flex-shrink: 0
}

.mthdlgy .crd__price {
font-size: 14px;
line-height: 1.55;
font-weight: 700;
color: #FE5255;
margin-top: 8px
}

.mthdlgy .crd__foot {
padding: 0 24px 24px
}

.mthdlgy .crd__lnk {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 600;
text-decoration: none;
border: 1.5px solid #2C3151;
border-radius: 8px;
padding: 8px 16px;
transition: color .15s ease-out, background .18s ease-out, border-color .15s ease-out;
overflow: hidden;
position: relative
}

.mthdlgy .crd__lnk .lnk-icon {
opacity: 0;
transform: translateX(-8px);
transition: opacity .15s ease-out, transform .18s ease-out;
display: flex;
align-items: center
}

.mthdlgy .crd__lnk .lnk-txt {
transition: transform .18s ease-out
}

.mthdlgy .crd__lnk:hover {
background: #2C3151;
color: #fff;
border-color: #2C3151
}

.mthdlgy .crd__lnk:hover .lnk-icon {
opacity: 1;
transform: translateX(0)
}

.mthdlgy .crd__lnk:hover .lnk-txt {
transform: translateX(4px)
}

.mthdlgy .crd__lnk:focus-visible {
outline: 3px solid #FE5255 !important;
outline-offset: 2px !important
}

.mthdlgy .about-strip {
background: linear-gradient(247deg, #2C3151, #F1EFF0);
padding: 80px 40px
}

.mthdlgy .about-strip__inner {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center
}

.mthdlgy .about-strip__img-wrap {
position: relative;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 9px 40px 0 #2c31511a
}

.mthdlgy .about-strip__img-wrap img {
width: 100%;
height: 380px;
object-fit: cover;
object-position: center top;
display: block;
filter: saturate(0.8)
}

.mthdlgy .about-strip__img-wrap::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 50%, #2c315173 100%);
z-index: 1;
pointer-events: none
}

.mthdlgy .about-strip__txt {
display: flex;
flex-direction: column;
gap: 16px
}

.mthdlgy .about-strip__quote-mark {
font-size: 120px;
line-height: 1.2;
color: #fe52552e;
font-weight: 900;
margin: 0;
pointer-events: none;
user-select: none;
line-height: .8
}

.mthdlgy .about-strip__heading {
font-size: 29px;
line-height: 1.2;
color: #fff;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0
}

.mthdlgy .about-strip__body {
font-size: 14px;
line-height: 1.8;
color: #F1EFF0;
margin: 0
}

.mthdlgy .about-strip__body+.about-strip__body {
margin-top: 8px
}

.mthdlgy .steps-blk {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px
}

.mthdlgy .steps-blk__heading {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0 0 40px;
max-width: 500px
}

.mthdlgy .steps-blk__list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 0;
counter-reset: step-ctr
}

.mthdlgy .step-item {
display: grid;
grid-template-columns: 56px 1fr;
gap: 24px;
align-items: flex-start;
position: relative;
padding-bottom: 40px
}

.mthdlgy .step-item:last-child {
padding-bottom: 0
}

.mthdlgy .step-item__num-col {
display: flex;
flex-direction: column;
align-items: center
}

.mthdlgy .step-item__num {
width: 48px;
height: 48px;
border-radius: 8px;
border: 2px solid #FE5255;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 700;
color: #FE5255;
flex-shrink: 0;
background: #fff;
transition: background .18s ease-out, color .15s ease-out
}

.mthdlgy .step-item:hover .step-item__num {
background: #FE5255;
color: #fff
}

.mthdlgy .step-item__line {
width: 2px;
flex: 1;
background: linear-gradient(to bottom, #FE5255 0%, #F1EFF0 100%);
margin-top: 8px;
min-height: 32px
}

.mthdlgy .step-item:last-child .step-item__line {
display: none
}

.mthdlgy .step-item__txt {
padding-top: 8px
}

.mthdlgy .step-item__title {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0 0 8px
}

.mthdlgy .step-item__desc {
font-size: 14px;
line-height: 1.8;
color: #4a4f6a;
margin: 0
}

.mthdlgy .chart-blk {
background: #F1EFF0;
padding: 80px 40px
}

.mthdlgy .chart-blk__inner {
max-width: 1280px;
margin: 0 auto;
display: grid;
grid-template-columns: 5fr 7fr;
gap: 80px;
align-items: center
}

.mthdlgy .chart-blk__txt {
display: flex;
flex-direction: column;
gap: 16px
}

.mthdlgy .chart-blk__heading {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0
}

.mthdlgy .chart-blk__body {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0
}

.mthdlgy .chart-blk__body+.chart-blk__body {
margin-top: 8px
}

.mthdlgy .chart-blk__accent {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
border: 1.5px solid #FE5255;
border-radius: 8px;
padding: 8px 16px;
width: fit-content
}

.mthdlgy .chart-blk__accent-icon {
width: 24px;
height: 24px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0
}

.mthdlgy .chart-blk__accent-txt {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
font-weight: 600
}

.mthdlgy .chart-wrap {
background: #fff;
border-radius: 8px;
padding: 24px;
box-shadow: 0 1px 6px 0 #2c315114
}

.mthdlgy .chart-wrap__label {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 600;
margin: 0 0 16px
}

.mthdlgy .chart-svg {
width: 100%;
height: 200px;
display: block
}

.mthdlgy .chart-wrap__legend {
display: flex;
flex-direction: row;
gap: 24px;
margin-top: 16px;
flex-wrap: wrap
}

.mthdlgy .chart-wrap__leg-item {
display: flex;
flex-direction: row;
align-items: center;
gap: 8px;
font-size: 14px;
line-height: 1.55;
color: #2C3151
}

.mthdlgy .chart-wrap__leg-dot {
width: 10px;
height: 10px;
border-radius: 48px;
flex-shrink: 0
}

.mthdlgy .img-mosaic {
max-width: 1280px;
margin: 0 auto;
padding: 80px 40px
}

.mthdlgy .img-mosaic__heading {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
margin: 0 0 40px
}

.mthdlgy .img-mosaic__grid {
display: grid;
grid-template-columns: 3fr 2fr;
grid-template-rows: auto auto;
gap: 24px
}

.mthdlgy .mosaic-cell {
border-radius: 8px;
overflow: hidden;
position: relative;
box-shadow: 0 4px 22px 0 #2c315114
}

.mthdlgy .mosaic-cell--tall {
grid-row: span 2
}

.mthdlgy .mosaic-cell__img {
width: 100%;
height: 100%;
min-height: 220px;
object-fit: cover;
object-position: center 40%;
display: block;
transition: transform .2s ease-out
}

.mthdlgy .mosaic-cell:hover .mosaic-cell__img {
transform: scale(1.03)
}

.mthdlgy .mosaic-cell::after {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(ellipse at center, transparent 45%, #2c31516b 100%);
pointer-events: none
}

.mthdlgy .mosaic-cell__cap {
position: absolute;
bottom: 16px;
left: 16px;
right: 16px;
z-index: 2;
font-size: 14px;
line-height: 1.55;
color: #fff;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px
}

.mthdlgy .mosaic-cell--txt {
background: #2C3151;
display: flex;
flex-direction: column;
justify-content: center;
padding: 24px;
min-height: 220px
}

.mthdlgy .mosaic-cell--txt::after {
display: none
}

.mthdlgy .mosaic-cell__quote {
font-size: 55px;
line-height: 1.2;
color: #fe525540;
font-weight: 900;
pointer-events: none;
user-select: none;
margin: 0 0 8px;
line-height: .8
}

.mthdlgy .mosaic-cell__txt-body {
font-size: 14px;
line-height: 1.8;
color: #F1EFF0;
margin: 0
}

@media (max-width: 960px) {
.mthdlgy .crd-grid__list {
grid-template-columns: repeat(2, 1fr)
}

.mthdlgy .about-strip__inner {
grid-template-columns: 1fr;
gap: 40px
}

.mthdlgy .chart-blk__inner {
grid-template-columns: 1fr;
gap: 40px
}

.mthdlgy .img-mosaic__grid {
grid-template-columns: 1fr
}

.mthdlgy .mosaic-cell--tall {
grid-row: span 1
}

.mthdlgy .pg-band__heading {
font-size: 29px
}

.mthdlgy .pg-band__bg-ltr {
font-size: 120px
}
}

@media (max-width: 480px) {
.mthdlgy .crd-grid__list {
grid-template-columns: 1fr
}

.mthdlgy .crd-grid,
.mthdlgy .steps-blk,
.mthdlgy .img-mosaic {
padding: 40px 16px
}

.mthdlgy .about-strip,
.mthdlgy .chart-blk {
padding: 40px 16px
}

.mthdlgy .pg-band__txt {
padding: 40px 16px 24px
}

.mthdlgy .pg-band__bg-ltr {
display: none
}

.mthdlgy .pg-band__strip {
height: 120px
}

.mthdlgy .about-strip__img-wrap img {
height: 240px
}
}

@media (min-width: 1440px) {

.mthdlgy .pg-band__txt,
.mthdlgy .crd-grid,
.mthdlgy .steps-blk,
.mthdlgy .img-mosaic {
padding-left: 80px;
padding-right: 80px
}

.mthdlgy .about-strip,
.mthdlgy .chart-blk {
padding-left: 80px;
padding-right: 80px
}

.mthdlgy .about-strip__inner,
.mthdlgy .chart-blk__inner {
padding-left: 0;
padding-right: 0
}
}

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

.wcu-pg .pg-bound {
max-width: 1280px;
margin-left: auto;
margin-right: auto;
padding-left: 40px;
padding-right: 40px
}

.wcu-pg .t-lead {
font-size: 14px;
line-height: 1.55
}

.wcu-pg .t-mid {
font-size: 29px;
line-height: 1.2
}

.wcu-pg .t-xl {
font-size: 55px;
line-height: 1.2
}

.wcu-pg .t-hero {
font-size: 70px;
line-height: 1.2
}

.wcu-pg .ttl-blk {
background: linear-gradient(247deg, #2C3151, #F1EFF0);
padding-top: 80px;
padding-bottom: 80px;
position: relative
}

.wcu-pg .ttl-blk__inner {
display: flex;
flex-direction: row;
align-items: stretch;
gap: 40px
}

.wcu-pg .ttl-blk__img-col {
flex: 0 0 220px;
position: relative;
border-radius: 8px;
overflow: hidden;
min-height: 260px
}

.wcu-pg .ttl-blk__img-col img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block
}

.wcu-pg .ttl-blk__img-tint {
position: absolute;
inset: 0;
background: #fe525538;
border-radius: 8px
}

.wcu-pg .ttl-blk__dots {
position: absolute;
top: 0;
right: 0;
width: 100%;
height: 100%;
pointer-events: none
}

.wcu-pg .ttl-blk__txt-col {
flex: 1 1 auto;
display: flex;
flex-direction: column;
justify-content: center;
gap: 16px;
position: relative
}

.wcu-pg .ttl-blk__sym-pair {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
margin-bottom: 8px
}

.wcu-pg .ttl-blk__sym-pair .sym-icon {
width: 32px;
height: 32px;
flex-shrink: 0
}

.wcu-pg .ttl-blk__sym-pair .sym-line {
flex: 1 1 auto;
height: 1px;
background: #f1eff04d
}

.wcu-pg .ttl-blk__h {
font-size: 55px;
line-height: 1.2;
color: #F1EFF0;
font-weight: 800;
letter-spacing: .04em;
text-transform: uppercase;
margin: 0
}

.wcu-pg .ttl-blk__dot-grid {
position: absolute;
top: 16px;
right: 0;
display: grid;
grid-template-columns: repeat(6, 10px);
grid-template-rows: repeat(4, 10px);
gap: 8px;
pointer-events: none;
opacity: .18
}

.wcu-pg .ttl-blk__dot-grid span {
display: block;
width: 4px;
height: 4px;
border-radius: 48px;
background: #F1EFF0
}

.wcu-pg .why-blk {
background: #fff;
padding-top: 80px;
padding-bottom: 80px
}

.wcu-pg .why-blk__grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: start
}

.wcu-pg .why-blk__left {
display: flex;
flex-direction: column;
gap: 24px
}

.wcu-pg .why-blk__kicker {
font-size: 14px;
line-height: 1.55;
color: #FE5255;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .12em
}

.wcu-pg .why-blk__h {
font-size: 55px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
margin: 0
}

.wcu-pg .why-blk__body {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0
}

.wcu-pg .why-blk__img-wrap {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 9px 40px 0 #2c31511a
}

.wcu-pg .why-blk__img-wrap img {
width: 100%;
height: 360px;
object-fit: cover;
object-position: center 30%;
display: block;
transition: opacity .18s ease-out
}

.wcu-pg .why-blk__steps {
display: flex;
flex-direction: column;
gap: 0;
margin-top: 8px
}

.wcu-pg .why-blk__step {
display: flex;
flex-direction: row;
align-items: flex-start;
gap: 16px;
padding-bottom: 24px;
position: relative
}

.wcu-pg .why-blk__step:not(:last-child)::after {
content: '';
position: absolute;
left: 19px;
top: 40px;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, #FE5255 0%, #F1EFF0 100%)
}

.wcu-pg .why-blk__step-num {
flex-shrink: 0;
width: 40px;
height: 40px;
border-radius: 8px;
border: 2px solid #FE5255;
display: flex;
align-items: center;
justify-content: center;
font-size: 14px;
font-weight: 700;
color: #FE5255;
background: #fff;
position: relative;
z-index: 1;
transition: background .16s ease-out, color .16s ease-out
}

.wcu-pg .why-blk__step:hover .why-blk__step-num {
background: #FE5255;
color: #fff
}

.wcu-pg .why-blk__step-body {
flex: 1 1 auto;
padding-top: 8px
}

.wcu-pg .why-blk__step-h {
font-size: 14px;
font-weight: 700;
color: #2C3151;
line-height: 1.55;
margin: 0 0 8px;
text-transform: uppercase;
letter-spacing: .06em
}

.wcu-pg .why-blk__step-p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0;
opacity: .8
}

.wcu-pg .met-blk {
background: linear-gradient(247deg, #F1EFF0 0%, #e8e5e8 100%);
padding-top: 80px;
padding-bottom: 80px;
animation: desat-cycle 8s ease-in-out infinite
}

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

50% {
filter: saturate(0.55)
}

100% {
filter: saturate(1)
}
}

.wcu-pg .met-blk__layout {
display: grid;
grid-template-columns: 1fr 420px;
gap: 40px;
align-items: start
}

.wcu-pg .met-blk__left {
display: flex;
flex-direction: column;
gap: 40px
}

.wcu-pg .met-blk__h {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
margin: 0;
text-transform: uppercase;
letter-spacing: .07em
}

.wcu-pg .met-blk__desc {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0
}

.wcu-pg .rings-row {
display: flex;
flex-direction: row;
gap: 24px;
flex-wrap: wrap
}

.wcu-pg .ring-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 8px;
flex: 1 1 120px;
transition: transform .14s ease-out
}

.wcu-pg .ring-item:hover {
transform: scale(1.06)
}

.wcu-pg .ring-item svg {
display: block
}

.wcu-pg .ring-item__lbl {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
font-weight: 600;
text-align: center
}

.wcu-pg .met-blk__right {
position: relative
}

.wcu-pg .frost-card {
background: #ffffff8c;
backdrop-filter: blur(14px);
-webkit-backdrop-filter: blur(14px);
border-radius: 8px;
border: 1px solid #f1eff0cc;
box-shadow: 0 4px 22px 0 #2c315114;
padding: 40px;
display: flex;
flex-direction: column;
gap: 24px
}

.wcu-pg .frost-card__img-wrap {
border-radius: 8px;
overflow: hidden
}

.wcu-pg .frost-card__img-wrap img {
width: 100%;
height: 220px;
object-fit: cover;
object-position: center 20%;
display: block
}

.wcu-pg .frost-card__h {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 800;
margin: 0;
text-transform: uppercase;
letter-spacing: .05em
}

.wcu-pg .frost-card__p {
font-size: 14px;
line-height: 1.8;
color: #2C3151;
margin: 0
}

.wcu-pg .frost-card__legend {
display: flex;
flex-direction: column;
gap: 8px
}

.wcu-pg .frost-card__legend-row {
display: flex;
flex-direction: row;
align-items: center;
gap: 16px;
font-size: 14px;
line-height: 1.55;
color: #2C3151
}

.wcu-pg .frost-card__legend-dot {
width: 12px;
height: 12px;
border-radius: 48px;
flex-shrink: 0
}

.wcu-pg .frost-card__legend-dot--a {
background: #FE5255
}

.wcu-pg .frost-card__legend-dot--b {
background: #2C3151
}

.wcu-pg .frost-card__legend-dot--c {
background: #b0acb8
}

.wcu-pg .frost-card__cta {
display: inline-flex;
flex-direction: row;
align-items: center;
gap: 8px;
padding: 16px 24px;
border-radius: 8px;
border: 2px solid #FE5255;
background: transparent;
color: #FE5255;
font-size: 14px;
font-weight: 700;
letter-spacing: .06em;
text-transform: uppercase;
cursor: pointer;
text-decoration: none;
transition: background .18s ease-out, color .14s ease-out;
align-self: flex-start;
position: relative;
overflow: hidden
}

.wcu-pg .frost-card__cta:hover {
background: #FE5255;
color: #fff
}

.wcu-pg .frost-card__cta .btn-arr {
display: flex;
align-items: center;
transform: translateX(-4px);
opacity: 0;
transition: transform .18s ease-out, opacity .14s ease-out
}

.wcu-pg .frost-card__cta:hover .btn-arr {
transform: translateX(0);
opacity: 1
}

.wcu-pg .divider-zz {
display: block;
width: 100%;
height: 40px;
overflow: hidden;
line-height: 0
}

@media (max-width: 960px) {
.wcu-pg .pg-bound {
padding-left: 24px;
padding-right: 24px
}

.wcu-pg .ttl-blk__h {
font-size: 29px
}

.wcu-pg .ttl-blk__img-col {
flex: 0 0 140px;
min-height: 180px
}

.wcu-pg .why-blk__grid {
grid-template-columns: 1fr
}

.wcu-pg .why-blk__h {
font-size: 29px
}

.wcu-pg .met-blk__layout {
grid-template-columns: 1fr
}

.wcu-pg .rings-row {
gap: 16px
}
}

@media (max-width: 480px) {
.wcu-pg .pg-bound {
padding-left: 16px;
padding-right: 16px
}

.wcu-pg .ttl-blk {
padding-top: 40px;
padding-bottom: 40px
}

.wcu-pg .ttl-blk__inner {
flex-direction: column;
gap: 24px
}

.wcu-pg .ttl-blk__img-col {
flex: 0 0 auto;
min-height: 160px;
width: 100%
}

.wcu-pg .ttl-blk__h {
font-size: 29px
}

.wcu-pg .why-blk {
padding-top: 40px;
padding-bottom: 40px
}

.wcu-pg .why-blk__h {
font-size: 29px
}

.wcu-pg .met-blk {
padding-top: 40px;
padding-bottom: 40px
}

.wcu-pg .rings-row {
flex-direction: column;
align-items: center
}

.wcu-pg .frost-card {
padding: 24px
}
}

@media (min-width: 1440px) {
.wcu-pg .ttl-blk__h {
font-size: 70px
}
}

.suc-page {
min-height: 60vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 24px;
background-color: #F1EFF0
}

.suc-page .suc-card {
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 22px 0 #2c315114;
padding: 80px 40px;
max-width: 560px;
width: 100%;
text-align: center
}

.suc-page .suc-card .suc-icon {
display: flex;
align-items: center;
justify-content: center;
width: 72px;
height: 72px;
margin: 0 auto 40px;
border-radius: 48px;
background: linear-gradient(247deg, #2C3151, #F1EFF0)
}

.suc-page .suc-card .suc-icon svg {
display: block
}

.suc-page .suc-card .suc-heading {
font-size: 29px;
line-height: 1.2;
color: #2C3151;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .04em;
margin: 0 0 16px
}

.suc-page .suc-card .suc-msg {
font-size: 14px;
line-height: 1.55;
color: #2C3151;
margin: 0 0 40px;
opacity: .82
}

.suc-page .suc-card .suc-divider {
width: 48px;
height: 2px;
background: #FE5255;
border-radius: 8px;
margin: 0 auto 40px
}

.suc-page .suc-card .suc-btn {
display: inline-block;
font-size: 14px;
line-height: 1.2;
font-weight: 600;
color: #2C3151;
text-decoration: none;
border: 1.5px solid #2C3151;
border-radius: 8px;
padding: 16px 40px;
position: relative;
overflow: hidden;
transition: color .18s ease-out, background .18s ease-out, border-color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.suc-page .suc-card .suc-btn:hover {
background: #2C3151;
color: #fff;
border-color: #2C3151
}

.suc-page .suc-card .suc-btn:focus-visible {
outline: 2px solid #FE5255;
outline-offset: 3px
}

.suc-page .suc-card .suc-btn:active {
box-shadow: inset 0 2px 6px 0 #2c31512e
}

.suc-page .suc-note {
margin-top: 24px;
font-size: 14px;
line-height: 1.55;
color: #2C3151;
opacity: .6;
text-align: center
}

.suc-page .suc-note a {
color: #FE5255;
text-decoration: none;
border-bottom: 1px solid #fe525559;
transition: border-color .14s ease-out
}

.suc-page .suc-note a:visited {
text-decoration: line-through
}

.suc-page .suc-note a:hover {
border-color: #FE5255
}

@media (max-width: 480px) {
.suc-page {
padding: 40px 16px
}

.suc-page .suc-card {
padding: 40px 24px
}
}