body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    word-break: break-word;
    overflow-wrap: anywhere;
    font-family: 'Roboto', sans-serif
}

:focus {
    outline: none;
    border-bottom: 4px solid #2C3FB5
}

.hd {
    background: #fff;
    position: relative;
    border-bottom: 1px solid #EAD9DD;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    z-index: 100
}

.hd__top {
    background: linear-gradient(135deg, #2C3FB5 0%, #1e2d8a 100%);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.hd__brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.hd__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #EAD9DD;
    box-shadow: 1px 3px 3px 0 #2c3fb512 1px 5px 22px 0 #2c3fb514;
    padding: 8px 12px;
    border-radius: 0
}

.hd__logo-wrap img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-out
}

.hd__logo-wrap img.loaded {
    opacity: 1
}

.hd__brand-name {
    font-family: 'Roboto Mono', monospace;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0;
    margin: 0
}

.hd__credential {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #D4EADB;
    margin: 0;
    padding: 4px 12px;
    border: 1px solid #d4eadb66;
    border-radius: 28px
}

.hd__nav-bar {
    background: #fff;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    border-top: 3px solid #2C3FB5;
    max-width: 1600px;
    margin: 0 auto
}

.hd__nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0
}

.hd__nav-item {
    display: flex;
    align-items: stretch
}

.hd__nav-link {
    display: flex;
    align-items: center;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: #2C3FB5;
    text-decoration: none;
    position: relative;
    white-space: nowrap;
    transition: color .2s ease-out, background-color .25s ease-out;
    border-radius: 0;
    overflow: hidden
}

.hd__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: #2C3FB5;
    transition: height .2s ease-out;
    z-index: 0
}

.hd__nav-link:hover::after {
    height: 100%
}

.hd__nav-link:hover {
    color: #fff
}

.hd__nav-link span {
    position: relative;
    z-index: 1
}

.hd__nav-link--active {
    color: #fff;
    background-color: #2C3FB5
}

.hd__nav-link--active::after {
    height: 100%
}

.ft {
    background: #fff;
    box-shadow: 0 -1px 3px 0 #2c3fb512 0 -5px 22px 0 #2c3fb514;
    position: relative
}

.ft__upper {
    background: linear-gradient(180deg, #f5f6ff 0%, #fff 100%);
    padding: 80px 40px 40px;
    border-bottom: 1px solid #EAD9DD
}

.ft__upper-inner {
    max-width: 1600px;
    margin: 0 auto
}

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

.ft__col-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #2C3FB5;
    margin: 0 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #EAD9DD
}

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

.ft__link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #2C3FB5;
    text-decoration: none;
    display: inline-block;
    transition: color .15s ease-out;
    border-bottom: 1px solid transparent
}

.ft__link:hover {
    color: #1e2d8a;
    border-bottom-color: #2C3FB5
}

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

.ft__contact-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ft__contact-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #888
}

.ft__contact-val {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #2C3FB5;
    text-decoration: none
}

.ft__contact-val:hover {
    color: #1e2d8a
}

.ft__address {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #333;
    font-style: normal
}

.ft__lower {
    padding: 40px 40px 80px
}

.ft__lower-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.ft__policy-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center
}

.ft__policy-link {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #2C3FB5;
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid #EAD9DD;
    border-radius: 28px;
    transition: background-color .2s ease-out, border-color .2s ease-out
}

.ft__policy-link:hover {
    background-color: #EAD9DD;
    border-color: #2C3FB5
}

.ft__logo-close {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.ft__logo-box {
    background-color: #fff;
    border: 1px solid #EAD9DD;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    padding: 8px 12px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ft__logo-box img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-out
}

.ft__logo-box img.loaded {
    opacity: 1
}

.ft__brand-close {
    font-family: 'Roboto Mono', monospace;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    color: #2C3FB5;
    margin: 0
}

.ft__copy {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    color: #888;
    margin: 0;
    text-align: center
}

.ft__accent-bar {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2C3FB5 0%, #EAD9DD 50%, #D4EADB 100%)
}

@media (max-width: 1280px) {
    .hd__nav-bar {
        padding: 0 20px
    }

    .hd__nav-link {
        padding: 20px 12px;
        font-size: 16px
    }

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

    .ft__upper {
        padding: 80px 20px 40px
    }

    .ft__lower {
        padding: 40px 20px 80px
    }
}

@media (max-width: 768px) {
    .hd__top {
        padding: 20px
    }

    .hd__nav-bar {
        padding: 0 8px
    }

    .hd__nav-link {
        padding: 12px 8px;
        font-size: 16px;
        white-space: normal;
        text-align: center
    }

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

    .ft__upper {
        padding: 40px 20px
    }

    .ft__lower {
        padding: 40px 20px
    }

    .ft__policy-row {
        gap: 8px
    }
}

@media (max-width: 390px) {
    .hd__brand-name {
        font-size: 19px
    }

    .hd__credential {
        font-size: 16px
    }

    .hd__nav-link {
        padding: 8px 4px;
        font-size: 16px
    }

    .ft__upper {
        padding: 40px 12px 20px
    }

    .ft__lower {
        padding: 20px 12px 40px
    }
}

.policy-layout {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a2a35;
    background: #fff
}

.policy-layout p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 20px;
    color: #2a2a35
}

.policy-layout ul,
.policy-layout ol {
    padding-left: 40px;
    margin-bottom: 20px
}

.policy-layout ul {
    list-style-type: disc
}

.policy-layout ol {
    list-style-type: decimal
}

.policy-layout li {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 8px;
    color: #2a2a35
}

.policy-layout li:last-child {
    margin-bottom: 0
}

.policy-layout ul ul,
.policy-layout ol ol,
.policy-layout ul ol,
.policy-layout ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.policy-layout a {
    color: #2C3FB5;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s ease-out, text-decoration-color .18s ease-out
}

.policy-layout a:hover {
    color: #1a2880;
    text-decoration-color: transparent
}

.policy-layout a:focus-visible {
    outline: 2px solid #2C3FB5;
    outline-offset: 2px;
    border-radius: 0
}

.policy-layout table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.45;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    border-radius: 0;
    overflow: hidden
}

.policy-layout thead {
    background-color: #2C3FB5
}

.policy-layout thead th {
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    padding: 12px 20px;
    text-align: left;
    border: none
}

.policy-layout tbody tr {
    border-bottom: 1px solid #EAD9DD;
    transition: background-color .15s ease-out
}

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

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

.policy-layout tbody tr:hover {
    background-color: #D4EADB
}

.policy-layout th,
.policy-layout td {
    padding: 12px 20px;
    text-align: left;
    vertical-align: top;
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a35
}

.policy-layout td {
    border-right: 1px solid #EAD9DD
}

.policy-layout td:last-child {
    border-right: none
}

.policy-layout hr {
    border: none;
    border-top: 1px solid #EAD9DD;
    margin: 40px 0;
    height: 0
}

.policy-layout div {
    margin-bottom: 20px
}

@media (max-width: 768px) {
    .policy-layout {
        padding: 40px 20px
    }

    .policy-layout table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 1px 5px 22px 0 #2c3fb514
    }

    .policy-layout th,
    .policy-layout td {
        padding: 8px 12px;
        font-size: 16px;
        white-space: nowrap
    }

    .policy-layout ul,
    .policy-layout ol {
        padding-left: 20px
    }

    .policy-layout hr {
        margin: 20px 0
    }
}

@media (max-width: 390px) {
    .policy-layout {
        padding: 40px 12px
    }

    .policy-layout p,
    .policy-layout li,
    .policy-layout td,
    .policy-layout th {
        font-size: 16px;
        line-height: 1.65
    }

    .policy-layout thead th {
        font-size: 16px
    }

    .policy-layout ul,
    .policy-layout ol {
        padding-left: 20px
    }
}

.prd {
    background: #fff;
    overflow-x: hidden
}

.prd .art-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px
}

.prd .art-head__left {
    background: #2C3FB5;
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.prd .art-head__left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 80px;
    height: 100%;
    background: #2C3FB5;
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    z-index: 2
}

.prd .art-head__tag-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px
}

.prd .art-head__cat {
    display: inline-block;
    background: #ead9dd2e;
    color: #EAD9DD;
    font-size: 16px;
    line-height: 1.45;
    padding: 4px 12px;
    border-radius: 0;
    border: 1px solid #ead9dd59
}

.prd .art-head__tag {
    display: inline-block;
    background: #EAD9DD;
    color: #2C3FB5;
    font-size: 16px;
    line-height: 1.45;
    padding: 4px 12px;
    border-radius: 0;
    font-weight: 600
}

.prd .art-head__h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 3
}

.prd .art-head__sub {
    font-size: 19px;
    line-height: 1.65;
    color: #ead9dde0;
    margin-bottom: 40px;
    position: relative;
    z-index: 3
}

.prd .art-head__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 3
}

.prd .art-head__meta-item {
    font-size: 16px;
    line-height: 1.45;
    color: #ead9ddb3;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.prd .art-head__meta-item svg {
    flex-shrink: 0
}

.prd .art-head__author-name {
    color: #EAD9DD;
    font-weight: 600
}

.prd .art-head__right {
    position: relative;
    overflow: hidden;
    background: #EAD9DD
}

.prd .art-head__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-out
}

.prd .art-head__img--loaded {
    opacity: 1
}

.prd .art-head__diag {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: #2C3FB5;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    z-index: 2
}

.prd .art-head__wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0
}

.prd .art-stats {
    background: #fff;
    border-bottom: 1px solid #EAD9DD;
    padding: 20px 0
}

.prd .art-stats__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.prd .art-stats__pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.45;
    color: #555
}

.prd .art-stats__pill svg {
    color: #2C3FB5;
    flex-shrink: 0
}

.prd .art-stats__num {
    font-weight: 700;
    color: #2C3FB5
}

.prd .art-stats__sep {
    width: 1px;
    height: 20px;
    background: #EAD9DD
}

.prd .art-stats__back {
    margin-left: auto
}

.prd .art-stats__btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    background: transparent;
    border: 1.5px solid #2C3FB5;
    border-radius: 0;
    padding: 8px 20px;
    cursor: pointer;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease-out, color .15s ease-out;
    position: relative;
    overflow: hidden
}

.prd .art-stats__btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2C3FB5;
    transition: height .25s ease-out;
    z-index: 0
}

.prd .art-stats__btn:hover::before {
    height: 100%
}

.prd .art-stats__btn:hover {
    color: #fff
}

.prd .art-stats__btn span {
    position: relative;
    z-index: 1
}

.prd .art-body {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start
}

.prd .art-body__prose {
    min-width: 0
}

.prd .art-body__prose p {
    font-size: 19px;
    line-height: 1.65;
    color: #222;
    margin-bottom: 20px
}

.prd .art-body__prose p:first-of-type::first-letter {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    color: #2C3FB5
}

.prd .art-body__prose h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2380;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center
}

.prd .art-body__prose h3 {
    font-size: 23px;
    line-height: 1.45;
    font-weight: 700;
    color: #2C3FB5;
    margin-top: 40px;
    margin-bottom: 12px
}

.prd .art-body__prose strong {
    color: #2C3FB5;
    font-weight: 700
}

.prd .art-body__prose code {
    background: #EAD9DD;
    color: #2C3FB5;
    font-size: 16px;
    padding: 2px 8px;
    border-radius: 0;
    font-weight: 600
}

.prd .art-body__prose ul {
    margin: 20px 0;
    padding-left: 20px
}

.prd .art-body__prose li {
    font-size: 19px;
    line-height: 1.65;
    color: #222;
    margin-bottom: 8px;
    padding-left: 8px
}

.prd .art-body__prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 16px;
    line-height: 1.45
}

.prd .art-body__prose th {
    background: #2C3FB5;
    color: #fff;
    padding: 12px 20px;
    text-align: left;
    font-weight: 700
}

.prd .art-body__prose td {
    padding: 12px 20px;
    border-bottom: 1px solid #EAD9DD;
    color: #222
}

.prd .art-body__prose tr:nth-child(even) td {
    background: #f4f7fb
}

.prd .art-body__prose tfoot td {
    background: #D4EADB;
    font-weight: 700;
    color: #1a2380
}

