::before,
::after {
    content: none;
    box-sizing: inherit
}

body {
    margin: 0;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: 'Karla', sans-serif;
    background-color: #181c2e;
    color: #d8e4f0
}

.site-header {
    position: relative;
    background: linear-gradient(135deg, #1a1f3a 0%, #232a4a 60%, #1e2640 100%);
    border-bottom: 2px solid #3C4580;
    box-shadow: 0 7px 14px 1px #3c45801a 0 8px 48px 1px #3c45801f;
    z-index: 100
}

.site-header__accent {
    height: 3px;
    background: linear-gradient(90deg, #3C4580 0%, #8CBACB 50%, #A1BCDB 100%);
    width: 100%
}

.site-header__body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 36px;
    display: flex;
    align-items: center;
    gap: 36px
}

.brand-pill {
    display: flex;
    align-items: center;
    background: linear-gradient(120deg, #3C4580 0%, #2a3060 100%);
    border-radius: 20px;
    padding: 8px 16px;
    box-shadow: 0 1px 6px 1px #8cbacb0f 0 7px 14px 1px #3c45801a;
    border: 1.5px solid #8cbacb40;
    flex-shrink: 0;
    gap: 8px;
    text-decoration: none
}

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

.brand-pill__name {
    font-family: 'Karla', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.1;
    color: #d8e4f0;
    white-space: nowrap
}

.header-divider {
    width: 1.5px;
    height: 36px;
    background: linear-gradient(180deg, transparent, #8cbacb66, transparent);
    flex-shrink: 0
}

.primary-nav {
    flex: 1;
    display: flex;
    align-items: center
}

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

.primary-nav__item {
    display: flex
}

.primary-nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Karla', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    line-height: 1.35;
    color: #A1BCDB;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 2px;
    border: 1.5px solid transparent;
    transition: color .45s ease-in-out, border-color .5s ease-in-out, background .55s ease-in-out;
    position: relative;
    overflow: hidden;
    min-height: 44px
}

.primary-nav__link:hover,
.primary-nav__link:focus {
    color: #d8e4f0;
    border-color: #8cbacb4d;
    background: #3c458059;
    outline: none
}

.primary-nav__link:focus-visible {
    outline: 2px dashed #8CBACB;
    outline-offset: 2px;
    animation: dash-spin 2s linear infinite
}

.primary-nav__link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .25s ease-in-out, transform .2s ease-in-out
}

.primary-nav__link:hover .primary-nav__link-icon,
.primary-nav__link:focus .primary-nav__link-icon {
    opacity: 1;
    transform: translateX(0)
}

.primary-nav__link-text {
    transition: transform .2s ease-in-out
}

.primary-nav__link:hover .primary-nav__link-text,
.primary-nav__link:focus .primary-nav__link-text {
    transform: translateX(4px)
}

.secondary-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0
}

.secondary-nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.35;
    color: #d8e4f0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 2px;
    background: linear-gradient(120deg, #3C4580 0%, #2e3670 100%);
    border: 1.5px solid #8cbacb4d;
    box-shadow: 0 1px 6px 1px #3c45800f;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .45s ease-in-out;
    min-height: 44px
}

.secondary-nav__link:hover,
.secondary-nav__link:focus {
    background: linear-gradient(120deg, #4a54a0 0%, #3C4580 100%);
    box-shadow: 0 7px 14px 1px #3c45801a;
    outline: none
}

.secondary-nav__link:focus-visible {
    outline: 2px dashed #8CBACB;
    outline-offset: 2px;
    animation: dash-spin 2s linear infinite
}

.secondary-nav__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

@keyframes dash-spin {
    from {
        outline-offset: 2px
    }

    to {
        outline-offset: 4px
    }
}

@media (max-width: 768px) {
    .site-header__body {
        padding: 16px;
        gap: 16px;
        flex-wrap: wrap
    }

    .primary-nav__list {
        gap: 4px
    }

    .primary-nav__link {
        font-size: 13px;
        padding: 8px
    }

    .header-divider {
        display: none
    }
}

@media (max-width: 375px) {
    .brand-pill__name {
        font-size: 15px
    }

    .primary-nav__link {
        padding: 8px;
        font-size: 13px
    }
}

.site-footer {
    background: linear-gradient(180deg, #151929 0%, #111422 100%);
    border-top: 2px solid #3C4580;
    box-shadow: 0 -1px 6px 1px #3c45800f;
    font-family: 'Karla', sans-serif
}

.site-footer__accent {
    height: 3px;
    background: linear-gradient(90deg, #A1BCDB 0%, #8CBACB 50%, #3C4580 100%);
    width: 100%
}

.site-footer__upper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 36px 36px 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 36px;
    align-items: start
}

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

.footer-brand__pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #3c45804d;
    border: 1.5px solid #8cbacb33;
    border-radius: 2px;
    padding: 8px 16px;
    width: fit-content
}

.footer-brand__img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.footer-brand__name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.1;
    color: #d8e4f0
}

.footer-brand__tagline {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #8CBACB;
    font-style: italic;
    padding: 0 4px
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start
}

.footer-nav__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.1;
    color: #3C4580;
    text-transform: uppercase;
    margin-bottom: 4px
}

.footer-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px
}

.footer-nav__link {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #A1BCDB;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .45s ease-in-out, border-color .5s ease-in-out;
    padding: 4px 0;
    min-height: 44px;
    display: flex;
    align-items: center
}

.footer-nav__link:hover,
.footer-nav__link:focus {
    color: #d8e4f0;
    border-bottom-color: #8cbacb80;
    outline: none
}

.footer-nav__link:focus-visible {
    outline: 2px dashed #8CBACB;
    outline-offset: 2px;
    animation: dash-spin 2s linear infinite
}

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

.footer-contact__label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.1;
    color: #3C4580;
    text-transform: uppercase;
    margin-bottom: 4px
}

.footer-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.footer-contact__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px
}

.footer-contact__text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #A1BCDB
}

.footer-contact__link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #8CBACB;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.footer-contact__link:hover,
.footer-contact__link:focus {
    color: #d8e4f0;
    outline: none
}

.footer-contact__link:focus-visible {
    outline: 2px dashed #8CBACB;
    outline-offset: 2px
}

.site-footer__lower {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 36px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #3c458066
}

.footer-meta__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px
}

.footer-meta__link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #a1bcdbb3;
    text-decoration: none;
    transition: color .5s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.footer-meta__link:hover,
.footer-meta__link:focus {
    color: #A1BCDB;
    outline: none
}

.footer-meta__link:focus-visible {
    outline: 2px dashed #8CBACB;
    outline-offset: 2px
}

.footer-copy {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #8cbacb80
}

.footer-consent-btn {
    font-family: 'Karla', sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.55;
    color: #a1bcdbb3;
    text-decoration: underline;
    background: none;
    border: none;
    padding: 4px 0;
    cursor: pointer;
    transition: color .45s ease-in-out;
    min-height: 44px
}

.footer-consent-btn:hover,
.footer-consent-btn:focus {
    color: #A1BCDB;
    outline: none
}

.footer-consent-btn:focus-visible {
    outline: 2px dashed #8CBACB;
    outline-offset: 2px
}

@media (max-width: 768px) {
    .site-footer__upper {
        grid-template-columns: 1fr;
        padding: 36px 16px 16px;
        gap: 36px
    }

    .site-footer__lower {
        padding: 16px 16px 36px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 375px) {
    .site-footer__upper {
        padding: 16px 16px 8px;
        gap: 16px
    }

    .site-footer__lower {
        padding: 16px
    }
}

.legal-main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 36px;
    background-color: #1a2040;
    color: #d4dff0
}

