html,
body {
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    scrollbar-gutter: stable;
    font-family: "Open Sans", sans-serif;
}

.hd-bar {
    background: linear-gradient(135deg, #014856 0%, #013a45 60%, #012e38 100%);
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
}

.hd-bar__strip {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 88px;
}

.hd-contacts {
    display: flex;
    align-items: center;
    gap: 24px;
    order: 1;
}

.hd-contacts__link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #D2DEE1;
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    line-height: 1.2;
    padding: 8px;
    border-radius: 8px;
    transition: color 0.25s ease-in-out, background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.hd-contacts__link:hover,
.hd-contacts__link:focus {
    color: #ffffff;
    background-color: rgba(210, 222, 225, 0.12);
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 222, 225, 0.35);
}

.hd-contacts__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: #65707F;
}

.hd-contacts__link:hover .hd-contacts__icon,
.hd-contacts__link:focus .hd-contacts__icon {
    fill: #D2DEE1;
}

.hd-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(210, 222, 225, 0.2);
    align-self: center;
}

.hd-right {
    display: flex;
    align-items: center;
    gap: 24px;
    order: 2;
}

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

.hd-brand__sep {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(210, 222, 225, 0.3), transparent);
}

.hd-logo-mount {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 48px;
    background-color: #ffffff;
    border: 2px solid rgba(210, 222, 225, 0.5);
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
    padding: 8px;
    flex-shrink: 0;
    text-decoration: none;
}

.hd-logo-mount__img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.hd-wordmark {
    font-family: "Lora", serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.hd-wordmark__sub {
    display: block;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #D2DEE1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 4px;
}

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

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

.hd-nav__item {
    display: flex;
}

.hd-nav__link {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    color: #D2DEE1;
    text-decoration: none;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease-in-out;
    min-height: 44px;
}

.hd-nav__link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background-color: rgba(210, 222, 225, 0.15);
    border-radius: 8px;
    transition: height 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.hd-nav__link:hover::before,
.hd-nav__link:focus::before {
    height: 100%;
}

.hd-nav__link:hover,
.hd-nav__link:focus {
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 222, 225, 0.3);
}

.hd-nav__label {
    position: relative;
    z-index: 1;
}

.hd-nav__link--active {
    color: #ffffff;
    background-color: rgba(210, 222, 225, 0.18);
}

@media (max-width: 1024px) {
    .hd-bar__strip {
        padding: 0 24px;
        flex-wrap: wrap;
        min-height: auto;
        gap: 8px;
    }

    .hd-contacts {
        order: 3;
        width: 100%;
        justify-content: flex-end;
        padding: 8px 0;
        border-top: 1px solid rgba(210, 222, 225, 0.12);
    }

    .hd-right {
        order: 1;
        padding: 24px 0 8px;
    }

    .hd-nav {
        order: 2;
        width: 100%;
        padding: 0 0 8px;
    }

    .hd-nav__list {
        gap: 8px;
    }

    .hd-nav__link {
        padding: 8px 16px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .hd-bar__strip {
        padding: 0 24px;
    }

    .hd-contacts {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hd-nav__list {
        gap: 8px;
    }

    .hd-nav__link {
        padding: 8px 12px;
    }

    .hd-wordmark {
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .hd-bar__strip {
        padding: 0 8px;
    }

    .hd-contacts__link {
        font-size: 15px;
        padding: 8px;
    }

    .hd-nav__link {
        padding: 8px;
        font-size: 15px;
    }
}

.ft-base {
    background-color: #65707F;
    box-shadow: -1px 2px 3px -1px rgba(101, 112, 127, 0.06);
}

.ft-base__shell {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px 24px;
}

.ft-base__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: start;
    gap: 40px;
}

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

.ft-logo-mount {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 48px;
    background-color: #ffffff;
    border: 2px solid rgba(210, 222, 225, 0.6);
    box-shadow: -1px 6px 22px -1px rgba(101, 112, 127, 0.08);
    padding: 8px;
    text-decoration: none;
}

.ft-logo-mount__img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
}

.ft-brand__name {
    font-family: "Lora", serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.ft-brand__tagline {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: #D2DEE1;
    line-height: 1.55;
    max-width: 220px;
}

.ft-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.ft-links__label {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #D2DEE1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.ft-links__item {
    display: flex;
}

.ft-links__anchor {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: rgba(210, 222, 225, 0.8);
    text-decoration: none;
    line-height: 1.55;
    padding: 8px 0;
    border-radius: 8px;
    transition: color 0.25s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.ft-links__anchor:hover,
.ft-links__anchor:focus {
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 222, 225, 0.3);
}

.ft-contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.ft-contact-block__label {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #D2DEE1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.ft-contact-block__row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ft-contact-block__icon {
    width: 16px;
    height: 16px;
    fill: #D2DEE1;
    flex-shrink: 0;
}

.ft-contact-block__link {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: rgba(210, 222, 225, 0.85);
    text-decoration: none;
    line-height: 1.55;
    transition: color 0.25s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.ft-contact-block__link:hover,
.ft-contact-block__link:focus {
    color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(210, 222, 225, 0.3);
}

.ft-contact-block__addr {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: rgba(210, 222, 225, 0.7);
    line-height: 1.55;
}

.ft-base__rule {
    border: none;
    border-top: 1px solid rgba(210, 222, 225, 0.2);
    margin: 40px 0 24px;
}

.ft-base__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.ft-base__copy {
    font-family: "Open Sans", sans-serif;
    font-size: 15px;
    color: rgba(210, 222, 225, 0.65);
    line-height: 1.55;
}

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

    .ft-brand {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .ft-base__shell {
        padding: 40px 24px 24px;
    }

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

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

    .ft-base__bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 375px) {
    .ft-base__shell {
        padding: 40px 8px 24px;
    }
}

.doc-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #014856;
    background: #ffffff;
}

.doc-wrapper h1 {
    font-size: 51px;
    line-height: 1.2;
    font-weight: 700;
    color: #014856;
    margin-bottom: 40px;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #D2DEE1;
}

.doc-wrapper h2 {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 600;
    color: #014856;
    margin-top: 80px;
    margin-bottom: 24px;
}

.doc-wrapper h3 {
    font-size: 27px;
    line-height: 1.55;
    font-weight: 600;
    color: #014856;
    margin-top: 40px;
    margin-bottom: 24px;
}

.doc-wrapper h4 {
    font-size: 21px;
    line-height: 1.55;
    font-weight: 600;
    color: #014856;
    margin-top: 40px;
    margin-bottom: 8px;
}

.doc-wrapper h5 {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 600;
    color: #65707F;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.doc-wrapper h6 {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
    color: #65707F;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.doc-wrapper p {
    font-size: 17px;
    line-height: 1.8;
    color: #2b4a51;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 72ch;
}

.doc-wrapper strong,
.doc-wrapper b {
    font-weight: 700;
    color: #014856;
}

.doc-wrapper em,
.doc-wrapper i {
    font-style: italic;
    color: #65707F;
}

.doc-wrapper a {
    color: #014856;
    text-decoration: underline;
    text-decoration-color: #D2DEE1;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.25s ease-in-out, text-decoration-color 0.35s ease-in-out;
}

.doc-wrapper a:hover {
    color: #65707F;
    text-decoration-color: #65707F;
}

.doc-wrapper a:focus-visible {
    outline: 2px solid #014856;
    outline-offset: 3px;
    border-radius: 8px;
}

.doc-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06), -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
}

.doc-wrapper thead {
    background: #014856;
}

.doc-wrapper thead th {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
    text-align: left;
    padding: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: none;
}

.doc-wrapper tbody {
    background: #ffffff;
}

.doc-wrapper tbody tr {
    border-bottom: 1px solid #D2DEE1;
    transition: background-color 0.25s ease-in-out;
}

.doc-wrapper tbody tr:last-child {
    border-bottom: none;
}

