* {
    box-sizing: border-box
}

body {
    margin: 0;
    scrollbar-gutter: stable;
    min-height: 100vh;
    font-family: 'Bitter', Georgia, serif
}

@keyframes dash-rotate {
    from {
        outline-offset: 3px
    }

    to {
        outline-offset: 6px
    }
}

:focus-visible {
    outline: 2px dashed #21349B;
    outline-offset: 3px;
    animation: dash-rotate 1.2s cubic-bezier(0.4, 0, 1, 1) infinite alternate
}

.pg-header {
    position: relative;
    background: linear-gradient(135deg, #21349B 0%, #2d3fa8 55%, #7E47CD 100%);
    padding: 0;
    z-index: 100;
    box-shadow: 0 7px 22px 0 #21349b1c
}

.pg-header__top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px 0;
    display: flex;
    align-items: flex-start;
    gap: 40px
}

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

.brand-cap__img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 40px;
    padding: 8px 24px;
    box-shadow: 0 1px 6px 0 #21349b0f 0 7px 22px 0 #21349b1c;
    border: 2px solid #b9bee466;
    min-height: 52px
}

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

.brand-cap__label {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    color: #B9BEE4;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding-left: 4px
}

.hd-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px
}

.hd-right__meta {
    display: flex;
    align-items: center;
    gap: 24px
}

.hd-right__lang {
    display: flex;
    align-items: center;
    gap: 4px
}

.lang-btn {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    color: #B9BEE4;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 7px;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: color .15s cubic-bezier(0.4, 0, 1, 1), background .15s cubic-bezier(0.4, 0, 1, 1)
}

.lang-btn:hover {
    color: #fff;
    background: #b9bee42e
}

.lang-btn--active {
    color: #fff;
    background: #b9bee438
}

.lang-sep {
    color: #b9bee466;
    font-size: 13px
}

.hd-right__contact {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    color: #B9BEE4;
    text-decoration: none;
    letter-spacing: .04em;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.hd-right__contact:hover {
    color: #fff
}

.pg-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px
}

.pg-nav__item {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    color: #b9bee4d9;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 7px 7px 0 0;
    letter-spacing: .06em;
    display: block;
    transition: color .14s cubic-bezier(0.4, 0, 1, 1), background .14s cubic-bezier(0.4, 0, 1, 1);
    white-space: nowrap
}

.pg-nav__item:hover {
    color: #fff;
    background: #b9bee424
}

.pg-nav__item--current {
    color: #fff;
    background: #ffffff1f
}

.pg-header__strip {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.pg-header__accent {
    height: 3px;
    background: linear-gradient(90deg, #7E47CD 0%, #B9BEE4 60%, #21349B 100%);
    width: 100%;
    margin-top: 0;
    border-radius: 3px 3px 0 0
}

@media (max-width: 1024px) {
    .pg-header__top {
        padding: 24px 24px 0;
        gap: 24px
    }

    .pg-header__strip {
        padding: 0 24px
    }
}

@media (max-width: 768px) {
    .pg-header__top {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 24px 0;
        gap: 24px
    }

    .hd-right {
        align-items: flex-start;
        width: 100%
    }

    .pg-nav {
        gap: 4px
    }

    .pg-nav__item {
        font-size: 13px;
        padding: 8px 12px
    }
}

@media (max-width: 640px) {
    .pg-header__top {
        padding: 24px 12px 0
    }

    .pg-header__strip {
        padding: 0 12px
    }

    .hd-right__meta {
        flex-wrap: wrap;
        gap: 12px
    }
}

.pg-footer {
    background: linear-gradient(135deg, #21349B 0%, #2d3fa8 60%, #7E47CD 100%);
    padding: 24px 0 0;
    box-shadow: 0 -7px 22px 0 #21349b1c
}

.pg-footer__bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px
}

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

.ft-brand__img-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px 0 #21349b0f;
    border: 2px solid #b9bee459
}

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

.ft-brand__name {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    color: #B9BEE4;
    letter-spacing: .1em;
    text-transform: uppercase
}

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

.ft-links__item a {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    color: #b9bee4cc;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 7px;
    display: block;
    white-space: nowrap;
    transition: color .13s cubic-bezier(0.4, 0, 1, 1), background .13s cubic-bezier(0.4, 0, 1, 1)
}

.ft-links__item a:hover {
    color: #fff;
    background: #b9bee424
}

.ft-copy {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    color: #b9bee499;
    white-space: nowrap
}

.pg-footer__accent {
    height: 3px;
    background: linear-gradient(90deg, #21349B 0%, #B9BEE4 50%, #7E47CD 100%);
    border-radius: 0
}

@media (max-width: 1024px) {
    .pg-footer__bar {
        padding: 0 24px 24px
    }
}

@media (max-width: 768px) {
    .pg-footer__bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 0 24px 24px
    }
}

@media (max-width: 640px) {
    .pg-footer__bar {
        padding: 0 12px 24px
    }

    .ft-links {
        gap: 4px
    }
}

.ck-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #21349B;
    z-index: 4000;
    box-shadow: 0 -7px 22px 0 #21349b1c;
    transform: translateY(100%);
    transition: transform .42s cubic-bezier(0.4, 0, 1, 1)
}

.ck-bar--visible {
    transform: translateY(0)
}

.ck-bar__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.ck-bar__text {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    color: #B9BEE4;
    line-height: 1.65;
    flex: 1;
    min-width: 200px
}

.ck-bar__acts {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0
}

.ck-bar__ok {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 4px 0;
    transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.ck-bar__ok:hover {
    color: #B9BEE4
}

.ck-bar__no {
    font-family: 'Bitter', Georgia, serif;
    font-size: 13px;
    color: #b9bee4b3;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 4px 0;
    transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.ck-bar__no:hover {
    color: #B9BEE4
}

@media (max-width: 768px) {
    .ck-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px
    }
}

@media (max-width: 640px) {
    .ck-bar__inner {
        padding: 24px 12px
    }
}

.text-legal-yusp {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #1a2340;
    line-height: 1.65;
    font-size: 13px
}

.text-legal-yusp ul,
.text-legal-yusp ol {
    padding-left: 24px;
    margin-top: 12px;
    margin-bottom: 24px
}

.text-legal-yusp ul ul,
.text-legal-yusp ol ol,
.text-legal-yusp ul ol,
.text-legal-yusp ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.text-legal-yusp ul {
    list-style: none;
    padding-left: 12px
}

.text-legal-yusp ul li {
    position: relative;
    padding-left: 24px
}

.text-legal-yusp ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: linear-gradient(135deg, #21349B, #7E47CD)
}

.text-legal-yusp ol {
    list-style: none;
    counter-reset: policy-counter;
    padding-left: 12px
}

.text-legal-yusp ol li {
    position: relative;
    padding-left: 24px;
    counter-increment: policy-counter
}

.text-legal-yusp ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 13px;
    font-weight: 600;
    color: #21349B;
    line-height: 1.65
}

.text-legal-yusp li {
    margin-bottom: 8px;
    line-height: 1.65;
    font-size: 13px;
    color: #2a3560
}

.text-legal-yusp strong,
.text-legal-yusp b {
    font-weight: 700;
    color: #21349B;
    letter-spacing: .01em
}

.text-legal-yusp em,
.text-legal-yusp i {
    font-style: italic;
    color: #4a3a80
}

.text-legal-yusp hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #B9BEE4 20%, #7E47CD 50%, #B9BEE4 80%, transparent);
    margin: 40px 0;
    border-radius: 3px
}

.text-legal-yusp div {
    margin-bottom: 24px
}

@media (max-width: 1024px) {
    .text-legal-yusp {
        padding: 80px 24px
    }
}

@media (max-width: 768px) {
    .text-legal-yusp {
        padding: 40px 24px
    }
}

@media (max-width: 640px) {
    .text-legal-yusp {
        padding: 40px 12px
    }

    .text-legal-yusp ul,
    .text-legal-yusp ol {
        padding-left: 8px
    }
}

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

.srvdet .load-up {
    opacity: 0;
    transform: translateY(32px);
    animation: riseUp .82s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.srvdet .load-up--d1 {
    animation-delay: .08s
}

.srvdet .load-up--d2 {
    animation-delay: .18s
}

.srvdet .load-up--d3 {
    animation-delay: .28s
}

.srvdet .load-up--d4 {
    animation-delay: .38s
}

.srvdet .load-up--d5 {
    animation-delay: .48s
}

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

.srvdet .pg-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

@media (max-width: 1024px) {
    .srvdet .pg-top {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }
}

.srvdet .pg-top__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    position: relative
}

.srvdet .pg-top__img-main {
    grid-column: 1 / 3;
    border-radius: 13px;
    overflow: hidden;
    position: relative
}

.srvdet .pg-top__img-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(1.18) contrast(1.08) hue-rotate(0deg);
    transition: filter .72s cubic-bezier(0.4, 0, 1, 1)
}