.prd .art-body__prose figure {
    margin: 40px 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.prd .art-body__prose figure img {
    width: 100%;
    display: block;
    object-fit: cover
}

.prd .art-body__prose figcaption {
    background: #EAD9DD;
    color: #2C3FB5;
    font-size: 16px;
    line-height: 1.45;
    padding: 8px 20px;
    font-style: italic
}

.prd .art-aside {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 40px
}

.prd .art-aside__card {
    background: #fff;
    border-radius: 28px;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    padding: 20px;
    border-top: 3px solid #2C3FB5
}

.prd .art-aside__card-title {
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
    color: #2C3FB5;
    margin-bottom: 12px
}

.prd .art-aside__card p {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 12px
}

.prd .art-aside__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #2C3FB5;
    border-radius: 0;
    padding: 12px 20px;
    text-decoration: none;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s ease-out;
    box-shadow: 1px 3px 3px 0 #2c3fb512
}

.prd .art-aside__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #1a2380;
    transition: height .2s ease-out;
    z-index: 0
}

.prd .art-aside__link:hover::before {
    height: 100%
}

.prd .art-aside__link:hover {
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.prd .art-aside__link span {
    position: relative;
    z-index: 1
}

.prd .art-aside__noise {
    background: #2C3FB5;
    border-radius: 28px;
    padding: 20px;
    position: relative;
    overflow: hidden
}

.prd .art-aside__noise::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    opacity: .18;
    pointer-events: none
}

.prd .art-aside__noise-title {
    font-size: 23px;
    line-height: 1.45;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1
}

.prd .art-aside__noise p {
    font-size: 16px;
    line-height: 1.65;
    color: #ead9dde0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.prd .art-aside__noise-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #2C3FB5;
    background: #EAD9DD;
    border-radius: 0;
    padding: 12px 20px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: box-shadow .25s ease-out;
    box-shadow: 1px 3px 3px 0 #ead9dd12
}

.prd .art-aside__noise-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height .22s ease-out;
    z-index: 0
}

.prd .art-aside__noise-btn:hover::before {
    height: 100%
}

.prd .art-aside__noise-btn span {
    position: relative;
    z-index: 1
}

.prd .art-cta {
    background: #D4EADB;
    padding: 80px;
    position: relative;
    overflow: hidden
}

.prd .art-cta__diag {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    opacity: .12;
    pointer-events: none
}

.prd .art-cta__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.prd .art-cta__text-h {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2380;
    margin-bottom: 12px;
    text-align: left
}

.prd .art-cta__text-p {
    font-size: 19px;
    line-height: 1.65;
    color: #333;
    max-width: 640px
}

.prd .art-cta__accent {
    color: #2C3FB5
}

.prd .art-cta__btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0
}

.prd .art-cta__btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 19px;
    font-weight: 700;
    color: #fff;
    background: #2C3FB5;
    border: none;
    border-radius: 0;
    padding: 20px 40px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow .35s ease-out;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.prd .art-cta__btn--primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #1a2380;
    transition: height .28s ease-out;
    z-index: 0
}

.prd .art-cta__btn--primary:hover::before {
    height: 100%
}

.prd .art-cta__btn--primary:hover {
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.prd .art-cta__btn--primary span {
    position: relative;
    z-index: 1
}

.prd .art-cta__btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #2C3FB5;
    background: transparent;
    border: 1.5px solid #2C3FB5;
    border-radius: 0;
    padding: 12px 40px;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out
}

.prd .art-cta__btn--secondary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2C3FB5;
    transition: height .22s ease-out;
    z-index: 0
}

.prd .art-cta__btn--secondary:hover::before {
    height: 100%
}

.prd .art-cta__btn--secondary:hover {
    color: #fff
}

.prd .art-cta__btn--secondary span {
    position: relative;
    z-index: 1
}

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

    60% {
        transform: translateY(5px);
        opacity: 1
    }

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

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

.prd .art-head__tag {
    animation: prd-bounce .42s ease-out both
}

@media (max-width: 1280px) {
    .prd .art-head__left {
        padding: 80px 40px
    }

    .prd .art-body {
        padding: 80px 40px;
        grid-template-columns: 1fr 280px;
        gap: 40px
    }

    .prd .art-stats__inner {
        padding: 0 40px
    }

    .prd .art-cta {
        padding: 80px 40px
    }
}

@media (max-width: 768px) {
    .prd .art-head {
        grid-template-columns: 1fr;
        min-height: unset
    }

    .prd .art-head__left {
        padding: 40px 20px
    }

    .prd .art-head__left::after {
        display: none
    }

    .prd .art-head__h1 {
        font-size: 42px
    }

    .prd .art-head__right {
        height: 260px
    }

    .prd .art-head__diag {
        display: none
    }

    .prd .art-stats__inner {
        padding: 0 20px;
        flex-wrap: wrap;
        gap: 12px
    }

    .prd .art-stats__back {
        margin-left: 0;
        width: 100%
    }

    .prd .art-stats__btn {
        width: 100%;
        justify-content: center
    }

    .prd .art-body {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px
    }

    .prd .art-aside {
        position: static
    }

    .prd .art-cta {
        padding: 40px 20px
    }

    .prd .art-cta__inner {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .prd .art-cta__text-h {
        font-size: 42px
    }

    .prd .art-cta__btns {
        flex-direction: row;
        flex-wrap: wrap
    }
}

@media (max-width: 390px) {
    .prd .art-head__h1 {
        font-size: 42px
    }

    .prd .art-head__sub {
        font-size: 16px
    }

    .prd .art-body__prose h2 {
        font-size: 23px
    }

    .prd .art-cta__text-h {
        font-size: 23px
    }

    .prd .art-cta__btns {
        flex-direction: column
    }

    .prd .art-cta__btn--primary {
        font-size: 16px;
        padding: 12px 20px
    }
}

.sproj {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: #fff
}

.sproj .sproj__inner {
    max-width: 1600px;
    margin: 0 auto
}

.sproj .title-band {
    background: linear-gradient(162deg, #2C3FB5 0%, #1a2a8a 55%, #2C3FB5 100%);
    position: relative;
    padding: 80px;
    overflow: hidden
}

.sproj .title-band__bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .07;
    transition: opacity .45s ease-out
}

.sproj .title-band__bg-img.loaded {
    opacity: .07
}

.sproj .title-band__bracket--tl,
.sproj .title-band__bracket--br {
    position: absolute;
    width: 48px;
    height: 48px;
    pointer-events: none
}

.sproj .title-band__bracket--tl {
    top: 28px;
    left: 28px;
    border-top: 2px solid #ead9dd73;
    border-left: 2px solid #ead9dd73
}

.sproj .title-band__bracket--br {
    bottom: 28px;
    right: 28px;
    border-bottom: 2px solid #ead9dd73;
    border-right: 2px solid #ead9dd73
}

.sproj .title-band__layout {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    position: relative;
    z-index: 1
}

.sproj .title-band__text {
    flex: 1 1 0
}

.sproj .title-band__eyebrow {
    font-size: 16px;
    line-height: 1.45;
    color: #d4eadbd9;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px
}

.sproj .title-band__h1 {
    font-size: 72px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px
}

.sproj .title-band__h1 .punct {
    color: #D4EADB
}

.sproj .title-band__sub {
    font-size: 19px;
    line-height: 1.65;
    color: #ffffffc7;
    max-width: 540px;
    margin-bottom: 40px
}

.sproj .title-band__sub .acc {
    color: #D4EADB;
    font-weight: 600
}

.sproj .title-band__cta {
    display: inline-block;
    padding: 20px 40px;
    background: transparent;
    border: 2px solid #D4EADB;
    color: #D4EADB;
    font-size: 16px;
    font-weight: 700;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .25s ease-out, border-color .25s ease-out;
    text-decoration: none
}

.sproj .title-band__cta::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #D4EADB;
    transition: height .35s ease-out;
    z-index: 0
}

.sproj .title-band__cta:hover::before {
    height: 100%
}

.sproj .title-band__cta:hover {
    color: #2C3FB5
}

.sproj .title-band__cta span {
    position: relative;
    z-index: 1
}

.sproj .title-band__stat-col {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 12px
}

.sproj .stat-pill {
    background: #ffffff14;
    border: 1px solid #d4eadb33;
    padding: 20px;
    border-radius: 28px;
    transition: background .2s ease-out
}

.sproj .stat-pill:hover {
    background: #ffffff21
}

.sproj .stat-pill__num {
    font-size: 42px;
    line-height: 1.2;
    color: #D4EADB;
    font-weight: 800;
    display: block
}

.sproj .stat-pill__label {
    font-size: 16px;
    line-height: 1.45;
    color: #ffffffa6;
    display: block;
    margin-top: 4px
}

.sproj .title-band__curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
    z-index: 2
}

.sproj .showcase {
    padding: 80px;
    background: #fff;
    position: relative
}

.sproj .showcase__divider-top {
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #2C3FB5 0%, #EAD9DD 60%, transparent 100%);
    margin-bottom: 80px
}

.sproj .showcase__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto
}

.sproj .showcase__featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #2C3FB5 0%, #1e2e9a 100%);
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    position: relative;
    overflow: hidden
}

.sproj .showcase__featured-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: .08;
    transition: opacity .4s ease-out;
    border-radius: 28px
}

.sproj .showcase__featured-top {
    position: relative;
    z-index: 1
}

.sproj .showcase__tag {
    display: inline-block;
    font-size: 16px;
    color: #D4EADB;
    background: #d4eadb26;
    border: 1px solid #d4eadb59;
    padding: 4px 12px;
    border-radius: 28px;
    margin-bottom: 20px
}

.sproj .showcase__featured-h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin-bottom: 20px
}

.sproj .showcase__featured-desc {
    font-size: 19px;
    line-height: 1.65;
    color: #ffffffbf;
    margin-bottom: 0
}

.sproj .showcase__featured-desc::first-letter {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #D4EADB;
    float: left;
    margin-right: 8px;
    margin-top: 4px
}

.sproj .showcase__featured-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 40px
}

.sproj .showcase__portrait {
    width: 56px;
    height: 70px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0
}

.sproj .showcase__person-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: block
}

.sproj .showcase__person-role {
    font-size: 16px;
    color: #d4eadbbf;
    display: block;
    margin-top: 4px
}

.sproj .showcase__card {
    background: #fff;
    border: 1px solid #EAD9DD;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    transition: box-shadow .35s ease-out, transform .35s ease-out
}

.sproj .showcase__card:hover {
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    transform: translateY(-4px)
}

.sproj .showcase__card-tag {
    font-size: 16px;
    color: #2C3FB5;
    font-weight: 600;
    margin-bottom: 12px;
    display: block
}

.sproj .showcase__card-h3 {
    font-size: 23px;
    line-height: 1.45;
    font-weight: 700;
    color: #1a1f5c;
    margin-bottom: 12px
}

.sproj .showcase__card-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3f6b;
    flex: 1
}

.sproj .showcase__card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #EAD9DD
}

.sproj .showcase__card-portrait {
    width: 48px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0
}

.sproj .showcase__card-name {
    font-size: 16px;
    font-weight: 700;
    color: #2C3FB5;
    display: block
}

.sproj .showcase__card-meta {
    font-size: 16px;
    color: #7a7fa8;
    display: block;
    margin-top: 4px
}

.sproj .showcase__metrics {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap
}

.sproj .metric-chip {
    background: #D4EADB;
    border-radius: 28px;
    padding: 8px 20px;
    font-size: 16px;
    color: #1a2a3a;
    font-weight: 600
}

.sproj .metric-chip span {
    color: #2C3FB5
}

