* {
    box-sizing: border-box
}

html {
    font-size: 100%
}

body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    font-family: 'Inconsolata', monospace
}

.pg-hdr {
    position: relative;
    background: linear-gradient(135deg, #fff 0%, #D9E3E3 60%, #DCC3BA 100%);
    border-bottom: 1px solid #2699d521;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    z-index: 100;
    overflow: hidden
}

.pg-hdr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2699D5 0%, #DCC3BA 60%, #D9E3E3 100%)
}

.hdr-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.hdr-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 12px;
    gap: 24px
}

.brand-mount {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none
}

.brand-img-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #2699d559;
    border-radius: 6px 16px 6px 16px;
    box-shadow: -1px 3px 6px 1px #2699d50d -1px 6px 20px 1px #2699d51c;
    padding: 6px
}

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

.hdr-tagline {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #2699D5;
    font-weight: 700;
    margin-left: 12px;
    text-transform: uppercase
}

.hdr-contact-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-shrink: 0
}

.hdr-contact-strip a {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a3a4a;
    text-decoration: none;
    font-weight: 400;
    transition: color .25s cubic-bezier(0.22, 1, 0.36, 1)
}

.hdr-contact-strip a:hover {
    color: #2699D5
}

.hdr-contact-strip a:focus {
    outline: none;
    filter: invert(1)
}

.hdr-nav-bar {
    background: #2699d512;
    border-radius: 44px;
    padding: 6px 24px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap
}

.hdr-nav-bar a {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .01em;
    color: #1a3a4a;
    text-decoration: none;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 44px;
    transition: background .45s cubic-bezier(0.22, 1, 0.36, 1), color .25s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.hdr-nav-bar a:hover {
    background: #2699d524;
    color: #2699D5
}

.hdr-nav-bar a:focus {
    outline: none;
    filter: invert(1)
}

.hdr-nav-bar a.active {
    background: #2699D5;
    color: #fff
}

@media (max-width: 768px) {
    .hdr-tagline {
        display: none
    }

    .hdr-contact-strip {
        display: none
    }

    .hdr-top {
        padding: 12px 0
    }
}

@media (max-width: 480px) {
    .hdr-shell {
        padding: 0 12px
    }

    .hdr-nav-bar {
        padding: 6px 12px;
        gap: 6px
    }

    .hdr-nav-bar a {
        padding: 6px;
        font-size: 14px
    }
}

.pg-ftr {
    background: linear-gradient(160deg, #1a3a4a 0%, #0f2535 100%);
    color: #D9E3E3;
    padding: 52px 0 24px;
    position: relative
}

.pg-ftr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D9E3E3 0%, #2699D5 50%, #DCC3BA 100%)
}

.ftr-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

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

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

.ftr-logo-wrap {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #2699d559;
    border-radius: 6px 16px 6px 16px;
    box-shadow: -1px 3px 6px 1px #2699d50d;
    padding: 6px
}

.ftr-logo-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.ftr-brand-name {
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: .02em;
    font-weight: 700;
    color: #fff
}

.ftr-desc {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #D9E3E3;
    opacity: .85
}

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

.ftr-col-label {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    font-weight: 700;
    color: #2699D5;
    text-transform: uppercase;
    margin-bottom: 6px
}

.ftr-links-col a {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #D9E3E3;
    text-decoration: none;
    opacity: .85;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), opacity .25s ease-in-out
}

.ftr-links-col a:hover {
    color: #2699D5;
    opacity: 1
}

.ftr-links-col a:focus {
    outline: none;
    filter: invert(1)
}

.ftr-trust-col {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.trust-item {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #D9E3E3;
    opacity: .85
}

.trust-item strong {
    color: #fff;
    font-weight: 700;
    opacity: 1
}

.trust-badge {
    display: inline-block;
    background: #2699d52e;
    border: 1px solid #2699d559;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #D9E3E3;
    font-weight: 700
}

.ftr-bottom {
    border-top: 1px solid #d9e3e326;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.ftr-copy {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #D9E3E3;
    opacity: .6
}

.ftr-legal {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.ftr-legal a {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #D9E3E3;
    text-decoration: none;
    opacity: .6;
    transition: opacity .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ftr-legal a:hover {
    opacity: 1
}

.ftr-legal a:focus {
    outline: none;
    filter: invert(1)
}

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

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

@media (max-width: 480px) {
    .ftr-shell {
        padding: 0 12px
    }

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

    .ftr-bottom {
        flex-direction: column;
        align-items: flex-start
    }
}

.ck-bar {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 380px;
    width: calc(100vw - 48px);
    background: #fff;
    border-radius: 16px;
    box-shadow: -1px 10px 36px 1px #2699d521;
    border: 1px solid #2699d52e;
    z-index: 4000;
    padding: 24px;
    display: none
}

.ck-bar.ck-visible {
    animation: ckSlideIn .55s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.ck-bar.ck-hiding {
    animation: ckSlideOut .18s ease-in-out forwards
}

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

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

@keyframes ckSlideOut {
    from {
        transform: translateY(0);
        opacity: 1
    }

    to {
        transform: translateY(-24px);
        opacity: 0
    }
}

.ck-desc {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1a3a4a;
    margin-bottom: 12px
}

.ck-desc a {
    color: #2699D5;
    text-decoration: underline
}

.ck-panel {
    background: #d9e3e34d;
    border-radius: 6px;
    padding: 12px;
    margin-bottom: 12px;
    display: none
}

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

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

.ck-toggle-label {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1a3a4a;
    font-weight: 700
}

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

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

.ck-slider {
    position: absolute;
    inset: 0;
    background: #2699d533;
    border-radius: 44px;
    cursor: pointer;
    transition: background .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ck-slider::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 44px;
    top: 3px;
    left: 3px;
    transition: transform .25s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -1px 3px 6px 1px #2699d50d
}

.ck-switch input:checked+.ck-slider {
    background: #2699D5
}

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

.ck-switch input:focus+.ck-slider {
    filter: invert(1)
}

.ck-always-on {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #1a3a4a;
    opacity: .6
}

.ck-opt-out-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid #2699d521
}

.ck-opt-out-label {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1a3a4a
}

.ck-opt-out-label input[type="checkbox"] {
    accent-color: #2699D5;
    width: 16px;
    height: 16px;
    cursor: pointer;
    margin-right: 6px
}

.ck-btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.ck-btn {
    flex: 1;
    min-width: 0;
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #2699D5;
    cursor: pointer;
    min-height: 44px;
    transition: filter .2s ease-in-out, background .45s cubic-bezier(0.22, 1, 0.36, 1);
    background: transparent;
    color: #2699D5
}

.ck-btn:hover {
    filter: brightness(1.1)
}

.ck-btn:focus {
    outline: none;
    filter: invert(1)
}

.ck-btn.ck-accept {
    background: #2699D5;
    color: #fff
}

.ck-expand-btn {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2699D5;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    margin-bottom: 12px;
    display: block;
    transition: filter .2s ease-in-out
}

.ck-expand-btn:hover {
    filter: brightness(1.15)
}

.ck-expand-btn:focus {
    outline: none;
    filter: invert(1)
}

@media (max-width: 480px) {
    .ck-bar {
        left: 12px;
        bottom: 12px;
        width: calc(100vw - 24px);
        max-width: none
    }
}

.doc-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 52px 24px
}

.doc-inner h1 {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1b2a35;
    margin-bottom: 24px;
    margin-top: 0
}

.doc-inner h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1b2a35;
    margin-top: 52px;
    margin-bottom: 24px
}

.doc-inner h3 {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #1b2a35;
    margin-top: 24px;
    margin-bottom: 12px
}

.doc-inner h4 {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #2c3e4a;
    margin-top: 24px;
    margin-bottom: 12px
}

.doc-inner h5 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #2c3e4a;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 6px
}