.srvdet .pg-top__img-main:hover img {
    filter: saturate(1.6) contrast(1.14)
}

.srvdet .pg-top__img-sm {
    border-radius: 7px;
    overflow: hidden;
    background: #B9BEE4
}

.srvdet .pg-top__img-sm img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) contrast(1.1);
    transition: filter .65s cubic-bezier(0.4, 0, 1, 1)
}

.srvdet .pg-top__img-sm:hover img {
    filter: saturate(1.4) contrast(1.1)
}

.srvdet .pg-top__blur1 {
    position: absolute;
    width: 180px;
    height: 180px;
    background: #7e47cd21;
    border-radius: 40px;
    filter: blur(48px);
    top: -24px;
    left: -24px;
    pointer-events: none;
    z-index: 0
}

.srvdet .pg-top__blur2 {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #21349b1a;
    border-radius: 40px;
    filter: blur(36px);
    bottom: 0;
    right: -12px;
    pointer-events: none;
    z-index: 0
}

.srvdet .pg-top__text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srvdet .pg-top__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.srvdet .pg-top__tag {
    background: linear-gradient(53deg, #B9BEE4 0%, transparent 100%);
    border: 1px solid #B9BEE4;
    border-radius: 24px;
    padding: 4px 12px;
    font-size: 13px;
    color: #21349B;
    letter-spacing: .06em;
    line-height: 1.45
}

.srvdet .pg-top__fmt {
    background: #21349b12;
    border-radius: 24px;
    padding: 4px 12px;
    font-size: 13px;
    color: #7E47CD;
    letter-spacing: .05em;
    line-height: 1.45
}

.srvdet .pg-top__h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #21349B;
    margin: 0
}

.srvdet .pg-top__h1 .und-word {
    position: relative;
    display: inline-block
}

.srvdet .pg-top__h1 .und-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    border-radius: 3px;
    animation: drawLine .82s .6s cubic-bezier(0.4, 0, 1, 1) forwards
}

@keyframes drawLine {
    to {
        width: 100%
    }
}

.srvdet .pg-top__sub {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0;
    max-width: 420px
}

.srvdet .pg-top__cta {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 100%);
    color: #fff;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .04em;
    align-self: flex-start;
    transition: background .72s cubic-bezier(0.4, 0, 1, 1), box-shadow .65s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 7px 22px 0 #21349b1c
}

.srvdet .pg-top__cta:hover {
    background: linear-gradient(233deg, #21349B 0%, #7E47CD 100%);
    box-shadow: 0 10px 48px 0 #21349b1a
}

.srvdet .pg-top__cta:focus {
    outline: 2px solid #7E47CD;
    outline-offset: 3px
}

.srvdet .stats-row {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    align-items: stretch
}

@media (max-width: 768px) {
    .srvdet .stats-row {
        padding: 24px;
        gap: 12px
    }
}

.srvdet .stat-card {
    flex: 1 1 140px;
    background: linear-gradient(53deg, #b9bee42e 0%, transparent 100%);
    border: 1px solid #b9bee480;
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    transition: box-shadow .65s cubic-bezier(0.4, 0, 1, 1), transform .65s cubic-bezier(0.4, 0, 1, 1)
}

.srvdet .stat-card:hover {
    box-shadow: 0 7px 22px 0 #21349b1c;
    transform: translateY(-3px)
}

.srvdet .stat-card__lbl {
    font-size: 13px;
    color: #7E47CD;
    letter-spacing: .07em;
    line-height: 1.45
}

.srvdet .stat-card__val {
    font-size: 25px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2
}

.srvdet .stat-card__note {
    font-size: 13px;
    color: #3a3a5c;
    line-height: 1.45
}

.srvdet .ring-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.srvdet .ring-svg {
    width: 56px;
    height: 56px
}

.srvdet .ring-svg circle.ring-bg {
    fill: none;
    stroke: #B9BEE4;
    stroke-width: 5
}

.srvdet .ring-svg circle.ring-fill {
    fill: none;
    stroke: url(#ringGrad);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 138;
    stroke-dashoffset: 138;
    animation: fillRing 1.1s .5s cubic-bezier(0.4, 0, 1, 1) forwards;
    transform: rotate(-90deg);
    transform-origin: 50% 50%
}

@keyframes fillRing {
    to {
        stroke-dashoffset: 34
    }
}

.srvdet .ring-num {
    font-size: 13px;
    font-weight: 700;
    color: #21349B;
    letter-spacing: .04em
}

.srvdet .desc-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

@media (max-width: 1024px) {
    .srvdet .desc-area {
        grid-template-columns: 1fr;
        padding: 24px
    }
}

.srvdet .desc-area__body {
    font-size: 13px;
    line-height: 1.65;
    color: #2a2a44
}

.srvdet .desc-area__body h2 {
    font-size: 25px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    margin: 0 0 12px
}

.srvdet .desc-area__body h3 {
    font-size: 25px;
    font-weight: 700;
    color: #7E47CD;
    line-height: 1.2;
    margin: 0 0 8px
}

.srvdet .desc-area__body p {
    margin: 0 0 12px;
    max-width: 640px
}

.srvdet .desc-area__body ul,
.srvdet .desc-area__body ol {
    padding-left: 24px;
    margin: 0 0 12px
}

.srvdet .desc-area__body li {
    margin-bottom: 8px
}

.srvdet .desc-area__body strong {
    color: #21349B;
    font-weight: 700
}

.srvdet .desc-area__body blockquote {
    border-top: 2px solid #B9BEE4;
    border-bottom: 2px solid #B9BEE4;
    padding: 12px 24px;
    margin: 24px 0;
    color: #21349B;
    font-size: 13px;
    line-height: 1.65;
    background: #b9bee41a;
    border-radius: 7px
}

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

.srvdet .price-card {
    background: #fff;
    border: 1.5px solid #21349b21;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 7px 22px 0 #21349b1c;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srvdet .price-card__lbl {
    font-size: 13px;
    color: #7E47CD;
    letter-spacing: .07em;
    line-height: 1.45
}

.srvdet .price-card__amount {
    font-size: 34px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2
}

.srvdet .price-card__note {
    font-size: 13px;
    color: #3a3a5c;
    line-height: 1.45
}

.srvdet .price-card__btn {
    display: block;
    text-align: center;
    padding: 12px 24px;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 100%);
    color: #fff;
    border-radius: 13px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .04em;
    transition: background .72s cubic-bezier(0.4, 0, 1, 1), box-shadow .65s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 7px 22px 0 #21349b1c
}

.srvdet .price-card__btn:hover {
    background: linear-gradient(233deg, #21349B 0%, #7E47CD 100%);
    box-shadow: 0 10px 48px 0 #21349b1a
}

.srvdet .price-card__btn:focus {
    outline: 2px solid #7E47CD;
    outline-offset: 3px
}

.srvdet .price-card__seats {
    font-size: 13px;
    color: #21349B;
    font-weight: 700;
    line-height: 1.45;
    background: #21349b0f;
    border-radius: 7px;
    padding: 8px 12px
}

.srvdet .prog-area {
    background: #21349b0a;
    position: relative;
    overflow: hidden
}

.srvdet .prog-area__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px
}

@media (max-width: 768px) {
    .srvdet .prog-area__inner {
        padding: 40px 24px
    }
}

.srvdet .prog-area__tri-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.srvdet .prog-area__tri-bg svg {
    width: 100%;
    height: 100%;
    opacity: .045
}

.srvdet .prog-area__h {
    font-size: 25px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    margin: 0 0 40px;
    letter-spacing: -.01em
}

.srvdet .prog-area__body {
    font-size: 13px;
    line-height: 1.65;
    color: #2a2a44;
    max-width: 860px
}

.srvdet .prog-area__body h2 {
    font-size: 25px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    margin: 0 0 12px
}

.srvdet .prog-area__body p {
    margin: 0 0 12px
}

.srvdet .prog-area__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.srvdet .prog-area__body ul li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    counter-increment: prog-li
}

.srvdet .prog-area__body ol {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: prog-li
}

.srvdet .prog-area__body ol li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    counter-increment: prog-li
}

.srvdet .prog-area__body ol li::before {
    content: counter(prog-li);
    min-width: 24px;
    height: 24px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    color: #fff;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srvdet .prog-area__body strong {
    color: #21349B;
    font-weight: 700
}

.srvdet .prog-area__body blockquote {
    border-top: 2px solid #B9BEE4;
    border-bottom: 2px solid #B9BEE4;
    padding: 12px 24px;
    margin: 24px 0;
    color: #21349B;
    font-size: 13px;
    line-height: 1.65;
    background: #b9bee41f;
    border-radius: 7px
}

.srvdet .prog-area__body dl {
    margin: 0 0 24px
}