.legal-main h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #8CBACB;
    margin-bottom: 36px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #8cbacb40
}

.legal-main h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #A1BCDB;
    margin-top: 72px;
    margin-bottom: 16px
}

.legal-main h3 {
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #8CBACB;
    margin-top: 36px;
    margin-bottom: 8px
}

.legal-main h4 {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .02em;
    color: #A1BCDB;
    margin-top: 36px;
    margin-bottom: 8px
}

.legal-main h5 {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: .02em;
    color: #8CBACB;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.legal-main h6 {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: .02em;
    color: #a1bcdbbf;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.legal-main p {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #c8d8ec;
    margin-top: 0;
    margin-bottom: 16px
}

.legal-main ul,
.legal-main ol {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #c8d8ec;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 36px
}

.legal-main ul {
    list-style-type: square
}

.legal-main ol {
    list-style-type: decimal
}

.legal-main li {
    margin-bottom: 8px;
    line-height: 1.55
}

.legal-main li::marker {
    color: #8CBACB
}

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

.legal-main a {
    color: #8CBACB;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #8cbacb73;
    transition: color .2s ease-in-out, text-decoration-color .45s ease-in-out
}

.legal-main a:hover {
    color: #A1BCDB;
    text-decoration-color: #a1bcdbd9
}

.legal-main a:visited {
    color: #8cbacbb3
}

.legal-main table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: .01em;
    box-shadow: 0 7px 14px 1px #3c45801a;
    border-radius: 2px;
    overflow: hidden
}

.legal-main thead {
    background-color: #3c458099
}

.legal-main thead th {
    color: #A1BCDB;
    font-size: 13px;
    letter-spacing: .02em;
    text-transform: uppercase;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid #8cbacb4d
}

.legal-main tbody tr {
    background-color: #3c458026;
    transition: background-color .2s ease-in-out
}

.legal-main tbody tr:nth-child(even) {
    background-color: #3c458047
}

.legal-main tbody tr:hover {
    background-color: #8cbacb1a
}

.legal-main td {
    padding: 16px;
    color: #c8d8ec;
    border-bottom: 1px solid #8cbacb1f;
    vertical-align: top
}

.legal-main th {
    padding: 16px;
    vertical-align: top
}

.legal-main hr {
    border: none;
    height: 1px;
    background-color: #8cbacb33;
    margin-top: 36px;
    margin-bottom: 36px;
    box-shadow: 0 1px 6px 1px #3c45800f
}

@media (max-width: 768px) {
    .legal-main {
        padding: 36px 16px
    }

    .legal-main h1 {
        font-size: 23px;
        margin-bottom: 16px
    }

    .legal-main h2 {
        font-size: 18px;
        margin-top: 36px
    }

    .legal-main h3 {
        font-size: 15px;
        margin-top: 16px
    }

    .legal-main table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .legal-main ul,
    .legal-main ol {
        padding-left: 16px
    }
}

@media (max-width: 375px) {
    .legal-main {
        padding: 36px 8px
    }

    .legal-main h1 {
        font-size: 18px
    }

    .legal-main h2 {
        font-size: 15px
    }

    .legal-main p,
    .legal-main ul,
    .legal-main ol {
        font-size: 13px
    }

    .legal-main td,
    .legal-main th {
        padding: 8px
    }
}

.abt-us {
    background-color: #181c2e;
    color: #d6dff0;
    overflow: hidden
}

.abt-us .pg-band {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3C4580 0%, #8CBACB 55%, #A1BCDB 100%)
}

.abt-us .mosaic-row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center
}

.abt-us .mosaic-text {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .mosaic-label {
    font-size: 13px;
    letter-spacing: .14em;
    color: #8CBACB;
    text-transform: uppercase
}

.abt-us .mosaic-h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: #d6dff0;
    margin: 0
}

.abt-us .mosaic-h1 span {
    color: #8CBACB
}

.abt-us .mosaic-desc {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #A1BCDB;
    max-width: 420px
}

.abt-us .mosaic-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: .02em;
    color: #8CBACB;
    text-decoration: none;
    border: 2px solid #3C4580;
    border-radius: 2px;
    padding: 8px 16px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: border-color .45s ease-in-out, color .25s ease-in-out
}

.abt-us .mosaic-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .22s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .22s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-us .mosaic-link span {
    transition: transform .22s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-us .mosaic-link:hover span {
    transform: translateX(6px)
}

.abt-us .mosaic-link:hover svg {
    opacity: 1;
    transform: translateX(0)
}

.abt-us .mosaic-link:hover {
    border-color: #8CBACB;
    color: #d6dff0
}

.abt-us .mosaic-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 120px;
    gap: 8px
}

.abt-us .img-cell {
    overflow: hidden;
    border-radius: 2px;
    position: relative
}

.abt-us .img-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.5) brightness(0.75);
    transition: filter .55s ease-in-out
}

.abt-us .img-cell:hover img {
    filter: saturate(1) brightness(0.95)
}

.abt-us .img-cell.span2 {
    grid-column: 1 / 3
}

.abt-us .mosaic-stripe {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #3C4580 30%, #8CBACB 70%, transparent 100%)
}

.abt-us .about-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 72px 36px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px
}

.abt-us .about-sidebar {
    background-color: #3C4580;
    border-radius: 2px;
    padding: 36px 16px;
    display: flex;
    flex-direction: column;
    gap: 36px;
    box-shadow: 0 7px 14px 1px #3c45801a;
    align-self: start
}

.abt-us .sidebar-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid #8cbacb33;
    padding-bottom: 16px
}

.abt-us .sidebar-stat:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.abt-us .stat-num {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #8CBACB
}

.abt-us .stat-label {
    font-size: 13px;
    letter-spacing: .02em;
    color: #A1BCDB;
    line-height: 1.35
}

.abt-us .about-body {
    display: flex;
    flex-direction: column;
    gap: 36px
}

.abt-us .about-h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    text-transform: uppercase;
    color: #d6dff0;
    margin: 0
}

.abt-us .two-col-para {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px
}

.abt-us .para-intro {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #8CBACB
}

.abt-us .para-main {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #A1BCDB
}

.abt-us .para-main .quoted {
    color: #8CBACB;
    font-style: italic
}

.abt-us .about-img-wide {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 2px
}

.abt-us .about-img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.6) brightness(0.7);
    transition: filter .6s ease-in-out
}

.abt-us .about-img-wide:hover img {
    filter: saturate(1) brightness(0.9)
}

.abt-us .divider-edge {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.abt-us .divider-edge .d-line {
    width: 72px;
    height: 2px;
    background-color: #3C4580
}

.abt-us .divider-edge .d-space {
    flex: 1
}

.abt-us .team-area {
    background-color: #A1BCDB;
    padding: 72px 0;
    position: relative
}

.abt-us .team-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, #3c45800f 0px, #3c45800f 1px, transparent 1px, transparent 10px);
    pointer-events: none
}

.abt-us .team-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px;
    position: relative;
    z-index: 1
}

.abt-us .team-h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #181c2e;
    margin: 0 0 36px
}

.abt-us .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.abt-us .team-card {
    background-color: #181c2e;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 48px 1px #3c45801f;
    display: flex;
    flex-direction: column;
    transition: box-shadow .45s ease-in-out
}