.doc-inner h6 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #3d5060;
    margin-top: 12px;
    margin-bottom: 6px
}

.doc-inner p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .01em;
    color: #2c3e4a;
    margin-top: 0;
    margin-bottom: 12px
}

.doc-inner ul,
.doc-inner ol {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .01em;
    color: #2c3e4a;
    margin-top: 0;
    margin-bottom: 12px;
    padding-left: 24px
}

.doc-inner ul {
    list-style-type: disc
}

.doc-inner ol {
    list-style-type: decimal
}

.doc-inner li {
    margin-bottom: 6px;
    padding-left: 6px
}

.doc-inner li:last-child {
    margin-bottom: 0
}

.doc-inner ul ul,
.doc-inner ol ol,
.doc-inner ul ol,
.doc-inner ol ul {
    margin-top: 6px;
    margin-bottom: 6px
}

.doc-inner strong,
.doc-inner b {
    color: #1b2a35;
    font-weight: 700
}

.doc-inner a {
    color: #2699D5;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .22s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color .22s cubic-bezier(0.22, 1, 0.36, 1)
}

.doc-inner a:hover {
    color: #1a78aa;
    text-decoration-color: #DCC3BA
}

.doc-inner table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    margin-bottom: 24px;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    border-radius: 6px;
    overflow: hidden
}

.doc-inner thead {
    background: #D9E3E3
}

.doc-inner thead th {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #1b2a35;
    font-weight: 700;
    padding: 12px 24px;
    text-align: left;
    border-bottom: 2px solid #2699D5
}

.doc-inner tbody tr {
    transition: background-color .18s ease-in-out
}

.doc-inner tbody tr:nth-child(even) {
    background: #f5f8f8
}

.doc-inner tbody tr:hover {
    background: #edf4f9
}

.doc-inner td {
    font-size: 14px;
    line-height: 1.6;
    color: #2c3e4a;
    padding: 12px 24px;
    border-bottom: 1px solid #D9E3E3;
    vertical-align: top
}

.doc-inner tbody tr:last-child td {
    border-bottom: none
}

.doc-inner hr {
    border: none;
    border-top: 1px solid #D9E3E3;
    margin-top: 52px;
    margin-bottom: 52px
}

@media (max-width: 1280px) {
    .doc-inner {
        padding: 52px 24px
    }

    .doc-inner h1 {
        font-size: 38px
    }

    .doc-inner h2 {
        font-size: 21px
    }
}

@media (max-width: 768px) {
    .doc-inner {
        padding: 24px 12px
    }

    .doc-inner h1 {
        font-size: 38px
    }

    .doc-inner h2 {
        font-size: 21px;
        margin-top: 24px
    }

    .doc-inner table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px
    }

    .doc-inner thead th,
    .doc-inner td {
        padding: 12px
    }
}

@media (max-width: 480px) {
    .doc-inner {
        padding: 24px 12px
    }

    .doc-inner h1 {
        font-size: 21px;
        line-height: 1.2
    }

    .doc-inner h2 {
        font-size: 21px
    }

    .doc-inner ul,
    .doc-inner ol {
        padding-left: 12px
    }

    .doc-inner hr {
        margin-top: 24px;
        margin-bottom: 24px
    }
}

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

.ab-us .pg-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

.ab-us .t-block {
    padding: 96px 0 52px;
    position: relative
}

.ab-us .t-block::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(263deg, #2699d50b 0px, #2699d50b 2px, transparent 2px, transparent 18px);
    pointer-events: none;
    z-index: 0
}

.ab-us .t-block .pg-wrap {
    position: relative;
    z-index: 1
}