.srvdet .prog-area__body dt {
    font-weight: 700;
    color: #21349B;
    font-size: 13px;
    margin-top: 12px
}

.srvdet .prog-area__body dd {
    margin: 4px 0 0 24px;
    color: #2a2a44;
    font-size: 13px;
    line-height: 1.65
}

.srvdet .prog-area__body details {
    background: #fff;
    border-radius: 7px;
    padding: 12px 24px;
    margin-bottom: 8px;
    box-shadow: 0 1px 6px 0 #21349b0f
}

.srvdet .prog-area__body summary {
    font-weight: 700;
    color: #21349B;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.45;
    outline: none
}

.srvdet .prog-area__body summary:focus {
    outline: 2px solid #7E47CD;
    border-radius: 3px
}

.srvdet .backtop-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 40px 80px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end
}

@media (max-width: 768px) {
    .srvdet .backtop-bar {
        padding: 24px
    }
}

.srvdet .backtop-lnk {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border: 1.5px solid #21349b2e;
    border-radius: 24px;
    font-size: 13px;
    color: #21349B;
    text-decoration: none;
    letter-spacing: .05em;
    transition: border-color .65s cubic-bezier(0.4, 0, 1, 1), background .65s cubic-bezier(0.4, 0, 1, 1)
}

.srvdet .backtop-lnk:hover {
    background: #21349b0f;
    border-color: #21349B
}

.srvdet .backtop-lnk:focus {
    outline: 2px solid #7E47CD;
    outline-offset: 3px
}

.srvdet .backtop-lnk__arr {
    display: inline-block;
    width: 16px;
    height: 16px
}

@media (max-width: 640px) {
    .srvdet .pg-top {
        padding: 24px 12px;
        gap: 24px
    }

    .srvdet .stats-row {
        padding: 12px
    }

    .srvdet .desc-area {
        padding: 12px 12px 40px
    }

    .srvdet .prog-area__inner {
        padding: 40px 12px
    }

    .srvdet .backtop-bar {
        padding: 12px 12px 40px
    }

    .srvdet .pg-top__h1 {
        font-size: 25px
    }
}

.innov-pg {
    background: #fff;
    overflow-x: hidden;
    width: 100%
}

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

.innov-pg ::selection {
    background: #21349B;
    color: #fff
}

.innov-pg .title-bl {
    position: relative;
    background: #21349B;
    padding: 80px 24px 0;
    overflow: hidden
}

.innov-pg .title-bl__texture {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 3px, #b9bee412 3px, #b9bee412 4px), repeating-linear-gradient(90deg, transparent, transparent 40px, #b9bee40a 40px, #b9bee40a 41px);
    pointer-events: none
}

.innov-pg .title-bl__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #0a103c8c 100%);
    animation: vignette-breathe 7s cubic-bezier(0.4, 0, 1, 1) infinite alternate;
    pointer-events: none
}

@keyframes vignette-breathe {
    from {
        opacity: .6
    }

    to {
        opacity: 1
    }
}

.innov-pg .title-bl__inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.innov-pg .title-bl__label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: .12em;
    color: #B9BEE4;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 4px 12px;
    border: 1px solid #b9bee44d;
    border-radius: 3px
}

.innov-pg .title-bl__h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    letter-spacing: -.02em;
    margin: 0 0 24px;
    max-width: 820px
}

.innov-pg .title-bl__h1 span {
    display: block;
    color: #B9BEE4
}

.innov-pg .title-bl__desc {
    font-size: 25px;
    line-height: 1.45;
    color: #b9bee4e6;
    max-width: 560px;
    margin: 0 0 40px
}

.innov-pg .title-bl__curve-line {
    position: absolute;
    right: 80px;
    top: 40px;
    width: 180px;
    height: 120px;
    pointer-events: none
}

.innov-pg .title-bl__wave {
    display: block;
    width: 100%;
    margin-top: 40px;
    line-height: 0
}

.innov-pg .approach-sec {
    background: #f4f5fb;
    padding: 80px 24px
}

.innov-pg .approach-sec__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.innov-pg .approach-sec__img-wrap {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 7px 22px 0 #21349b1c
}

.innov-pg .approach-sec__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: blur(0px);
    transition: filter .7s cubic-bezier(0.4, 0, 1, 1)
}

.innov-pg .approach-sec__img-wrap:hover .approach-sec__img {
    filter: blur(1.5px) brightness(0.92)
}

.innov-pg .approach-sec__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(53deg, #21349b2e, transparent);
    pointer-events: none
}

.innov-pg .approach-sec__kicker {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7E47CD;
    font-weight: 700;
    margin-bottom: 12px
}

.innov-pg .approach-sec__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.innov-pg .approach-sec__h2 .ul-word {
    position: relative;
    display: inline-block
}

.innov-pg .approach-sec__h2 .ul-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 2px;
    width: 0;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    border-radius: 3px;
    animation: ul-draw .9s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes ul-draw {
    to {
        width: 100%
    }
}

.innov-pg .approach-sec__p {
    font-size: 13px;
    line-height: 1.65;
    color: #2d3460;
    margin: 0 0 12px
}

.innov-pg .approach-sec__curve {
    position: absolute;
    left: -18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 14px;
    height: 60px
}

.innov-pg .approach-sec__txt-wrap {
    position: relative
}

.innov-pg .steps-sec {
    background: #21349B;
    padding: 80px 24px;
    position: relative
}

.innov-pg .steps-sec__inner {
    max-width: 1400px;
    margin: 0 auto
}

.innov-pg .steps-sec__head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 40px
}

.innov-pg .steps-sec__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0;
    max-width: 480px;
    letter-spacing: -.01em
}

.innov-pg .steps-sec__sub {
    font-size: 13px;
    line-height: 1.65;
    color: #B9BEE4;
    max-width: 340px;
    margin: 0
}

.innov-pg .steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.innov-pg .steps-list::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(90deg, #b9bee466, #7e47cd99, #b9bee466);
    border-radius: 3px
}

.innov-pg .step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    position: relative
}

.innov-pg .step-item__num {
    width: 56px;
    height: 56px;
    border-radius: 40px;
    background: linear-gradient(53deg, #7E47CD, #21349B);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    box-shadow: 0 7px 22px 0 #7e47cd1c;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.innov-pg .step-item__h {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: .02em;
    text-transform: uppercase
}

.innov-pg .step-item__p {
    font-size: 13px;
    line-height: 1.65;
    color: #B9BEE4;
    margin: 0
}

.innov-pg .media-sec {
    background: #fff;
    padding: 80px 24px
}

.innov-pg .media-sec__inner {
    max-width: 1400px;
    margin: 0 auto
}

.innov-pg .media-sec__head {
    margin-bottom: 40px
}

.innov-pg .media-sec__kicker {
    font-size: 13px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7E47CD;
    font-weight: 700;
    margin-bottom: 12px
}

.innov-pg .media-sec__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0;
    letter-spacing: -.01em
}

.innov-pg .media-sec__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px
}

.innov-pg .media-card {
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 1px 6px 0 #21349b0f;
    transition: box-shadow .7s cubic-bezier(0.4, 0, 1, 1)
}

.innov-pg .media-card:hover {
    box-shadow: 0 10px 48px 0 #21349b1a
}

.innov-pg .media-card--wide {
    grid-column: 1 / 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(53deg, #B9BEE4, transparent)
}

.innov-pg .media-card--wide .media-card__img-wrap {
    height: 320px
}

.innov-pg .media-card--wide .media-card__body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff
}

.innov-pg .media-card--narrow {
    background: linear-gradient(53deg, #b9bee440, transparent);
    display: flex;
    flex-direction: column
}

.innov-pg .media-card__img-wrap {
    overflow: hidden;
    height: 240px;
    flex-shrink: 0
}

.innov-pg .media-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(0.4, 0, 1, 1)
}

.innov-pg .media-card:hover .media-card__img {
    transform: scale(1.04)
}

.innov-pg .media-card__body {
    padding: 24px;
    flex: 1
}

.innov-pg .media-card__tag {
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7E47CD;
    font-weight: 700;
    margin-bottom: 8px
}

.innov-pg .media-card__h {
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0 0 12px;
    letter-spacing: -.01em
}

.innov-pg .media-card__p {
    font-size: 13px;
    line-height: 1.65;
    color: #2d3460;
    margin: 0 0 24px
}

.innov-pg .media-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #21349B;
    text-decoration: none;
    border-radius: 7px;
    padding: 8px 12px;
    background: #21349b0f;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), color .15s cubic-bezier(0.4, 0, 1, 1)
}

.innov-pg .media-card__link:hover {
    background: #21349B;
    color: #fff
}

.innov-pg .media-card__link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.innov-pg .metrics-sec {
    background: linear-gradient(53deg, #B9BEE4, #b9bee426);
    padding: 80px 24px
}

.innov-pg .metrics-sec__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start
}