.sproj .outcomes {
    padding: 80px;
    background: linear-gradient(155deg, #f4f3ff 0%, #EAD9DD 40%, #D4EADB 100%);
    position: relative
}

.sproj .outcomes__divider {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, transparent 0%, #2C3FB5 50%, transparent 100%);
    margin-bottom: 80px
}

.sproj .outcomes__layout {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.sproj .outcomes__left {
    flex: 0 0 420px
}

.sproj .outcomes__h2 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5;
    margin-bottom: 20px;
    text-align: center
}

.sproj .outcomes__h2 .punct {
    color: #1a1f5c
}

.sproj .outcomes__lead {
    font-size: 19px;
    line-height: 1.65;
    color: #2a2f5a;
    margin-bottom: 40px
}

.sproj .outcomes__lead::first-letter {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px
}

.sproj .outcomes__hero-stat {
    background: #2C3FB5;
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    margin-bottom: 20px
}

.sproj .outcomes__hero-num {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 800;
    color: #D4EADB;
    display: block
}

.sproj .outcomes__hero-label {
    font-size: 19px;
    line-height: 1.45;
    color: #fffc;
    display: block;
    margin-top: 8px
}

.sproj .outcomes__hero-context {
    font-size: 16px;
    line-height: 1.65;
    color: #d4eadba6;
    display: block;
    margin-top: 8px
}

.sproj .outcomes__support-stats {
    display: flex;
    flex-direction: row;
    gap: 12px
}

.sproj .outcomes__mini-stat {
    flex: 1;
    background: #ffffffb8;
    border: 1px solid #2c3fb51f;
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px)
}

.sproj .outcomes__mini-num {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5;
    display: block
}

.sproj .outcomes__mini-label {
    font-size: 16px;
    line-height: 1.45;
    color: #3a3f6b;
    display: block;
    margin-top: 4px
}

.sproj .outcomes__right {
    flex: 1 1 0
}

.sproj .outcomes__right-h3 {
    font-size: 23px;
    line-height: 1.45;
    font-weight: 700;
    color: #2C3FB5;
    margin-bottom: 20px;
    text-align: center
}

.sproj .outcomes__list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.sproj .outcome-item {
    background: #ffffffd1;
    border-radius: 28px;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    border: 1px solid #2c3fb514;
    transition: box-shadow .2s ease-out, background .2s ease-out;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px)
}

.sproj .outcome-item:hover {
    background: #fffffff5;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.sproj .outcome-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: #2C3FB5;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.sproj .outcome-item__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #D4EADB;
    stroke-width: 2
}

.sproj .outcome-item__body {
    flex: 1
}

.sproj .outcome-item__h4 {
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
    color: #1a1f5c;
    margin-bottom: 8px
}

.sproj .outcome-item__p {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3f6b;
    margin: 0
}

.sproj .outcome-item__p .acc {
    color: #2C3FB5;
    font-weight: 600
}

@keyframes colReveal {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

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

.sproj .anim-col {
    opacity: 0;
    animation: colReveal .45s ease-out forwards
}

.sproj .anim-col--1 {
    animation-delay: .1s
}

.sproj .anim-col--2 {
    animation-delay: .25s
}

.sproj .anim-col--3 {
    animation-delay: .4s
}

@keyframes fadeInImg {
    from {
        opacity: 0
    }

    to {
        opacity: .07
    }
}

.sproj .title-band__bg-img {
    opacity: 0;
    animation: fadeInImg .45s ease-out .15s forwards
}

@keyframes scrollReveal {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.sproj .scroll-reveal {
    opacity: 0;
    animation: scrollReveal .4s ease-out forwards;
    animation-play-state: paused
}

.sproj .scroll-reveal.visible {
    animation-play-state: running
}

.sproj .scroll-reveal--d1 {
    animation-delay: .1s
}

.sproj .scroll-reveal--d2 {
    animation-delay: .22s
}

.sproj .scroll-reveal--d3 {
    animation-delay: .34s
}

.sproj .scroll-reveal--d4 {
    animation-delay: .42s
}

@media (max-width: 1280px) {
    .sproj .title-band {
        padding: 80px 40px
    }

    .sproj .title-band__h1 {
        font-size: 58px
    }

    .sproj .title-band__stat-col {
        flex: 0 0 260px
    }

    .sproj .showcase {
        padding: 80px 40px
    }

    .sproj .outcomes {
        padding: 80px 40px
    }

    .sproj .outcomes__layout {
        gap: 40px
    }

    .sproj .outcomes__left {
        flex: 0 0 340px
    }
}

@media (max-width: 768px) {
    .sproj .title-band {
        padding: 40px 20px 60px
    }

    .sproj .title-band__layout {
        flex-direction: column;
        gap: 40px
    }

    .sproj .title-band__h1 {
        font-size: 42px
    }

    .sproj .title-band__stat-col {
        flex: none;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap
    }

    .sproj .stat-pill {
        flex: 1 1 140px
    }

    .sproj .showcase {
        padding: 40px 20px
    }

    .sproj .showcase__divider-top {
        margin-bottom: 40px
    }

    .sproj .showcase__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px
    }

    .sproj .showcase__featured {
        grid-column: 1 / 2;
        grid-row: auto;
        min-height: 360px
    }

    .sproj .showcase__featured-h2 {
        font-size: 23px
    }

    .sproj .outcomes {
        padding: 40px 20px
    }

    .sproj .outcomes__divider {
        margin-bottom: 40px
    }

    .sproj .outcomes__layout {
        flex-direction: column;
        gap: 40px
    }

    .sproj .outcomes__left {
        flex: none;
        width: 100%
    }

    .sproj .outcomes__h2 {
        font-size: 42px
    }

    .sproj .outcomes__hero-num {
        font-size: 58px
    }

    .sproj .outcomes__support-stats {
        flex-direction: row
    }

    .sproj .outcome-item {
        padding: 20px
    }
}

@media (max-width: 390px) {
    .sproj .title-band__h1 {
        font-size: 42px
    }

    .sproj .title-band__sub {
        font-size: 16px
    }

    .sproj .outcomes__h2 {
        font-size: 42px
    }

    .sproj .outcomes__hero-num {
        font-size: 42px
    }

    .sproj .outcomes__support-stats {
        flex-direction: column
    }

    .sproj .showcase__featured-desc::first-letter {
        font-size: 23px
    }
}

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

.lp-prog .sep-dash {
    border: none;
    border-top: 1px dashed #b0b8c9;
    margin: 0
}

.lp-prog .prog-hero {
    background: linear-gradient(170deg, #2C3FB5 0%, #4a5cd4 38%, #2c3fb52e 72%, transparent 100%);
    padding: 80px 0 40px;
    position: relative
}

.lp-prog .prog-hero__bg-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    overflow: hidden
}

.lp-prog .prog-hero__bg-shapes span {
    position: absolute;
    border: 1px solid #ead9dd47;
    border-radius: 0
}

.lp-prog .prog-hero__bg-shapes span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20px;
    right: 20px
}

.lp-prog .prog-hero__bg-shapes span:nth-child(2) {
    width: 130px;
    height: 130px;
    top: 10px;
    right: 10px
}

.lp-prog .prog-hero__bg-shapes span:nth-child(3) {
    width: 190px;
    height: 190px;
    top: 0;
    right: 0
}

.lp-prog .prog-hero__bg-shapes span:nth-child(4) {
    width: 260px;
    height: 260px;
    top: -10px;
    right: -10px
}

.lp-prog .prog-hero__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px
}

.lp-prog .prog-hero__text {
    flex: 1 1 0;
    min-width: 0
}

.lp-prog .prog-hero__label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #EAD9DD;
    border: 1px solid #ead9dd80;
    border-radius: 0;
    padding: 4px 12px;
    margin-bottom: 20px;
    letter-spacing: .04em
}

.lp-prog .prog-hero__h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin: 0 0 20px
}

.lp-prog .prog-hero__h1 em {
    font-style: normal;
    color: #EAD9DD
}

.lp-prog .prog-hero__h1 strong {
    display: block;
    font-size: 72px;
    line-height: 1.2;
    color: #fff
}

.lp-prog .prog-hero__desc {
    font-size: 19px;
    line-height: 1.65;
    color: #ffffffe0;
    margin: 0 0 40px;
    max-width: 560px
}

.lp-prog .prog-hero__desc::first-letter {
    font-size: 42px;
    line-height: 1.2;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    color: #EAD9DD;
    font-weight: 700
}

.lp-prog .prog-hero__metrics {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap
}

.lp-prog .prog-hero__metric {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lp-prog .prog-hero__metric-val {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff
}

.lp-prog .prog-hero__metric-val span {
    color: #EAD9DD
}

.lp-prog .prog-hero__metric-lbl {
    font-size: 16px;
    line-height: 1.45;
    color: #ffffffb8
}

.lp-prog .prog-hero__side {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lp-prog .prog-hero__img-wrap {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden
}

.lp-prog .prog-hero__img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-out;
    filter: blur(0px)
}

.lp-prog .prog-hero__img-wrap img.loaded {
    opacity: 1
}

.lp-prog .prog-hero__img-blur {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #2c3fb538 0%, transparent 60%);
    pointer-events: none
}

.lp-prog .prog-hero__card {
    background: #fffffff7;
    border-radius: 0;
    padding: 20px;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.lp-prog .prog-hero__card-title {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #2C3FB5;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .06em
}

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

.lp-prog .prog-hero__card-item {
    font-size: 16px;
    line-height: 1.45;
    color: #222;
    padding-left: 16px;
    position: relative
}

.lp-prog .prog-hero__card-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #2C3FB5;
    border-radius: 0
}

.lp-prog .prog-hero__cta {
    display: inline-block;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
    color: #2C3FB5;
    background: #fff;
    border: 2px solid #2C3FB5;
    border-radius: 28px;
    padding: 12px 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out, border-color .25s ease-out;
    cursor: pointer;
    align-self: flex-start
}

.lp-prog .prog-hero__cta::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #2C3FB5;
    transition: height .35s ease-out;
    z-index: 0
}

.lp-prog .prog-hero__cta:hover::before {
    height: 100%
}

.lp-prog .prog-hero__cta:hover {
    color: #fff
}

.lp-prog .prog-hero__cta-text {
    position: relative;
    z-index: 1
}

.lp-prog .prog-detail {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.lp-prog .prog-detail__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px
}

.lp-prog .prog-detail__top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px
}

.lp-prog .prog-detail__intro {
    flex: 1 1 0;
    min-width: 0
}

.lp-prog .prog-detail__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin: 0 0 20px;
    text-align: center
}

.lp-prog .prog-detail__h2 .acc {
    color: #2C3FB5
}

.lp-prog .prog-detail__body {
    font-size: 19px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 20px
}

.lp-prog .prog-detail__body::first-letter {
    font-size: 42px;
    line-height: 1.2;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    color: #2C3FB5;
    font-weight: 700
}

.lp-prog .prog-detail__body-2 {
    font-size: 19px;
    line-height: 1.65;
    color: #333;
    margin: 0
}

.lp-prog .prog-detail__aside {
    flex: 0 0 380px
}

.lp-prog .prog-detail__stat-box {
    background: linear-gradient(135deg, #2C3FB5 0%, #4a5cd4 100%);
    border-radius: 0;
    padding: 40px;
    position: relative;
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.lp-prog .prog-detail__stat-box::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid #EAD9DD;
    border-radius: 0;
    pointer-events: none
}

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

.lp-prog .prog-detail__stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #ead9dd66
}

.lp-prog .prog-detail__stat-item:last-child {
    padding-bottom: 0;
    border-bottom: none
}

.lp-prog .prog-detail__stat-num {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #EAD9DD
}

.lp-prog .prog-detail__stat-desc {
    font-size: 16px;
    line-height: 1.45;
    color: #ffffffd9
}

.lp-prog .prog-detail__formats {
    margin-bottom: 80px
}

.lp-prog .prog-detail__formats-h {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin: 0 0 40px
}

.lp-prog .prog-detail__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.lp-prog .prog-fmt {
    border: 2px solid #EAD9DD;
    border-radius: 0;
    padding: 40px 20px 20px;
    position: relative;
    background: #fff;
    transition: box-shadow .25s ease-out, border-color .2s ease-out;
    outline: 2px solid transparent
}

.lp-prog .prog-fmt:hover {
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    border-color: #2C3FB5;
    outline-color: transparent
}

.lp-prog .prog-fmt--outline {
    border-width: 2px;
    transition: outline-width .18s ease-out, outline-offset .18s ease-out, box-shadow .25s ease-out;
    outline: 2px solid transparent;
    outline-offset: 0
}

.lp-prog .prog-fmt--outline:hover {
    outline: 2px solid #2C3FB5;
    outline-offset: 4px
}