.ab-us .t-inner {
    display: flex;
    flex-direction: row;
    gap: 52px;
    align-items: flex-start
}

.ab-us .t-strip {
    flex: 0 0 220px;
    width: 220px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ab-us .t-strip-img {
    width: 220px;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    animation: fadeSharp .7s cubic-bezier(0.22, 1, 0.36, 1) both
}

@keyframes fadeSharp {
    from {
        opacity: 0;
        filter: blur(8px)
    }

    to {
        opacity: 1;
        filter: blur(0)
    }
}

.ab-us .t-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.ab-us .t-strip-img:hover img {
    filter: brightness(1.06)
}

.ab-us .t-strip-badge {
    background: linear-gradient(263deg, #2699D5 0%, #D9E3E3 100%);
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #1a3a4a;
    letter-spacing: .01em
}

.ab-us .t-body {
    flex: 1 1 0;
    min-width: 0
}

.ab-us .t-kicker {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #2699D5;
    margin-bottom: 12px;
    text-transform: uppercase
}

.ab-us .t-h1 {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: .01em;
    margin-bottom: 24px;
    color: #1b2d38
}

.ab-us .t-h1 .accent-word {
    color: #2699D5
}

.ab-us .t-h1 .punct {
    color: #DCC3BA
}

.ab-us .t-lead {
    font-size: 21px;
    line-height: 1.6;
    color: #2e4050;
    letter-spacing: .01em;
    max-width: 620px;
    margin-bottom: 24px
}

.ab-us .t-desc {
    font-size: 14px;
    line-height: 2;
    color: #3a5060;
    letter-spacing: .01em;
    max-width: 580px;
    margin-bottom: 24px
}

.ab-us .t-metrics {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 12px
}

.ab-us .t-met {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: slideUp .6s cubic-bezier(0.22, 1, 0.36, 1) both
}

.ab-us .t-met:nth-child(1) {
    animation-delay: .1s
}

.ab-us .t-met:nth-child(2) {
    animation-delay: .22s
}

.ab-us .t-met:nth-child(3) {
    animation-delay: .34s
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

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

.ab-us .t-met-val {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2699D5
}

.ab-us .t-met-lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6070;
    letter-spacing: .02em
}

.ab-us .t-divider {
    margin: 52px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0
}

.ab-us .t-divider-line {
    flex: 1;
    height: 1px;
    background: #D9E3E3;
    position: relative
}

.ab-us .t-divider-tick {
    width: 1px;
    height: 8px;
    background: #2699D5;
    margin: 0 32px;
    flex-shrink: 0
}

.ab-us .s2 {
    padding: 96px 0;
    background: linear-gradient(263deg, #f4f8fb 0%, #edf4f4 60%, #f9f5f3 100%);
    position: relative
}

.ab-us .s2-abbr {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2699d50f;
    font-weight: 900;
    pointer-events: none;
    user-select: none
}

.ab-us .s2-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 52px;
    align-items: start
}

.ab-us .s2-left {
    display: flex;
    flex-direction: column;
    gap: 52px
}

.ab-us .s2-story {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ab-us .s2-h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1b2d38
}

.ab-us .s2-h2 .fw {
    color: #2699D5
}

.ab-us .s2-p {
    font-size: 14px;
    line-height: 2;
    color: #3a5060;
    letter-spacing: .01em
}

.ab-us .s2-p.lead-p {
    font-size: 21px;
    line-height: 1.6;
    color: #2e4050
}

.ab-us .s2-process {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ab-us .s2-proc-h {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1b2d38;
    margin-bottom: 6px
}

.ab-us .s2-proc-h .fw {
    color: #2699D5
}

.ab-us .proc-steps {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap
}

.ab-us .proc-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    animation: stepIn .55s cubic-bezier(0.22, 1, 0.36, 1) both
}

.ab-us .proc-step:nth-child(1) {
    animation-delay: .05s
}

.ab-us .proc-step:nth-child(2) {
    animation-delay: .15s
}

.ab-us .proc-step:nth-child(3) {
    animation-delay: .25s
}

.ab-us .proc-step:nth-child(4) {
    animation-delay: .35s
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(-10px)
    }

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

.ab-us .proc-box {
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #1b2d38;
    letter-spacing: .01em;
    box-shadow: -1px 3px 6px 1px #2699d50d;
    white-space: nowrap
}

.ab-us .proc-arrow {
    width: 20px;
    height: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ab-us .proc-arrow svg {
    width: 20px;
    height: 12px
}

.ab-us .s2-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ab-us .s2-sidebar {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ab-us .sb-h {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1b2d38
}

.ab-us .sb-h .fw {
    color: #2699D5
}

.ab-us .team-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ab-us .team-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 6px;
    background: #f4f8fb;
    transition: background .25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s cubic-bezier(0.22, 1, 0.36, 1)
}

.ab-us .team-item:hover {
    background: #edf4f4;
    box-shadow: -1px 3px 6px 1px #2699d50d
}

.ab-us .team-img-wrap {
    width: 52px;
    height: 52px;
    border-radius: 44px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: -1px 3px 6px 1px #2699d50d
}

.ab-us .team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(2px);
    transition: filter .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.ab-us .team-item:hover .team-img-wrap img {
    filter: blur(0)
}

.ab-us .team-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0
}

.ab-us .team-name {
    font-size: 14px;
    line-height: 1.6;
    color: #1b2d38;
    letter-spacing: .01em
}

.ab-us .team-role {
    font-size: 14px;
    line-height: 1.6;
    color: #2699D5;
    letter-spacing: .01em
}

.ab-us .team-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6070;
    letter-spacing: .01em
}

.ab-us .s2-vals {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 3px 6px 1px #2699d50d;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ab-us .vals-h {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1b2d38
}

.ab-us .vals-h .fw {
    color: #2699D5
}

.ab-us .vals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ab-us .val-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 6px;
    background: linear-gradient(263deg, #f4f8fb 0%, #edf4f4 100%);
    transition: transform .2s cubic-bezier(0.22, 1, 0.36, 1)
}

.ab-us .val-item:hover {
    transform: translateY(-2px)
}

.ab-us .val-dot {
    width: 8px;
    height: 8px;
    border-radius: 44px;
    background: #2699D5;
    flex-shrink: 0
}

.ab-us .val-name {
    font-size: 14px;
    line-height: 1.6;
    color: #1b2d38;
    letter-spacing: .01em
}

.ab-us .val-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6070;
    letter-spacing: .01em
}