.innov-pg .metrics-sec__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.innov-pg .metrics-sec__p {
    font-size: 13px;
    line-height: 1.65;
    color: #2d3460;
    margin: 0 0 40px
}

.innov-pg .metrics-sec__cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    box-shadow: 0 7px 22px 0 #21349b1c;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), background .7s cubic-bezier(0.4, 0, 1, 1)
}

.innov-pg .metrics-sec__cta:hover {
    background: linear-gradient(233deg, #21349B, #7E47CD);
    box-shadow: 0 10px 48px 0 #21349b1a
}

.innov-pg .metrics-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.innov-pg .metric-card {
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    position: relative;
    overflow: hidden
}

.innov-pg .metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    border-radius: 13px 13px 0 0
}

.innov-pg .metric-card__val {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    letter-spacing: -.03em;
    display: block
}

.innov-pg .metric-card__unit {
    font-size: 25px;
    color: #7E47CD;
    font-weight: 700
}

.innov-pg .metric-card__label {
    font-size: 13px;
    line-height: 1.45;
    color: #2d3460;
    margin-top: 8px;
    display: block
}

.innov-pg .metric-card__bar {
    height: 4px;
    background: #b9bee459;
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden
}

.innov-pg .metric-card__bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    animation: bar-grow 1.2s cubic-bezier(0.4, 0, 1, 1) forwards;
    transform-origin: left
}

@keyframes bar-grow {
    from {
        width: 0
    }
}

@media (max-width: 1024px) {
    .innov-pg .title-bl__h1 {
        font-size: 34px
    }

    .innov-pg .approach-sec__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .innov-pg .steps-list {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .innov-pg .steps-list::before {
        display: none
    }

    .innov-pg .metrics-sec__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .innov-pg .media-sec__grid {
        grid-template-columns: 1fr
    }

    .innov-pg .media-card--wide {
        grid-column: 1;
        grid-template-columns: 1fr
    }

    .innov-pg .media-card--wide .media-card__img-wrap {
        height: 220px
    }
}

@media (max-width: 768px) {
    .innov-pg .title-bl {
        padding: 40px 24px 0
    }

    .innov-pg .title-bl__h1 {
        font-size: 34px
    }

    .innov-pg .title-bl__desc {
        font-size: 13px
    }

    .innov-pg .steps-list {
        grid-template-columns: 1fr
    }

    .innov-pg .metrics-list {
        grid-template-columns: 1fr
    }

    .innov-pg .steps-sec__head {
        flex-direction: column;
        align-items: flex-start
    }

    .innov-pg .media-sec__h2 {
        font-size: 25px
    }
}

@media (max-width: 640px) {
    .innov-pg .title-bl__h1 {
        font-size: 25px
    }

    .innov-pg .approach-sec__img {
        height: 260px
    }

    .innov-pg .approach-sec {
        padding: 40px 24px
    }

    .innov-pg .steps-sec {
        padding: 40px 24px
    }

    .innov-pg .media-sec {
        padding: 40px 24px
    }

    .innov-pg .metrics-sec {
        padding: 40px 24px
    }
}

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

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

.srv .title-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    padding: 80px 0 40px
}

.srv .title-row__img-col {
    flex: 0 0 320px;
    position: relative
}

.srv .title-row__img-wrap {
    width: 320px;
    height: 380px;
    overflow: hidden;
    border-radius: 24px 7px 40px 13px;
    clip-path: polygon(0 8%, 8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    background: linear-gradient(53deg, #B9BEE4 0%, transparent 100%)
}

.srv .title-row__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.srv .title-row__img-deco {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 180px;
    height: 180px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349b1a 0%, transparent 100%);
    z-index: -1;
    pointer-events: none
}

.srv .title-row__text {
    flex: 1 1 0;
    padding-bottom: 12px
}

.srv .title-row__label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #21349B;
    font-weight: 700;
    margin-bottom: 12px;
    display: block
}

.srv .title-row__h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.srv .title-row__h1 span {
    display: inline-block;
    position: relative;
    color: #7E47CD
}

.srv .title-row__h1 span::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 3px;
    width: 0;
    border-radius: 3px;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 100%);
    animation: underline-draw .8s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

.srv .title-row__desc {
    font-size: 25px;
    line-height: 1.45;
    color: #2d2d4a;
    max-width: 560px;
    margin: 0
}

.srv .divider-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 0 0 40px
}