.lp-prog .prog-fmt__tag {
    position: absolute;
    top: -1px;
    left: 20px;
    background: #2C3FB5;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 0
}

.lp-prog .prog-fmt__name {
    font-size: 23px;
    line-height: 1.45;
    font-weight: 800;
    color: #111;
    margin: 12px 0 8px
}

.lp-prog .prog-fmt__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #444;
    margin: 0 0 20px
}

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

.lp-prog .prog-fmt__detail {
    font-size: 16px;
    line-height: 1.45;
    color: #333;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.lp-prog .prog-fmt__detail-dot {
    width: 8px;
    height: 8px;
    background: #D4EADB;
    border: 2px solid #2C3FB5;
    border-radius: 0;
    flex-shrink: 0;
    margin-top: 6px
}

.lp-prog .prog-detail__team {
    margin-bottom: 0
}

.lp-prog .prog-detail__team-h {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    text-align: center;
    margin: 0 0 40px
}

.lp-prog .prog-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.lp-prog .prog-instructor {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    border: 1px solid #EAD9DD;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    transition: box-shadow .35s ease-out
}

.lp-prog .prog-instructor:hover {
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.lp-prog .prog-instructor__portrait {
    width: 100%;
    aspect-ratio: 7/9;
    overflow: hidden
}

.lp-prog .prog-instructor__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .4s ease-out
}

.lp-prog .prog-instructor__portrait img.loaded {
    opacity: 1
}

.lp-prog .prog-instructor__info {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lp-prog .prog-instructor__name {
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
    color: #111;
    margin: 0
}

.lp-prog .prog-instructor__role {
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    margin: 0
}

.lp-prog .prog-instructor__bio {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    margin: 8px 0 0
}

.lp-prog .prog-instructor--no-portrait {
    background: #D4EADB;
    border: 1px solid #2C3FB5
}

.lp-prog .prog-instructor--no-portrait .prog-instructor__avatar {
    width: 100%;
    aspect-ratio: 7/9;
    background: linear-gradient(160deg, #D4EADB 0%, #EAD9DD 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.lp-prog .prog-instructor__avatar-shape {
    width: 64px;
    height: 64px;
    border-radius: 0;
    background: #2c3fb52e;
    border: 2px solid #2C3FB5;
    display: flex;
    align-items: center;
    justify-content: center
}

.lp-prog .prog-instructor__avatar-shape svg {
    width: 36px;
    height: 36px;
    fill: #2C3FB5
}

@keyframes lp-pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

.lp-prog .prog-detail__stat-box {
    animation: lp-pulse 4s ease-out infinite
}

@media (max-width: 1280px) {
    .lp-prog .prog-hero__h1 {
        font-size: 42px
    }

    .lp-prog .prog-hero__h1 strong {
        font-size: 58px
    }

    .lp-prog .prog-hero__side {
        flex: 0 0 320px
    }

    .lp-prog .prog-detail__top {
        gap: 40px
    }

    .lp-prog .prog-detail__aside {
        flex: 0 0 300px
    }

    .lp-prog .prog-detail__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lp-prog .prog-team__grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .lp-prog .prog-hero {
        padding: 40px 0
    }

    .lp-prog .prog-hero__inner {
        flex-direction: column;
        padding: 0 20px;
        gap: 20px
    }

    .lp-prog .prog-hero__h1 {
        font-size: 42px
    }

    .lp-prog .prog-hero__h1 strong {
        font-size: 42px
    }

    .lp-prog .prog-hero__side {
        flex: none;
        width: 100%
    }

    .lp-prog .prog-hero__metrics {
        gap: 20px
    }

    .lp-prog .prog-detail__inner {
        padding: 0 20px
    }

    .lp-prog .prog-detail__top {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 40px
    }

    .lp-prog .prog-detail__aside {
        flex: none;
        width: 100%
    }

    .lp-prog .prog-detail__grid {
        grid-template-columns: 1fr
    }

    .lp-prog .prog-team__grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lp-prog .prog-detail {
        padding: 40px 0
    }

    .lp-prog .prog-detail__formats {
        margin-bottom: 40px
    }
}

@media (max-width: 390px) {
    .lp-prog .prog-hero__h1 {
        font-size: 42px
    }

    .lp-prog .prog-hero__h1 strong {
        font-size: 42px
    }

    .lp-prog .prog-hero__metric-val {
        font-size: 23px
    }

    .lp-prog .prog-team__grid {
        grid-template-columns: 1fr
    }

    .lp-prog .prog-detail__h2,
    .lp-prog .prog-detail__formats-h,
    .lp-prog .prog-detail__team-h {
        font-size: 23px
    }
}

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

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

.abt .ttl-blk {
    position: relative;
    background: linear-gradient(118deg, #2C3FB5 0%, #2C3FB5 48%, #EAD9DD 48%, #EAD9DD 100%);
    overflow: hidden
}

.abt .ttl-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    position: relative;
    z-index: 1
}

.abt .ttl-blk__text-zone {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 40px
}

.abt .ttl-blk__deco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0
}

.abt .ttl-blk__deco::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 48px;
    height: 48px;
    border-top: 3px solid #ead9dd80;
    border-left: 3px solid #ead9dd80
}

.abt .ttl-blk__deco::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-bottom: 3px solid #ead9dd80;
    border-right: 3px solid #ead9dd80
}

.abt .ttl-blk__h1 {
    font-size: 72px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 1;
    margin: 0
}

.abt .ttl-blk__h1 .accent-span {
    background: linear-gradient(135deg, #EAD9DD 0%, #D4EADB 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline
}

.abt .ttl-blk__img-zone {
    flex: 1 1 50%;
    position: relative;
    min-height: 420px
}

.abt .ttl-blk__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 28px;
    border: 3px solid #EAD9DD;
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    opacity: 0;
    transition: opacity .45s ease-out
}

.abt .ttl-blk__img.loaded {
    opacity: 1
}

.abt .story-blk {
    background: #fff;
    padding: 80px 0;
    position: relative
}

.abt .story-blk::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #D4EADB 0%, #2C3FB5 50%, #EAD9DD 100%);
    margin-top: 80px
}

.abt .story-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 80px;
    align-items: start
}

.abt .story-blk__text {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.abt .story-blk__label {
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase
}

.abt .story-blk__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b2e;
    margin: 0;
    text-align: center
}

.abt .story-blk__body {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.abt .story-blk__p {
    font-size: 19px;
    line-height: 1.65;
    color: #2e2e3a;
    margin: 0
}

.abt .story-blk__p--drop::first-letter {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px
}

.abt .story-blk__p .hl-span {
    background-color: #D4EADB;
    color: #1b1b2e;
    padding: 0 4px;
    border-radius: 0
}

.abt .story-blk__metrics {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.abt .metric-card {
    background: #f5f6ff;
    border-radius: 28px;
    padding: 20px;
    border: 1.5px solid #EAD9DD;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    transition: box-shadow .25s ease-out, border-color .18s ease-out;
    position: relative
}

.abt .metric-card::before {
    content: '';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-top: 2px solid #2C3FB5;
    border-right: 2px solid #2C3FB5;
    border-radius: 0
}

.abt .metric-card:hover {
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    border-color: #2C3FB5
}

.abt .metric-card__num {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5;
    display: block
}

.abt .metric-card__desc {
    font-size: 16px;
    line-height: 1.45;
    color: #2e2e3a;
    margin: 4px 0 0
}

.abt .team-blk {
    background: linear-gradient(160deg, #2C3FB5 0%, #1e2d8a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.abt .team-blk__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, #d4eadb1f 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 4s ease-in-out infinite
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: .5;
        transform: translate(-50%, -50%) scale(1)
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15)
    }
}

.abt .team-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1
}

.abt .team-blk__heading {
    text-align: center;
    margin-bottom: 40px
}

.abt .team-blk__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px
}

.abt .team-blk__sub {
    font-size: 19px;
    line-height: 1.65;
    color: #EAD9DD;
    max-width: 600px;
    margin: 0 auto
}

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

.abt .team-card {
    background: #ffffff12;
    border-radius: 28px;
    padding: 40px;
    border: 1.5px solid #ead9dd40;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    transition: border-color .22s ease-out, background .35s ease-out
}

.abt .team-card:hover {
    border-color: #d4eadb99;
    background: #ffffff1c
}

.abt .team-card__portrait {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border: 3px solid #D4EADB;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    opacity: 0;
    transition: opacity .4s ease-out
}

.abt .team-card__portrait.loaded {
    opacity: 1
}

.abt .team-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt .team-card__name {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.abt .team-card__role {
    font-size: 16px;
    line-height: 1.45;
    color: #D4EADB;
    font-weight: 600
}

.abt .team-card__bio {
    font-size: 16px;
    line-height: 1.65;
    color: #ffffffd1;
    margin: 0
}

.abt .team-blk__no-portrait {
    background: #ffffff12;
    border-radius: 28px;
    padding: 40px;
    border: 1.5px solid #ead9dd40;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    gap: 12px;
    grid-column: 1 / -1
}

.abt .team-blk__no-portrait-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap
}

.abt .np-member {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 200px
}

.abt .np-member__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2C3FB5 0%, #D4EADB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px
}

.abt .np-member__initials {
    font-size: 19px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2
}

.abt .np-member__name {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.abt .np-member__role {
    font-size: 16px;
    line-height: 1.45;
    color: #D4EADB
}

.abt .approach-blk {
    background: #D4EADB;
    padding: 80px 0 40px;
    position: relative
}

.abt .approach-blk__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px
}

.abt .approach-blk__top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 40px
}

.abt .approach-blk__heading {
    flex: 0 0 auto;
    max-width: 400px
}

.abt .approach-blk__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b2e;
    margin: 0 0 20px;
    text-align: center
}

.abt .approach-blk__intro {
    font-size: 19px;
    line-height: 1.65;
    color: #2e2e3a;
    margin: 0
}

.abt .approach-blk__img-wrap {
    flex: 1 1 0;
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    position: relative
}

.abt .approach-blk__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .38s ease-out
}

.abt .approach-blk__img.loaded {
    opacity: 1
}

.abt .steps-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    padding: 40px 0
}

.abt .steps-track__line {
    position: absolute;
    top: 60px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #2C3FB5 0%, #EAD9DD 50%, #2C3FB5 100%);
    z-index: 0
}

.abt .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    transition: transform .2s ease-out
}

.abt .step-item:hover {
    transform: translateY(-4px)
}

.abt .step-item__dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2C3FB5;
    border: 3px solid #D4EADB;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s ease-out, box-shadow .25s ease-out
}

.abt .step-item:hover .step-item__dot {
    background: #1e2d8a;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.abt .step-item__num {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2
}

.abt .step-item__title {
    font-size: 19px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b2e;
    margin: 0
}

.abt .step-item__desc {
    font-size: 16px;
    line-height: 1.45;
    color: #2e2e3a;
    margin: 0
}

.abt .approach-blk__bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px 0;
    align-items: stretch
}

.abt .approach-blk__img2-wrap {
    border-radius: 28px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.abt .approach-blk__img2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    min-height: 220px;
    opacity: 0;
    transition: opacity .42s ease-out
}

.abt .approach-blk__img2.loaded {
    opacity: 1
}

.abt .approach-blk__cta-box {
    background: #2C3FB5;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.abt .approach-blk__cta-box::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 36px;
    height: 36px;
    border-top: 2px solid #d4eadb66;
    border-left: 2px solid #d4eadb66
}

.abt .approach-blk__cta-box::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-bottom: 2px solid #d4eadb66;
    border-right: 2px solid #d4eadb66
}

.abt .cta-box__h3 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-align: center
}

.abt .cta-box__p {
    font-size: 19px;
    line-height: 1.65;
    color: #EAD9DD;
    margin: 0
}

.abt .cta-box__p .hl-span {
    background-color: #d4eadb40;
    color: #D4EADB;
    padding: 0 4px
}

.abt .cta-box__btn {
    display: inline-block;
    padding: 20px 40px;
    background: #fff;
    color: #2C3FB5;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    border-radius: 0;
    border: 2px solid #fff;
    cursor: pointer;
    text-decoration: none;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: color .28s ease-out, border-color .18s ease-out;
    z-index: 0
}