.ab-us .s2-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ab-us .s2-img-wrap {
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 6px 20px 1px #2699d51c
}

.ab-us .s2-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: blur(3px);
    transition: filter .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.ab-us .s2-img-wrap:hover img {
    filter: blur(0)
}

.ab-us .s2-frosted {
    border-radius: 16px;
    padding: 24px;
    background: #ffffff8c;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: -1px 10px 36px 1px #2699d521;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ab-us .frosted-h {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #1b2d38
}

.ab-us .frosted-h .fw {
    color: #2699D5
}

.ab-us .frosted-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0
}

.ab-us .frosted-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #2e4050;
    letter-spacing: .01em;
    padding: 6px;
    border-radius: 6px;
    background: #2699d50f;
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.ab-us .frosted-list li .dot-i {
    width: 6px;
    height: 6px;
    border-radius: 44px;
    background: #2699D5;
    flex-shrink: 0;
    margin-top: 6px
}

.ab-us .s2-divider {
    margin: 52px 0 0;
    display: flex;
    flex-direction: row;
    align-items: center
}

.ab-us .s2-divider-line {
    flex: 1;
    height: 1px;
    background: #DCC3BA
}

.ab-us .s2-divider-tick {
    width: 1px;
    height: 8px;
    background: #DCC3BA;
    margin: 0 28px;
    flex-shrink: 0
}

@media (max-width: 1280px) {
    .ab-us .t-h1 {
        font-size: 52px
    }

    .ab-us .s2-grid {
        grid-template-columns: 1fr 320px
    }
}

@media (max-width: 768px) {
    .ab-us .t-inner {
        flex-direction: column;
        gap: 24px
    }

    .ab-us .t-strip {
        flex: none;
        width: 100%;
        flex-direction: row;
        align-items: flex-start
    }

    .ab-us .t-strip-img {
        width: 120px;
        flex-shrink: 0
    }

    .ab-us .t-strip-badge {
        flex: 1
    }

    .ab-us .t-h1 {
        font-size: 38px
    }

    .ab-us .t-block {
        padding: 52px 0 24px
    }

    .ab-us .s2 {
        padding: 52px 0
    }

    .ab-us .s2-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ab-us .s2-right {
        order: -1
    }

    .ab-us .proc-steps {
        flex-direction: column
    }

    .ab-us .proc-arrow {
        transform: rotate(90deg)
    }

    .ab-us .s2-imgs {
        grid-template-columns: 1fr 1fr
    }

    .ab-us .vals-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .ab-us .pg-wrap {
        padding: 0 12px
    }

    .ab-us .t-h1 {
        font-size: 38px
    }

    .ab-us .t-metrics {
        flex-direction: column;
        gap: 12px
    }

    .ab-us .t-strip {
        flex-direction: column
    }

    .ab-us .t-strip-img {
        width: 100%
    }

    .ab-us .s2-imgs {
        grid-template-columns: 1fr
    }

    .ab-us .frosted-list {
        grid-template-columns: 1fr
    }

    .ab-us .s2-abbr {
        font-size: 38px
    }
}

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

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

.frst ::selection {
    background: linear-gradient(263deg, #2699D5, #DCC3BA);
    color: #111
}

.frst .eyebrow {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .02em;
    line-height: 1.6;
    color: #2699D5;
    background: #2699d517;
    padding: 6px 16px;
    border-radius: 44px;
    margin-bottom: 12px;
    font-weight: 600
}

.frst .split-h span:first-child {
    color: #2699D5
}

.frst .split-h span:last-child {
    color: #1a2e3a
}

.frst .btn-prim {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.6;
    color: #fff;
    background: #2699D5;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    transition: brightness .22s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s ease-in-out
}

.frst .btn-prim:hover {
    filter: brightness(1.1);
    box-shadow: -1px 10px 36px 1px #2699d521;
    color: #fff
}

.frst .btn-sec {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.6;
    color: #2699D5;
    background: transparent;
    padding: 12px 24px;
    border-radius: 6px;
    border: 2px solid #2699D5;
    cursor: pointer;
    text-decoration: none;
    transition: background .25s cubic-bezier(0.22, 1, 0.36, 1), color .25s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .btn-sec:hover {
    background: #2699D5;
    color: #fff
}

.frst .titl {
    background: #fff;
    padding: 52px 0 0
}

.frst .titl__img-wrap {
    position: relative;
    width: 100%;
    max-width: 780px;
    margin: 0 auto 24px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    max-height: 480px;
    box-shadow: -1px 10px 36px 1px #2699d521
}

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

.frst .titl__img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, #12283ad1 0%, transparent 100%);
    pointer-events: none
}

.frst .titl__text {
    text-align: center;
    padding: 12px 0 52px;
    max-width: 680px;
    margin: 0 auto
}

.frst .titl__h1 {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 12px 0 0;
    font-weight: 800
}

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

    .frst .titl__img-wrap {
        max-height: 320px
    }
}

@media (max-width: 480px) {
    .frst .titl__h1 {
        font-size: 38px
    }
}

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

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