.srv .divider-a__line {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(53deg, #B9BEE4 0%, transparent 100%)
}

.srv .divider-a__shape {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.srv .cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 0 80px
}

.srv .svc-card {
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 7px 22px 0 #21349b1c;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .7s cubic-bezier(0.4, 0, 1, 1), transform .6s cubic-bezier(0.4, 0, 1, 1);
    animation: card-in .75s cubic-bezier(0.4, 0, 1, 1) both
}

.srv .svc-card:nth-child(1) {
    animation-delay: .08s
}

.srv .svc-card:nth-child(2) {
    animation-delay: .22s
}

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

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

.srv .svc-card:hover {
    box-shadow: 0 10px 48px 0 #7e47cd1a;
    transform: translateY(-4px)
}

.srv .svc-card__top {
    position: relative;
    background: linear-gradient(53deg, #B9BEE4 0%, transparent 100%);
    padding: 24px 24px 12px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.srv .svc-card__tag {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .09em;
    color: #fff;
    background: #21349B;
    border-radius: 7px;
    padding: 4px 12px;
    display: inline-block
}

.srv .svc-card__format {
    font-size: 13px;
    font-weight: 600;
    color: #7E47CD;
    background: #7e47cd1a;
    border-radius: 7px;
    padding: 4px 12px;
    display: inline-block
}

.srv .svc-card__body {
    padding: 24px 24px 12px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srv .svc-card__title {
    font-size: 25px;
    font-weight: 800;
    line-height: 1.2;
    color: #21349B;
    margin: 0;
    letter-spacing: -.01em
}

.srv .svc-card__desc {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.srv .svc-card__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px
}

.srv .svc-card__meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #21349B;
    font-weight: 600
}

.srv .svc-card__meta-item svg {
    flex-shrink: 0
}

.srv .svc-card__stats {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 4px
}

.srv .svc-card__stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #7E47CD;
    font-weight: 600
}

.srv .svc-card__foot {
    padding: 12px 24px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid #b9bee459;
    margin-top: auto
}

.srv .svc-card__price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.srv .svc-card__price {
    font-size: 34px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    letter-spacing: -.01em
}

.srv .svc-card__price-note {
    font-size: 13px;
    color: #7E47CD;
    font-weight: 600
}

.srv .svc-card__seats {
    font-size: 13px;
    color: #3a3a5c;
    font-weight: 600;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.srv .svc-card__btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 7px;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: lowercase;
    border: none;
    cursor: pointer;
    transition: background .65s cubic-bezier(0.4, 0, 1, 1), box-shadow .65s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 1px 6px 0 #21349b0f;
    flex-shrink: 0
}

.srv .svc-card__btn:hover {
    background: linear-gradient(233deg, #21349B 0%, #7E47CD 100%);
    box-shadow: 0 7px 22px 0 #21349b1c
}

.srv .svc-card__btn:focus {
    outline: 2px solid #7E47CD;
    outline-offset: 3px
}

.srv .divider-b {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 0 0 40px
}

.srv .divider-b__line {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(53deg, transparent 0%, #B9BEE4 100%)
}

.srv .divider-b__shape {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.srv .why-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 0 80px;
    margin-left: 40px
}

.srv .why-row__main {
    flex: 2 1 0
}

.srv .why-row__side {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srv .why-row__h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    color: #21349B;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.srv .why-row__p {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0 0 12px;
    max-width: 520px
}

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

.srv .why-list__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    opacity: 0;
    animation: item-reveal .7s cubic-bezier(0.4, 0, 1, 1) forwards
}

.srv .why-list__item:nth-child(1) {
    animation-delay: .15s
}

.srv .why-list__item:nth-child(2) {
    animation-delay: .3s
}

.srv .why-list__item:nth-child(3) {
    animation-delay: .45s
}

.srv .why-list__item:nth-child(4) {
    animation-delay: .6s
}

@keyframes item-reveal {
    from {
        opacity: 0;
        transform: translateX(-12px)
    }

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

.srv .why-list__num {
    width: 24px;
    height: 24px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 6px 0 #21349b0f
}

.srv .why-list__check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px
}

.srv .side-card {
    border-radius: 13px;
    background: radial-gradient(ellipse at 50% 30%, #fff 40%, #B9BEE4 100%);
    box-shadow: 0 7px 22px 0 #21349b1c;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srv .side-card__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .09em;
    color: #21349B
}

.srv .side-card__val {
    font-size: 34px;
    font-weight: 800;
    color: #7E47CD;
    line-height: 1.2
}

.srv .side-card__sub {
    font-size: 13px;
    color: #3a3a5c;
    line-height: 1.45
}

.srv .divider-c {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 0 0 40px
}

.srv .divider-c__line {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(53deg, #B9BEE4 0%, transparent 100%)
}

.srv .divider-c__shape {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.srv .process-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 0 0 80px;
    margin-right: 40px
}

.srv .process-row__steps {
    flex: 3 1 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.srv .process-row__aside {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    justify-content: center
}

.srv .step-card {
    border-radius: 13px;
    background: radial-gradient(ellipse at 60% 20%, #fff 50%, #b9bee440 100%);
    box-shadow: 0 1px 6px 0 #21349b0f;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .75s cubic-bezier(0.4, 0, 1, 1)
}

.srv .step-card:hover {
    box-shadow: 0 7px 22px 0 #7e47cd1c
}

.srv .step-card__n {
    width: 32px;
    height: 32px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 6px 0 #ffffff2e
}

.srv .step-card__h {
    font-size: 13px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    margin: 0
}

.srv .step-card__p {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.srv .process-row__aside-h {
    font-size: 25px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    margin: 0 0 12px
}

.srv .process-row__aside-p {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0 0 24px
}

.srv .aside-cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 7px;
    background: linear-gradient(53deg, #7E47CD 0%, #21349B 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-decoration: none;
    text-transform: lowercase;
    transition: background .65s cubic-bezier(0.4, 0, 1, 1), box-shadow .65s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 1px 6px 0 #7e47cd0f
}

.srv .aside-cta:hover {
    background: linear-gradient(233deg, #7E47CD 0%, #21349B 100%);
    box-shadow: 0 7px 22px 0 #7e47cd1c
}

.srv .aside-cta:focus {
    outline: 2px solid #21349B;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .srv .title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        padding: 40px 0 24px
    }

    .srv .title-row__img-col {
        flex: 0 0 auto
    }

    .srv .title-row__img-wrap {
        width: 260px;
        height: 300px
    }

    .srv .title-row__h1 {
        font-size: 34px
    }

    .srv .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .srv .why-row {
        flex-direction: column;
        margin-left: 0;
        gap: 24px
    }

    .srv .process-row {
        flex-direction: column;
        margin-right: 0;
        gap: 24px
    }

    .srv .process-row__steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .srv .title-row__h1 {
        font-size: 34px
    }

    .srv .process-row__steps {
        grid-template-columns: 1fr
    }
}

@media (max-width: 640px) {
    .srv .pg-wrap {
        padding: 0 12px
    }

    .srv .title-row__h1 {
        font-size: 25px
    }

    .srv .svc-card__foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .srv .svc-card__price {
        font-size: 25px
    }
}

.abt-us {
    position: relative;
    overflow: hidden
}

.abt-us__scanlines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: repeating-linear-gradient(to bottom, transparent, transparent 3px, #21349b05 3px, #21349b05 4px);
    animation: scanDrift 18s linear infinite
}

@keyframes scanDrift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 0 80px
    }
}

.abt-us__schema {
    display: none
}

.abt-intro {
    position: relative;
    padding: 80px 40px;
    background: #fff;
    z-index: 1
}

.abt-intro__max {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start
}

.abt-intro__img-col {
    position: relative
}

.abt-intro__img-wrap {
    position: relative;
    border-radius: 13px;
    overflow: hidden;
    box-shadow: 0 7px 22px 0 #21349b1c
}

.abt-intro__img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block
}

.abt-intro__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(53deg, #21349b38 0%, transparent 70%);
    border-radius: 13px;
    pointer-events: none
}

.abt-intro__img-scanline {
    position: absolute;
    inset: 0;
    border-radius: 13px;
    pointer-events: none;
    background: repeating-linear-gradient(to bottom, transparent, transparent 5px, #21349b0f 5px, #21349b0f 6px)
}

.abt-intro__deco {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 0
}

.abt-intro__deco-svg {
    width: 100%;
    height: 100%
}

.abt-intro__txt-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-intro__label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #7E47CD;
    font-weight: 600;
    text-transform: uppercase
}

.abt-intro__h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    letter-spacing: -.02em;
    margin: 0
}

.abt-intro__h1 span {
    display: inline-block;
    position: relative
}

.abt-intro__h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    background: linear-gradient(53deg, #7E47CD, #B9BEE4);
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: left;
    animation: drawLine .9s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes drawLine {
    to {
        transform: scaleX(1)
    }
}

.abt-intro__desc {
    font-size: 25px;
    line-height: 1.45;
    color: #2a2a3d;
    margin: 0;
    max-width: 560px
}

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

.abt-intro__p {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0;
    max-width: 520px
}

.abt-intro__metrics {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 12px
}

.abt-intro__metric {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-intro__metric-num {
    font-size: 34px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    letter-spacing: -.02em
}

.abt-intro__metric-lbl {
    font-size: 13px;
    color: #7E47CD;
    letter-spacing: .06em
}

.abt-intro__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px 24px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 7px;
    text-decoration: none;
    align-self: flex-start;
    box-shadow: 0 7px 22px 0 #21349b1c;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), background .6s cubic-bezier(0.4, 0, 1, 1)
}

.abt-intro__link:hover {
    background: linear-gradient(233deg, #21349B, #7E47CD);
    box-shadow: 0 10px 48px 0 #21349b1a
}

.abt-intro__link:focus {
    outline: 2px solid #7E47CD;
    outline-offset: 3px
}

.abt-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

.abt-divider__line {
    flex: 1;
    height: 1px;
    background: #B9BEE4;
    position: relative
}

.abt-divider__tick {
    width: 1px;
    height: 6px;
    background: #B9BEE4;
    flex-shrink: 0
}

.abt-team {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(53deg, #f4f5fb 0%, #ede8f8 100%);
    clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
    padding-bottom: 120px;
    z-index: 1
}

.abt-team__circles {
    position: absolute;
    top: -40px;
    right: -40px;
    pointer-events: none;
    opacity: .12;
    z-index: 0
}

.abt-team__max {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt-team__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px
}

.abt-team__heading {
    font-size: 34px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    letter-spacing: -.01em;
    margin: 0;
    max-width: 480px
}

.abt-team__sub {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    max-width: 380px;
    margin: 0
}

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

.abt-team__card {
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.abt-team__card:hover {
    box-shadow: 0 7px 22px 0 #21349b1c
}

.abt-team__card-img-wrap {
    position: relative;
    flex-shrink: 0
}

.abt-team__card-img {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    box-shadow: 0 1px 6px 0 #7e47cd0f
}

.abt-team__icon-ring {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px #fff, inset 0 1px 4px #21349b2e
}

.abt-team__icon-ring svg {
    width: 14px;
    height: 14px;
    fill: #fff
}

.abt-team__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-team__card-name {
    font-size: 25px;
    font-weight: 700;
    color: #21349B;
    line-height: 1.2;
    margin: 0
}

.abt-team__card-role {
    font-size: 13px;
    color: #7E47CD;
    letter-spacing: .07em;
    font-weight: 600
}

.abt-team__card-txt {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.abt-team__feat {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.abt-team__feat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: #fff;
    border-radius: 13px;
    box-shadow: 0 1px 6px 0 #21349b0f
}

.abt-team__feat-num {
    width: 36px;
    height: 36px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 0 0 4px #21349b1a
}

.abt-team__feat-h {
    font-size: 13px;
    font-weight: 700;
    color: #21349B;
    letter-spacing: .04em;
    margin: 0
}

.abt-team__feat-p {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.abt-team__img-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.abt-team__img-box {
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 7px 22px 0 #21349b1c
}

.abt-team__img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(0.4, 0, 1, 1)
}

.abt-team__img-box:hover img {
    transform: scale(1.04)
}

.abt-team__img-vig {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #21349b61 100%);
    pointer-events: none
}

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

    .abt-intro__img-wrap img {
        height: 320px
    }

    .abt-intro__h1 {
        font-size: 34px
    }

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

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

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

@media (max-width: 768px) {
    .abt-intro {
        padding: 40px 24px
    }

    .abt-intro__metrics {
        flex-direction: column;
        gap: 12px
    }

    .abt-team {
        padding: 40px 24px 80px
    }

    .abt-team__top {
        flex-direction: column;
        align-items: flex-start
    }

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

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

    .abt-team__card {
        flex-direction: column
    }
}

@media (max-width: 640px) {
    .abt-intro__h1 {
        font-size: 25px
    }

    .abt-intro__desc {
        font-size: 13px
    }

    .abt-divider {
        padding: 0 24px
    }
}

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

.frst .dot-border {
    position: absolute;
    pointer-events: none;
    z-index: 0
}

.frst .pg-schema {
    display: none
}

.frst .tb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    position: relative
}

.frst .tb__txt {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1
}

.frst .tb__label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #21349B;
    font-weight: 600;
    text-transform: uppercase
}

.frst .tb__h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    letter-spacing: -.02em;
    margin: 0
}

.frst .tb__h1 span {
    color: #7E47CD;
    display: inline-block;
    position: relative
}

.frst .tb__h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(53deg, #7E47CD, #B9BEE4);
    border-radius: 3px;
    animation: underline-draw .9s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

.frst .tb__tagline {
    font-size: 25px;
    line-height: 1.45;
    color: #3a3a5c;
    margin: 0;
    max-width: 480px
}

.frst .tb__links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.frst .tb__link--pri {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    border-radius: 7px;
    text-decoration: none;
    text-transform: lowercase;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), background .7s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 7px 22px 0 #21349b1c
}

.frst .tb__link--pri:hover {
    background: linear-gradient(233deg, #21349B, #7E47CD);
    box-shadow: 0 10px 48px 0 #21349b1a
}

.frst .tb__link--sec {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid #B9BEE4;
    color: #21349B;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    border-radius: 7px;
    text-decoration: none;
    text-transform: lowercase;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1)
}

.frst .tb__link--sec:hover {
    border-color: #7E47CD;
    color: #7E47CD
}

.frst .tb__img-col {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.frst .tb__img-wrap {
    position: relative;
    width: 100%;
    border-radius: 13px;
    overflow: hidden
}

.frst .tb__img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 13px
}

.frst .tb__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(53deg, #21349b2e, #7e47cd1a);
    border-radius: 13px;
    mix-blend-mode: multiply;
    pointer-events: none
}

.frst .tb__dots {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 0
}

.frst .tb__dots circle {
    fill: #B9BEE4;
    opacity: .5
}

.frst .bg-drift {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: 0
}

.frst .bg-drift__blob {
    position: absolute;
    width: 600px;
    height: 400px;
    background: linear-gradient(53deg, #21349b12, #b9bee41a);
    border-radius: 40%;
    animation: blob-drift 12s ease-in-out infinite alternate;
    filter: blur(40px)
}

@keyframes blob-drift {
    0% {
        transform: translate(0, 0) rotate(0deg)
    }

    100% {
        transform: translate(80px, 40px) rotate(15deg)
    }
}

.frst .ppl {
    position: relative;
    background: linear-gradient(53deg, #f4f5fb, #ede9f8);
    padding: 80px 24px
}

.frst .ppl::before {
    content: '';
    display: block;
    width: 100%;
    height: 40px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 0%);
    position: absolute;
    top: 0;
    left: 0
}

.frst .ppl__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

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

.frst .ppl__accent-line {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px
}

.frst .ppl__vert-line {
    width: 3px;
    background: linear-gradient(180deg, #21349B, #7E47CD);
    border-radius: 3px;
    flex-shrink: 0
}

.frst .ppl__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0;
    letter-spacing: -.01em
}

.frst .ppl__body {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.frst .ppl__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px
}

.frst .ppl__metric {
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.frst .ppl__metric-val {
    font-size: 34px;
    font-weight: 800;
    color: #7E47CD;
    line-height: 1.2
}

.frst .ppl__metric-lbl {
    font-size: 13px;
    color: #21349B;
    line-height: 1.45
}

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

.frst .ppl__img-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 13px;
    display: block
}

.frst .ppl__img-grid img:first-child {
    grid-column: 1 / 3;
    height: 260px
}

.frst .ctx {
    padding: 80px 24px;
    background: #fff;
    position: relative
}

.frst .ctx__divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.frst .ctx__divider svg {
    display: block;
    width: 100%
}

.frst .ctx__inner {
    max-width: 1400px;
    margin: 0 auto
}

.frst .ctx__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px
}

.frst .ctx__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0
}

.frst .ctx__lead {
    font-size: 25px;
    line-height: 1.45;
    color: #3a3a5c;
    margin: 0
}

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

.frst .ctx__card {
    background: linear-gradient(53deg, #f4f5fb, transparent);
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), transform .15s cubic-bezier(0.4, 0, 1, 1);
    position: relative;
    overflow: hidden
}

.frst .ctx__card:hover {
    box-shadow: 0 7px 22px 0 #21349b1c;
    transform: translateY(-3px)
}

.frst .ctx__card-num {
    width: 32px;
    height: 32px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.frst .ctx__card-h {
    font-size: 13px;
    font-weight: 700;
    color: #21349B;
    letter-spacing: .04em;
    margin: 0
}

.frst .ctx__card-p {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.frst .ctx__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px
}

.frst .ctx__img-row img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 13px;
    display: block
}

.frst .adpt {
    padding: 80px 24px;
    background: linear-gradient(53deg, #21349b0a, #b9bee41f);
    position: relative
}

.frst .adpt__inner {
    max-width: 1400px;
    margin: 0 auto
}

.frst .adpt__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 700px
}

.frst .adpt__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0
}

.frst .adpt__sub {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

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

.frst .adpt__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    background: #fff;
    border-radius: 13px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #7e47cd0f;
    transition: box-shadow .17s cubic-bezier(0.4, 0, 1, 1)
}

.frst .adpt__item:nth-child(even) {
    direction: ltr
}

.frst .adpt__item:hover {
    box-shadow: 0 10px 48px 0 #7e47cd1a
}

.frst .adpt__item-txt {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.frst .adpt__item-h {
    font-size: 13px;
    font-weight: 700;
    color: #21349B;
    margin: 0;
    letter-spacing: .04em
}

.frst .adpt__item-p {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.frst .adpt__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 7px;
    display: block
}

.frst .adpt__item:nth-child(even) .adpt__item-txt {
    order: 2
}

.frst .adpt__item:nth-child(even) img {
    order: 1
}

.frst .adpt__item:nth-child(odd) .adpt__item-txt {
    order: 1
}

.frst .adpt__item:nth-child(odd) img {
    order: 2
}

.frst .dots-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0
}

@media (max-width: 1024px) {
    .frst .tb {
        grid-template-columns: 1fr;
        padding: 40px 24px 80px
    }

    .frst .tb__img-col {
        order: -1
    }

    .frst .tb__h1 {
        font-size: 34px
    }

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

    .frst .ctx__top {
        grid-template-columns: 1fr;
        gap: 24px
    }

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

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

@media (max-width: 768px) {
    .frst .tb__h1 {
        font-size: 34px
    }

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

    .frst .ctx__img-row {
        grid-template-columns: 1fr
    }

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

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

    .frst .adpt__item:nth-child(even) .adpt__item-txt,
    .frst .adpt__item:nth-child(odd) .adpt__item-txt {
        order: 1
    }

    .frst .adpt__item:nth-child(even) img,
    .frst .adpt__item:nth-child(odd) img {
        order: 2
    }

    .frst .ppl__img-grid img:first-child {
        height: 200px
    }
}

@media (max-width: 640px) {
    .frst .tb {
        padding: 24px 12px 80px
    }

    .frst .ppl,
    .frst .ctx,
    .frst .adpt {
        padding: 40px 12px
    }

    .frst .tb__tagline {
        font-size: 13px
    }
}

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

.ctus .pg-top {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 55%, transparent 100%);
    overflow: hidden
}

.ctus .pg-top__bg-shape {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 420px;
    height: 420px;
    border-radius: 40px;
    background: linear-gradient(53deg, #B9BEE4 0%, transparent 70%);
    opacity: .18;
    pointer-events: none
}

.ctus .pg-top__bg-dot {
    position: absolute;
    bottom: 24px;
    left: 8%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(53deg, #7E47CD 0%, transparent 80%);
    opacity: .13;
    pointer-events: none
}

.ctus .pg-top__img-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 48%;
    height: 100%;
    pointer-events: none
}

.ctus .pg-top__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ctus .pg-top__img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #21349B 0%, #21349bb3 30%, transparent 70%), linear-gradient(to top, #21349B 0%, transparent 50%)
}

.ctus .pg-top__body {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px
}

.ctus .pg-top__label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #B9BEE4;
    font-weight: 600;
    text-transform: uppercase
}

.ctus .pg-top__h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin: 0;
    letter-spacing: -.01em
}

.ctus .pg-top__h1 span {
    position: relative;
    display: inline-block
}

.ctus .pg-top__h1 span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    height: 3px;
    width: 0;
    background: #B9BEE4;
    border-radius: 3px;
    animation: und-draw .9s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes und-draw {
    to {
        width: 100%
    }
}

.ctus .pg-top__desc {
    font-size: 25px;
    line-height: 1.45;
    color: #ffffffe0;
    margin: 0;
    max-width: 480px
}

.ctus .frm-sec {
    background: #F3F4FB;
    padding: 80px 24px;
    position: relative
}

.ctus .frm-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #21349B, #7E47CD, #B9BEE4)
}

.ctus .frm-sec__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.ctus .frm-sec__meta {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .frm-sec__tag {
    font-size: 13px;
    letter-spacing: .1em;
    color: #7E47CD;
    font-weight: 700;
    text-transform: uppercase
}

.ctus .frm-sec__h2 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0;
    letter-spacing: -.01em
}

.ctus .frm-sec__note {
    font-size: 13px;
    line-height: 1.65;
    color: #444;
    margin: 0
}

.ctus .frm-sec__urgency-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus .frm-sec__urgency-label {
    font-size: 13px;
    font-weight: 700;
    color: #21349B;
    letter-spacing: .04em
}

.ctus .urgency-opts {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.ctus .urgency-opts__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 7px;
    border: 2px solid #B9BEE4;
    cursor: pointer;
    transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), background .15s cubic-bezier(0.4, 0, 1, 1);
    background: #fff
}