.doc-wrapper tbody tr:hover {
    background: #f4f8f9;
}

.doc-wrapper th {
    font-weight: 600;
    color: #ffffff;
    padding: 24px;
    text-align: left;
    vertical-align: top;
}

.doc-wrapper td {
    padding: 24px;
    color: #2b4a51;
    font-size: 15px;
    line-height: 1.8;
    vertical-align: top;
}

.doc-wrapper div {
    font-size: 17px;
    line-height: 1.8;
    color: #2b4a51;
}

@media (max-width: 1024px) {
    .doc-wrapper {
        padding: 80px 40px;
    }

    .doc-wrapper h1 {
        font-size: 37px;
    }

    .doc-wrapper h2 {
        font-size: 27px;
        margin-top: 40px;
    }

    .doc-wrapper h3 {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    .doc-wrapper {
        padding: 40px 24px;
    }

    .doc-wrapper h1 {
        font-size: 27px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .doc-wrapper h2 {
        font-size: 21px;
        margin-top: 40px;
    }

    .doc-wrapper h3 {
        font-size: 17px;
        margin-top: 24px;
    }

    .doc-wrapper h4 {
        font-size: 17px;
        margin-top: 24px;
    }

    .doc-wrapper p {
        font-size: 15px;
        max-width: 100%;
    }

    .doc-wrapper div {
        font-size: 15px;
    }

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

    .doc-wrapper thead th,
    .doc-wrapper th,
    .doc-wrapper td {
        padding: 24px 24px;
        white-space: nowrap;
    }
}

@media (max-width: 375px) {
    .doc-wrapper {
        padding: 24px 24px;
    }

    .doc-wrapper h1 {
        font-size: 21px;
    }

    .doc-wrapper h2 {
        font-size: 17px;
        margin-top: 24px;
    }

    .doc-wrapper h3 {
        font-size: 15px;
    }

    .doc-wrapper p,
    .doc-wrapper div {
        font-size: 15px;
        line-height: 1.55;
    }

    .doc-wrapper thead th,
    .doc-wrapper th,
    .doc-wrapper td {
        padding: 8px 24px;
    }
}

.abt {
    background: #ffffff;
    overflow-x: clip;
    position: relative;
}

.abt__geo {
    position: fixed;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border: 2px solid rgba(1, 72, 86, 0.07);
    border-radius: 48px;
    animation: abt-spin 28s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.abt__geo--inner {
    position: fixed;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border: 1.5px solid rgba(1, 72, 86, 0.05);
    border-radius: 48px;
    animation: abt-spin 18s linear infinite reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes abt-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.abt__band--top {
    background: #014856;
    position: relative;
    z-index: 1;
}

.abt__band--light {
    background: #f4f7f8;
    position: relative;
    z-index: 1;
}

.abt__title-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.abt__img-frame {
    width: 100%;
    max-width: 1100px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
}

.abt__img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt__img-frame:hover img {
    transform: scale(1.03);
}

.abt__img-fade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, rgba(1, 72, 86, 0.55) 0%, transparent 100%);
    pointer-events: none;
}

.abt__deco-dot {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: rgba(1, 72, 86, 0.18);
    pointer-events: none;
}

.abt__deco-dot--sm {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(210, 222, 225, 0.45);
    pointer-events: none;
}

.abt__title-text {
    padding: 40px 24px 80px;
    max-width: 820px;
}

.abt__eyebrow {
    display: inline-block;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D2DEE1;
    margin-bottom: 24px;
}

.abt__h1 {
    font-size: 51px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 24px;
}

.abt__h1 span {
    color: #D2DEE1;
}

.abt__lead {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(210, 222, 225, 0.85);
    margin: 0;
}

.abt__wave-div {
    position: relative;
    height: 64px;
    background: #014856;
    overflow: hidden;
}

.abt__wave-div svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

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

.abt__story-fixed {
    position: sticky;
    top: 40px;
}

.abt__label {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #014856;
    display: block;
    margin-bottom: 24px;
}

.abt__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    margin: 0 0 24px;
}

.abt__h2 span {
    color: #65707F;
}

.abt__stat-pair {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.abt__stat {
    border-top: 1px solid #D2DEE1;
    padding-top: 24px;
}

.abt__stat-num {
    font-size: 51px;
    line-height: 1.2;
    color: #014856;
    display: block;
}

.abt__stat-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #65707F;
    margin: 8px 0 0;
}

.abt__story-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abt__para--intro {
    font-size: 21px;
    line-height: 1.8;
    color: #014856;
    margin: 0;
}

.abt__para {
    font-size: 17px;
    line-height: 1.8;
    color: #65707F;
    margin: 0;
}

.abt__para span {
    color: #014856;
}

.abt__img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.abt__img-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
    cursor: pointer;
}

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

.abt__img-card:hover img {
    transform: scale(1.06);
}

.abt__img-card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(1, 72, 86, 0.82) 0%, transparent 100%);
    font-size: 15px;
    line-height: 1.55;
    color: #ffffff;
    transform: translateY(8px);
    opacity: 0;
    transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
}

.abt__img-card:hover .abt__img-card-caption {
    opacity: 1;
    transform: translateY(0);
}

.abt__numbered {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abt__item {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: start;
}

.abt__item-num {
    font-size: 51px;
    line-height: 1.2;
    color: rgba(1, 72, 86, 0.1);
    text-align: right;
    padding-top: 8px;
}

.abt__item-body {
    padding-top: 8px;
}

.abt__item-h {
    font-size: 21px;
    line-height: 1.2;
    color: #014856;
    margin: 0 0 8px;
}

.abt__item-p {
    font-size: 15px;
    line-height: 1.8;
    color: #65707F;
    margin: 0;
}

.abt__team-strip {
    background: #014856;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.abt__metrics {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.abt__metric {
    text-align: center;
    padding: 40px 24px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.25s ease-in-out;
    cursor: default;
}

.abt__metric:hover {
    background: rgba(255, 255, 255, 0.1);
}

.abt__metric-val {
    font-size: 51px;
    line-height: 1.2;
    color: #D2DEE1;
    display: block;
}

.abt__metric-label {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(210, 222, 225, 0.7);
    margin-top: 8px;
    display: block;
}

.abt__profiles {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px;
}

.abt__profiles-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.abt__h3 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    margin: 0;
}

.abt__profiles-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #65707F;
    margin: 0;
}

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

.abt__card {
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06);
    transition: box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.abt__card:hover {
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
    transform: scale(1.02);
}

.abt__card-img {
    position: relative;
    overflow: hidden;
}

.abt__card-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.abt__card:hover .abt__card-img img {
    transform: scale(1.05);
}

.abt__card-body {
    padding: 24px;
}

.abt__card-name {
    font-size: 21px;
    line-height: 1.2;
    color: #014856;
    margin: 0 0 8px;
}

.abt__card-role {
    font-size: 15px;
    line-height: 1.55;
    color: #65707F;
    margin: 0 0 24px;
    display: block;
}

.abt__card-bio {
    font-size: 15px;
    line-height: 1.8;
    color: #65707F;
    margin: 0;
}

.abt__checkerboard-btn {
    display: inline-block;
    padding: 24px 40px;
    font-size: 17px;
    line-height: 1.2;
    color: #ffffff;
    background: #014856;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    transition: color 0.35s ease-in-out;
    margin-top: 40px;
}

.abt__checkerboard-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.12) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.12) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.12) 75%);
    background-size: 16px 16px;
    background-position: 0 0, 0 8px, 8px -8px, -8px 0;
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
}

.abt__checkerboard-btn:hover::before {
    opacity: 1;
}

.abt__checkerboard-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: height 0.35s ease-in-out;
    z-index: 0;
}

.abt__checkerboard-btn:hover::after {
    height: 100%;
}

.abt__checkerboard-btn-text {
    position: relative;
    z-index: 1;
}