.frst .poss {
    background: linear-gradient(263deg, #eaf5fb 0%, #f6f0ee 60%, #fff 100%);
    padding: 52px 0;
    clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 calc(100% - 32px));
    margin-top: -24px
}

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

.frst .poss__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .poss__img-wrap:hover {
    box-shadow: -1px 10px 36px 1px #2699d521
}

.frst .poss__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .poss__img-wrap:hover img {
    transform: scale(1.04)
}

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

.frst .poss__h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 0
}

.frst .poss__lead {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2c3e50;
    margin: 0
}

.frst .poss__txt {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #3a4a56;
    margin: 0
}

.frst .poss__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.frst .poss__list li {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2c3e50;
    padding: 6px 0;
    border-top: 1px solid #2699d52e
}

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

    .frst .poss__h2 {
        font-size: 38px
    }
}

.frst .scl {
    background: #fff;
    padding: 96px 0 52px;
    position: relative
}

.frst .scl__stripe-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    border-radius: 0
}

.frst .scl__stripe-bg::before {
    content: "";
    position: absolute;
    inset: -40px;
    background: repeating-linear-gradient(263deg, transparent 0px, transparent 38px, #2699d509 38px, #2699d509 40px);
    animation: stripe-drift 18s linear infinite
}

@keyframes stripe-drift {
    0% {
        transform: translateX(0) translateY(0)
    }

    100% {
        transform: translateX(40px) translateY(40px)
    }
}

.frst .scl__head {
    text-align: center;
    margin-bottom: 52px;
    position: relative
}

.frst .scl__h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 12px 0 0
}

.frst .scl__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative
}

.frst .scl__card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    transition: box-shadow .5s cubic-bezier(0.22, 1, 0.36, 1), transform .45s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .scl__card:hover {
    box-shadow: -1px 10px 36px 1px #2699d521;
    transform: translateY(-4px)
}

.frst .scl__card.glow-h:hover {
    outline: none;
    box-shadow: 0 0 0 4px #2699d52e -1px 10px 36px 1px #2699d521
}

.frst .scl__num {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .01em;
    color: #2699D5;
    display: block
}

.frst .scl__label {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #3a4a56;
    margin-top: 6px;
    display: block
}

.frst .scl__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 52px
}

.frst .scl__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: -1px 3px 6px 1px #2699d50d;
    transition: box-shadow .6s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .scl__img-wrap:hover {
    box-shadow: -1px 10px 36px 1px #2699d521
}

.frst .scl__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .7s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .scl__img-wrap:hover img {
    transform: scale(1.05)
}

@media (max-width: 768px) {
    .frst .scl__row {
        grid-template-columns: repeat(2, 1fr)
    }

    .frst .scl__num {
        font-size: 38px
    }

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

@media (max-width: 480px) {
    .frst .scl__row {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }
}

.frst .val {
    background: linear-gradient(263deg, #12283a 0%, #1e3a4a 55%, #2c4a5a 100%);
    padding: 96px 0;
    clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 24px), 0 100%);
    margin-top: -24px;
    position: relative
}

.frst .val__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: start
}

.frst .val__pull {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 800;
    color: #fff;
    margin: 0 0 24px;
    padding: 24px;
    border-radius: 16px;
    background: #2699d52e;
    box-shadow: -1px 6px 20px 1px #2699d51c
}

.frst .val__pull-mark {
    display: block;
    font-size: 70px;
    line-height: 1.2;
    color: #DCC3BA;
    font-weight: 900;
    margin-bottom: 6px
}

.frst .val__h3 {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    font-weight: 700;
    color: #D9E3E3;
    margin: 0 0 12px
}

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

.frst .val__p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #d9e3e3e6;
    margin: 0
}

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

.frst .val__item {
    background: #ffffff0f;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #D9E3E3
}

.frst .val__item strong {
    color: #fff;
    display: block;
    margin-bottom: 6px
}

.frst .val__eyebrow {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .02em;
    line-height: 1.6;
    color: #DCC3BA;
    background: #dcc3ba2e;
    padding: 6px 16px;
    border-radius: 44px;
    margin-bottom: 12px;
    font-weight: 600
}

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

    .frst .val__pull {
        font-size: 21px
    }

    .frst .val__pull-mark {
        font-size: 38px
    }
}

.frst .exp {
    background: #fff;
    padding: 96px 0 52px
}

.frst .exp__head {
    text-align: center;
    margin-bottom: 52px
}

.frst .exp__h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 12px 0 0
}

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

.frst .exp__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: -1px 6px 20px 1px #dcc3ba1c;
    transition: box-shadow .55s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .exp__img-wrap:hover {
    box-shadow: -1px 10px 36px 1px #2699d521
}

.frst .exp__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.frst .exp__img-wrap:hover img {
    transform: scale(1.04)
}

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

.frst .exp__quote {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #12283a;
    font-style: italic;
    border-radius: 6px;
    padding: 24px;
    background: linear-gradient(263deg, #2699d512 0%, #dcc3ba1a 100%);
    margin: 0
}

.frst .exp__attr {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2699D5;
    font-weight: 600;
    font-style: normal;
    display: block;
    margin-top: 12px
}

.frst .exp__p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #3a4a56;
    margin: 0;
    max-width: 560px
}

.frst .exp__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.frst .exp__tag {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    padding: 6px 16px;
    border-radius: 44px;
    font-weight: 600
}

.frst .exp__tag.t-blue {
    background: #2699d51f;
    color: #1a6fa0
}

.frst .exp__tag.t-sand {
    background: #dcc3ba59;
    color: #7a5a50
}

.frst .exp__tag.t-mist {
    background: #d9e3e380;
    color: #3a5252
}