.abt-us .team-grid:hover .team-card {
    opacity: .6;
    transition: opacity .22s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-us .team-grid:hover .team-card:hover {
    opacity: 1;
    box-shadow: 0 8px 48px 1px #8cbacb2e
}

.abt-us .card-portrait {
    width: 100%;
    aspect-ratio: 5/7;
    overflow: hidden;
    flex-shrink: 0;
    max-height: 200px
}

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

.abt-us .card-noimg {
    width: 100%;
    height: 80px;
    background: linear-gradient(circle at 10% 90%, #3C4580 0%, transparent 70%);
    flex-shrink: 0
}

.abt-us .card-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .card-name {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #d6dff0
}

.abt-us .card-role {
    font-size: 13px;
    letter-spacing: .02em;
    color: #8CBACB
}

.abt-us .card-bio {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #A1BCDB
}

.abt-us .card-trace {
    position: relative;
    border: 2px solid transparent;
    border-radius: 2px;
    transition: border-color .55s ease-in-out
}

.abt-us .card-trace:hover {
    border-color: #8CBACB
}

.abt-us .metrics-area {
    background-color: #181c2e;
    padding: 72px 0
}

.abt-us .metrics-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px
}

.abt-us .metrics-h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #d6dff0;
    margin: 0 0 36px
}

.abt-us .metrics-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start
}

.abt-us .metrics-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .metric-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-us .metric-label {
    font-size: 13px;
    letter-spacing: .02em;
    color: #A1BCDB
}

.abt-us .metric-bar-track {
    width: 100%;
    height: 8px;
    background-color: #2a2f4a;
    border-radius: 2px;
    overflow: hidden
}

.abt-us .metric-bar-fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #3C4580 0%, #8CBACB 100%);
    animation: bar-grow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

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

.abt-us .metric-bar-fill.w88 {
    width: 88%
}

.abt-us .metric-bar-fill.w74 {
    width: 74%
}

.abt-us .metric-bar-fill.w91 {
    width: 91%
}

.abt-us .metric-bar-fill.w67 {
    width: 67%
}

.abt-us .metrics-text {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .metrics-img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 1px 6px 1px #3c45800f
}

.abt-us .metrics-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.5) brightness(0.7);
    transition: filter .55s ease-in-out
}

.abt-us .metrics-img-wrap:hover img {
    filter: saturate(1) brightness(0.88)
}

.abt-us .metrics-para {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #A1BCDB
}

.abt-us .metrics-para .quoted {
    color: #8CBACB;
    font-style: italic
}

.abt-us .double-border-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px
}

.abt-us .double-border {
    border: 2px solid #3C4580;
    padding: 4px;
    border-radius: 2px
}

.abt-us .double-border-inner {
    border: 2px solid #8cbacb40;
    border-radius: 2px;
    padding: 36px;
    background: linear-gradient(circle at 10% 90%, #3c45802e 0%, transparent 60%)
}

.abt-us .dbi-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px
}

.abt-us .dbi-item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .dbi-heading {
    font-size: 15px;
    letter-spacing: .02em;
    color: #8CBACB;
    text-transform: uppercase
}

.abt-us .dbi-text {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #A1BCDB
}

@media (max-width: 1366px) {
    .abt-us .mosaic-h1 {
        font-size: 62px
    }
}

@media (max-width: 768px) {
    .abt-us .mosaic-row {
        grid-template-columns: 1fr;
        padding: 36px 16px
    }

    .abt-us .mosaic-h1 {
        font-size: 36px
    }

    .abt-us .mosaic-imgs {
        grid-template-rows: 130px 90px
    }

    .abt-us .about-grid {
        grid-template-columns: 1fr;
        padding: 36px 16px
    }

    .abt-us .two-col-para {
        grid-template-columns: 1fr;
        gap: 16px
    }

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

    .abt-us .metrics-flex {
        grid-template-columns: 1fr
    }

    .abt-us .dbi-row {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .abt-us .team-inner {
        padding: 0 16px
    }

    .abt-us .metrics-inner {
        padding: 0 16px
    }

    .abt-us .double-border-wrap {
        padding: 0 16px
    }

    .abt-us .divider-edge {
        padding: 0 16px
    }
}

@media (max-width: 375px) {
    .abt-us .mosaic-h1 {
        font-size: 28px
    }

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

    .abt-us .mosaic-row {
        padding: 36px 8px
    }

    .abt-us .about-grid {
        padding: 36px 8px
    }
}

.srvs-pg {
    background-color: #0d1022;
    color: #d4dff0;
    overflow: hidden;
    position: relative
}

.srvs-pg .pg-limit {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 36px;
    padding-right: 36px
}

.srvs-pg .wave-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    height: 48px;
    position: relative
}

.srvs-pg .wave-div svg {
    display: block;
    width: 100%;
    height: 100%
}

.srvs-pg .wave-div--inv {
    transform: rotate(180deg)
}

.srvs-pg a {
    color: #8CBACB;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.srvs-pg a:hover {
    color: #A1BCDB
}

.srvs-pg .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3C4580;
    color: #d4dff0;
    border: 2px solid #3C4580;
    border-radius: 2px;
    padding: 16px 36px;
    font-size: 15px;
    letter-spacing: .02em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none
}

.srvs-pg .btn-primary .btn-icon {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .25s ease-in-out, transform .25s ease-in-out;
    flex-shrink: 0
}

.srvs-pg .btn-primary .btn-label {
    transition: transform .25s ease-in-out
}

.srvs-pg .btn-primary:hover .btn-icon {
    opacity: 1;
    transform: translateX(0)
}

.srvs-pg .btn-primary:hover .btn-label {
    transform: translateX(8px)
}

.srvs-pg .btn-primary:hover {
    background: #4a5499;
    border-color: #8CBACB
}

.srvs-pg .btn-primary:focus {
    outline: 2px solid #8CBACB;
    outline-offset: 4px
}

.srvs-pg .btn-primary:active {
    box-shadow: inset 0 6px 10px #3c458059
}

.srvs-pg .tb {
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative
}

.srvs-pg .tb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, #8cbacb1a 0%, transparent 65%);
    pointer-events: none
}

.srvs-pg .tb-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 72px;
    align-items: center
}

.srvs-pg .tb-img-col {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.srvs-pg .tb-img-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.65) saturate(0.8);
    transition: filter .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px
}

.srvs-pg .tb-img-col:hover img {
    filter: brightness(0.85) saturate(1.1)
}

.srvs-pg .tb-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #3c45808c 0%, transparent 70%);
    border-radius: 20px;
    pointer-events: none;
    transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.srvs-pg .tb-img-col:hover .tb-img-overlay {
    opacity: .4
}

.srvs-pg .tb-text-col {
    position: relative
}

.srvs-pg .tb-text-col::before {
    content: "";
    position: absolute;
    top: -36px;
    right: -16px;
    width: 180px;
    height: 180px;
    border: 1px solid #8cbacb26;
    border-radius: 20px;
    pointer-events: none
}

.srvs-pg .tb-label {
    font-size: 13px;
    letter-spacing: .02em;
    color: #8CBACB;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block
}

.srvs-pg .tb-h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #d4dff0;
    text-transform: uppercase;
    margin-bottom: 36px
}

.srvs-pg .tb-h1 span {
    color: #8CBACB
}

.srvs-pg .tb-desc {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #a8bdd4;
    margin-bottom: 36px
}

.srvs-pg .tb-quote {
    font-size: 15px;
    line-height: 1.55;
    color: #8CBACB;
    border-top: 1px solid #8cbacb40;
    padding-top: 16px;
    margin-bottom: 36px;
    font-style: italic
}

.srvs-pg .svc-det {
    padding-top: 72px;
    padding-bottom: 72px;
    background: #111529;
    position: relative
}

.srvs-pg .svc-det::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 50%, #a1bcdb12 0%, transparent 60%);
    pointer-events: none
}

.srvs-pg .svc-det-head {
    margin-bottom: 72px
}

.srvs-pg .svc-det-head h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #d4dff0;
    margin-bottom: 8px
}

.srvs-pg .svc-det-head p {
    font-size: 15px;
    line-height: 1.55;
    color: #8a9fb8;
    max-width: 540px
}

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