.ctus .urgency-opts__item:hover {
    border-color: #7E47CD;
    background: #7e47cd0f
}

.ctus .urgency-opts__item input[type="radio"] {
    accent-color: #21349B;
    width: 16px;
    height: 16px;
    cursor: pointer
}

.ctus .urgency-opts__item span {
    font-size: 13px;
    font-weight: 600;
    color: #21349B
}

.ctus .frm-sec__form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .frm-sec__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ctus .frm-fld {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus .frm-fld__lbl {
    font-size: 13px;
    font-weight: 700;
    color: #21349B;
    letter-spacing: .04em
}

.ctus .frm-fld__inp {
    padding: 12px;
    border-radius: 7px;
    border: 2px solid #B9BEE4;
    background: #fff;
    font-size: 13px;
    color: #1a2060;
    font-weight: 600;
    outline: none;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 1px 6px 0 #21349b0f;
    width: 100%;
    box-sizing: border-box
}

.ctus .frm-fld__inp::placeholder {
    font-weight: 300;
    color: #89c
}

.ctus .frm-fld__inp:focus {
    border-color: #21349B;
    box-shadow: 0 0 0 3px #21349b21 inset 0 1px 4px #21349b14
}

.ctus .frm-fld__sel {
    padding: 12px;
    border-radius: 7px;
    border: 2px solid #B9BEE4;
    background: #fff;
    font-size: 13px;
    color: #1a2060;
    font-weight: 600;
    outline: none;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 1px 6px 0 #21349b0f;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%2321349B' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px
}

.ctus .frm-fld__sel:focus {
    border-color: #21349B
}

.ctus .priv-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.ctus .priv-row__chk {
    accent-color: #21349B;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0
}

.ctus .priv-row__txt {
    font-size: 13px;
    line-height: 1.65;
    color: #444
}

.ctus .priv-row__txt a {
    color: #7E47CD;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .14s cubic-bezier(0.4, 0, 1, 1)
}

.ctus .priv-row__txt a:hover {
    color: #21349B
}

.ctus .frm-btn {
    padding: 12px 40px;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #fff;
    background: linear-gradient(53deg, #21349B 0%, #7E47CD 100%);
    box-shadow: 0 7px 22px 0 #21349b1c;
    transition: background .7s cubic-bezier(0.4, 0, 1, 1), box-shadow .16s cubic-bezier(0.4, 0, 1, 1), transform .13s cubic-bezier(0.4, 0, 1, 1);
    align-self: flex-start;
    text-transform: lowercase
}

.ctus .frm-btn:hover {
    background: linear-gradient(233deg, #21349B 0%, #7E47CD 100%);
    box-shadow: 0 10px 48px 0 #21349b1a;
    transform: translateY(-2px)
}

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

.ctus .frm-btn:focus-visible {
    outline: 3px solid #B9BEE4;
    outline-offset: 3px
}

.ctus .cinfo-sec {
    background: #fff;
    padding: 80px 24px;
    position: relative
}

.ctus .cinfo-sec__deco {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 200px;
    height: 200px;
    border: 2px dashed #B9BEE4;
    border-radius: 24px;
    pointer-events: none;
    opacity: .5
}

.ctus .cinfo-sec__deco-inner {
    position: absolute;
    top: 16px;
    right: 16px;
    bottom: 16px;
    left: 16px;
    border: 1px dashed #7E47CD;
    border-radius: 13px;
    opacity: .4
}

.ctus .cinfo-sec__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

.ctus .cinfo-sec__head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative
}

.ctus .cinfo-sec__h3 {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    margin: 0
}

.ctus .cinfo-sec__sub {
    font-size: 13px;
    line-height: 1.65;
    color: #555;
    margin: 0
}

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

.ctus .cinfo-card {
    background: linear-gradient(53deg, #F3F4FB 0%, transparent 100%);
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    transition: box-shadow .7s cubic-bezier(0.4, 0, 1, 1), transform .15s cubic-bezier(0.4, 0, 1, 1);
    animation: bounce-in .8s cubic-bezier(0.4, 0, 1, 1) both
}

.ctus .cinfo-card:nth-child(1) {
    animation-delay: .1s
}

.ctus .cinfo-card:nth-child(2) {
    animation-delay: .22s
}

.ctus .cinfo-card:nth-child(3) {
    animation-delay: .34s
}

.ctus .cinfo-card:nth-child(4) {
    animation-delay: .46s
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(-28px)
    }

    70% {
        opacity: 1;
        transform: translateY(6px)
    }

    85% {
        transform: translateY(-3px)
    }

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

.ctus .cinfo-card:hover {
    box-shadow: 0 7px 22px 0 #21349b1c;
    transform: translateY(-3px)
}

.ctus .cinfo-card__icon {
    width: 40px;
    height: 40px;
    border-radius: 7px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 1px 4px #b9bee44d
}

.ctus .cinfo-card__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ctus .cinfo-card__lbl {
    font-size: 13px;
    font-weight: 700;
    color: #7E47CD;
    letter-spacing: .08em;
    text-transform: uppercase
}

.ctus .cinfo-card__val {
    font-size: 13px;
    line-height: 1.65;
    color: #21349B;
    font-weight: 600;
    margin: 0;
    word-break: break-word
}

.ctus .cinfo-card__val a {
    color: #21349B;
    text-decoration: none;
    transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.ctus .cinfo-card__val a:hover {
    color: #7E47CD
}

@media (max-width: 1024px) {
    .ctus .frm-sec__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ctus .cinfo-sec__inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ctus .pg-top__img-wrap {
        display: none
    }
}

@media (max-width: 768px) {
    .ctus .pg-top__h1 {
        font-size: 34px
    }

    .ctus .pg-top__desc {
        font-size: 13px
    }

    .ctus .frm-sec__row {
        grid-template-columns: 1fr
    }

    .ctus .cinfo-grid {
        grid-template-columns: 1fr
    }

    .ctus .cinfo-sec__deco {
        display: none
    }
}

@media (max-width: 640px) {
    .ctus .pg-top {
        padding: 40px 24px
    }

    .ctus .frm-sec {
        padding: 40px 24px
    }

    .ctus .cinfo-sec {
        padding: 40px 24px
    }

    .ctus .urgency-opts {
        flex-direction: column
    }
}

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

.feat-pg .divider {
    display: flex;
    align-items: center;
    gap: 0;
    height: 2px;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 40px
}

.feat-pg .divider__line {
    flex: 1;
    height: 1px;
    background: #B9BEE4
}

.feat-pg .divider__accent {
    width: 80px;
    height: 2px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    border-radius: 3px
}

.feat-pg .title-bl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.feat-pg .title-bl__txt {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 24px
}

.feat-pg .title-bl__label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #7E47CD;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2
}

.feat-pg .title-bl__h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 800;
    color: #21349B;
    letter-spacing: -.02em;
    margin: 0
}

.feat-pg .title-bl__h1 span {
    display: inline-block;
    position: relative
}

.feat-pg .title-bl__h1 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(53deg, #7E47CD, #B9BEE4);
    border-radius: 3px;
    animation: underline-draw .9s cubic-bezier(0.4, 0, 1, 1) .4s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

.feat-pg .title-bl__desc {
    font-size: 25px;
    line-height: 1.45;
    color: #2a2a3a;
    margin: 0;
    font-weight: 400;
    padding-top: 8px;
    border-top: 1px solid #B9BEE4
}

.feat-pg .title-bl__mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    position: relative
}

.feat-pg .mosaic__main {
    grid-column: 1 / 3;
    border-radius: 13px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 7px 22px 0 #21349b1c
}

.feat-pg .mosaic__main img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block
}

.feat-pg .mosaic__main::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #21349b2e;
    border-radius: 13px;
    pointer-events: none
}