.frst .exp__cta {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

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

    .frst .exp__h2 {
        font-size: 38px
    }
}

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

    .frst .exp__cta {
        flex-direction: column;
        align-items: flex-start
    }
}

.int-st {
    overflow-x: clip
}

.int-st .pano {
    background: #1a2a38;
    padding: 96px 24px 52px;
    position: relative
}

.int-st .pano::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(263deg, #2699D5 0%, #DCC3BA 60%, #D9E3E3 100%)
}

.int-st .pano-inner {
    max-width: 1280px;
    margin: 0 auto
}

.int-st .pano-label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #DCC3BA;
    border: 1px dashed #DCC3BA;
    border-radius: 44px;
    padding: 6px 24px;
    margin-bottom: 24px;
    opacity: .85
}

.int-st .pano-h1 {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 24px;
    max-width: 900px
}

.int-st .pano-h1 .accent-word {
    color: #2699D5
}

.int-st .pano-sub {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #D9E3E3;
    max-width: 620px;
    margin: 0;
    opacity: .9
}

.int-st .mosaic-sec {
    background: #fff;
    padding: 96px 24px;
    position: relative
}

.int-st .mosaic-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 52px;
    align-items: start
}

.int-st .mosaic-img-wrap {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    margin-top: 52px;
    aspect-ratio: 1/1
}

.int-st .mosaic-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .18
}

.int-st .mosaic-txt {
    grid-column: 2;
    grid-row: 1
}

.int-st .mosaic-txt-h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a38;
    margin: 0 0 24px
}

.int-st .mosaic-txt-h2 .c-blue {
    color: #2699D5
}

.int-st .mosaic-txt-h2 .c-dark {
    color: #1a2a38
}

.int-st .mosaic-p {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2c3e50;
    margin: 0 0 24px
}

.int-st .mosaic-p-sm {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #3a4a5a;
    margin: 0
}

.int-st .mosaic-nums {
    grid-column: 2;
    grid-row: 2
}

.int-st .num-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.int-st .num-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px
}

.int-st .num-anchor {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #D9E3E3;
    font-weight: 700;
    min-width: 64px;
    text-align: right;
    flex-shrink: 0;
    transition: color .5s cubic-bezier(0.22, 1, 0.36, 1)
}

.int-st .num-item:hover .num-anchor {
    color: #2699D5
}

.int-st .num-body {
    padding-top: 12px
}

.int-st .num-body-h {
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a38;
    margin: 0 0 6px
}

.int-st .num-body-p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #3a4a5a;
    margin: 0
}

.int-st .dashed-sec {
    background: linear-gradient(263deg, #2699D5 0%, #D9E3E3 65%, #fff 100%);
    padding: 96px 24px
}

.int-st .dashed-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 52px;
    align-items: stretch
}

.int-st .dashed-frame {
    border: 2px dashed #2699d573;
    border-radius: 16px;
    padding: 52px;
    flex: 1 1 55%;
    background: #ffffffd1;
    box-shadow: -1px 10px 36px 1px #2699d521;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.int-st .dashed-h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0
}

.int-st .dashed-h2 .c-blue {
    color: #2699D5
}

.int-st .dashed-h2 .c-dark {
    color: #1a2a38
}

.int-st .dashed-p {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2c3e50;
    margin: 0
}

.int-st .dashed-p-sm {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #3a4a5a;
    margin: 0
}

.int-st .dashed-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.int-st .dashed-col-item {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #1a2a38;
    padding: 12px;
    background: #D9E3E3;
    border-radius: 6px
}

.int-st .dashed-side {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center
}

.int-st .dashed-side-img {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: -1px 6px 20px 1px #dcc3ba1c
}

.int-st .dashed-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: .2
}

.int-st .dashed-tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    background: #DCC3BA;
    color: #1a2a38;
    border-radius: 44px;
    padding: 6px 24px
}

.int-st .expand-sec {
    background: #f4f7f8;
    padding: 96px 24px;
    position: relative
}

.int-st .expand-sec::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(263deg, #DCC3BA 0%, #D9E3E3 55%, #fff 100%)
}

.int-st .expand-inner {
    max-width: 1280px;
    margin: 0 auto
}

.int-st .expand-h2 {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0 0 52px;
    text-align: center
}

.int-st .expand-h2 .c-blue {
    color: #2699D5
}

.int-st .expand-h2 .c-dark {
    color: #1a2a38
}

.int-st .expand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.int-st .exp-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 3px 6px 1px #2699d50d;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    animation: col-reveal .6s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.int-st .exp-card:nth-child(1) {
    animation-delay: .1s
}

.int-st .exp-card:nth-child(2) {
    animation-delay: .28s
}

.int-st .exp-card:nth-child(3) {
    animation-delay: .46s
}

@keyframes col-reveal {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

.int-st .exp-card:hover {
    box-shadow: -1px 10px 36px 1px #2699d521
}

.int-st .exp-card-tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    background: #2699D5;
    color: #fff;
    border-radius: 44px;
    padding: 6px 24px;
    align-self: flex-start
}

.int-st .exp-card-h {
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #1a2a38;
    margin: 0
}

.int-st .exp-card-p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #3a4a5a;
    margin: 0
}

.int-st .exp-toggle-wrap {
    margin-top: 12px
}

.int-st .exp-toggle {
    display: none
}

.int-st .exp-toggle-lbl {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #2699D5;
    cursor: pointer;
    border-bottom: 1px solid transparent;
    transition: border-color .22s ease-in-out, color .22s ease-in-out;
    padding-bottom: 2px;
    user-select: none
}

.int-st .exp-toggle-lbl:hover {
    border-color: #2699D5
}