.srvs-pg .svc-card {
    background: #0d1022;
    border: 1px solid #3c458066;
    border-radius: 20px;
    padding: 36px;
    position: relative;
    box-shadow: 0 7px 14px 1px #3c45801a;
    transition: border-color .45s ease-in-out, box-shadow .45s ease-in-out
}

.srvs-pg .svc-card:hover {
    border-color: #8cbacb80;
    box-shadow: 0 8px 48px 1px #3c45801f
}

.srvs-pg .svc-card-badge {
    position: absolute;
    top: -16px;
    right: 36px;
    width: 36px;
    height: 36px;
    background: #3C4580;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #d4dff0;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: 0 1px 6px 1px #3c45800f
}

.srvs-pg .svc-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.srvs-pg .svc-card-icon svg {
    width: 36px;
    height: 36px
}

.srvs-pg .svc-card h3 {
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #d4dff0;
    margin-bottom: 16px
}

.srvs-pg .svc-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #8a9fb8
}

.srvs-pg .svc-card .svc-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    letter-spacing: .02em;
    color: #8CBACB;
    border: 1px solid #8cbacb4d;
    border-radius: 2px;
    padding: 4px 8px
}

.srvs-pg .team-proc {
    padding-top: 72px;
    padding-bottom: 72px;
    position: relative;
    background: #0d1022
}

.srvs-pg .team-proc::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, #3c45801f 0%, transparent 55%);
    pointer-events: none
}

.srvs-pg .tp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start
}

.srvs-pg .tp-left h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #d4dff0;
    margin-bottom: 36px;
    text-transform: uppercase
}

.srvs-pg .tp-steps {
    display: flex;
    flex-direction: column;
    gap: 36px
}

.srvs-pg .tp-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: start
}

.srvs-pg .tp-step-num {
    width: 36px;
    height: 36px;
    background: #3c458080;
    border: 1px solid #8cbacb4d;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #8CBACB;
    font-weight: 700;
    flex-shrink: 0
}

.srvs-pg .tp-step-body h4 {
    font-size: 15px;
    line-height: 1.35;
    color: #d4dff0;
    margin-bottom: 8px;
    letter-spacing: .01em
}

.srvs-pg .tp-step-body p {
    font-size: 13px;
    line-height: 1.55;
    color: #8a9fb8
}

.srvs-pg .tp-right {
    display: flex;
    flex-direction: column;
    gap: 36px
}

.srvs-pg .tp-right h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #d4dff0;
    text-transform: uppercase
}

.srvs-pg .tp-profiles {
    display: flex;
    flex-direction: column;
    gap: 36px
}

.srvs-pg .tp-profile {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 16px;
    align-items: center;
    background: #111529;
    border-radius: 20px;
    padding: 16px;
    border: 1px solid #3c458059;
    box-shadow: 0 1px 6px 1px #3c45800f;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.srvs-pg .tp-profile:hover {
    border-color: #8cbacb66
}

.srvs-pg .tp-profile-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.srvs-pg .tp-profile-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.85) saturate(0.9)
}

.srvs-pg .tp-profile:hover .tp-profile-img img {
    filter: brightness(1) saturate(1.1)
}

.srvs-pg .tp-profile-info h5 {
    font-size: 15px;
    line-height: 1.35;
    color: #d4dff0;
    margin-bottom: 4px;
    letter-spacing: .01em
}

.srvs-pg .tp-profile-info span {
    font-size: 13px;
    color: #8CBACB;
    letter-spacing: .02em
}

.srvs-pg .tp-profile-info p {
    font-size: 13px;
    line-height: 1.55;
    color: #8a9fb8;
    margin-top: 8px
}

.srvs-pg .tp-cta-block {
    background: linear-gradient(135deg, #3C4580 0%, #1e2545 100%);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 48px 1px #3c45801f
}

.srvs-pg .tp-cta-block h4 {
    font-size: 18px;
    line-height: 1.35;
    color: #d4dff0;
    margin-bottom: 16px;
    letter-spacing: .01em
}

.srvs-pg .tp-cta-block p {
    font-size: 15px;
    line-height: 1.55;
    color: #a8bdd4;
    margin-bottom: 36px
}

.srvs-pg .char-hover {
    display: inline-flex;
    flex-wrap: wrap
}

.srvs-pg .char-hover .ch {
    display: inline-block;
    transition: color .2s ease-in-out
}

.srvs-pg .char-hover:hover .ch:nth-child(1) {
    color: #8CBACB;
    transition-delay: 0s
}

.srvs-pg .char-hover:hover .ch:nth-child(2) {
    color: #8CBACB;
    transition-delay: .03s
}

.srvs-pg .char-hover:hover .ch:nth-child(3) {
    color: #8CBACB;
    transition-delay: .06s
}

.srvs-pg .char-hover:hover .ch:nth-child(4) {
    color: #8CBACB;
    transition-delay: .09s
}

.srvs-pg .char-hover:hover .ch:nth-child(5) {
    color: #8CBACB;
    transition-delay: .12s
}

.srvs-pg .char-hover:hover .ch:nth-child(6) {
    color: #8CBACB;
    transition-delay: .15s
}

.srvs-pg .char-hover:hover .ch:nth-child(7) {
    color: #8CBACB;
    transition-delay: .18s
}

.srvs-pg .char-hover:hover .ch:nth-child(8) {
    color: #8CBACB;
    transition-delay: .21s
}

.srvs-pg .char-hover:hover .ch:nth-child(9) {
    color: #8CBACB;
    transition-delay: .24s
}

.srvs-pg .char-hover:hover .ch:nth-child(10) {
    color: #8CBACB;
    transition-delay: .27s
}

.srvs-pg .char-hover:hover .ch:nth-child(11) {
    color: #8CBACB;
    transition-delay: .3s
}

.srvs-pg .char-hover:hover .ch:nth-child(12) {
    color: #8CBACB;
    transition-delay: .33s
}

@keyframes contrastBreathe {
    0% {
        filter: contrast(1.00)
    }

    50% {
        filter: contrast(1.06)
    }

    100% {
        filter: contrast(1.00)
    }
}

.srvs-pg .svc-det {
    animation: contrastBreathe 8s ease-in-out infinite
}

.srvs-pg .tp-left {
    position: relative
}

.srvs-pg .tp-left::before {
    content: "";
    position: absolute;
    inset: -36px;
    background-image: linear-gradient(#8cbacb0a 1px, transparent 1px), linear-gradient(90deg, #8cbacb0a 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
    border-radius: 2px
}

@media (max-width: 1366px) {
    .srvs-pg .tb-h1 {
        font-size: 48px
    }

    .srvs-pg .svc-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px
    }
}

@media (max-width: 768px) {
    .srvs-pg .tb-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .srvs-pg .tb-img-col img {
        height: 280px
    }

    .srvs-pg .tb-h1 {
        font-size: 36px
    }

    .srvs-pg .svc-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .srvs-pg .tp-layout {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .srvs-pg .pg-limit {
        padding-left: 16px;
        padding-right: 16px
    }
}

@media (max-width: 375px) {
    .srvs-pg .tb-h1 {
        font-size: 23px
    }

    .srvs-pg .tb-desc {
        font-size: 15px
    }

    .srvs-pg .tp-profile {
        grid-template-columns: 60px 1fr
    }

    .srvs-pg .tp-profile-img,
    .srvs-pg .tp-profile-img img {
        width: 60px;
        height: 60px
    }
}

.ctus-pg {
    background-color: #0d1020;
    min-height: 100vh;
    position: relative;
    overflow: hidden
}

.ctus-pg::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: .35;
    pointer-events: none;
    z-index: 0
}

.ctus-pg .pg-bound {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px;
    position: relative;
    z-index: 1
}

.ctus-pg .split-reveal {
    overflow: hidden;
    display: block
}

.ctus-pg .split-reveal span {
    display: inline-block;
    animation: splitOpen .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
    transform: translateY(100%)
}

.ctus-pg .split-reveal span:nth-child(2) {
    animation-delay: .12s
}

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

.ctus-pg .geom-divider {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 16px 0;
    overflow: hidden
}

.ctus-pg .geom-divider .gd-unit {
    width: 8px;
    height: 8px;
    background: #3C4580;
    opacity: .5;
    flex-shrink: 0;
    transform: rotate(45deg)
}

.ctus-pg .geom-divider .gd-unit:nth-child(3n+2) {
    background: #8CBACB;
    opacity: .4;
    width: 5px;
    height: 5px
}

.ctus-pg .geom-divider .gd-unit:nth-child(5n) {
    background: #A1BCDB;
    opacity: .3;
    width: 6px;
    height: 6px
}

.ctus-pg .geom-divider-alt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    overflow: hidden
}