.feat-pg .mosaic__shape {
    position: absolute;
    border-radius: 24px;
    opacity: .13;
    pointer-events: none
}

.feat-pg .mosaic__shape--a {
    width: 140px;
    height: 140px;
    border: 2px solid #21349B;
    top: -20px;
    right: -20px
}

.feat-pg .mosaic__shape--b {
    width: 80px;
    height: 80px;
    border: 2px solid #7E47CD;
    bottom: 30px;
    left: -16px;
    border-radius: 40px
}

.feat-pg .mosaic__stat {
    background: linear-gradient(53deg, #21349B, #7E47CD);
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 7px 22px 0 #21349b1c
}

.feat-pg .mosaic__stat-num {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px
}

.feat-pg .mosaic__stat-num .arr {
    display: inline-flex;
    align-items: center
}

.feat-pg .mosaic__stat-num .arr svg {
    width: 28px;
    height: 28px
}

.feat-pg .mosaic__stat-lbl {
    font-size: 13px;
    color: #fffc;
    line-height: 1.45;
    letter-spacing: .06em
}

.feat-pg .mosaic__tag {
    background: #fff;
    border: 1px solid #B9BEE4;
    border-radius: 13px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 6px 0 #21349b0f
}

.feat-pg .mosaic__tag-val {
    font-size: 34px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 8px
}

.feat-pg .mosaic__tag-lbl {
    font-size: 13px;
    color: #5a5a7a;
    line-height: 1.45
}

.feat-pg .caps-sec {
    background: #21349B;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.feat-pg .caps-sec__circles {
    position: absolute;
    bottom: -60px;
    right: -60px;
    pointer-events: none;
    opacity: .08
}

.feat-pg .caps-sec__circles svg {
    width: 320px;
    height: 320px
}

.feat-pg .caps-sec__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px
}