.abt__wave2-div {
    position: relative;
    height: 64px;
    background: #f4f7f8;
    overflow: hidden;
}

.abt__wave2-div svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

@keyframes abt-appear {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    70% {
        transform: scale(1.04);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.abt__appear {
    animation: abt-appear 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.abt__appear--d1 {
    animation-delay: 0.1s;
}

.abt__appear--d2 {
    animation-delay: 0.2s;
}

.abt__appear--d3 {
    animation-delay: 0.3s;
}

@media (max-width: 1280px) {
    .abt__title-wrap {
        padding: 80px 40px 0;
    }

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

    .abt__metrics {
        padding: 0 40px;
    }

    .abt__profiles {
        padding: 80px 40px;
    }
}

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

    .abt__story-fixed {
        position: static;
    }

    .abt__stat-pair {
        flex-direction: row;
        gap: 40px;
    }

    .abt__metrics {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .abt__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt__h1 {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    .abt__title-wrap {
        padding: 40px 24px 0;
    }

    .abt__img-frame img {
        height: 300px;
    }

    .abt__title-text {
        padding: 24px 24px 40px;
    }

    .abt__h1 {
        font-size: 27px;
    }

    .abt__story {
        padding: 40px 24px;
    }

    .abt__stat-pair {
        flex-direction: column;
    }

    .abt__img-pair {
        grid-template-columns: 1fr;
    }

    .abt__metrics {
        padding: 0 24px;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .abt__profiles {
        padding: 40px 24px;
    }

    .abt__grid {
        grid-template-columns: 1fr;
    }

    .abt__profiles-head {
        margin-bottom: 40px;
    }
}

@media (max-width: 375px) {
    .abt__h1 {
        font-size: 21px;
    }

    .abt__metrics {
        grid-template-columns: 1fr;
    }

    .abt__metric-val {
        font-size: 37px;
    }

    .abt__stat-num {
        font-size: 37px;
    }
}

.ld-pg {
    overflow-x: hidden;
}

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

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

.ld-pg .opener {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(160deg, #d2dee1 0%, #f0f4f5 55%, #ffffff 100%);
    position: relative;
}

.ld-pg .opener__strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.ld-pg .opener__img-col {
    flex: 0 0 420px;
    position: relative;
}

@media (max-width: 1024px) {
    .ld-pg .opener__img-col {
        flex: 0 0 320px;
    }
}

@media (max-width: 768px) {
    .ld-pg .opener__strip {
        flex-direction: column;
    }

    .ld-pg .opener__img-col {
        flex: 0 0 auto;
        width: 100%;
    }
}

.ld-pg .opener__frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
}

.ld-pg .opener__frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 0%, rgba(1, 72, 86, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse at 0% 100%, rgba(1, 72, 86, 0.18) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.ld-pg .opener__photo {
    display: block;
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
}

.ld-pg .opener__border-accent {
    position: absolute;
    top: -8px;
    left: -8px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 2px solid rgba(1, 72, 86, 0.18);
    border-radius: 20px;
    pointer-events: none;
}

.ld-pg .opener__dot-a {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background: rgba(1, 72, 86, 0.12);
    pointer-events: none;
}

.ld-pg .opener__dot-b {
    position: absolute;
    bottom: -8px;
    right: 24px;
    width: 16px;
    height: 16px;
    border-radius: 48px;
    background: rgba(1, 72, 86, 0.18);
    pointer-events: none;
}

.ld-pg .opener__text-col {
    flex: 1 1 0;
}

.ld-pg .opener__label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #014856;
    margin-bottom: 24px;
    font-weight: 600;
}

.ld-pg .opener__h1 {
    font-size: 51px;
    line-height: 1.2;
    color: #014856;
    margin-bottom: 24px;
    font-weight: 700;
}

.ld-pg .opener__h1 span {
    font-size: 68px;
    display: block;
    line-height: 1.2;
    color: #014856;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .ld-pg .opener__h1 {
        font-size: 37px;
    }

    .ld-pg .opener__h1 span {
        font-size: 51px;
    }
}

@media (max-width: 768px) {
    .ld-pg .opener__h1 {
        font-size: 27px;
    }

    .ld-pg .opener__h1 span {
        font-size: 37px;
    }
}

.ld-pg .opener__desc {
    font-size: 17px;
    line-height: 1.8;
    color: #3a4a50;
    max-width: 520px;
}

.ld-pg .opener__desc em {
    color: #014856;
    font-style: normal;
    font-weight: 600;
}

.ld-pg .approach {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #ffffff;
}

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

@media (max-width: 768px) {
    .ld-pg .approach__grid {
        grid-template-columns: 1fr;
    }
}

.ld-pg .approach__num {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    color: rgba(1, 72, 86, 0.07);
    display: block;
    margin-bottom: 8px;
    user-select: none;
}

.ld-pg .approach__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    margin-bottom: 24px;
    font-weight: 700;
}

.ld-pg .approach__lead {
    font-size: 21px;
    line-height: 1.55;
    color: #014856;
    margin-bottom: 24px;
    font-weight: 500;
}

.ld-pg .approach__body {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5560;
}

.ld-pg .approach__body em {
    color: #014856;
    font-style: normal;
    font-weight: 600;
}

.ld-pg .approach__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ld-pg .approach__item {
    padding: 24px;
    border-radius: 12px;
    background: #f5f8f9;
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ld-pg .approach__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0%;
    background: #014856;
    border-radius: 8px 0 0 8px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ld-pg .approach__item:hover::after {
    height: 100%;
}

.ld-pg .approach__item:hover {
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
}

.ld-pg .approach__item-h {
    font-size: 17px;
    line-height: 1.55;
    font-weight: 700;
    color: #014856;
    margin-bottom: 8px;
}

.ld-pg .approach__item-p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6570;
}

.ld-pg .longval {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(180deg, #edf2f3 0%, #ffffff 100%);
    position: relative;
}

.ld-pg .longval__dots {
    position: absolute;
    top: 40px;
    right: 40px;
    pointer-events: none;
}

.ld-pg .longval__dot {
    display: inline-block;
    border-radius: 48px;
    background: rgba(1, 72, 86, 0.14);
}

.ld-pg .longval__dot--lg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.ld-pg .longval__dot--md {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.ld-pg .longval__dot--sm {
    width: 10px;
    height: 10px;
}

.ld-pg .longval__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: center;
}

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

.ld-pg .longval__num {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    color: rgba(1, 72, 86, 0.07);
    display: block;
    margin-bottom: 8px;
    user-select: none;
}

.ld-pg .longval__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    margin-bottom: 24px;
    font-weight: 700;
}

.ld-pg .longval__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
}

.ld-pg .longval__img-wrap:hover .longval__caption {
    opacity: 1;
    transform: translateY(0);
}

.ld-pg .longval__photo {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.ld-pg .longval__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: rgba(1, 72, 86, 0.88);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ld-pg .longval__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 375px) {
    .ld-pg .longval__metrics {
        grid-template-columns: 1fr;
    }
}

.ld-pg .longval__metric {
    padding: 24px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06);
}

.ld-pg .longval__metric-val {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 800;
    color: #014856;
    display: block;
}

.ld-pg .longval__metric-label {
    font-size: 15px;
    line-height: 1.55;
    color: #65707f;
    margin-top: 8px;
    display: block;
}

.ld-pg .longval__body {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5560;
}

.ld-pg .longval__body em {
    color: #014856;
    font-style: normal;
    font-weight: 600;
}

.ld-pg .team {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #014856;
}

.ld-pg .team__hd {
    margin-bottom: 40px;
}

.ld-pg .team__num {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.07);
    display: block;
    user-select: none;
}

.ld-pg .team__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 24px;
}

.ld-pg .team__sub {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(210, 222, 225, 0.85);
    max-width: 620px;
}

.ld-pg .team__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .ld-pg .team__row {
        grid-template-columns: 1fr;
    }
}