.ctus-pg .geom-divider-alt .gda-bar {
    height: 2px;
    background: #3C4580;
    opacity: .4;
    flex-shrink: 0
}

.ctus-pg .geom-divider-alt .gda-bar:nth-child(odd) {
    width: 36px
}

.ctus-pg .geom-divider-alt .gda-bar:nth-child(even) {
    width: 16px;
    background: #8CBACB;
    opacity: .5
}

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

.ctus-pg .ldr-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8CBACB;
    animation: ldrPulse 1.2s ease-in-out infinite
}

.ctus-pg .ldr-dot:nth-child(2) {
    animation-delay: .2s
}

.ctus-pg .ldr-dot:nth-child(3) {
    animation-delay: .4s
}

@keyframes ldrPulse {

    0%,
    80%,
    100% {
        opacity: .3;
        transform: scale(0.8)
    }

    40% {
        opacity: 1;
        transform: scale(1.1)
    }
}

.ctus-pg .top-band {
    background: linear-gradient(135deg, #1a1f3c 0%, #0d1020 60%, #111827 100%);
    padding: 72px 0 36px;
    position: relative
}

.ctus-pg .top-band::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #3C4580 30%, #8CBACB 50%, #3C4580 70%, transparent)
}

.ctus-pg .top-band .curve-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 320px;
    pointer-events: none;
    overflow: hidden
}

.ctus-pg .top-band .curve-deco svg {
    width: 100%;
    height: 100%;
    opacity: .12
}

.ctus-pg .band-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 72px;
    align-items: center
}

.ctus-pg .band-text .eyebrow {
    font-size: 13px;
    letter-spacing: .18em;
    color: #8CBACB;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px
}

.ctus-pg .band-text .eyebrow::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #8CBACB;
    flex-shrink: 0
}

.ctus-pg .band-text h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #e8edf5;
    text-transform: uppercase;
    margin-bottom: 16px
}

.ctus-pg .band-text h1 em {
    font-style: normal;
    color: #A1BCDB
}

.ctus-pg .band-text .sub-stmt {
    font-size: 18px;
    line-height: 1.55;
    color: #8CBACB;
    max-width: 480px;
    letter-spacing: .01em
}

.ctus-pg .band-card {
    background: #3c45801f;
    border: 1px solid #8dbacb2e;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 7px 14px 1px #3c45801a;
    position: relative
}

.ctus-pg .band-card::before {
    content:"{";
    position: absolute;
    top: -16px;
    left: 16px;
    font-size: 62px;
    color: #3C4580;
    opacity: .5;
    line-height: 1;
    pointer-events: none
}

.ctus-pg .band-card::after {
    content: "}";
    position: absolute;
    bottom: -24px;
    right: 16px;
    font-size: 62px;
    color: #3C4580;
    opacity: .5;
    line-height: 1;
    pointer-events: none
}

.ctus-pg .cinfo-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.ctus-pg .cinfo-item:last-child {
    margin-bottom: 0
}

.ctus-pg .cinfo-label {
    font-size: 13px;
    letter-spacing: .08em;
    color: #8CBACB;
    text-transform: uppercase
}

.ctus-pg .cinfo-val {
    font-size: 15px;
    line-height: 1.35;
    color: #c8d8e8;
    letter-spacing: .01em
}

.ctus-pg .cinfo-val a {
    color: #A1BCDB;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.ctus-pg .cinfo-val a:hover {
    color: #e8edf5
}

.ctus-pg .mid-band {
    background: #0d1020;
    padding: 72px 0;
    position: relative
}

.ctus-pg .mid-band .bg-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 0% 100%, #3c45802e 0%, transparent 70%);
    pointer-events: none
}

.ctus-pg .form-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: start
}

.ctus-pg .form-sidebar {
    position: sticky;
    top: 36px
}

.ctus-pg .form-sidebar h2 {
    font-size: 23px;
    line-height: 1.35;
    color: #e8edf5;
    letter-spacing: .01em;
    margin-bottom: 16px
}

.ctus-pg .form-sidebar p {
    font-size: 15px;
    line-height: 1.55;
    color: #8a9bb8;
    letter-spacing: .01em;
    margin-bottom: 16px
}

.ctus-pg .sidebar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px
}

.ctus-pg .sidebar-stat {
    background: #3c458026;
    border: 1px solid #8dbacb1f;
    border-radius: 2px;
    padding: 16px;
    text-align: center
}

.ctus-pg .sidebar-stat .stat-num {
    font-size: 23px;
    line-height: 1.1;
    color: #A1BCDB;
    letter-spacing: .02em;
    display: block
}

.ctus-pg .sidebar-stat .stat-desc {
    font-size: 13px;
    line-height: 1.35;
    color: #8CBACB;
    letter-spacing: .01em;
    display: block;
    margin-top: 4px
}

.ctus-pg .contact-form {
    background: #8dbacb0a;
    border: 1px solid #8dbacb24;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 48px 1px #3c45801f
}

.ctus-pg .form-cat-row {
    margin-bottom: 36px
}

.ctus-pg .cat-label {
    font-size: 13px;
    letter-spacing: .08em;
    color: #8CBACB;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px
}

.ctus-pg .cat-options {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.ctus-pg .cat-opt {
    position: relative
}

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

.ctus-pg .cat-opt label {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #8dbacb40;
    border-radius: 2px;
    font-size: 13px;
    letter-spacing: .04em;
    color: #8a9bb8;
    cursor: pointer;
    transition: background-color .2s ease-in-out, color .2s ease-in-out, border-color .2s ease-in-out;
    background: transparent
}

.ctus-pg .cat-opt input[type="radio"]:checked+label {
    background: #3c458080;
    border-color: #8CBACB;
    color: #e8edf5
}

.ctus-pg .cat-opt label:hover {
    border-color: #8dbacb80;
    color: #c8d8e8
}

.ctus-pg .form-row {
    margin-bottom: 16px
}

.ctus-pg .form-row.double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ctus-pg .f-field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus-pg .f-field label {
    font-size: 13px;
    letter-spacing: .06em;
    color: #8CBACB;
    text-transform: uppercase
}

.ctus-pg .f-field input,
.ctus-pg .f-field select,
.ctus-pg .f-field textarea {
    background: #0d1020b3;
    border: 1px solid #8dbacb33 !important;
    border-radius: 2px;
    color: #e8edf5;
    font-size: 15px;
    letter-spacing: .01em;
    padding: 16px;
    transition: border-color .45s ease-in-out, box-shadow .45s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    outline: none
}

.ctus-pg .f-field input:focus,
.ctus-pg .f-field select:focus,
.ctus-pg .f-field textarea:focus {
    border-color: #8dbacb99 !important;
    box-shadow: 0 1px 6px 1px #8dbacb0f
}

.ctus-pg .f-field input::placeholder,
.ctus-pg .f-field textarea::placeholder {
    color: #8a9bb88c
}

.ctus-pg .f-field select {
    appearance: none;
    cursor: pointer
}

.ctus-pg .f-field select option {
    background: #1a1f3c;
    color: #e8edf5
}

.ctus-pg .f-field textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55
}