.feat-pg .caps-sec__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px
}

.feat-pg .caps-sec__h2 {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -.01em;
    max-width: 480px
}

.feat-pg .caps-sec__sub {
    font-size: 13px;
    color: #ffffffa6;
    line-height: 1.65;
    max-width: 360px;
    margin: 0
}

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

.feat-pg .cap-card {
    background: #ffffff12;
    border: 1px solid #ffffff21;
    border-radius: 13px;
    padding: 40px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: background .7s cubic-bezier(0.4, 0, 1, 1), border-color .7s cubic-bezier(0.4, 0, 1, 1);
    cursor: default
}

.feat-pg .caps-grid:has(.cap-card:hover) .cap-card:not(:hover) {
    opacity: .5;
    transition: opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.feat-pg .cap-card:hover {
    background: #ffffff21;
    border-color: #b9bee480;
    box-shadow: 0 10px 48px 0 #21349b1a
}

.feat-pg .cap-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 4px
}

.feat-pg .cap-card__icon svg {
    width: 40px;
    height: 40px
}

.feat-pg .cap-card__h3 {
    font-size: 25px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -.01em
}

.feat-pg .cap-card__p {
    font-size: 13px;
    color: #ffffffb8;
    line-height: 1.65;
    margin: 0
}

.feat-pg .cap-card__num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #fff3;
    letter-spacing: .1em
}

.feat-pg .cap-card__border-trace {
    position: absolute;
    inset: 0;
    border-radius: 13px;
    pointer-events: none;
    border: 2px solid transparent;
    transition: border-color .16s cubic-bezier(0.4, 0, 1, 1)
}

.feat-pg .cap-card:hover .cap-card__border-trace {
    border-color: #7E47CD
}

.feat-pg .detail-sec {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.feat-pg .detail-sec__h2 {
    font-size: 34px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2;
    margin: 0;
    letter-spacing: -.01em
}

.feat-pg .detail-rows {
    display: flex;
    flex-direction: column;
    gap: 0
}

.feat-pg .det-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px 0;
    border-bottom: 1px solid #B9BEE4;
    align-items: start;
    position: relative
}

.feat-pg .det-row:last-child {
    border-bottom: none
}

.feat-pg .det-row__left {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.feat-pg .det-row__num {
    width: 36px;
    height: 36px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 1px 6px 0 #21349b0f
}

.feat-pg .det-row__h3 {
    font-size: 25px;
    font-weight: 700;
    color: #21349B;
    line-height: 1.2;
    margin: 0
}

.feat-pg .det-row__right {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.feat-pg .det-row__p {
    font-size: 13px;
    color: #2a2a3a;
    line-height: 1.65;
    margin: 0
}

.feat-pg .det-row__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.feat-pg .det-tag {
    font-size: 13px;
    color: #21349B;
    background: linear-gradient(53deg, #b9bee44d, transparent);
    border: 1px solid #B9BEE4;
    border-radius: 7px;
    padding: 4px 12px;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1)
}

.feat-pg .det-tag:hover {
    background: linear-gradient(53deg, #21349b1f, #7e47cd14);
    border-color: #7E47CD
}

.feat-pg .det-row__metric {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid #B9BEE4;
    border-radius: 7px;
    padding: 8px 12px;
    box-shadow: 0 1px 6px 0 #21349b0f;
    align-self: flex-start
}

.feat-pg .det-row__metric-val {
    font-size: 25px;
    font-weight: 800;
    color: #21349B;
    line-height: 1.2
}

.feat-pg .det-row__metric-lbl {
    font-size: 13px;
    color: #5a5a7a;
    line-height: 1.45
}

.feat-pg .arr-up svg {
    width: 20px;
    height: 20px
}

@media (max-width: 1024px) {
    .feat-pg .title-bl {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }

    .feat-pg .title-bl__h1 {
        font-size: 34px
    }

    .feat-pg .caps-grid {
        grid-template-columns: 1fr 1fr
    }

    .feat-pg .caps-sec__top {
        flex-direction: column;
        align-items: flex-start
    }

    .feat-pg .detail-sec {
        padding: 40px 24px
    }

    .feat-pg .det-row {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .feat-pg .caps-sec__inner {
        padding: 0 24px
    }
}

@media (max-width: 768px) {
    .feat-pg .caps-grid {
        grid-template-columns: 1fr
    }

    .feat-pg .title-bl__h1 {
        font-size: 34px
    }

    .feat-pg .title-bl__desc {
        font-size: 13px
    }

    .feat-pg .mosaic__main img {
        height: 200px
    }
}

@media (max-width: 640px) {
    .feat-pg .title-bl {
        padding: 24px 12px
    }

    .feat-pg .caps-sec {
        padding: 40px 0
    }

    .feat-pg .caps-sec__inner {
        padding: 0 12px
    }

    .feat-pg .detail-sec {
        padding: 24px 12px
    }

    .feat-pg .divider {
        padding: 0 12px
    }
}

.succ-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(53deg, #B9BEE4 0%, transparent 70%)
}

.succ-page .succ-card {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 80px 40px;
    box-shadow: 0 10px 48px 0 #21349b1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.succ-page .succ-card__icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 40px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    box-shadow: 0 7px 22px 0 #7e47cd1c
}

.succ-page .succ-card__icon-wrap svg {
    display: block
}

.succ-page .succ-card__title {
    font-size: 34px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -.02em;
    color: #21349B;
    margin: 0 0 12px
}

.succ-page .succ-card__text {
    font-size: 13px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0 0 40px;
    max-width: 400px
}

.succ-page .succ-card__divider {
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    margin-bottom: 40px
}

.succ-page .succ-card__meta {
    font-size: 13px;
    line-height: 1.45;
    color: #6a6a9a;
    margin: 0 0 40px
}

.succ-page .succ-card__actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center
}

.succ-page .succ-card__btn--primary {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(53deg, #21349B, #7E47CD);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-decoration: none;
    border-radius: 13px;
    border: none;
    cursor: pointer;
    box-shadow: 0 7px 22px 0 #21349b1c;
    transition: box-shadow .7s cubic-bezier(0.4, 0, 1, 1), background-position .15s cubic-bezier(0.4, 0, 1, 1);
    background-size: 200% 200%;
    background-position: 0 50%
}

.succ-page .succ-card__btn--primary:hover {
    box-shadow: 0 10px 48px 0 #21349b1a;
    background-position: 100% 50%
}

.succ-page .succ-card__btn--primary:focus {
    outline: 2px solid #21349B;
    outline-offset: 4px
}

.succ-page .succ-card__btn--secondary {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #21349B;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .06em;
    text-decoration: none;
    border-radius: 13px;
    border: 2px solid #B9BEE4;
    cursor: pointer;
    transition: border-color .65s cubic-bezier(0.4, 0, 1, 1), color .65s cubic-bezier(0.4, 0, 1, 1)
}

.succ-page .succ-card__btn--secondary:hover {
    border-color: #7E47CD;
    color: #7E47CD
}

.succ-page .succ-card__btn--secondary:focus {
    outline: 2px solid #7E47CD;
    outline-offset: 4px
}

@media (max-width: 640px) {
    .succ-page {
        padding: 40px 12px
    }

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

    .succ-page .succ-card__title {
        font-size: 25px
    }

    .succ-page .succ-card__actions {
        flex-direction: column;
        width: 100%
    }

    .succ-page .succ-card__btn--primary,
    .succ-page .succ-card__btn--secondary {
        text-align: center;
        width: 100%
    }
}