.abt .cta-box__btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #D4EADB;
    z-index: -1;
    transition: height .32s ease-out
}

.abt .cta-box__btn:hover::before {
    height: 100%
}

.abt .cta-box__btn:hover {
    color: #1b1b2e;
    border-color: #D4EADB
}

.abt .cta-box__btn:focus {
    outline: 3px solid #D4EADB;
    outline-offset: 3px
}

@media (max-width: 1280px) {
    .abt .ttl-blk__h1 {
        font-size: 58px
    }

    .abt .story-blk__inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .abt .steps-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px
    }

    .abt .steps-track__line {
        display: none
    }

    .abt .approach-blk__top {
        flex-direction: column;
        gap: 40px
    }

    .abt .approach-blk__heading {
        max-width: 100%
    }
}

@media (max-width: 768px) {
    .abt .ttl-blk__inner {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px
    }

    .abt .ttl-blk {
        background: linear-gradient(180deg, #2C3FB5 0%, #2C3FB5 55%, #EAD9DD 55%, #EAD9DD 100%)
    }

    .abt .ttl-blk__text-zone {
        padding: 20px
    }

    .abt .ttl-blk__h1 {
        font-size: 42px
    }

    .abt .ttl-blk__img-zone {
        min-height: 260px
    }

    .abt .story-blk__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px
    }

    .abt .story-blk {
        padding: 40px 0
    }

    .abt .story-blk::after {
        margin-top: 40px
    }

    .abt .team-blk__inner {
        padding: 0 20px
    }

    .abt .team-blk {
        padding: 40px 0
    }

    .abt .team-blk__grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .abt .team-card {
        flex-direction: column;
        padding: 20px
    }

    .abt .team-blk__no-portrait {
        padding: 20px
    }

    .abt .team-blk__no-portrait-row {
        gap: 20px
    }

    .abt .approach-blk {
        padding: 40px 0 20px
    }

    .abt .approach-blk__inner {
        padding: 0 20px
    }

    .abt .approach-blk__top {
        gap: 20px;
        margin-bottom: 20px
    }

    .abt .steps-track {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0
    }

    .abt .approach-blk__bottom {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 0
    }

    .abt .cta-box__h3 {
        font-size: 23px
    }

    .abt .approach-blk__h2,
    .abt .story-blk__h2,
    .abt .team-blk__h2 {
        font-size: 23px
    }

    .abt .metric-card__num {
        font-size: 42px
    }
}

@media (max-width: 390px) {
    .abt .ttl-blk__h1 {
        font-size: 42px
    }

    .abt .ttl-blk__text-zone {
        padding: 12px
    }

    .abt .cta-box__btn {
        padding: 12px 20px;
        font-size: 16px
    }
}

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

.cnt-us .pg-intro {
    padding: 80px 20px;
    max-width: 1600px;
    margin: 0 auto
}

.cnt-us .pg-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.cnt-us .pg-intro__img-col {
    position: relative;
    border-radius: 28px;
    overflow: hidden
}

.cnt-us .pg-intro__img-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.cnt-us .pg-intro__img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-out, filter .25s ease-out;
    filter: brightness(0.88)
}

.cnt-us .pg-intro__img.loaded {
    opacity: 1
}

.cnt-us .pg-intro__img:hover {
    filter: brightness(1.05)
}

.cnt-us .pg-intro__curl {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-radius: 0 0 28px 0;
    border-top: 2px solid #2c3fb52e;
    border-left: 2px solid #2c3fb52e;
    pointer-events: none
}

.cnt-us .pg-intro__text-col {
    padding: 40px
}

.cnt-us .pg-intro__eyebrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    border-bottom: 1px solid #2C3FB5;
    padding-bottom: 4px;
    margin-bottom: 20px
}

.cnt-us .pg-intro__h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b2240;
    margin-bottom: 20px;
    text-align: center
}

.cnt-us .pg-intro__h1 .accent {
    color: #2C3FB5
}

.cnt-us .pg-intro__desc {
    font-size: 19px;
    line-height: 1.65;
    color: #2e3550;
    margin-bottom: 40px
}

.cnt-us .pg-intro__desc::first-letter {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    float: left;
    margin-right: 8px;
    color: #2C3FB5
}

.cnt-us .detail-strip {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.cnt-us .detail-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    border: 1px solid #EAD9DD;
    transition: box-shadow .2s ease-out, border-color .2s ease-out
}

.cnt-us .detail-item:hover {
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    border-color: #2C3FB5
}

.cnt-us .detail-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.cnt-us .detail-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: #2C3FB5;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cnt-us .detail-item__label {
    font-size: 16px;
    line-height: 1.45;
    color: #7a85aa;
    display: block;
    margin-bottom: 4px
}

.cnt-us .detail-item__val {
    font-size: 19px;
    line-height: 1.45;
    color: #1b2240;
    font-weight: 600;
    text-decoration: none;
    transition: color .15s ease-out
}

.cnt-us .detail-item__val:hover {
    color: #2C3FB5
}

.cnt-us .divider-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px 0
}

.cnt-us .divider-dots__dot {
    width: 6px;
    height: 6px;
    border-radius: 0;
    background: #EAD9DD;
    display: inline-block
}

.cnt-us .divider-dots__dot--mid {
    background: #2C3FB5;
    width: 8px;
    height: 8px
}

.cnt-us .form-area {
    background: linear-gradient(160deg, #f5f6ff 0%, #fdf5f7 55%, #f4faf6 100%);
    padding: 80px 20px
}

.cnt-us .form-area__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start
}

.cnt-us .form-area__aside {
    position: sticky;
    top: 40px
}

.cnt-us .form-area__aside-img-wrap {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    margin-bottom: 40px
}

.cnt-us .form-area__aside-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-out, filter .25s ease-out;
    filter: brightness(0.88)
}

.cnt-us .form-area__aside-img.loaded {
    opacity: 1
}

.cnt-us .form-area__aside-img:hover {
    filter: brightness(1.05)
}

.cnt-us .form-area__aside-h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b2240;
    margin-bottom: 20px;
    text-align: center
}

.cnt-us .form-area__aside-note {
    font-size: 16px;
    line-height: 1.65;
    color: #3e4870;
    margin-bottom: 20px
}

.cnt-us .pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px
}

.cnt-us .pros-cons__col {
    padding: 20px;
    border-radius: 28px;
    box-shadow: inset 1px 2px 4px 0 #2c3fb512
}

.cnt-us .pros-cons__col--pro {
    background: #D4EADB;
    border: 1px solid #2c3fb51f
}

.cnt-us .pros-cons__col--con {
    background: #EAD9DD;
    border: 1px solid #2c3fb51f
}

.cnt-us .pros-cons__head {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #1b2240;
    margin-bottom: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.cnt-us .pros-cons__indicator {
    width: 10px;
    height: 10px;
    border-radius: 0;
    display: inline-block;
    flex-shrink: 0
}

.cnt-us .pros-cons__indicator--pro {
    background: #2C3FB5
}

.cnt-us .pros-cons__indicator--con {
    background: #9e3a55
}

.cnt-us .pros-cons__item {
    font-size: 16px;
    line-height: 1.65;
    color: #2e3550;
    margin-bottom: 8px;
    padding-left: 12px;
    position: relative
}

.cnt-us .pros-cons__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    background: #2C3FB5;
    border-radius: 0
}

.cnt-us .pros-cons__col--con .pros-cons__item::before {
    background: #9e3a55
}

.cnt-us .frm {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    border: 1px solid #EAD9DD
}

.cnt-us .frm__heading {
    font-size: 23px;
    line-height: 1.45;
    font-weight: 700;
    color: #1b2240;
    margin-bottom: 8px;
    text-align: center
}

.cnt-us .frm__sub {
    font-size: 16px;
    line-height: 1.65;
    color: #7a85aa;
    text-align: center;
    margin-bottom: 40px
}

.cnt-us .frm__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px
}

.cnt-us .frm__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px
}

.cnt-us .frm__field--full {
    grid-column: 1 / -1
}

.cnt-us .frm__label {
    font-size: 16px;
    line-height: 1.45;
    color: #2e3550;
    font-weight: 600
}

.cnt-us .frm__input {
    padding: 12px 20px;
    border-radius: 28px;
    border: 1px solid #EAD9DD;
    background: #fafbff;
    font-size: 16px;
    line-height: 1.45;
    color: #1b2240;
    box-shadow: inset 1px 2px 4px 0 #2c3fb512;
    transition: border-color .2s ease-out, box-shadow .2s ease-out;
    width: 100%;
    box-sizing: border-box;
    outline: none
}

.cnt-us .frm__input::placeholder {
    font-size: 16px;
    color: #a0a8c0
}

.cnt-us .frm__input:focus {
    border-color: #2C3FB5;
    box-shadow: inset 1px 2px 4px 0 #2c3fb512 0 0 0 3px #2c3fb51f
}

.cnt-us .frm__select {
    padding: 12px 20px;
    border-radius: 28px;
    border: 1px solid #EAD9DD;
    background: #fafbff;
    font-size: 16px;
    line-height: 1.45;
    color: #1b2240;
    box-shadow: inset 1px 2px 4px 0 #2c3fb512;
    transition: border-color .2s ease-out, box-shadow .2s ease-out;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232C3FB5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px
}

.cnt-us .frm__select:focus {
    border-color: #2C3FB5;
    box-shadow: inset 1px 2px 4px 0 #2c3fb512 0 0 0 3px #2c3fb51f
}

.cnt-us .frm__slot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
}

.cnt-us .frm__slot-opt {
    position: relative
}

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

.cnt-us .frm__slot-label {
    display: block;
    padding: 12px 8px;
    border-radius: 28px;
    border: 1px solid #EAD9DD;
    background: #fafbff;
    font-size: 16px;
    line-height: 1.45;
    color: #3e4870;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out;
    box-shadow: 1px 3px 3px 0 #2c3fb512
}

.cnt-us .frm__slot-opt input[type="radio"]:checked+.frm__slot-label {
    background: #2C3FB5;
    border-color: #2C3FB5;
    color: #fff;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.cnt-us .frm__slot-opt input[type="radio"]:focus+.frm__slot-label {
    outline: 2px solid #2C3FB5;
    outline-offset: 2px
}

.cnt-us .frm__slot-label:hover {
    border-color: #2C3FB5;
    color: #2C3FB5
}

.cnt-us .frm__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: #f5f6ff;
    border-radius: 28px;
    border: 1px solid #2c3fb51f
}

.cnt-us .frm__privacy-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #2C3FB5;
    cursor: pointer
}

.cnt-us .frm__privacy-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3e4870
}

.cnt-us .frm__privacy-text a {
    color: #2C3FB5;
    text-decoration: underline;
    transition: color .15s ease-out
}

.cnt-us .frm__privacy-text a:hover {
    color: #1a2880
}

.cnt-us .frm__btn-wrap {
    text-align: center
}

.cnt-us .frm__btn {
    display: inline-block;
    padding: 20px 80px;
    background: #2C3FB5;
    color: #fff;
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
    border-radius: 28px;
    border: 2px solid #2C3FB5;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .25s ease-out, border-color .25s ease-out;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.cnt-us .frm__btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    transition: height .35s ease-out;
    z-index: 0
}

.cnt-us .frm__btn:hover::before {
    height: 100%
}

.cnt-us .frm__btn:hover {
    color: #2C3FB5
}

.cnt-us .frm__btn-text {
    position: relative;
    z-index: 1
}

.cnt-us .frm__btn:focus {
    outline: 3px solid #2C3FB5;
    outline-offset: 3px
}

.cnt-us .frm__btn:active {
    box-shadow: inset 1px 2px 4px 0 #2c3fb512
}

.cnt-us .col-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .4s ease-out, transform .35s ease-out
}

.cnt-us .col-reveal--1 {
    transition-delay: .05s
}

.cnt-us .col-reveal--2 {
    transition-delay: .18s
}

.cnt-us .col-reveal--3 {
    transition-delay: .32s
}

.cnt-us .col-reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width: 1280px) {
    .cnt-us .pg-intro__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .cnt-us .pg-intro__h1 {
        font-size: 42px
    }

    .cnt-us .form-area__inner {
        grid-template-columns: 1fr 1.4fr;
        gap: 40px
    }
}