.ctus-pg .privacy-row {
    margin-bottom: 36px;
    margin-top: 16px
}

.ctus-pg .privacy-check {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer
}

.ctus-pg .privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #8CBACB;
    cursor: pointer
}

.ctus-pg .privacy-check .prv-text {
    font-size: 13px;
    line-height: 1.55;
    color: #8a9bb8;
    letter-spacing: .01em
}

.ctus-pg .privacy-check .prv-text a {
    color: #A1BCDB;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease-in-out
}

.ctus-pg .privacy-check .prv-text a:hover {
    color: #e8edf5
}

.ctus-pg .form-submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.ctus-pg .btn-submit {
    position: relative;
    background: #3C4580;
    border: none;
    border-radius: 2px;
    color: #e8edf5;
    font-size: 15px;
    letter-spacing: .05em;
    padding: 16px 36px;
    cursor: pointer;
    overflow: hidden;
    transition: background-color .25s ease-in-out, box-shadow .25s ease-in-out;
    box-shadow: 0 7px 14px 1px #3c45801a;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.ctus-pg .btn-submit .btn-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    flex-shrink: 0
}

.ctus-pg .btn-submit .btn-icon svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #e8edf5;
    stroke-width: 2
}

.ctus-pg .btn-submit .btn-lbl {
    transition: transform .2s ease-in-out
}

.ctus-pg .btn-submit:hover {
    background: #4a559a;
    box-shadow: 0 8px 48px 1px #3c45801f
}

.ctus-pg .btn-submit:hover .btn-icon {
    opacity: 1;
    transform: translateX(0)
}

.ctus-pg .btn-submit:hover .btn-lbl {
    transform: translateX(4px)
}

.ctus-pg .btn-submit:focus {
    outline: 2px solid #8CBACB;
    outline-offset: 3px
}

.ctus-pg .btn-submit:active {
    background: #2e3568;
    box-shadow: inset 0 4px 10px #3c458040
}

.ctus-pg .submit-note {
    font-size: 13px;
    color: #8a9bb8;
    letter-spacing: .01em;
    line-height: 1.35
}

.ctus-pg .bottom-band {
    background: linear-gradient(170deg, #111827 0%, #0d1020 100%);
    padding: 72px 0;
    position: relative
}

.ctus-pg .bottom-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8CBACB 40%, #A1BCDB 60%, transparent)
}

.ctus-pg .bottom-band .bg-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 100% 0%, #a1bcdb14 0%, transparent 70%);
    pointer-events: none
}

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

.ctus-pg .bottom-col h3 {
    font-size: 18px;
    line-height: 1.35;
    color: #e8edf5;
    letter-spacing: .01em;
    margin-bottom: 16px;
    text-transform: uppercase
}

.ctus-pg .bottom-col p {
    font-size: 15px;
    line-height: 1.55;
    color: #8a9bb8;
    letter-spacing: .01em
}

.ctus-pg .bottom-col p strong {
    color: #A1BCDB;
    font-weight: 600
}

.ctus-pg .hours-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.ctus-pg .hours-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #8dbacb14;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .01em
}

.ctus-pg .hours-list li:last-child {
    border-bottom: none
}

.ctus-pg .hours-list .day {
    color: #8a9bb8
}

.ctus-pg .hours-list .time {
    color: #A1BCDB
}

.ctus-pg .addr-block {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus-pg .addr-block .addr-line {
    font-size: 15px;
    line-height: 1.55;
    color: #8a9bb8;
    letter-spacing: .01em
}

.ctus-pg .addr-block .addr-line strong {
    color: #c8d8e8
}

.ctus-pg .addr-block .contact-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px
}

.ctus-pg .addr-block .contact-links a {
    font-size: 15px;
    color: #A1BCDB;
    text-decoration: none;
    letter-spacing: .01em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .45s ease-in-out
}

.ctus-pg .addr-block .contact-links a:hover {
    color: #e8edf5
}

.ctus-pg .addr-block .contact-links a .arr {
    display: inline-block;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .2s ease-in-out, transform .2s ease-in-out;
    font-size: 13px
}

.ctus-pg .addr-block .contact-links a:hover .arr {
    opacity: 1;
    transform: translateX(0)
}

.ctus-pg .response-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #3c458033;
    border: 1px solid #8dbacb33;
    border-radius: 2px;
    padding: 8px 16px;
    margin-top: 16px
}

.ctus-pg .response-badge .badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8CBACB;
    flex-shrink: 0;
    animation: ldrPulse 2s ease-in-out infinite
}

.ctus-pg .response-badge .badge-txt {
    font-size: 13px;
    color: #8CBACB;
    letter-spacing: .04em
}

@media (max-width: 1366px) {
    .ctus-pg .band-text h1 {
        font-size: 48px
    }

    .ctus-pg .top-band .curve-deco {
        width: 300px;
        height: 240px
    }
}

@media (max-width: 768px) {
    .ctus-pg .pg-bound {
        padding: 0 16px
    }

    .ctus-pg .top-band {
        padding: 36px 0
    }

    .ctus-pg .band-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .ctus-pg .band-text h1 {
        font-size: 36px
    }

    .ctus-pg .top-band .curve-deco {
        display: none
    }

    .ctus-pg .form-layout {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .ctus-pg .form-sidebar {
        position: static
    }

    .ctus-pg .form-row.double {
        grid-template-columns: 1fr
    }

    .ctus-pg .bottom-grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .ctus-pg .mid-band {
        padding: 36px 0
    }

    .ctus-pg .bottom-band {
        padding: 36px 0
    }
}

@media (max-width: 375px) {
    .ctus-pg .band-text h1 {
        font-size: 28px
    }

    .ctus-pg .cat-options {
        flex-direction: column
    }

    .ctus-pg .form-submit-row {
        flex-direction: column;
        align-items: flex-start
    }

    .ctus-pg .sidebar-grid {
        grid-template-columns: 1fr
    }
}

.frt {
    background-color: #181c2e;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    color: #d8e4f0;
    overflow-x: hidden;
    position: relative
}

.frt .pg-bound {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 36px
}

.frt a {
    color: #8CBACB;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.frt a:hover {
    color: #A1BCDB
}

.frt .diag-div {
    width: 100%;
    height: 2px;
    background: linear-gradient(117deg, #3C4580 0%, #8CBACB 55%, transparent 100%);
    margin: 0
}

.frt .diag-div-alt {
    width: 100%;
    height: 2px;
    background: linear-gradient(243deg, #3C4580 0%, #A1BCDB 60%, transparent 100%);
    margin: 0
}

.frt .diag-div-thin {
    width: 100%;
    height: 1px;
    background: linear-gradient(160deg, transparent 0%, #3C4580 40%, #8CBACB 100%)
}

.frt .dash-connector {
    border-top: 1px dashed #8cbacb59;
    margin: 36px 0
}

.frt .dbl-border {
    border: 2px solid #3c458099;
    outline: 1px solid #8cbacb33;
    outline-offset: 4px
}

.frt-lbl {
    font-size: 13px;
    letter-spacing: .02em;
    color: #8CBACB;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 8px;
    display: block
}

.frt-h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #d8e4f0;
    text-transform: uppercase;
    margin: 0 0 16px
}

.frt-h2 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #A1BCDB;
    margin: 0 0 16px
}

.frt-h3 {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #d8e4f0;
    margin: 0 0 8px
}

.frt-body {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #b0c8d8
}

.frt-sm {
    font-size: 13px;
    line-height: 1.35;
    letter-spacing: .02em;
    color: #8CBACB
}

.frt-quote {
    color: #8CBACB
}

.frt-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: .02em;
    padding: 8px 16px;
    border-radius: 2px;
    border: 1px solid #3C4580;
    background: #3c458040;
    color: #d8e4f0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .45s ease-in-out, color .25s ease-in-out
}

.frt-btn:hover {
    background: #3c45808c;
    border-color: #8CBACB;
    color: #fff
}

.frt-btn .btn-ico {
    display: inline-block;
    width: 0;
    overflow: hidden;
    transition: width .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0
}

.frt-btn:hover .btn-ico {
    width: 16px
}

.frt-btn .btn-ico svg {
    display: block
}

.frt-btn .btn-txt {
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frt-btn:hover .btn-txt {
    transform: translateX(4px)
}

.frt-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #8CBACB;
    letter-spacing: .01em;
    transition: color .45s ease-in-out;
    position: relative
}

.frt-link-arrow .arr-ico {
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity .45s ease-in-out, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frt-link-arrow:hover .arr-ico {
    opacity: 1;
    transform: translateX(0)
}

.frt-link-arrow:hover {
    color: #A1BCDB
}

@keyframes contrastBreath {
    0% {
        filter: contrast(1)
    }

    50% {
        filter: contrast(1.18)
    }

    100% {
        filter: contrast(1)
    }
}

.frt-s1 {
    padding: 72px 0 0;
    position: relative
}

.frt-s1__grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 36px
}

.frt-s1__img-col {
    flex: 0 0 380px;
    position: relative
}

.frt-s1__img-frame {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    border: 2px solid #8cbacb4d;
    outline: 1px solid #3c458080;
    outline-offset: 6px
}

.frt-s1__img-frame img {
    width: 380px;
    height: 440px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.82) saturate(0.8)
}