.int-st .exp-more {
    overflow: hidden;
    max-height: 0;
    transition: max-height .55s cubic-bezier(0.22, 1, 0.36, 1), opacity .45s ease-in-out;
    opacity: 0
}

.int-st .exp-toggle:checked~.exp-more {
    max-height: 300px;
    opacity: 1
}

.int-st .exp-toggle:checked~.exp-toggle-lbl {
    color: #1a2a38;
    border-color: transparent
}

.int-st .exp-more-p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #3a4a5a;
    margin: 12px 0 0
}

@media (max-width: 1280px) {
    .int-st .pano-h1 {
        font-size: 38px
    }

    .int-st .expand-grid {
        grid-template-columns: 1fr 1fr
    }

    .int-st .exp-card:nth-child(3) {
        grid-column: 1 / -1
    }
}

@media (max-width: 768px) {
    .int-st .pano {
        padding: 52px 24px
    }

    .int-st .pano-h1 {
        font-size: 38px
    }

    .int-st .mosaic-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .int-st .mosaic-img-wrap {
        grid-column: 1;
        grid-row: auto;
        margin-top: 0
    }

    .int-st .mosaic-txt {
        grid-column: 1;
        grid-row: auto
    }

    .int-st .mosaic-nums {
        grid-column: 1;
        grid-row: auto
    }

    .int-st .dashed-inner {
        flex-direction: column
    }

    .int-st .dashed-frame {
        padding: 24px
    }

    .int-st .expand-grid {
        grid-template-columns: 1fr
    }

    .int-st .exp-card:nth-child(3) {
        grid-column: auto
    }

    .int-st .dashed-cols {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .int-st .pano-h1 {
        font-size: 38px
    }

    .int-st .num-anchor {
        font-size: 38px;
        min-width: 40px
    }

    .int-st .mosaic-sec,
    .int-st .dashed-sec,
    .int-st .expand-sec {
        padding: 52px 24px
    }
}

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

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

.cu-pg .strip-row {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-height: 560px;
    background: #fff;
    position: relative
}

.cu-pg .strip-row::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid #DCC3BA;
    pointer-events: none;
    z-index: 1
}

.cu-pg .img-strip {
    width: 220px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative
}

.cu-pg .img-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    transition: transform .6s cubic-bezier(0.22, 1, 0.36, 1);
    display: block
}

.cu-pg .img-strip:hover img {
    transform: scale(1.06)
}

.cu-pg .strip-text {
    flex: 1;
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.cu-pg .strip-tag {
    display: inline-block;
    background: #D9E3E3;
    color: #1a4a5a;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 600
}

.cu-pg .strip-h1 {
    font-size: 70px;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0 0 24px;
    font-weight: 800
}

.cu-pg .strip-h1 .w1 {
    color: #2699D5
}

.cu-pg .strip-h1 .w2 {
    color: #2a2a2a
}

.cu-pg .strip-desc {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #3a3a3a;
    max-width: 560px;
    margin: 0 0 24px
}

.cu-pg .strip-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap
}

.cu-pg .lnk-pri {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #fff;
    background: #2699D5;
    padding: 12px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: brightness .25s ease-in-out, box-shadow .25s ease-in-out;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    display: inline-block
}

.cu-pg .lnk-pri:hover {
    filter: brightness(1.12);
    box-shadow: -1px 10px 36px 1px #2699d521
}

.cu-pg .lnk-sec {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #2699D5;
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 500;
    transition: color .2s ease-in-out
}

.cu-pg .lnk-sec:hover {
    filter: brightness(0.85)
}

.cu-pg .wave-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff
}

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

.cu-pg .form-band {
    background: linear-gradient(263deg, #D9E3E3 0%, #DCC3BA 18%, #fff 55%, #fff 100%);
    padding: 96px 0;
    position: relative;
    overflow: hidden
}

.cu-pg .form-band::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    height: 480px;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, #2699d512 0%, transparent 70%);
    border-radius: 44px;
    animation: spotpulse 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 0
}

@keyframes spotpulse {

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

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

.cu-pg .form-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 52px;
    align-items: start
}

.cu-pg .contact-meta {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.cu-pg .meta-h {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    margin: 0 0 6px;
    font-weight: 700
}

.cu-pg .meta-h .w1 {
    color: #2699D5
}

.cu-pg .meta-h .w2 {
    color: #2a2a2a
}

.cu-pg .meta-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
    letter-spacing: .01em
}

.cu-pg .info-cards {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.cu-pg .i-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: -1px 3px 6px 1px #2699d50d;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    transition: box-shadow .45s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden
}

.cu-pg .i-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #2699d500;
    transition: background .5s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 16px;
    pointer-events: none
}

.cu-pg .i-card:hover::before {
    background: #2699d50d
}

.cu-pg .i-card:hover {
    box-shadow: -1px 6px 20px 1px #2699d51c
}

.cu-pg .i-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.cu-pg .i-icon svg {
    width: 24px;
    height: 24px;
    stroke: #2699D5;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cu-pg .i-icon svg.anim-outline {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    transition: stroke-dashoffset .65s cubic-bezier(0.22, 1, 0.36, 1)
}

.cu-pg .i-card:hover .i-icon svg.anim-outline {
    stroke-dashoffset: 0
}