@media (max-width: 768px) {
    .cnt-us .pg-intro {
        padding: 40px 20px
    }

    .cnt-us .pg-intro__grid {
        grid-template-columns: 1fr
    }

    .cnt-us .pg-intro__img {
        height: 300px
    }

    .cnt-us .pg-intro__text-col {
        padding: 20px 0
    }

    .cnt-us .pg-intro__h1 {
        font-size: 42px
    }

    .cnt-us .form-area {
        padding: 40px 20px
    }

    .cnt-us .form-area__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .cnt-us .form-area__aside {
        position: static
    }

    .cnt-us .frm__row {
        grid-template-columns: 1fr
    }

    .cnt-us .frm {
        padding: 20px
    }

    .cnt-us .frm__slot-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .cnt-us .pros-cons {
        grid-template-columns: 1fr
    }
}

@media (max-width: 390px) {
    .cnt-us .pg-intro__h1 {
        font-size: 42px
    }

    .cnt-us .frm__slot-grid {
        grid-template-columns: 1fr 1fr
    }

    .cnt-us .frm__btn {
        padding: 20px 40px;
        font-size: 16px
    }
}

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

.pr-pg .pg-band {
    background: linear-gradient(158deg, #2C3FB5 0%, #1a2880 60%, #2C3FB5 100%);
    padding: 80px 20px;
    position: relative
}

.pr-pg .pg-band__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.pr-pg .pg-band__txt {
    flex: 1 1 55%
}

.pr-pg .pg-band__img-col {
    flex: 1 1 40%;
    display: flex;
    align-items: stretch
}

.pr-pg .pg-band__dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.pr-pg .pg-band__dots::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    width: 320px;
    height: 320px;
    background-image: radial-gradient(circle, #ead9dd2e 1.5px, transparent 1.5px);
    background-size: 20px 20px
}

.pr-pg .pg-band__dots::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 80px;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(circle, #d4eadb26 1.5px, transparent 1.5px);
    background-size: 18px 18px
}

.pr-pg .pg-band__label {
    display: inline-block;
    background: #ead9dd2e;
    border: 1px solid #ead9dd59;
    color: #EAD9DD;
    font-size: 16px;
    line-height: 1.45;
    padding: 4px 20px;
    border-radius: 0;
    margin-bottom: 20px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.pr-pg .pg-band__h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin: 0 0 20px
}

.pr-pg .pg-band__h1 span {
    color: #EAD9DD
}

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

.pr-pg .pg-band__pt {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    color: #ffffffe0;
    font-size: 16px;
    line-height: 1.65
}

.pr-pg .pg-band__pt-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 0;
    background: #D4EADB;
    margin-top: 8px;
    transform: rotate(45deg)
}

.pr-pg .pg-band__photo {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 28px;
    opacity: 0;
    transition: opacity .45s ease-out;
    display: block;
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.pr-pg .pg-band__photo.loaded {
    opacity: 1
}

.pr-pg .pg-band__math {
    position: absolute;
    right: 12%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 320px;
    line-height: 1.2;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px #ffffff0d;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.pr-pg .pg-band__inner {
    position: relative;
    z-index: 1
}

.pr-pg .pr-list-sec {
    padding: 80px 20px;
    background: #fff
}

.pr-pg .pr-list-sec__inner {
    max-width: 1600px;
    margin: 0 auto
}

.pr-pg .pr-list-sec__head {
    text-align: center;
    margin-bottom: 40px
}

.pr-pg .pr-list-sec__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px
}

.pr-pg .pr-list-sec__h2 span {
    color: #2C3FB5
}

.pr-pg .pr-list-sec__sub {
    font-size: 19px;
    line-height: 1.65;
    color: #374151;
    max-width: 640px;
    margin: 0 auto
}

.pr-pg .pr-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px
}

.pr-pg .pr-card {
    background: #fff;
    border-radius: 28px;
    border: 1px solid #EAD9DD;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    transition: transform .25s ease-out, box-shadow .35s ease-out;
    cursor: pointer
}

.pr-pg .pr-card:hover {
    transform: scale(1.025);
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.pr-pg .pr-card--featured {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    flex-direction: column
}

.pr-pg .pr-card--sm {
    flex-direction: column
}

.pr-pg .pr-card__img-wrap {
    overflow: hidden;
    flex-shrink: 0
}

.pr-pg .pr-card--featured .pr-card__img-wrap {
    height: 260px
}

.pr-pg .pr-card--sm .pr-card__img-wrap {
    height: 140px
}

.pr-pg .pr-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .4s ease-out
}

.pr-pg .pr-card__img.loaded {
    opacity: 1
}

.pr-pg .pr-card__img-ph {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #EAD9DD 0%, #D4EADB 100%);
    display: flex;
    align-items: center;
    justify-content: center
}

.pr-pg .pr-card__img-ph svg {
    opacity: .35
}

.pr-pg .pr-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

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

.pr-pg .pr-card__tag {
    font-size: 16px;
    line-height: 1.45;
    background: #D4EADB;
    color: #1a2880;
    padding: 4px 12px;
    border-radius: 0;
    font-weight: 600
}

.pr-pg .pr-card__cat {
    font-size: 16px;
    line-height: 1.45;
    background: #EAD9DD;
    color: #2C3FB5;
    padding: 4px 12px;
    border-radius: 0;
    font-weight: 500
}

.pr-pg .pr-card__h3 {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin: 4px 0 0
}

.pr-pg .pr-card--sm .pr-card__h3 {
    font-size: 19px
}

.pr-pg .pr-card__sub {
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
    font-style: italic;
    margin: 0
}

.pr-pg .pr-card__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #4b5563;
    margin: 0
}

.pr-pg .pr-card--sm .pr-card__desc {
    display: none
}

.pr-pg .pr-card__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: auto;
    padding-top: 8px;
    border-top: 1px solid #EAD9DD
}

.pr-pg .pr-card__author {
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    font-weight: 600
}

.pr-pg .pr-card__date {
    font-size: 16px;
    line-height: 1.45;
    color: #6b7280
}

.pr-pg .pr-card__read {
    font-size: 16px;
    line-height: 1.45;
    color: #6b7280;
    margin-left: auto
}

.pr-pg .pr-card__stats {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center
}

.pr-pg .pr-card__stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    line-height: 1.45;
    color: #6b7280
}

.pr-pg .pr-card__stat svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.pr-pg .pr-card__link {
    display: inline-block;
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #EAD9DD;
    padding-bottom: 2px;
    transition: border-color .2s ease-out, color .2s ease-out;
    align-self: flex-start
}

.pr-pg .pr-card__link:hover {
    color: #1a2880;
    border-color: #2C3FB5
}

.pr-pg .about-sec {
    padding: 80px 20px;
    background: linear-gradient(170deg, #f7f5f9 0%, #EAD9DD 100%)
}

.pr-pg .about-sec__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start
}

.pr-pg .about-sec__txt {
    grid-column: 1 / 3
}

.pr-pg .about-sec__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px
}

.pr-pg .about-sec__h2 span {
    color: #2C3FB5
}

.pr-pg .about-sec__p {
    font-size: 19px;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 20px
}

.pr-pg .about-sec__p::first-letter {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5;
    float: left;
    margin-right: 8px;
    margin-top: 4px
}

.pr-pg .about-sec__p2 {
    font-size: 16px;
    line-height: 1.65;
    color: #374151;
    margin: 0
}

.pr-pg .about-sec__aside {
    grid-column: 3 / 4;
    background: #2C3FB5;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.pr-pg .about-sec__aside-h {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0
}

.pr-pg .about-sec__stat-row {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.pr-pg .about-sec__stat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.pr-pg .about-sec__stat-num {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 900;
    color: #D4EADB
}

.pr-pg .about-sec__stat-lbl {
    font-size: 16px;
    line-height: 1.45;
    color: #ffffffd1
}

.pr-pg .about-sec__aside-link {
    display: inline-block;
    background: #fff;
    color: #2C3FB5;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    padding: 12px 20px;
    border-radius: 0;
    text-decoration: none;
    text-align: center;
    border: 2px solid #fff;
    transition: background .2s ease-out, color .15s ease-out;
    position: relative;
    overflow: hidden
}

.pr-pg .about-sec__aside-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #D4EADB;
    transition: height .25s ease-out;
    z-index: 0
}

.pr-pg .about-sec__aside-link:hover::after {
    height: 100%
}

.pr-pg .about-sec__aside-link span {
    position: relative;
    z-index: 1
}

.pr-pg .contact-sec {
    padding: 80px 20px;
    background: #fff
}

.pr-pg .contact-sec__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.pr-pg .contact-sec__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111827;
    margin: 0 0 12px
}

.pr-pg .contact-sec__h2 span {
    color: #2C3FB5
}

.pr-pg .contact-sec__p {
    font-size: 19px;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 20px
}

.pr-pg .contact-form {
    background: #fff;
    border: 1px solid #EAD9DD;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.pr-pg .contact-form__row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px
}

.pr-pg .contact-form__lbl {
    font-size: 16px;
    line-height: 1.45;
    color: #374151;
    font-weight: 600
}

.pr-pg .contact-form__inp {
    padding: 12px;
    border: 1px solid #EAD9DD;
    border-radius: 0;
    font-size: 16px;
    line-height: 1.45;
    color: #111827;
    background: #fff;
    box-shadow: inset 1px 2px 4px 0 #2c3fb512;
    transition: border-color .2s ease-out, box-shadow .2s ease-out;
    outline: none;
    width: 100%;
    box-sizing: border-box
}

.pr-pg .contact-form__inp::placeholder {
    font-size: 16px;
    color: #9ca3af
}

.pr-pg .contact-form__inp:focus {
    border-color: #2C3FB5;
    box-shadow: inset 1px 2px 4px 0 #2c3fb51a 0 0 0 2px #2c3fb51f
}

.pr-pg .contact-form__ta {
    resize: vertical;
    min-height: 100px
}

.pr-pg .contact-form__btn {
    width: 100%;
    padding: 12px 20px;
    background: #2C3FB5;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.45;
    border: 2px solid #2C3FB5;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .25s ease-out
}

.pr-pg .contact-form__btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #D4EADB;
    transition: height .3s ease-out;
    z-index: 0
}

.pr-pg .contact-form__btn:hover::after {
    height: 100%
}

.pr-pg .contact-form__btn:hover {
    color: #2C3FB5
}

.pr-pg .contact-form__btn span {
    position: relative;
    z-index: 1
}

.pr-pg .contact-sec__info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.pr-pg .contact-sec__info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.pr-pg .contact-sec__info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #EAD9DD;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.pr-pg .contact-sec__info-icon svg {
    width: 20px;
    height: 20px
}

.pr-pg .contact-sec__info-lbl {
    font-size: 16px;
    line-height: 1.45;
    color: #6b7280;
    margin-bottom: 4px
}

.pr-pg .contact-sec__info-val {
    font-size: 19px;
    line-height: 1.45;
    color: #111827;
    font-weight: 600
}

.pr-pg .contact-sec__info-val a {
    color: #2C3FB5;
    text-decoration: none;
    transition: color .2s ease-out
}

.pr-pg .contact-sec__info-val a:hover {
    color: #1a2880
}

@media (max-width: 1280px) {
    .pr-pg .pg-band__h1 {
        font-size: 42px
    }

    .pr-pg .pg-band__math {
        display: none
    }

    .pr-pg .pr-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .pr-pg .pr-card--featured {
        grid-column: 1 / 3;
        grid-row: auto;
        flex-direction: row
    }

    .pr-pg .pr-card--featured .pr-card__img-wrap {
        width: 320px;
        flex-shrink: 0;
        height: auto
    }

    .pr-pg .pr-card--sm .pr-card__desc {
        display: block
    }

    .pr-pg .about-sec__inner {
        grid-template-columns: 1fr 1fr
    }

    .pr-pg .about-sec__txt {
        grid-column: 1 / 2
    }

    .pr-pg .about-sec__aside {
        grid-column: 2 / 3;
        grid-row: 1
    }
}