.frt-s1__img-frame:hover img {
    filter: brightness(1) saturate(1)
}

.frt-s1__light-leak {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 0% 0%, #a1bcdb47 0%, transparent 70%);
    pointer-events: none;
    border-radius: 2px
}

.frt-s1__shape-a {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 60px;
    height: 60px;
    border: 2px solid #3c458080;
    border-radius: 2px;
    pointer-events: none
}

.frt-s1__shape-b {
    position: absolute;
    top: 50%;
    right: -36px;
    transform: translateY(-50%);
    width: 8px;
    height: 80px;
    background: linear-gradient(180deg, #8cbacb99 0%, transparent 100%);
    border-radius: 2px;
    pointer-events: none
}

.frt-s1__txt-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px 0
}

.frt-s1__desc {
    font-size: 15px;
    line-height: 1.55;
    color: #b0c8d8;
    margin: 0 0 36px;
    letter-spacing: .01em
}

.frt-s1__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.frt-s1__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #3c458014 0%, transparent 60%);
    pointer-events: none
}

.frt-s2 {
    padding: 72px 0;
    background: #3c458014;
    position: relative
}

.frt-s2__grid {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start
}

.frt-s2__narrow {
    flex: 0 0 220px
}

.frt-s2__wide {
    flex: 1
}

.frt-s2__cards {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.frt-s2__card {
    flex: 1 1 200px;
    background: #181c2eb3;
    border-radius: 2px;
    padding: 16px;
    border: 1px solid #8cbacb26;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frt-s2__card:hover {
    border-color: #8cbacb66;
    box-shadow: 0 7px 14px 1px #3c45801a
}

.frt-s2__portraits {
    display: flex;
    flex-direction: row;
    gap: 36px;
    margin-top: 36px
}

.frt-s2__person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.frt-s2__portrait {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #8cbacb59;
    box-shadow: 0 1px 6px 1px #3c45800f
}

.frt-s2__portrait img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter .55s ease-in-out;
    filter: brightness(0.85) saturate(0.75)
}

.frt-s2__portrait:hover img {
    filter: brightness(1) saturate(1)
}

.frt-s2__person-info {
    flex: 1
}

.frt-s3 {
    padding: 72px 0;
    position: relative;
    background: #181c2e
}

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

.frt-s3__center {
    background: #3c45802e;
    border-radius: 20px;
    padding: 36px;
    border: 2px solid #8cbacb33;
    outline: 1px solid #3c458059;
    outline-offset: 4px;
    position: relative
}

.frt-s3__side {
    padding: 16px 0
}

.frt-s3__item {
    padding: 16px 0;
    border-bottom: 1px solid #3c45804d
}

.frt-s3__item:last-child {
    border-bottom: none
}

.frt-s3__num {
    font-size: 23px;
    line-height: 1.1;
    color: #3C4580;
    font-weight: 700;
    letter-spacing: .01em;
    margin-bottom: 4px
}

.frt-s3__img-wrap {
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 8px 48px 1px #3c45801f
}

.frt-s3__img-wrap img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8) saturate(0.7)
}

.frt-s3__img-wrap:hover img {
    filter: brightness(1) saturate(1)
}

.frt-s4 {
    padding: 72px 0;
    position: relative;
    background: #8cbacb0a;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px)
}

.frt-s4__grid {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start
}

.frt-s4__left {
    flex: 0 0 320px
}

.frt-s4__right {
    flex: 1
}

.frt-s4__img-wrap {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 48px 1px #3c45801f;
    position: relative
}

.frt-s4__img-wrap img {
    width: 320px;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8) saturate(0.7) sepia(0.1)
}

.frt-s4__img-wrap:hover img {
    filter: brightness(1) saturate(1) sepia(0)
}

.frt-s4__overlay-tint {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, #3c458059 0%, transparent 65%);
    pointer-events: none;
    transition: opacity .5s ease-in-out
}

.frt-s4__img-wrap:hover .frt-s4__overlay-tint {
    opacity: 0
}

.frt-s4__list {
    list-style: none;
    padding: 0;
    margin: 0
}

.frt-s4__list li {
    padding: 16px 0;
    border-bottom: 1px solid #3c458040;
    font-size: 15px;
    line-height: 1.55;
    color: #b0c8d8;
    letter-spacing: .01em;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start
}

.frt-s4__list li:last-child {
    border-bottom: none
}

.frt-s4__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8CBACB;
    flex-shrink: 0;
    margin-top: 8px
}

.frt-s5 {
    padding: 72px 0;
    background: #181c2e;
    position: relative
}

.frt-s5__grid {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start
}

.frt-s5__narrow {
    flex: 0 0 260px
}

.frt-s5__wide {
    flex: 1
}

.frt-s5__timeline {
    position: relative;
    padding-left: 0
}

.frt-s5__tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, #8cbacb80 0%, #3c458033 100%);
    transform: translateX(-50%)
}

.frt-s5__tl-items {
    display: flex;
    flex-direction: column;
    gap: 36px;
    position: relative
}

.frt-s5__tl-item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    position: relative
}

.frt-s5__tl-item.right {
    flex-direction: row-reverse
}

.frt-s5__tl-body {
    flex: 1;
    background: #3c45801f;
    border-radius: 2px;
    padding: 16px;
    border: 1px solid #8cbacb1f;
    transition: border-color .55s ease-in-out, box-shadow .55s ease-in-out
}

.frt-s5__tl-body:hover {
    border-color: #8cbacb59;
    box-shadow: 0 7px 14px 1px #3c45801a
}