.ld-pg .team__card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(210, 222, 225, 0.15);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.ld-pg .team__card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(210, 222, 225, 0.3);
}

.ld-pg .team__name {
    font-size: 21px;
    line-height: 1.55;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.ld-pg .team__role {
    font-size: 15px;
    line-height: 1.55;
    color: #d2dee1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600;
}

.ld-pg .team__bio {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(210, 222, 225, 0.8);
}

.ld-pg .team__bio em {
    color: #d2dee1;
    font-style: normal;
    font-weight: 600;
}

.ld-pg .rep {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #ffffff;
    position: relative;
}

.ld-pg .rep__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(1, 72, 86, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: 14px 14px;
    pointer-events: none;
    opacity: 0.6;
}

.ld-pg .rep__inner {
    position: relative;
    z-index: 1;
}

.ld-pg .rep__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .ld-pg .rep__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.ld-pg .rep__num {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    color: rgba(1, 72, 86, 0.07);
    display: block;
    user-select: none;
}

.ld-pg .rep__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    font-weight: 700;
    margin-bottom: 24px;
}

.ld-pg .rep__body {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5560;
}

.ld-pg .rep__body em {
    color: #014856;
    font-style: normal;
    font-weight: 600;
}

.ld-pg .rep__img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
}

.ld-pg .rep__img-wrap:hover .rep__caption {
    opacity: 1;
    transform: translateY(0);
}

.ld-pg .rep__photo {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.ld-pg .rep__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: rgba(1, 72, 86, 0.88);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

@media (max-width: 768px) {
    .ld-pg .rep__refs {
        grid-template-columns: 1fr;
    }
}

.ld-pg .rep__ref {
    padding: 24px;
    border-radius: 12px;
    background: #f5f8f9;
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06);
}

.ld-pg .rep__ref-who {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
    color: #014856;
    margin-bottom: 8px;
}

.ld-pg .rep__ref-text {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6570;
}

.ld-pg .fit {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #f0f4f5;
}

.ld-pg .fit__layout {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 80px;
    align-items: start;
}

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

.ld-pg .fit__num {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    color: rgba(1, 72, 86, 0.07);
    display: block;
    user-select: none;
}

.ld-pg .fit__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    font-weight: 700;
    margin-bottom: 24px;
}

.ld-pg .fit__lead {
    font-size: 21px;
    line-height: 1.55;
    color: #014856;
    margin-bottom: 24px;
    font-weight: 500;
}

.ld-pg .fit__body {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5560;
    margin-bottom: 40px;
}

.ld-pg .fit__body em {
    color: #014856;
    font-style: normal;
    font-weight: 600;
}

.ld-pg .fit__checks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ld-pg .fit__check {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
}

.ld-pg .fit__check-mark {
    flex: 0 0 32px;
    height: 32px;
    border-radius: 8px;
    background: #014856;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.ld-pg .fit__check-mark svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ld-pg .fit__check-text {
    font-size: 17px;
    line-height: 1.8;
    color: #3a4a50;
}

.ld-pg .fit__aside {
    padding: 40px;
    border-radius: 20px;
    background: #014856;
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
}

.ld-pg .fit__aside-h {
    font-size: 21px;
    line-height: 1.55;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 24px;
}

.ld-pg .fit__aside-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ld-pg .fit__aside-item {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(210, 222, 225, 0.2);
}

.ld-pg .fit__aside-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ld-pg .fit__aside-label {
    font-size: 15px;
    line-height: 1.55;
    color: #d2dee1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.ld-pg .fit__aside-val {
    font-size: 17px;
    line-height: 1.55;
    color: #ffffff;
}

.ld-pg .lasting {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #ffffff;
}

.ld-pg .lasting__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

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

.ld-pg .lasting__num {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 800;
    color: rgba(1, 72, 86, 0.07);
    display: block;
    user-select: none;
}

.ld-pg .lasting__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    font-weight: 700;
    margin-bottom: 24px;
}

.ld-pg .lasting__lead {
    font-size: 21px;
    line-height: 1.55;
    color: #014856;
    margin-bottom: 24px;
    font-weight: 500;
}

.ld-pg .lasting__body {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5560;
}

.ld-pg .lasting__body em {
    color: #014856;
    font-style: normal;
    font-weight: 600;
}

.ld-pg .lasting__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
}

.ld-pg .lasting__img-wrap:hover .lasting__caption {
    opacity: 1;
    transform: translateY(0);
}

.ld-pg .lasting__photo {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.ld-pg .lasting__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: rgba(1, 72, 86, 0.88);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.55;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ld-pg .lasting__mosaic {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

@media (max-width: 768px) {
    .ld-pg .lasting__mosaic {
        grid-template-columns: 1fr;
    }
}

.ld-pg .lasting__tile {
    padding: 40px;
    border-radius: 12px;
    background: #f5f8f9;
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06);
    transition: box-shadow 0.28s ease-in, transform 0.28s ease-in;
}

.ld-pg .lasting__tile:hover {
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
    transform: translateY(-2px);
}

.ld-pg .lasting__tile--wide {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: #014856;
}

.ld-pg .lasting__tile-h {
    font-size: 21px;
    line-height: 1.55;
    font-weight: 700;
    color: #014856;
    margin-bottom: 8px;
}

.ld-pg .lasting__tile--wide .lasting__tile-h {
    color: #ffffff;
}

.ld-pg .lasting__tile-p {
    font-size: 15px;
    line-height: 1.8;
    color: #5a6570;
}

.ld-pg .lasting__tile--wide .lasting__tile-p {
    color: rgba(210, 222, 225, 0.85);
}

@keyframes ld-shake {
    0% {
        transform: translateX(0);
    }

    15% {
        transform: translateX(-5px);
    }

    30% {
        transform: translateX(5px);
    }

    45% {
        transform: translateX(-4px);
    }

    60% {
        transform: translateX(4px);
    }

    75% {
        transform: translateX(-2px);
    }

    90% {
        transform: translateX(2px);
    }

    100% {
        transform: translateX(0);
    }
}

.ld-pg .lasting__tile--wide {
    animation: ld-shake 0.6s ease-in 2.8s 1;
}

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

.lp-prog .prog-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
    padding-top: 40px;
    padding-bottom: 80px;
}

.lp-prog .prog-split__text {
    background: #014856;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 40px 80px 80px;
    position: relative;
}

.lp-prog .prog-split__visual {
    background: #D2DEE1;
    position: relative;
    overflow: hidden;
}

.lp-prog .prog-split__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(1, 72, 86, 0.18) 0%, rgba(101, 112, 127, 0.22) 100%);
    z-index: 1;
}

.lp-prog .prog-split__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.82;
    filter: blur(0px) saturate(0.9);
    transition: opacity 0.4s ease-in-out;
}

.lp-prog .prog-split__img--foreground {
    position: absolute;
    inset: 0;
    filter: blur(3.5px) saturate(0.75);
    opacity: 0.45;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lp-prog .prog-split__deco {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 180px;
    height: 180px;
    border-radius: 48px;
    background: rgba(1, 72, 86, 0.12);
    z-index: 3;
    border: 2px solid rgba(1, 72, 86, 0.18);
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
}

.lp-prog .prog-split__eyebrow {
    font-size: 15px;
    line-height: 1.55;
    color: #D2DEE1;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 24px;
    opacity: 0.78;
}

.lp-prog .prog-split__h1 {
    font-size: 51px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    max-width: 520px;
}

.lp-prog .prog-split__h1 span {
    color: #D2DEE1;
}

.lp-prog .prog-split__desc {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(210, 222, 225, 0.88);
    max-width: 480px;
    margin-bottom: 40px;
}

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

.lp-prog .prog-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-prog .prog-stat__num {
    font-size: 37px;
    line-height: 1.2;
    color: #ffffff;
}

.lp-prog .prog-stat__label {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(210, 222, 225, 0.72);
}

.lp-prog .prog-split__sidebar {
    position: absolute;
    right: -1px;
    top: 0;
    width: 6px;
    height: 100%;
    background: #014856;
    z-index: 4;
}

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

.lp-prog .prog-curriculum::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    background: #014856;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 0;
}