@media (max-width: 768px) {
    .pr-pg .pg-band__inner {
        flex-direction: column
    }

    .pr-pg .pg-band__img-col {
        width: 100%
    }

    .pr-pg .pg-band__photo {
        min-height: 220px
    }

    .pr-pg .pg-band__h1 {
        font-size: 42px
    }

    .pr-pg .pr-grid {
        grid-template-columns: 1fr
    }

    .pr-pg .pr-card--featured {
        grid-column: 1;
        flex-direction: column
    }

    .pr-pg .pr-card--featured .pr-card__img-wrap {
        width: 100%;
        height: 200px
    }

    .pr-pg .about-sec__inner {
        grid-template-columns: 1fr
    }

    .pr-pg .about-sec__txt {
        grid-column: 1
    }

    .pr-pg .about-sec__aside {
        grid-column: 1;
        grid-row: auto
    }

    .pr-pg .contact-sec__inner {
        grid-template-columns: 1fr
    }

    .pr-pg .contact-sec__h2 {
        font-size: 42px
    }
}

@media (max-width: 390px) {
    .pr-pg .pg-band {
        padding: 40px 12px
    }

    .pr-pg .pg-band__h1 {
        font-size: 42px
    }

    .pr-pg .pr-list-sec {
        padding: 40px 12px
    }

    .pr-pg .about-sec {
        padding: 40px 12px
    }

    .pr-pg .contact-sec {
        padding: 40px 12px
    }

    .pr-pg .contact-form {
        padding: 20px
    }

    .pr-pg .about-sec__aside {
        padding: 20px
    }

    .pr-pg .pr-list-sec__h2 {
        font-size: 42px
    }
}

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

.srv .divider-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 auto
}

.srv .divider-cross__line {
    width: 60px;
    height: 1px;
    background: #2C3FB5;
    opacity: .3
}

.srv .divider-cross__mark {
    width: 8px;
    height: 8px;
    position: relative;
    flex-shrink: 0
}

.srv .divider-cross__mark::before,
.srv .divider-cross__mark::after {
    content: "";
    position: absolute;
    background: #2C3FB5;
    opacity: .5
}

.srv .divider-cross__mark::before {
    width: 1px;
    height: 8px;
    left: 50%;
    top: 0;
    transform: translateX(-50%)
}

.srv .divider-cross__mark::after {
    width: 8px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.srv .tb {
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.srv .tb__atm {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18
}

.srv .tb__atm--a {
    width: 480px;
    height: 480px;
    background: #2C3FB5;
    top: -120px;
    left: -100px
}

.srv .tb__atm--b {
    width: 360px;
    height: 360px;
    background: #EAD9DD;
    top: -60px;
    right: -80px
}

.srv .tb__atm--c {
    width: 280px;
    height: 280px;
    background: #D4EADB;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%)
}

.srv .tb__inner {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto
}

.srv .tb__label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    border: 1px solid #2C3FB5;
    border-radius: 28px;
    padding: 4px 20px;
    margin-bottom: 20px;
    opacity: .8
}

.srv .tb__h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin: 0 0 20px
}

.srv .tb__h1 span {
    color: #2C3FB5
}

.srv .tb__desc {
    font-size: 19px;
    line-height: 1.65;
    color: #333;
    max-width: 640px;
    margin: 0 auto 40px
}

.srv .tb__actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.srv .tb__btn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 28px;
    text-decoration: none;
    border: 2px solid #2C3FB5;
    position: relative;
    overflow: hidden;
    transition: color .25s ease-out;
    z-index: 0
}

.srv .tb__btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #2C3FB5;
    transition: height .35s ease-out;
    z-index: -1
}

.srv .tb__btn:hover::before {
    height: 100%
}

.srv .tb__btn--primary {
    background: #2C3FB5;
    color: #fff
}

.srv .tb__btn--primary::before {
    background: #1a2d8f
}

.srv .tb__btn--ghost {
    background: transparent;
    color: #2C3FB5
}

.srv .tb__btn--ghost:hover {
    color: #fff
}

.srv .tb__img-wrap {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    position: relative
}

.srv .tb__img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #fff9, transparent);
    pointer-events: none
}

.srv .tb__img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .45s ease-out
}

.srv .tb__img.loaded {
    opacity: 1
}

.srv .svc {
    padding: 80px 20px;
    background: linear-gradient(160deg, #f7f8ff 0%, #fff 50%, #f5faf6 100%);
    position: relative
}

.srv .svc__diag {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    pointer-events: none;
    opacity: .08
}

.srv .svc__diag-line {
    position: absolute;
    background: #2C3FB5;
    height: 1px;
    width: 140px;
    transform-origin: left center
}

.srv .svc__diag-line:nth-child(1) {
    top: 20px;
    transform: rotate(-35deg)
}

.srv .svc__diag-line:nth-child(2) {
    top: 40px;
    transform: rotate(-35deg)
}

.srv .svc__diag-line:nth-child(3) {
    top: 60px;
    transform: rotate(-35deg)
}

.srv .svc__diag-line:nth-child(4) {
    top: 80px;
    transform: rotate(-35deg)
}

.srv .svc__max {
    max-width: 1600px;
    margin: 0 auto
}

.srv .svc__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 60px
}

.srv .svc__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin: 0
}

.srv .svc__h2 span {
    color: #2C3FB5
}

.srv .svc__sub {
    font-size: 19px;
    line-height: 1.65;
    color: #444;
    margin: 0
}

.srv .svc__sub::first-letter {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    float: left;
    margin-right: 8px;
    color: #2C3FB5;
    margin-top: 4px
}

.srv .svc__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.srv .svc__card {
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    transition: box-shadow .2s ease-out, transform .2s ease-out;
    position: relative;
    overflow: hidden
}

.srv .svc__card:hover {
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    transform: translateY(-4px)
}

.srv .svc__card--accent {
    background: #2C3FB5;
    color: #fff;
    animation: bgshift 15s linear infinite
}

@keyframes bgshift {
    0% {
        background-color: #2C3FB5
    }

    50% {
        background-color: #1e2f9a
    }

    100% {
        background-color: #2C3FB5
    }
}

.srv .svc__card--wide {
    grid-column: span 2
}

.srv .svc__card-num {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #EAD9DD;
    margin-bottom: 12px;
    display: block
}

.srv .svc__card--accent .svc__card-num {
    color: #fff3
}

.srv .svc__card-h {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px
}

.srv .svc__card--accent .svc__card-h {
    color: #fff
}

.srv .svc__card-p {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    margin: 0 0 20px
}

.srv .svc__card--accent .svc__card-p {
    color: #fffc
}

.srv .svc__tag-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.srv .svc__tag {
    font-size: 16px;
    line-height: 1.45;
    padding: 4px 12px;
    border-radius: 0;
    border: 1px solid #D4EADB;
    background: #D4EADB;
    color: #2a5c38
}

.srv .svc__card--accent .svc__tag {
    border-color: #ffffff40;
    background: #ffffff1f;
    color: #fff
}

.srv .svc__card-metric {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 20px
}

.srv .svc__metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.srv .svc__metric-val {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5
}

.srv .svc__card--accent .svc__metric-val {
    color: #EAD9DD
}

.srv .svc__metric-label {
    font-size: 16px;
    line-height: 1.45;
    color: #666
}

.srv .svc__card--accent .svc__metric-label {
    color: #ffffffb3
}

.srv .team {
    padding: 80px 20px;
    background: #fff;
    position: relative
}

.srv .team__diag {
    position: absolute;
    bottom: 60px;
    left: 20px;
    pointer-events: none;
    opacity: .07
}

.srv .team__diag-line {
    background: #2C3FB5;
    height: 1px;
    width: 100px;
    margin-bottom: 20px;
    transform: rotate(35deg);
    transform-origin: left center
}

.srv .team__max {
    max-width: 1600px;
    margin: 0 auto
}

.srv .team__top {
    text-align: center;
    margin-bottom: 60px
}

.srv .team__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin: 0 0 12px
}

.srv .team__h2 span {
    color: #2C3FB5
}

.srv .team__intro {
    font-size: 19px;
    line-height: 1.65;
    color: #444;
    max-width: 600px;
    margin: 0 auto
}

.srv .team__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.srv .team__portraits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.srv .team__card {
    background: #f7f8ff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    transition: box-shadow .35s ease-out
}

.srv .team__card:hover {
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.srv .team__card--offset {
    margin-top: 40px
}

.srv .team__portrait-wrap {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden
}

.srv .team__portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .4s ease-out
}

.srv .team__portrait.loaded {
    opacity: 1
}

.srv .team__card-info {
    padding: 20px
}

.srv .team__card-name {
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px
}

.srv .team__card-role {
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    margin: 0
}

.srv .team__right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px
}

.srv .team__approach {
    background: linear-gradient(135deg, #EAD9DD 0%, #f5eef0 100%);
    border-radius: 28px;
    padding: 40px
}

.srv .team__approach-h {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px
}

.srv .team__approach-p {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    margin: 0 0 20px
}

.srv .team__approach-p::first-letter {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    float: left;
    margin-right: 8px;
    color: #2C3FB5;
    margin-top: 4px
}

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

.srv .team__step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    transition: box-shadow .2s ease-out
}

.srv .team__step:hover {
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.srv .team__step-num {
    width: 40px;
    height: 40px;
    border-radius: 0;
    background: #2C3FB5;
    color: #fff;
    font-size: 19px;
    line-height: 1;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srv .team__step-body {
    flex: 1
}

.srv .team__step-h {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #111;
    margin: 0 0 4px
}

.srv .team__step-p {
    font-size: 16px;
    line-height: 1.45;
    color: #555;
    margin: 0
}

.srv .team__cta-strip {
    background: #D4EADB;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.srv .team__cta-text {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 700;
    color: #111;
    margin: 0;
    flex: 1;
    min-width: 200px
}

.srv .team__cta-btn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 28px;
    text-decoration: none;
    border: 2px solid #2C3FB5;
    background: transparent;
    color: #2C3FB5;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out;
    z-index: 0;
    flex-shrink: 0
}

.srv .team__cta-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #2C3FB5;
    transition: height .3s ease-out;
    z-index: -1
}

.srv .team__cta-btn:hover {
    color: #fff
}

.srv .team__cta-btn:hover::before {
    height: 100%
}

@media (max-width: 1280px) {
    .srv .svc__grid {
        grid-template-columns: 1fr 1fr
    }

    .srv .svc__card--wide {
        grid-column: span 2
    }

    .srv .svc__head {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

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

    .srv .tb__img {
        height: 260px
    }

    .srv .svc__grid {
        grid-template-columns: 1fr
    }

    .srv .svc__card--wide {
        grid-column: span 1
    }

    .srv .svc__card-metric {
        flex-direction: row;
        gap: 20px
    }

    .srv .team__layout {
        grid-template-columns: 1fr
    }

    .srv .team__portraits {
        grid-template-columns: 1fr 1fr
    }

    .srv .team__card--offset {
        margin-top: 0
    }

    .srv .svc {
        padding: 40px 20px
    }

    .srv .team {
        padding: 40px 20px
    }

    .srv .tb {
        padding: 40px 20px 20px
    }
}

@media (max-width: 390px) {
    .srv .tb__h1 {
        font-size: 42px
    }

    .srv .tb__actions {
        flex-direction: column;
        align-items: stretch
    }

    .srv .tb__btn {
        text-align: center
    }

    .srv .team__portraits {
        grid-template-columns: 1fr
    }

    .srv .team__cta-strip {
        flex-direction: column;
        align-items: flex-start
    }

    .srv .svc__card-metric {
        flex-direction: column;
        gap: 12px
    }
}

.rt {
    background: #fff;
    overflow-x: hidden;
    position: relative
}

.rt .drw-line {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.rt .drw-line svg {
    display: block;
    width: 100%
}

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

.rt .tb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2C3FB5 0%, #EAD9DD 60%, transparent 100%)
}

.rt .tb__img-col {
    position: relative;
    overflow: hidden;
    border-radius: 0
}

.rt .tb__img-col--left {
    border-radius: 0
}

.rt .tb__img-col--right {
    border-radius: 0
}

.rt .tb__img-wrap {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 0;
    position: relative
}

.rt .tb__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity .45s ease-out, transform .45s ease-out;
    display: block
}

.rt .tb__img-wrap img.loaded {
    opacity: 1
}