.frt-s5__tl-node {
    flex: 0 0 16px;
    display: flex;
    align-items: flex-start;
    padding-top: 20px;
    justify-content: center
}

.frt-s5__tl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8CBACB;
    border: 2px solid #181c2e;
    box-shadow: 0 0 0 2px #8cbacb66;
    flex-shrink: 0
}

.frt-s5__img-wrap {
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 16px;
    box-shadow: 0 7px 14px 1px #3c45801a
}

.frt-s5__img-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.82) saturate(0.75)
}

.frt-s5__img-wrap:hover img {
    filter: brightness(1) saturate(1)
}

.frt-s6 {
    padding: 72px 0;
    background: #3c45801a;
    position: relative;
    animation: contrastBreath 6s ease-in-out infinite
}

.frt-s6__grid {
    display: flex;
    flex-direction: row;
    gap: 36px;
    align-items: flex-start
}

.frt-s6__col-a {
    flex: 1
}

.frt-s6__col-b {
    flex: 0 0 340px
}

.frt-s6__img-wrap {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 8px 48px 1px #3c45801f;
    margin-bottom: 16px
}

.frt-s6__img-wrap img {
    width: 340px;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.8) saturate(0.7)
}

.frt-s6__img-wrap:hover img {
    filter: brightness(1) saturate(1)
}

.frt-s6__metric-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 36px
}

.frt-s6__metric {
    flex: 1;
    background: #181c2ecc;
    border-radius: 2px;
    padding: 16px;
    border: 1px solid #3c458066;
    text-align: center;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frt-s6__metric:hover {
    border-color: #8cbacb80
}

.frt-s6__metric-val {
    font-size: 23px;
    line-height: 1.1;
    color: #8CBACB;
    letter-spacing: .01em;
    font-weight: 700
}

.frt-s6__metric-lbl {
    font-size: 13px;
    line-height: 1.35;
    color: #b0c8d8;
    letter-spacing: .02em;
    margin-top: 4px
}

.frt-tags-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    padding: 8px 0
}

.frt-tags-group:hover .frt-tag {
    transform: translateY(-2px) rotate(-1deg);
    opacity: 1
}

.frt-tag {
    font-size: 13px;
    letter-spacing: .02em;
    padding: 4px 8px;
    border-radius: 2px;
    background: #3c45804d;
    border: 1px solid #8cbacb33;
    color: #8CBACB;
    opacity: .7;
    transition: transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .45s ease-in-out
}

.frt-tag:nth-child(2) {
    transition-delay: .04s
}

.frt-tag:nth-child(3) {
    transition-delay: .08s
}

.frt-tag:nth-child(4) {
    transition-delay: .12s
}

.frt-tag:nth-child(5) {
    transition-delay: .16s
}

.frt-tags-group:hover .frt-tag:nth-child(even) {
    transform: translateY(-4px) rotate(1deg)
}

@media (max-width: 1366px) {
    .frt-h1 {
        font-size: 62px
    }
}

@media (max-width: 768px) {
    .frt-h1 {
        font-size: 36px
    }

    .frt-s1__grid {
        flex-direction: column
    }

    .frt-s1__img-col {
        flex: none;
        width: 100%
    }

    .frt-s1__img-frame img {
        width: 100%;
        height: 260px
    }

    .frt-s2__grid {
        flex-direction: column
    }

    .frt-s2__narrow {
        flex: none;
        width: 100%
    }

    .frt-s2__portraits {
        flex-direction: column
    }

    .frt-s3__inner {
        grid-template-columns: 1fr
    }

    .frt-s4__grid {
        flex-direction: column
    }

    .frt-s4__left {
        flex: none;
        width: 100%
    }

    .frt-s4__img-wrap img {
        width: 100%;
        height: 240px
    }

    .frt-s5__grid {
        flex-direction: column
    }

    .frt-s5__narrow {
        flex: none;
        width: 100%
    }

    .frt-s5__tl-item,
    .frt-s5__tl-item.right {
        flex-direction: column
    }

    .frt-s5__tl-line {
        display: none
    }

    .frt-s6__grid {
        flex-direction: column
    }

    .frt-s6__col-b {
        flex: none;
        width: 100%
    }

    .frt-s6__img-wrap img {
        width: 100%;
        height: 180px
    }

    .frt-s6__metric-row {
        flex-direction: column
    }
}

@media (max-width: 375px) {
    .frt .pg-bound {
        padding: 0 16px
    }

    .frt-h1 {
        font-size: 28px
    }

    .frt-s1__actions {
        flex-direction: column
    }

    .frt-s2__cards {
        flex-direction: column
    }

    .frt-s6__metric-row {
        flex-direction: column
    }
}

.success-pg {
    min-height: 80vh;
    background-color: #181c2e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 16px
}

.success-pg .success-card {
    background-color: #1e2340;
    border: 4px solid #3C4580;
    border-radius: 2px;
    box-shadow: 0 8px 48px 1px #3c45801f;
    max-width: 560px;
    width: 100%;
    padding: 72px 36px;
    text-align: center;
    position: relative
}

.success-pg .success-card .icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 36px;
    border-radius: 2px;
    background-color: #3C4580;
    box-shadow: 0 7px 14px 1px #3c45801a;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.success-pg .success-card .icon-wrap svg {
    width: 32px;
    height: 32px;
    display: block
}

.success-pg .success-card .success-label {
    font-size: 13px;
    letter-spacing: .12em;
    color: #8CBACB;
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 8px
}

.success-pg .success-card .success-heading {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: .01em;
    color: #e8edf5;
    margin-bottom: 16px;
    text-transform: uppercase
}

.success-pg .success-card .success-body {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #A1BCDB;
    margin-bottom: 36px
}

.success-pg .success-card .divider-line {
    width: 48px;
    height: 3px;
    background-color: #3C4580;
    border-radius: 2px;
    margin: 0 auto 36px
}

.success-pg .success-card .btn-return {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background-color: #3C4580;
    color: #e8edf5;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.35;
    border: 2px solid #8CBACB;
    border-radius: 2px;
    padding: 16px 36px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 1px 6px 1px #3c45800f;
    transition: background-color .25s ease-in-out, box-shadow .45s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .2s ease-in-out;
    position: relative;
    overflow: hidden
}

.success-pg .success-card .btn-return .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform .22s ease-in-out
}

.success-pg .success-card .btn-return .btn-text {
    transition: transform .22s ease-in-out
}

.success-pg .success-card .btn-return:hover {
    background-color: #8CBACB;
    color: #181c2e;
    box-shadow: 0 7px 14px 1px #3c45801a
}

.success-pg .success-card .btn-return:hover .btn-text {
    transform: translateX(4px)
}

.success-pg .success-card .btn-return:hover .btn-icon {
    transform: translateX(-2px)
}

.success-pg .success-card .btn-return:focus {
    outline: 2px solid #A1BCDB;
    outline-offset: 3px
}

.success-pg .success-card .btn-return:active {
    background-color: #2a3060;
    box-shadow: inset 0 4px 10px 1px #3c45801f
}

.success-pg .ref-note {
    margin-top: 36px;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #3C4580;
    text-align: center
}

.success-pg .ref-note a {
    color: #8CBACB;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease-in-out, color .18s ease-in-out
}

.success-pg .ref-note a:hover {
    color: #A1BCDB;
    border-bottom-color: #A1BCDB
}

@media (max-width: 768px) {
    .success-pg {
        padding: 36px 16px
    }

    .success-pg .success-card {
        padding: 36px 16px
    }

    .success-pg .success-card .success-heading {
        font-size: 18px
    }
}

@media (max-width: 375px) {
    .success-pg .success-card .btn-return {
        padding: 16px;
        font-size: 13px
    }
}