.lp-prog .prog-curriculum__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 1;
}

.lp-prog .prog-curriculum__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    align-items: start;
}

.lp-prog .prog-curriculum__label {
    font-size: 15px;
    line-height: 1.55;
    color: #65707F;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
}

.lp-prog .prog-curriculum__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    position: relative;
}

.lp-prog .prog-curriculum__h2-fade {
    position: absolute;
    top: -24px;
    left: -8px;
    font-size: 68px;
    line-height: 1.2;
    color: rgba(1, 72, 86, 0.06);
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.lp-prog .prog-curriculum__intro {
    font-size: 21px;
    line-height: 1.8;
    color: #014856;
    margin-bottom: 24px;
}

.lp-prog .prog-curriculum__body {
    font-size: 17px;
    line-height: 1.8;
    color: #65707F;
}

.lp-prog .prog-curriculum__body span {
    color: #014856;
}

.lp-prog .prog-timeline {
    position: relative;
    padding-top: 40px;
}

.lp-prog .prog-timeline__track {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
}

.lp-prog .prog-timeline__track::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #014856 0%, #D2DEE1 100%);
    z-index: 0;
}

.lp-prog .prog-timeline__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.lp-prog .prog-timeline__dot {
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background: #014856;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.2;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
    flex-shrink: 0;
    transition: background 0.25s ease-in-out, transform 0.25s ease-in-out;
}

.lp-prog .prog-timeline__step:hover .prog-timeline__dot {
    background: #65707F;
    transform: scale(1.12);
}

.lp-prog .prog-timeline__card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
    width: calc(100% - 16px);
    border-top: 3px solid #D2DEE1;
    transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-prog .prog-timeline__step:hover .prog-timeline__card {
    border-color: #014856;
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
}

.lp-prog .prog-timeline__phase {
    font-size: 15px;
    line-height: 1.55;
    color: #65707F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.lp-prog .prog-timeline__cardh {
    font-size: 17px;
    line-height: 1.55;
    color: #014856;
    margin-bottom: 8px;
}

.lp-prog .prog-timeline__cardp {
    font-size: 15px;
    line-height: 1.8;
    color: #65707F;
}

.lp-prog .prog-details {
    background: #014856;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lp-prog .prog-details__bg-anim {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 60%, rgba(101, 112, 127, 0.22) 0%, rgba(1, 72, 86, 0.0) 70%);
    background-size: 120% 120%;
    animation: bgbreathe 10s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes bgbreathe {
    0% {
        background-size: 120% 120%;
    }

    50% {
        background-size: 140% 140%;
    }

    100% {
        background-size: 120% 120%;
    }
}

.lp-prog .prog-details__edge {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: #D2DEE1;
    z-index: 1;
}

.lp-prog .prog-details__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

.lp-prog .prog-details__top {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px;
}

.lp-prog .prog-details__label {
    font-size: 15px;
    line-height: 1.55;
    color: #D2DEE1;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    margin-bottom: 24px;
    opacity: 0.72;
}

.lp-prog .prog-details__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    position: relative;
}

.lp-prog .prog-details__h2-fade {
    position: absolute;
    top: -16px;
    left: -4px;
    font-size: 68px;
    line-height: 1.2;
    color: rgba(210, 222, 225, 0.06);
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.lp-prog .prog-details__intro {
    font-size: 21px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}

.lp-prog .prog-details__body {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(210, 222, 225, 0.82);
}

.lp-prog .prog-details__body span {
    color: #D2DEE1;
}

.lp-prog .prog-details__aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}

.lp-prog .prog-detail-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(210, 222, 225, 0.14);
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06);
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-prog .prog-detail-item:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(210, 222, 225, 0.3);
}

.lp-prog .prog-detail-item__num {
    font-size: 27px;
    line-height: 1.2;
    color: #D2DEE1;
    margin-bottom: 8px;
}

.lp-prog .prog-detail-item__label {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(210, 222, 225, 0.68);
}

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

.lp-prog .prog-module {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 24px;
    border: 1px solid rgba(210, 222, 225, 0.1);
    position: relative;
    transition: background 0.32s cubic-bezier(0.4, 0, 0.2, 1), transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.lp-prog .prog-module:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.lp-prog .prog-module__num {
    font-size: 51px;
    line-height: 1.2;
    color: rgba(210, 222, 225, 0.08);
    font-weight: 900;
    position: absolute;
    top: 16px;
    right: 24px;
    pointer-events: none;
    user-select: none;
}

.lp-prog .prog-module__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(210, 222, 225, 0.14);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-prog .prog-module__icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #D2DEE1;
    stroke-width: 1.8;
}

.lp-prog .prog-module__h3 {
    font-size: 17px;
    line-height: 1.55;
    color: #ffffff;
    margin-bottom: 8px;
}

.lp-prog .prog-module__p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(210, 222, 225, 0.72);
}

.lp-prog .prog-quote {
    position: relative;
    padding: 40px 0 0;
}

.lp-prog .prog-quote__mark {
    font-size: 68px;
    line-height: 1.2;
    color: rgba(210, 222, 225, 0.14);
    font-weight: 900;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.lp-prog .prog-quote__text {
    font-size: 21px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    padding-left: 40px;
    padding-top: 24px;
}

.lp-prog .prog-quote__attr {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(210, 222, 225, 0.6);
    padding-left: 40px;
    margin-top: 8px;
}

.lp-prog .prog-cta-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
}

.lp-prog .prog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 52px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.55;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.28s ease-in-out;
    text-decoration: none;
}

.lp-prog .prog-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: height 0.28s ease-in;
    z-index: 0;
}

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

.lp-prog .prog-btn span {
    position: relative;
    z-index: 1;
}

.lp-prog .prog-btn--primary {
    background: #D2DEE1;
    color: #014856;
}

.lp-prog .prog-btn--primary::before {
    background: #014856;
}

.lp-prog .prog-btn--primary:hover {
    color: #D2DEE1;
}

.lp-prog .prog-btn--ghost {
    background: transparent;
    color: #D2DEE1;
    border: 1.5px solid rgba(210, 222, 225, 0.4);
}

.lp-prog .prog-btn--ghost::before {
    background: rgba(210, 222, 225, 0.1);
}

.lp-prog .prog-btn--ghost:hover {
    color: #ffffff;
    border-color: rgba(210, 222, 225, 0.7);
}

@media (max-width: 1280px) {
    .lp-prog .prog-split__text {
        padding: 80px 40px 80px 40px;
    }

    .lp-prog .prog-curriculum__inner {
        padding: 0 40px;
    }

    .lp-prog .prog-details__inner {
        padding: 0 40px;
    }
}