.cu-pg .i-text {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cu-pg .i-label {
    font-size: 14px;
    line-height: 1.2;
    color: #888;
    font-weight: 500;
    letter-spacing: .02em
}

.cu-pg .i-val {
    font-size: 14px;
    line-height: 1.6;
    color: #2a2a2a;
    font-weight: 600;
    letter-spacing: .01em
}

.cu-pg .i-val a {
    color: #2699D5;
    text-decoration: none;
    transition: color .2s ease-in-out
}

.cu-pg .i-val a:hover {
    filter: brightness(0.85)
}

.cu-pg .form-card {
    background: #fff;
    border-radius: 16px;
    padding: 52px;
    box-shadow: -1px 10px 36px 1px #2699d521
}

.cu-pg .form-h {
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #2a2a2a;
    margin: 0 0 24px
}

.cu-pg .form-h span {
    color: #2699D5
}

.cu-pg .cf {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.cu-pg .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.cu-pg .f-grp {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cu-pg .f-grp label {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #3a3a3a;
    font-weight: 600
}

.cu-pg .f-grp input,
.cu-pg .f-grp select,
.cu-pg .f-grp textarea {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2a2a2a;
    background: #fff;
    border: 1px solid #DCC3BA;
    border-radius: 6px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px #dcc3ba2e;
    transition: border-color .22s ease-in-out, box-shadow .22s ease-in-out;
    appearance: none;
    -webkit-appearance: none;
    outline: none
}

.cu-pg .f-grp input::placeholder,
.cu-pg .f-grp textarea::placeholder {
    color: #2a2a2a66
}

.cu-pg .f-grp input:focus,
.cu-pg .f-grp select:focus,
.cu-pg .f-grp textarea:focus {
    border-color: #2699D5;
    box-shadow: inset 0 2px 4px #2699d51a -1px 3px 6px 1px #2699d50d
}

.cu-pg .f-grp select {
    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='%232699D5' 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 12px center;
    padding-right: 36px;
    cursor: pointer
}

.cu-pg .f-grp textarea {
    resize: vertical;
    min-height: 96px
}

.cu-pg .priv-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.cu-pg .priv-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #2699D5;
    cursor: pointer
}

.cu-pg .priv-txt {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    letter-spacing: .01em
}

.cu-pg .priv-txt a {
    color: #2699D5;
    text-decoration: underline;
    text-underline-offset: 2px
}

.cu-pg .btn-sub {
    display: inline-block;
    background: #2699D5;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .02em;
    font-weight: 700;
    padding: 12px 52px;
    border-radius: 44px;
    border: none;
    cursor: pointer;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    transition: filter .2s ease-in-out, box-shadow .2s ease-in-out;
    align-self: flex-start
}

.cu-pg .btn-sub:hover {
    filter: brightness(1.1);
    box-shadow: -1px 10px 36px 1px #2699d521
}

.cu-pg .btn-sub:active {
    filter: brightness(0.95);
    box-shadow: inset 0 2px 4px #2699d52e
}

.cu-pg .btn-sub:focus-visible {
    outline: 2px solid #2699D5;
    outline-offset: 3px
}

@media (max-width: 1280px) {
    .cu-pg .strip-h1 {
        font-size: 52px
    }
}

@media (max-width: 768px) {
    .cu-pg .strip-row {
        flex-direction: column;
        min-height: unset
    }

    .cu-pg .strip-row::before {
        inset: 6px
    }

    .cu-pg .img-strip {
        width: 100%;
        height: 220px
    }

    .cu-pg .strip-text {
        padding: 52px 24px
    }

    .cu-pg .strip-h1 {
        font-size: 38px
    }

    .cu-pg .strip-desc {
        font-size: 14px
    }

    .cu-pg .form-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .cu-pg .form-card {
        padding: 24px
    }

    .cu-pg .f-row {
        grid-template-columns: 1fr
    }

    .cu-pg .form-band {
        padding: 52px 0
    }
}

@media (max-width: 480px) {
    .cu-pg .strip-h1 {
        font-size: 38px
    }

    .cu-pg .strip-text {
        padding: 24px
    }

    .cu-pg .strip-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .cu-pg .meta-h {
        font-size: 21px
    }

    .cu-pg .btn-sub {
        width: 100%;
        text-align: center
    }
}

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

.pg-ok .ok-wrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.pg-ok .ok-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 52px;
    display: block
}

.pg-ok .ok-icon circle {
    fill: none;
    stroke: #2699D5;
    stroke-width: 2.5
}

.pg-ok .ok-icon polyline {
    fill: none;
    stroke: #2699D5;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pg-ok .ok-head {
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1b2a3b
}

.pg-ok .ok-head span {
    color: #2699D5
}

.pg-ok .ok-txt {
    font-size: 21px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2e3d4f;
    margin-bottom: 52px
}

.pg-ok .ok-card {
    background: linear-gradient(263deg, #D9E3E3 0%, #f4f8fb 60%, #fff 100%);
    border-radius: 16px;
    padding: 52px 24px;
    box-shadow: -1px 6px 20px 1px #2699d51c;
    margin-bottom: 52px
}

.pg-ok .ok-card .ok-detail {
    font-size: 14px;
    line-height: 2;
    letter-spacing: .02em;
    color: #2e3d4f
}

.pg-ok .ok-card .ok-detail strong {
    color: #1b2a3b
}

.pg-ok .ok-back {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .02em;
    line-height: 1.6;
    color: #2699D5;
    text-decoration: none;
    border-bottom: 1px solid #2699d559;
    padding-bottom: 2px;
    transition: color .45s cubic-bezier(0.22, 1, 0.36, 1), border-color .6s ease-in-out, filter .25s ease-in-out;
    border-radius: 6px
}

.pg-ok .ok-back:hover {
    color: #1b2a3b;
    border-color: #1b2a3b;
    filter: brightness(0.85)
}

.pg-ok .ok-back:focus {
    outline: 2px solid #2699D5;
    outline-offset: 4px
}

@media (max-width: 480px) {
    .pg-ok {
        padding: 52px 12px
    }

    .pg-ok .ok-head {
        font-size: 21px
    }

    .pg-ok .ok-txt {
        font-size: 14px
    }

    .pg-ok .ok-card {
        padding: 24px 12px
    }
}