.rt .tb__img-wrap:hover img {
    transform: scale(1.04)
}

.rt .tb__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #2c3fb561 0%, transparent 70%);
    pointer-events: none
}

.rt .tb__img-overlay--left {
    background: linear-gradient(90deg, #2c3fb561 0%, transparent 70%)
}

.rt .tb__mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0
}

.rt .tb__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #D4EADB;
    border-radius: 0;
    padding: 8px 20px;
    font-size: 16px;
    color: #1a2a6e;
    font-weight: 600;
    letter-spacing: .04em
}

.rt .tb__h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
    color: #1a2a6e;
    margin: 0
}

.rt .tb__h1 .acc {
    color: #2C3FB5
}

.rt .tb__quote {
    font-size: 19px;
    line-height: 1.45;
    color: #3a3a5c;
    text-align: center;
    font-style: italic;
    max-width: 480px;
    border-top: 2px solid #EAD9DD;
    padding-top: 20px;
    margin: 0
}

.rt .tb__corner {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none
}

.rt .tb__corner--tl {
    top: 0;
    left: 0;
    border-top: 60px solid #EAD9DD;
    border-right: 60px solid transparent
}

.rt .tb__corner--br {
    bottom: 0;
    right: 0;
    border-bottom: 60px solid #D4EADB;
    border-left: 60px solid transparent
}

.rt .outcomes {
    background: #2C3FB5;
    padding: 80px 40px;
    position: relative;
    overflow: hidden
}

.rt .outcomes__bg-pulse {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #d4eadb14 0%, #ead9dd0a 100%);
    animation: bg-pulse 6s ease-in-out infinite;
    pointer-events: none
}

@keyframes bg-pulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.rt .outcomes__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.rt .outcomes__left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rt .outcomes__label {
    font-size: 16px;
    color: #D4EADB;
    letter-spacing: .08em;
    font-weight: 600;
    text-transform: uppercase
}

.rt .outcomes__h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin: 0
}

.rt .outcomes__body {
    font-size: 19px;
    line-height: 1.65;
    color: #EAD9DD;
    margin: 0
}

.rt .outcomes__body::first-letter {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    float: left;
    margin-right: 8px;
    color: #D4EADB
}

.rt .outcomes__img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 28px
}

.rt .outcomes__img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .4s ease-out, transform .4s ease-out
}

.rt .outcomes__img-wrap img.loaded {
    opacity: 1
}

.rt .outcomes__img-wrap:hover img {
    transform: scale(1.04)
}

.rt .outcomes__right {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rt .outcomes__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none
}

.rt .outcomes__item {
    background: #ffffff12;
    border: 1px solid #d4eadb33;
    border-radius: 28px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background .25s ease-out, border-color .25s ease-out
}

.rt .outcomes__item:hover {
    background: #ffffff21;
    border-color: #d4eadb73
}

.rt .outcomes__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #D4EADB;
    color: #1a2a6e;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.rt .outcomes__item-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.rt .outcomes__item-desc {
    font-size: 16px;
    line-height: 1.45;
    color: #EAD9DD;
    margin: 0
}

.rt .div-pencil {
    width: 100%;
    overflow: hidden;
    display: block;
    line-height: 0;
    background: #2C3FB5
}

.rt .div-pencil svg {
    display: block;
    width: 100%
}

.rt .offer {
    background: #fff;
    padding: 80px 40px;
    position: relative
}

.rt .offer__inner {
    max-width: 1600px;
    margin: 0 auto
}

.rt .offer__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px
}

.rt .offer__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2a6e;
    text-align: center;
    margin: 0
}

.rt .offer__sub {
    font-size: 19px;
    line-height: 1.45;
    color: #3a3a5c;
    text-align: center;
    max-width: 560px;
    margin: 0
}

.rt .offer__grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr 1fr;
    gap: 20px;
    align-items: start
}

.rt .offer__card {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    box-shadow: 1px 5px 22px 0 #2c3fb514;
    transition: box-shadow .35s ease-out, transform .35s ease-out
}

.rt .offer__card:hover {
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    transform: translateY(-4px)
}

.rt .offer__card--center {
    margin-top: 40px
}

.rt .offer__card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .4s ease-out, transform .4s ease-out
}

.rt .offer__card-img.loaded {
    opacity: 1
}

.rt .offer__card:hover .offer__card-img {
    transform: scale(1.04)
}

.rt .offer__card-body {
    padding: 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.rt .offer__card--accent .offer__card-body {
    background: #EAD9DD
}

.rt .offer__card-tag {
    font-size: 16px;
    font-weight: 700;
    color: #2C3FB5;
    text-transform: uppercase;
    letter-spacing: .06em
}

.rt .offer__card-h3 {
    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2a6e;
    margin: 0
}

.rt .offer__card-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a5c;
    margin: 0
}

.rt .offer__card-slit {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s ease-out
}

.rt .offer__card:hover .offer__card-slit {
    max-height: 120px
}

.rt .offer__card-extra {
    font-size: 16px;
    line-height: 1.45;
    color: #2C3FB5;
    padding: 8px 20px 20px;
    background: #fff;
    margin: 0
}

.rt .offer__card--accent .offer__card-extra {
    background: #EAD9DD
}

.rt .offer__twolist {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
    background: #D4EADB;
    border-radius: 28px
}

.rt .offer__twolist-col {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.rt .offer__twolist-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.rt .offer__twolist-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.rt .offer__twolist-icon svg {
    width: 20px;
    height: 20px
}

.rt .offer__twolist-desc {
    font-size: 16px;
    line-height: 1.45;
    color: #1a2a6e;
    margin: 0
}

.rt .offer__twolist-desc strong {
    display: block;
    font-weight: 700
}

.rt .div-pencil2 {
    width: 100%;
    overflow: hidden;
    display: block;
    line-height: 0;
    background: #fff
}

.rt .div-pencil2 svg {
    display: block;
    width: 100%
}

.rt .env {
    background: #EAD9DD;
    padding: 80px 40px;
    position: relative;
    overflow: hidden
}

.rt .env__bg-pulse {
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, #d4eadb59 0%, transparent 60%);
    animation: bg-pulse 6s ease-in-out infinite;
    pointer-events: none
}

.rt .env__corner--tr {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 80px solid #D4EADB;
    border-left: 80px solid transparent;
    pointer-events: none
}

.rt .env__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start
}

.rt .env__left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rt .env__label {
    font-size: 16px;
    color: #2C3FB5;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em
}

.rt .env__h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a2a6e;
    margin: 0
}

.rt .env__body {
    font-size: 19px;
    line-height: 1.65;
    color: #2a2a4a;
    margin: 0
}

.rt .env__body::first-letter {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    float: left;
    margin-right: 8px;
    color: #2C3FB5
}

.rt .env__profiles {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 8px
}

.rt .env__profile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.rt .env__portrait {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 0;
    position: relative;
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.rt .env__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .4s ease-out, transform .4s ease-out
}

.rt .env__portrait img.loaded {
    opacity: 1
}

.rt .env__portrait:hover img {
    transform: scale(1.04)
}

.rt .env__profile-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a6e;
    margin: 0
}

.rt .env__profile-role {
    font-size: 16px;
    line-height: 1.45;
    color: #3a3a5c;
    margin: 0
}

.rt .env__profile-quote {
    font-size: 16px;
    line-height: 1.45;
    color: #2a2a4a;
    font-style: italic;
    margin: 0;
    border-top: 1px solid #2c3fb533;
    padding-top: 8px
}

.rt .env__right {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rt .env__img-wrap {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 1px 10px 60px 0 #2c3fb51c
}

.rt .env__img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0;
    transition: opacity .35s ease-out, transform .35s ease-out
}

.rt .env__img-wrap img.loaded {
    opacity: 1
}

.rt .env__img-wrap:hover img {
    transform: scale(1.04)
}

.rt .env__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.rt .env__stat {
    background: #fff;
    border-radius: 28px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 1px 3px 3px 0 #2c3fb512;
    transition: box-shadow .2s ease-out
}

.rt .env__stat:hover {
    box-shadow: 1px 5px 22px 0 #2c3fb514
}

.rt .env__stat-num {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    color: #2C3FB5
}

.rt .env__stat-label {
    font-size: 16px;
    line-height: 1.45;
    color: #3a3a5c
}

.rt .env__extra {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a4a;
    margin: 0;
    padding: 20px;
    background: #2c3fb512;
    border-radius: 28px
}

@media (max-width: 1280px) {
    .rt .tb {
        grid-template-columns: 0.7fr 2fr 0.7fr;
        gap: 20px;
        padding: 80px 20px 40px
    }

    .rt .tb__h1 {
        font-size: 42px
    }

    .rt .outcomes__inner {
        gap: 40px
    }

    .rt .offer__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 12px
    }

    .rt .env__inner {
        gap: 40px
    }
}

@media (max-width: 768px) {
    .rt .tb {
        grid-template-columns: 1fr;
        padding: 40px 20px 20px;
        gap: 20px
    }

    .rt .tb__img-col--right {
        display: none
    }

    .rt .tb__h1 {
        font-size: 42px
    }

    .rt .tb__corner--br {
        display: none
    }

    .rt .outcomes {
        padding: 40px 20px
    }

    .rt .outcomes__inner {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .rt .outcomes__list {
        grid-template-columns: 1fr
    }

    .rt .offer {
        padding: 40px 20px
    }

    .rt .offer__grid {
        grid-template-columns: 1fr
    }

    .rt .offer__card--center {
        margin-top: 0
    }

    .rt .offer__twolist {
        grid-template-columns: 1fr
    }

    .rt .env {
        padding: 40px 20px
    }

    .rt .env__inner {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .rt .env__profiles {
        flex-direction: column
    }

    .rt .env__stats {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 390px) {
    .rt .tb__h1 {
        font-size: 42px
    }

    .rt .outcomes__h2,
    .rt .offer__h2,
    .rt .env__h2 {
        font-size: 42px
    }

    .rt .env__stats {
        grid-template-columns: 1fr
    }
}

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

.succ-page .succ-card {
    max-width: 600px;
    width: 100%;
    background: #fff;
    border: 1px solid #EAD9DD;
    border-radius: 28px;
    padding: 80px 40px;
    box-shadow: 1px 10px 60px 0 #2c3fb51c;
    text-align: center
}

.succ-page .succ-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.succ-page .succ-card__icon svg {
    width: 72px;
    height: 72px;
    display: block
}

.succ-page .succ-card__heading {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #111827;
    margin: 0 0 20px
}

.succ-page .succ-card__heading span {
    color: #2C3FB5
}

.succ-page .succ-card__body {
    font-size: 19px;
    line-height: 1.65;
    color: #374151;
    margin: 0 0 40px
}

.succ-page .succ-card__divider {
    width: 48px;
    height: 3px;
    background: #D4EADB;
    border-radius: 0;
    margin: 0 auto 40px
}

.succ-page .succ-card__note {
    font-size: 16px;
    line-height: 1.45;
    color: #6c727f;
    margin: 0 0 40px
}

.succ-page .succ-card__note a {
    color: #2C3FB5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s ease-out
}

.succ-page .succ-card__note a:hover {
    opacity: .75
}

.succ-page .succ-card__btn {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 20px 40px;
    border-radius: 28px;
    border: 2px solid #2C3FB5;
    background: #2C3FB5;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: color .25s ease-out, border-color .25s ease-out;
    z-index: 0
}

.succ-page .succ-card__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #D4EADB;
    transform: translateY(100%);
    transition: transform .35s ease-out;
    z-index: -1
}

.succ-page .succ-card__btn:hover {
    color: #2C3FB5;
    border-color: #2C3FB5
}

.succ-page .succ-card__btn:hover::before {
    transform: translateY(0)
}

.succ-page .succ-card__btn:focus-visible {
    outline: 3px solid #2C3FB5;
    outline-offset: 4px
}

.succ-page .succ-card__btn:active {
    box-shadow: inset 0 3px 4px 0 #2c3fb526
}

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

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

    .succ-page .succ-card__heading {
        font-size: 23px
    }

    .succ-page .succ-card__body {
        font-size: 16px
    }
}

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

    .succ-page .succ-card__btn {
        padding: 20px;
        width: 100%;
        text-align: center
    }
}