@media (max-width: 1024px) {
    .lp-prog .prog-split {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .lp-prog .prog-split__h1 {
        font-size: 37px;
    }

    .lp-prog .prog-curriculum__header {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-prog .prog-timeline__track {
        flex-direction: column;
        gap: 24px;
    }

    .lp-prog .prog-timeline__track::before {
        display: none;
    }

    .lp-prog .prog-timeline__step {
        flex-direction: row;
        align-items: flex-start;
    }

    .lp-prog .prog-timeline__card {
        width: 100%;
    }

    .lp-prog .prog-details__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-prog .prog-details__aside {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0;
    }

    .lp-prog .prog-detail-item {
        flex: 1;
        min-width: 140px;
    }

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

@media (max-width: 768px) {
    .lp-prog .prog-split {
        grid-template-columns: 1fr;
    }

    .lp-prog .prog-split__visual {
        min-height: 320px;
    }

    .lp-prog .prog-split__text {
        padding: 40px 24px;
    }

    .lp-prog .prog-split__h1 {
        font-size: 27px;
    }

    .lp-prog .prog-split__stat-row {
        gap: 24px;
        flex-wrap: wrap;
    }

    .lp-prog .prog-curriculum__inner {
        padding: 0 24px;
    }

    .lp-prog .prog-details__inner {
        padding: 0 24px;
    }

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

    .lp-prog .prog-cta-row {
        flex-direction: column;
    }
}

@media (max-width: 375px) {
    .lp-prog .prog-split__h1 {
        font-size: 21px;
    }

    .lp-prog .prog-curriculum__h2 {
        font-size: 27px;
    }

    .lp-prog .prog-details__h2 {
        font-size: 27px;
    }

    .lp-prog .prog-split__stat-row {
        flex-direction: column;
        gap: 24px;
    }
}

.cu-pg {
    background: #ffffff;
    overflow-x: clip;
}

.cu-pg .reach {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.cu-pg .reach__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.cu-pg .reach__visual {
    position: relative;
}

.cu-pg .reach__img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/5;
}

.cu-pg .reach__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: saturate(0.85) brightness(0.92) sepia(0.18);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cu-pg .reach__img-frame:hover img {
    transform: scale(1.03);
}

.cu-pg .reach__img-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px dashed #014856;
    border-radius: 12px;
    pointer-events: none;
    opacity: 0.35;
}

.cu-pg .reach__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #014856;
    color: #D2DEE1;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.11);
    min-width: 160px;
}

.cu-pg .reach__badge-num {
    font-size: 51px;
    line-height: 1.2;
    color: #ffffff;
    display: block;
}

.cu-pg .reach__badge-sup {
    font-size: 21px;
    color: #D2DEE1;
    vertical-align: super;
}

.cu-pg .reach__badge-label {
    font-size: 15px;
    line-height: 1.55;
    color: #D2DEE1;
    margin-top: 8px;
    display: block;
}

.cu-pg .reach__text {
    padding-top: 40px;
}

.cu-pg .reach__eyebrow {
    font-size: 15px;
    line-height: 1.55;
    color: #65707F;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    display: block;
}

.cu-pg .reach__h1 {
    font-size: 51px;
    line-height: 1.2;
    color: #014856;
    margin-bottom: 24px;
}

.cu-pg .reach__h1 span {
    color: #014856;
    opacity: 0.55;
}

.cu-pg .reach__desc {
    font-size: 17px;
    line-height: 1.8;
    color: #65707F;
    margin-bottom: 40px;
}

.cu-pg .reach__desc strong {
    color: #014856;
}

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

.cu-pg .reach__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: #f4f7f8;
    border-radius: 12px;
    transition: background 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
}

.cu-pg .reach__item:hover {
    background: #D2DEE1;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
}

.cu-pg .reach__item-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 8px;
    background: #014856;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cu-pg .reach__item-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #D2DEE1;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cu-pg .reach__item-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cu-pg .reach__item-label {
    font-size: 15px;
    line-height: 1.2;
    color: #65707F;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cu-pg .reach__item-val {
    font-size: 17px;
    line-height: 1.55;
    color: #014856;
    text-decoration: none;
    transition: color 0.25s ease-in-out;
}

.cu-pg .reach__item-val:hover {
    color: #65707F;
}

.cu-pg .divider-diag {
    width: 100%;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.cu-pg .divider-diag::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #D2DEE1 0%, #014856 60%, #65707F 100%);
    clip-path: polygon(0 0, 100% 40%, 100% 100%, 0 100%);
    opacity: 0.18;
}

.cu-pg .form-band {
    background: #014856;
    position: relative;
    overflow: hidden;
}

.cu-pg .form-band__bg-anim {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(101, 112, 127, 0.22) 0%, transparent 70%);
    animation: bgshift 8s ease-in-out infinite alternate;
}

@keyframes bgshift {
    0% {
        background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(101, 112, 127, 0.22) 0%, transparent 70%);
    }

    100% {
        background: radial-gradient(ellipse 80% 60% at 75% 65%, rgba(210, 222, 225, 0.14) 0%, transparent 70%);
    }
}

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

.cu-pg .form-band__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 24px;
    position: relative;
    z-index: 1;
}

.cu-pg .form-band__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 80px;
}

.cu-pg .form-band__num {
    font-size: 68px;
    line-height: 1.2;
    color: #D2DEE1;
    opacity: 0.12;
    position: absolute;
    top: 40px;
    left: 24px;
    pointer-events: none;
    font-weight: 700;
}

.cu-pg .form-band__h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
}

.cu-pg .form-band__h2 em {
    color: #D2DEE1;
    font-style: normal;
}

.cu-pg .form-band__sub {
    font-size: 17px;
    line-height: 1.8;
    color: #D2DEE1;
    opacity: 0.85;
}

.cu-pg .form-band__metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
}

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

.cu-pg .metric-row__val {
    font-size: 37px;
    line-height: 1.2;
    color: #ffffff;
    white-space: nowrap;
}

.cu-pg .metric-row__val sup {
    font-size: 21px;
    color: #D2DEE1;
    vertical-align: super;
}

.cu-pg .metric-row__label {
    font-size: 15px;
    line-height: 1.55;
    color: #D2DEE1;
    opacity: 0.75;
    max-width: 140px;
}

.cu-pg .form-band__bar {
    width: 1px;
    height: 48px;
    background: rgba(210, 222, 225, 0.3);
    align-self: stretch;
    margin: 0 auto;
}

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

.cu-pg .contact-form__row--full {
    grid-column: 1 / -1;
}

.cu-pg .f-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cu-pg .f-group__label {
    font-size: 15px;
    line-height: 1.55;
    color: #D2DEE1;
    opacity: 0.85;
}

.cu-pg .f-group__input {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(210, 222, 225, 0.25);
    border-radius: 8px;
    padding: 24px;
    font-size: 17px;
    line-height: 1.55;
    color: #ffffff;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.28s ease-in-out, background 0.28s ease-in-out;
    caret-color: #D2DEE1;
}

.cu-pg .f-group__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cu-pg .f-group__input:focus {
    border-color: #D2DEE1;
    background: rgba(255, 255, 255, 0.12);
}

.cu-pg .size-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cu-pg .size-group__label {
    font-size: 15px;
    line-height: 1.55;
    color: #D2DEE1;
    opacity: 0.85;
    margin-bottom: 8px;
    display: block;
}

.cu-pg .size-group__opts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.cu-pg .size-opt {
    position: relative;
}

.cu-pg .size-opt__input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cu-pg .size-opt__btn {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 8px;
    border: 1px solid rgba(210, 222, 225, 0.3);
    font-size: 15px;
    line-height: 1.55;
    color: #D2DEE1;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    transition: background 0.28s ease-in-out, border-color 0.28s ease-in-out, color 0.28s ease-in-out;
    user-select: none;
}

.cu-pg .size-opt__input:checked+.size-opt__btn {
    background: #D2DEE1;
    border-color: #D2DEE1;
    color: #014856;
}

.cu-pg .size-opt__btn:hover {
    border-color: #D2DEE1;
    background: rgba(210, 222, 225, 0.12);
}

.cu-pg .size-opt__input:focus-visible+.size-opt__btn {
    outline: 2px solid #D2DEE1;
    outline-offset: 2px;
}

.cu-pg .privacy-row {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.cu-pg .privacy-row__check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    accent-color: #D2DEE1;
    margin-top: 4px;
    cursor: pointer;
}

.cu-pg .privacy-row__text {
    font-size: 15px;
    line-height: 1.8;
    color: #D2DEE1;
    opacity: 0.8;
}

.cu-pg .privacy-row__text a {
    color: #D2DEE1;
    opacity: 1;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease-in-out;
}

.cu-pg .privacy-row__text a:hover {
    opacity: 0.7;
}

.cu-pg .submit-row {
    grid-column: 1 / -1;
}

.cu-pg .submit-btn {
    position: relative;
    overflow: hidden;
    background: #D2DEE1;
    color: #014856;
    border: none;
    border-radius: 8px;
    padding: 24px 40px;
    font-size: 17px;
    line-height: 1.2;
    cursor: pointer;
    font-weight: 600;
    transition: color 0.35s ease-in-out;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
}

.cu-pg .submit-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #014856;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cu-pg .submit-btn:hover::before {
    height: 100%;
}

.cu-pg .submit-btn:hover {
    color: #D2DEE1;
}

.cu-pg .submit-btn__text {
    position: relative;
    z-index: 1;
}

.cu-pg .submit-btn:focus-visible {
    outline: 2px solid #D2DEE1;
    outline-offset: 3px;
}

@media (max-width: 1024px) {
    .cu-pg .reach__grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .cu-pg .reach__badge {
        right: 24px;
        bottom: -24px;
    }

    .cu-pg .reach__text {
        padding-top: 40px;
    }

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

    .cu-pg .form-band__metrics {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }

    .cu-pg .form-band__bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .cu-pg .reach {
        padding: 80px 24px 40px;
    }

    .cu-pg .reach__h1 {
        font-size: 37px;
    }

    .cu-pg .contact-form {
        grid-template-columns: 1fr;
    }

    .cu-pg .contact-form__row--full {
        grid-column: 1;
    }

    .cu-pg .privacy-row {
        grid-column: 1;
    }

    .cu-pg .submit-row {
        grid-column: 1;
    }

    .cu-pg .form-band__h2 {
        font-size: 27px;
    }

    .cu-pg .form-band__num {
        font-size: 51px;
    }

    .cu-pg .size-group__opts {
        flex-direction: column;
    }

    .cu-pg .form-band__metrics {
        flex-direction: column;
    }

    .cu-pg .metric-row {
        flex-direction: row;
    }
}

@media (max-width: 375px) {
    .cu-pg .reach__badge {
        right: 8px;
        min-width: 120px;
        padding: 24px 8px;
    }

    .cu-pg .reach__badge-num {
        font-size: 37px;
    }

    .cu-pg .f-group__input {
        padding: 24px 8px;
    }

    .cu-pg .submit-btn {
        padding: 24px;
        width: 100%;
    }
}

.cu-pg .reach__item {
    animation: slidein-left 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.cu-pg .reach__item:nth-child(1) {
    animation-delay: 0.08s;
}

.cu-pg .reach__item:nth-child(2) {
    animation-delay: 0.2s;
}

.cu-pg .reach__item:nth-child(3) {
    animation-delay: 0.32s;
}

@keyframes slidein-left {
    from {
        opacity: 0;
        transform: translateX(-32px);
    }

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

.cu-pg .form-band__h2 {
    animation: slidein-right 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

@keyframes slidein-right {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

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

.dgst {
    background: #ffffff;
    overflow-x: clip;
    position: relative;
}

.dgst *,
.dgst *::before,
.dgst *::after {
    box-sizing: border-box;
}

.dgst__hero {
    background: #014856;
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
}

.dgst__hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.dgst__hero-dots::before {
    content: "";
    position: absolute;
    top: 40px;
    right: 80px;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, rgba(210, 222, 225, 0.25) 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    border-radius: 8px;
}

.dgst__hero-dots::after {
    content: "";
    position: absolute;
    bottom: 24px;
    left: 40px;
    width: 120px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(210, 222, 225, 0.18) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    border-radius: 8px;
}

.dgst__hero-math {
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 280px;
    line-height: 1.2;
    color: rgba(210, 222, 225, 0.06);
    font-weight: 700;
    pointer-events: none;
    user-select: none;
    letter-spacing: -8px;
}

.dgst__hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.dgst__hero-left {
    flex: 0 0 auto;
    width: 60%;
}

.dgst__hero-label {
    display: inline-block;
    background: rgba(210, 222, 225, 0.15);
    border: 1px solid rgba(210, 222, 225, 0.3);
    color: #D2DEE1;
    font-size: 15px;
    line-height: 1.55;
    padding: 8px 24px;
    border-radius: 48px;
    margin-bottom: 40px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dgst__hero-heading {
    color: #ffffff;
    font-size: 51px;
    line-height: 1.2;
    margin: 0 0 24px 0;
    overflow: hidden;
}

.dgst__hero-heading span {
    display: inline-block;
    animation: letterDrop 0.5s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.dgst__hero-heading span:nth-child(1) {
    animation-delay: 0.03s;
}

.dgst__hero-heading span:nth-child(2) {
    animation-delay: 0.06s;
}

.dgst__hero-heading span:nth-child(3) {
    animation-delay: 0.09s;
}

.dgst__hero-heading span:nth-child(4) {
    animation-delay: 0.12s;
}

.dgst__hero-heading span:nth-child(5) {
    animation-delay: 0.15s;
}

.dgst__hero-heading span:nth-child(6) {
    animation-delay: 0.18s;
}

.dgst__hero-heading span:nth-child(7) {
    animation-delay: 0.21s;
}

.dgst__hero-heading span:nth-child(8) {
    animation-delay: 0.24s;
}

.dgst__hero-heading span:nth-child(9) {
    animation-delay: 0.27s;
}

.dgst__hero-heading span:nth-child(10) {
    animation-delay: 0.30s;
}

.dgst__hero-heading span:nth-child(11) {
    animation-delay: 0.33s;
}

.dgst__hero-heading span:nth-child(12) {
    animation-delay: 0.36s;
}

.dgst__hero-heading span:nth-child(13) {
    animation-delay: 0.39s;
}

.dgst__hero-heading span:nth-child(14) {
    animation-delay: 0.42s;
}

.dgst__hero-heading span:nth-child(15) {
    animation-delay: 0.45s;
}

.dgst__hero-heading span:nth-child(16) {
    animation-delay: 0.48s;
}

.dgst__hero-heading span:nth-child(17) {
    animation-delay: 0.51s;
}

.dgst__hero-heading span:nth-child(18) {
    animation-delay: 0.54s;
}

.dgst__hero-heading span:nth-child(19) {
    animation-delay: 0.57s;
}

.dgst__hero-heading span:nth-child(20) {
    animation-delay: 0.60s;
}

@keyframes letterDrop {
    0% {
        opacity: 0;
        transform: translateY(-32px);
    }

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

.dgst__hero-desc {
    color: rgba(210, 222, 225, 0.85);
    font-size: 17px;
    line-height: 1.8;
    margin: 0;
    max-width: 540px;
}

.dgst__hero-desc em {
    color: #D2DEE1;
    font-style: normal;
}

.dgst__hero-right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 40px;
}

.dgst__hero-stat {
    border: 1px solid rgba(210, 222, 225, 0.2);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: border-color 0.25s ease-in-out, box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dgst__hero-stat:hover {
    border-color: rgba(210, 222, 225, 0.5);
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.18);
}

.dgst__hero-stat-num {
    font-size: 37px;
    line-height: 1.2;
    color: #D2DEE1;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.dgst__hero-stat-label {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(210, 222, 225, 0.7);
}

.dgst__body {
    padding: 80px 40px;
    background: #f4f7f8;
    position: relative;
    overflow: hidden;
}

.dgst__body::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23014856' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.dgst__body-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.dgst__body-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 80px;
}

.dgst__body-img-col {
    flex: 0 0 auto;
    width: 42%;
    position: relative;
}

.dgst__img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.14);
}

.dgst__img-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid rgba(1, 72, 86, 0.18);
    border-radius: 12px;
    z-index: 1;
    pointer-events: none;
}

.dgst__img-frame img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.dgst__img-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: #014856;
    color: #D2DEE1;
    border-radius: 12px;
    padding: 24px;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.2);
    z-index: 2;
    text-align: center;
    min-width: 120px;
}

.dgst__img-badge-num {
    font-size: 37px;
    line-height: 1.2;
    font-weight: 700;
    display: block;
}

.dgst__img-badge-text {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(210, 222, 225, 0.8);
}

.dgst__body-text-col {
    flex: 1 1 auto;
    padding-top: 8px;
}

.dgst__body-kicker {
    font-size: 15px;
    line-height: 1.55;
    color: #65707F;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.dgst__body-h2 {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    margin: 0 0 24px 0;
    position: relative;
}

.dgst__body-h2-num {
    position: absolute;
    left: -48px;
    top: -16px;
    font-size: 68px;
    line-height: 1.2;
    color: rgba(1, 72, 86, 0.06);
    font-weight: 700;
    pointer-events: none;
    user-select: none;
}

.dgst__body-p--lead {
    font-size: 21px;
    line-height: 1.55;
    color: #014856;
    margin: 0 0 24px 0;
}

.dgst__body-p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a4550;
    margin: 0 0 24px 0;
}

.dgst__body-p:last-child {
    margin-bottom: 0;
}

.dgst__body-p strong {
    color: #014856;
}

.dgst__entries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.dgst__entry {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 24px 24px;
    position: relative;
    box-shadow: -1px 2px 3px -1px rgba(1, 72, 86, 0.06);
    transition: box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s ease-in-out;
    cursor: default;
}

.dgst__entry:hover {
    box-shadow: -1px 8px 48px -1px rgba(1, 72, 86, 0.13);
    transform: translateY(-4px);
}

.dgst__entry:hover .dgst__entry-shadow-text {
    color: rgba(1, 72, 86, 0.12);
    text-shadow: -1px 4px 12px rgba(1, 72, 86, 0.18);
}

.dgst__entry-num {
    position: absolute;
    top: -8px;
    left: 24px;
    font-size: 68px;
    line-height: 1.2;
    color: rgba(1, 72, 86, 0.05);
    font-weight: 700;
    user-select: none;
    pointer-events: none;
    transition: color 0.35s ease-in-out, text-shadow 0.35s ease-in-out;
}

.dgst__entry-shadow-text {
    color: rgba(1, 72, 86, 0.05);
    transition: color 0.35s ease-in-out, text-shadow 0.35s ease-in-out;
}

.dgst__entry-tag {
    display: inline-block;
    background: rgba(1, 72, 86, 0.08);
    color: #014856;
    font-size: 15px;
    line-height: 1.55;
    padding: 8px 24px;
    border-radius: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.dgst__entry-h3 {
    font-size: 21px;
    line-height: 1.2;
    color: #014856;
    margin: 0 0 24px 0;
    position: relative;
    z-index: 1;
}

.dgst__entry-p {
    font-size: 15px;
    line-height: 1.8;
    color: #65707F;
    margin: 0;
    position: relative;
    z-index: 1;
}

.dgst__entry-accent {
    color: #014856;
    font-weight: 600;
}

.dgst__metrics {
    background: #014856;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
}

.dgst__metric {
    flex: 1 1 0;
    text-align: center;
    padding: 24px 8px;
    border-radius: 12px;
    position: relative;
    transition: background 0.28s ease-in-out;
}

.dgst__metric:hover {
    background: rgba(210, 222, 225, 0.08);
}

.dgst__metric-val {
    font-size: 37px;
    line-height: 1.2;
    color: #D2DEE1;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.dgst__metric-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(210, 222, 225, 0.7);
}

.dgst__metric-sep {
    width: 1px;
    background: rgba(210, 222, 225, 0.15);
    flex: 0 0 auto;
    align-self: stretch;
}

@media (max-width: 1024px) {
    .dgst__hero-inner {
        flex-direction: column;
        gap: 40px;
    }

    .dgst__hero-left {
        width: 100%;
    }

    .dgst__hero-right {
        flex-direction: row;
        flex-wrap: wrap;
        padding-top: 0;
        gap: 24px;
    }

    .dgst__hero-stat {
        flex: 1 1 160px;
    }

    .dgst__hero-heading {
        font-size: 37px;
    }

    .dgst__hero-math {
        font-size: 180px;
        right: -16px;
        opacity: 0.5;
    }

    .dgst__body-top {
        flex-direction: column;
        gap: 40px;
    }

    .dgst__body-img-col {
        width: 100%;
    }

    .dgst__img-badge {
        bottom: -16px;
        right: -8px;
    }

    .dgst__entries {
        grid-template-columns: repeat(2, 1fr);
    }

    .dgst__body-h2-num {
        left: 0;
        top: -32px;
        font-size: 51px;
    }

    .dgst__metrics {
        flex-wrap: wrap;
    }

    .dgst__metric-sep {
        display: none;
    }

    .dgst__metric {
        flex: 1 1 140px;
    }
}

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

    .dgst__hero-heading {
        font-size: 27px;
    }

    .dgst__hero-math {
        display: none;
    }

    .dgst__body {
        padding: 40px 24px;
    }

    .dgst__entries {
        grid-template-columns: 1fr;
    }

    .dgst__metrics {
        flex-direction: column;
        padding: 24px;
    }

    .dgst__metric-sep {
        display: none;
    }

    .dgst__body-h2 {
        font-size: 27px;
    }

    .dgst__body-p--lead {
        font-size: 17px;
    }

    .dgst__img-frame img {
        height: 240px;
    }

    .dgst__img-badge {
        position: static;
        display: inline-block;
        margin-top: 24px;
    }

    .dgst__body-top {
        margin-bottom: 40px;
    }
}

@media (max-width: 375px) {
    .dgst__hero {
        padding: 40px 24px;
    }

    .dgst__hero-heading {
        font-size: 21px;
    }

    .dgst__hero-label {
        font-size: 15px;
        padding: 8px 16px;
    }

    .dgst__body {
        padding: 40px 24px;
    }

    .dgst__entry {
        padding: 40px 24px 24px;
    }
}

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

.success-pg__card {
    max-width: 560px;
    width: 100%;
    background: #f4f8f9;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: -1px 6px 22px -1px rgba(1, 72, 86, 0.08);
}

.success-pg__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 40px;
    display: block;
}

.success-pg__icon-circle {
    fill: none;
    stroke: #014856;
    stroke-width: 2;
}

.success-pg__icon-check {
    fill: none;
    stroke: #014856;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.success-pg__heading {
    font-size: 37px;
    line-height: 1.2;
    color: #014856;
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}

.success-pg__text {
    font-size: 17px;
    line-height: 1.55;
    color: #65707F;
    margin: 0 0 40px;
}

.success-pg__accent {
    color: #014856;
    font-weight: 600;
}

.success-pg__divider {
    width: 48px;
    height: 2px;
    background: #D2DEE1;
    border: none;
    margin: 0 auto 40px;
    border-radius: 8px;
}

.success-pg__btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    line-height: 1.2;
    color: #ffffff;
    background: #014856;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease-in-out;
}

.success-pg__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #65707F;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
}

.success-pg__btn:hover::before {
    transform: translateY(0);
}

.success-pg__btn:focus-visible {
    outline: 2px solid #014856;
    outline-offset: 4px;
}

.success-pg__btn-label {
    position: relative;
    z-index: 1;
}

.success-pg__meta {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.55;
    color: #65707F;
}

.success-pg__meta-link {
    color: #014856;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.25s ease-in-out;
}

.success-pg__meta-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .success-pg {
        padding: 40px 24px;
    }

    .success-pg__card {
        padding: 40px 24px;
    }

    .success-pg__heading {
        font-size: 27px;
    }
}

@media (max-width: 375px) {
    .success-pg__card {
        padding: 40px 24px;
    }

    .success-pg__heading {
        font-size: 21px;
    }

    .success-pg__btn {
        padding: 16px 24px;
        width: 100%;
    }
}