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

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
}

.brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background-color: rgba(45, 52, 70, 0.06);
    border: 1px solid rgba(45, 52, 70, 0.14);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
    flex-shrink: 0;
}

.brand-mark__img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block;
}

.site-head {
    position: relative;
    background: #FCFDFD;
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    font-family: 'IBM Plex Serif', serif;
}

.site-head__shell {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 64px;
    display: flex;
    align-items: flex-start;
    gap: 64px;
}

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

.head-brand__label {
    font-size: 13px;
    line-height: 1.15;
    color: #8A92A6;
    letter-spacing: 0;
    font-weight: 400;
}

.head-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, rgba(45, 52, 70, 0.18) 30%, rgba(45, 52, 70, 0.18) 70%, transparent);
    flex-shrink: 0;
    margin-top: 4px;
}

.primary-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 20px;
    padding-top: 8px;
}

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: flex-end;
}

.primary-nav__item {
    display: flex;
}

.primary-nav__link {
    font-family: 'IBM Plex Serif', serif;
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: color 0.1s ease-out, border-color 0.1s ease-out, background-color 0.12s ease-out;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.primary-nav__link:hover {
    color: #2D3446;
    background-color: rgba(45, 52, 70, 0.06);
    border-color: rgba(45, 52, 70, 0.14);
}

.primary-nav__link:focus {
    outline: none;
    position: relative;
}

.primary-nav__link:focus::before {
    content: 'przejdź';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 13px;
    line-height: 1.15;
    color: #2D3446;
    background: #FCFDFD;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(45, 52, 70, 0.18);
    pointer-events: none;
    white-space: nowrap;
}

.primary-nav__link--active {
    color: #2D3446;
    font-weight: 700;
    background-color: rgba(45, 52, 70, 0.08);
    border-color: rgba(45, 52, 70, 0.2);
}

.head-accent-strip {
    height: 4px;
    background: linear-gradient(90deg, rgba(45, 52, 70, 0.0) 0%, rgba(45, 52, 70, 0.18) 40%, rgba(138, 146, 166, 0.22) 70%, rgba(45, 52, 70, 0.0) 100%);
}

.site-foot {
    font-family: 'IBM Plex Serif', serif;
    background: #FCFDFD;
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
    position: relative;
}

.foot-body {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 64px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.foot-nav-hold {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.foot-nav__heading {
    font-size: 13px;
    line-height: 1.15;
    color: #8A92A6;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0;
    margin: 0 0 8px;
}

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

.foot-nav__link {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    min-height: 44px;
    transition: color 0.1s linear;
}

.foot-nav__link:hover {
    color: #8A92A6;
}

.foot-nav__link:focus {
    outline: none;
    position: relative;
}

.foot-nav__link:focus::before {
    content: 'przejdź';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 13px;
    line-height: 1.15;
    color: #2D3446;
    background: #FCFDFD;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(45, 52, 70, 0.18);
    pointer-events: none;
    white-space: nowrap;
}

.foot-contact-hold {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-contact__heading {
    font-size: 13px;
    line-height: 1.15;
    color: #8A92A6;
    font-weight: 400;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.foot-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

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

.foot-contact__text {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    margin: 0;
}

.foot-contact__link {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    text-decoration: none;
    transition: color 0.1s linear;
}

.foot-contact__link:hover {
    color: #8A92A6;
}

.foot-contact__link:focus {
    outline: none;
    position: relative;
}

.foot-contact__link:focus::before {
    content: 'kontakt';
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 13px;
    line-height: 1.15;
    color: #2D3446;
    background: #FCFDFD;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(45, 52, 70, 0.18);
    pointer-events: none;
    white-space: nowrap;
}

.foot-divider {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(45, 52, 70, 0.14) 20%, rgba(45, 52, 70, 0.14) 80%, transparent);
}

.foot-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.foot-logo-mount {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background-color: rgba(45, 52, 70, 0.06);
    border: 1px solid rgba(45, 52, 70, 0.14);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
}

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

.foot-meta-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
}

.foot-meta-list__link {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    text-decoration: none;
    transition: color 0.1s linear;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.foot-meta-list__link:hover {
    color: #2D3446;
}

.foot-copyright {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    margin: 0;
    text-align: center;
}

.consent-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1500;
    background: #2D3446;
    font-family: 'IBM Plex Serif', serif;
}

.consent-bar__shell {
    max-width: 1440px;
    margin: 0 auto;
    padding: 12px 64px;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.consent-bar__msg {
    flex: 1;
    font-size: 13px;
    line-height: 1.45;
    color: #FCFDFD;
    margin: 0;
}

.consent-bar__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.consent-bar__btn {
    font-family: 'IBM Plex Serif', serif;
    font-size: 13px;
    line-height: 1.15;
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid rgba(252, 253, 253, 0.5);
    background: transparent;
    color: #FCFDFD;
    cursor: pointer;
    min-height: 44px;
    transition: background-color 0.12s ease-out, border-color 0.1s ease-out;
}

.consent-bar__btn:hover {
    background-color: rgba(252, 253, 253, 0.12);
    border-color: #FCFDFD;
}

.consent-bar__btn:focus {
    outline: none;
    border-color: #FCFDFD;
    position: relative;
}

.consent-bar__btn:focus::before {
    content: 'wybierz';
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 13px;
    line-height: 1.15;
    color: #FCFDFD;
    background: #2D3446;
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(252, 253, 253, 0.4);
    pointer-events: none;
    white-space: nowrap;
}

@media (max-width: 992px) {
    .site-head__shell {
        padding: 20px 32px;
        gap: 32px;
    }

    .foot-body {
        padding: 32px 32px 20px;
        gap: 32px;
    }

    .foot-divider {
        padding: 0 32px;
    }

    .foot-bottom {
        padding: 20px 32px;
    }

    .consent-bar__shell {
        padding: 12px 32px;
    }
}

@media (max-width: 576px) {
    .site-head__shell {
        padding: 20px;
        gap: 20px;
        flex-wrap: wrap;
    }

    .head-divider {
        display: none;
    }

    .primary-nav {
        width: 100%;
        align-items: flex-start;
    }

    .primary-nav__list {
        justify-content: flex-start;
    }

    .foot-body {
        grid-template-columns: 1fr;
        padding: 32px 20px 20px;
        gap: 32px;
    }

    .foot-divider {
        padding: 0 20px;
    }

    .foot-bottom {
        padding: 20px;
    }

    .consent-bar__shell {
        padding: 12px 20px;
        gap: 12px;
    }

    .consent-bar__actions {
        width: 100%;
    }
}

.zf-doc-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 64px 32px;
}

.zf-doc-inner h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 32px;
    margin-top: 0;
}

.zf-doc-inner h2 {
    font-size: 28px;
    line-height: 1.15;
    color: #2D3446;
    margin-top: 64px;
    margin-bottom: 20px;
}

.zf-doc-inner h3 {
    font-size: 21px;
    line-height: 1.45;
    color: #2D3446;
    margin-top: 32px;
    margin-bottom: 12px;
}

.zf-doc-inner h4,
.zf-doc-inner h5,
.zf-doc-inner h6 {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    margin-top: 20px;
    margin-bottom: 8px;
}

.zf-doc-inner p {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    margin-top: 0;
    margin-bottom: 20px;
}

.zf-doc-inner ul,
.zf-doc-inner ol {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    margin-top: 0;
    margin-bottom: 20px;
    padding-left: 32px;
}

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

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

.zf-doc-inner li {
    margin-bottom: 8px;
    padding-left: 4px;
}

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

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

.zf-doc-inner strong,
.zf-doc-inner b {
    font-weight: 700;
    color: #2D3446;
}

.zf-doc-inner em,
.zf-doc-inner i {
    font-style: italic;
    color: #8A92A6;
}

.zf-doc-inner hr {
    border: none;
    border-top: 1px solid #8A92A6;
    opacity: 0.3;
    margin-top: 64px;
    margin-bottom: 64px;
}

@media (max-width: 576px) {
    .zf-doc-inner {
        padding: 32px 20px;
    }

    .zf-doc-inner h1 {
        font-size: 28px;
    }

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

    .zf-doc-inner h3 {
        font-size: 16px;
    }

    .zf-doc-inner ul,
    .zf-doc-inner ol {
        padding-left: 20px;
    }
}

@media (min-width: 576px) and (max-width: 992px) {
    .zf-doc-inner {
        padding: 64px 32px;
    }

    .zf-doc-inner h1 {
        font-size: 52px;
    }
}

.cert-pg {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
}

.cert-pg .drift-bg {
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(45, 52, 70, 0.06);
    border-radius: 40px;
    animation: drift-move 18s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

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

    33% {
        transform: translate(40px, 20px) rotate(4deg);
    }

    66% {
        transform: translate(-20px, 35px) rotate(-3deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.cert-pg .lead-blk {
    position: relative;
    padding: 64px 64px 32px 64px;
    background: linear-gradient(170deg, rgba(45, 52, 70, 0.10) 0%, transparent 72%);
    overflow: hidden;
}

.cert-pg .lead-blk .corner-rect {
    position: absolute;
    top: 20px;
    right: 32px;
    pointer-events: none;
    z-index: 0;
}

.cert-pg .lead-blk .corner-rect span {
    display: block;
    position: absolute;
    border: 1px solid rgba(45, 52, 70, 0.12);
}

.cert-pg .lead-blk .corner-rect span:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
}

.cert-pg .lead-blk .corner-rect span:nth-child(2) {
    width: 90px;
    height: 90px;
    top: -15px;
    right: -15px;
}

.cert-pg .lead-blk .corner-rect span:nth-child(3) {
    width: 120px;
    height: 120px;
    top: -30px;
    right: -30px;
}

.cert-pg .lead-blk .lead-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.cert-pg .lead-blk .lead-text {
    max-width: 540px;
}

.cert-pg .lead-blk .lead-text h1 {
    font-size: 66px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0 0 20px 0;
}

.cert-pg .lead-blk .lead-text h1 span {
    display: block;
}

.cert-pg .lead-blk .lead-text .sub-note {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0 0 32px 0;
}

.cert-pg .lead-blk .lead-text .badge-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.cert-pg .lead-blk .lead-text .badge-row .bdg {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(45, 52, 70, 0.25);
    border-radius: 4px;
    font-size: 13px;
    color: #2D3446;
    background: rgba(252, 253, 253, 0.9);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
    transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out;
}

.cert-pg .lead-blk .lead-text .badge-row .bdg:hover {
    border-color: rgba(45, 52, 70, 0.5);
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
}

.cert-pg .lead-blk .lead-img-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-top: 12px;
}

.cert-pg .lead-blk .lead-img-col .img-frame {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 16/10;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(45, 52, 70, 0.14);
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
    animation: fade-in-img 0.8s ease-out both;
}

@keyframes fade-in-img {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

.cert-pg .lead-blk .lead-img-col .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.05) brightness(1.02);
}

.cert-pg .divider-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
}

.cert-pg .divider-a .d-line {
    flex: 1;
    height: 1px;
    background: rgba(45, 52, 70, 0.12);
    max-width: 200px;
}

.cert-pg .divider-a svg {
    flex-shrink: 0;
}

.cert-pg .certs-blk {
    padding: 64px 64px 64px 64px;
    background: #FCFDFD;
    position: relative;
}

.cert-pg .certs-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg,
            rgba(45, 52, 70, 0.025) 0px,
            rgba(45, 52, 70, 0.025) 1px,
            transparent 1px,
            transparent 14px);
    pointer-events: none;
    z-index: 0;
}

.cert-pg .certs-blk .blk-inner {
    position: relative;
    z-index: 1;
}

.cert-pg .certs-blk .col-hdr {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    margin-bottom: 64px;
    align-items: start;
}

.cert-pg .certs-blk .col-hdr .side-ann {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
    padding-top: 8px;
    border-top: 1px solid rgba(45, 52, 70, 0.15);
}

.cert-pg .certs-blk .col-hdr .main-txt h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0 0 20px 0;
}

.cert-pg .certs-blk .col-hdr .main-txt h2 span {
    display: block;
}

.cert-pg .certs-blk .col-hdr .main-txt p {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
    max-width: 520px;
}

.cert-pg .cert-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cert-pg .cert-list .cert-card {
    background: rgba(252, 253, 253, 0.95);
    border: 1px solid rgba(45, 52, 70, 0.12);
    border-radius: 8px;
    padding: 32px 20px 20px 20px;
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    transition: box-shadow 0.1s ease-out, transform 0.1s ease-out;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cert-pg .cert-list .cert-card:hover {
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
    transform: translateY(-2px);
}

.cert-pg .cert-list .cert-card .cert-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.cert-pg .cert-list .cert-card h4 {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    margin: 0;
}

.cert-pg .cert-list .cert-card .cert-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
    flex: 1;
}

.cert-pg .cert-list .cert-card .cert-meta {
    font-size: 13px;
    color: rgba(45, 52, 70, 0.5);
    border-top: 1px solid rgba(45, 52, 70, 0.1);
    padding-top: 12px;
    margin-top: 4px;
}

.cert-pg .divider-b {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0;
    background: #FCFDFD;
}

.cert-pg .divider-b .d-line {
    flex: 1;
    height: 1px;
    background: rgba(138, 146, 166, 0.2);
    max-width: 200px;
}

.cert-pg .expert-blk {
    padding: 64px 64px 64px 64px;
    position: relative;
    background: rgba(45, 52, 70, 0.04);
}

.cert-pg .expert-blk .drift-bg {
    top: -40px;
    left: -60px;
}

.cert-pg .expert-blk .asym-grid {
    display: grid;
    grid-template-columns: 5fr 3fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cert-pg .expert-blk .rich-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cert-pg .expert-blk .rich-side .sect-label {
    font-size: 13px;
    color: #8A92A6;
    letter-spacing: 0;
    text-transform: uppercase;
}

.cert-pg .expert-blk .rich-side h3 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0;
}

.cert-pg .expert-blk .rich-side h3 span {
    display: block;
}

.cert-pg .expert-blk .rich-side .body-col {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    align-items: start;
}

.cert-pg .expert-blk .rich-side .body-col .ann {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(138, 146, 166, 0.8);
    padding-top: 4px;
}

.cert-pg .expert-blk .rich-side .body-col .body-txt p {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    margin: 0 0 20px 0;
}

.cert-pg .expert-blk .rich-side .body-col .body-txt p:last-child {
    margin-bottom: 0;
}

.cert-pg .expert-blk .rich-side .metrics-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.cert-pg .expert-blk .rich-side .metrics-row .met {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cert-pg .expert-blk .rich-side .metrics-row .met .ring-wrap {
    position: relative;
    width: 72px;
    height: 72px;
}

.cert-pg .expert-blk .rich-side .metrics-row .met .ring-wrap .ring-num {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #2D3446;
    font-weight: 700;
}

.cert-pg .expert-blk .rich-side .metrics-row .met .ring-lbl {
    font-size: 13px;
    color: #8A92A6;
    line-height: 1.45;
    max-width: 80px;
}

.cert-pg .expert-blk .slim-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 64px;
}

.cert-pg .expert-blk .slim-side .portrait-wrap {
    width: 100%;
    aspect-ratio: 7/9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(45, 52, 70, 0.14);
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
}

.cert-pg .expert-blk .slim-side .portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(1.04) brightness(1.01);
}

.cert-pg .expert-blk .slim-side .person-note {
    padding: 20px;
    background: rgba(252, 253, 253, 0.95) !important;
    border-radius: 8px;
    border: 1px solid rgba(45, 52, 70, 0.1);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
}

.cert-pg .expert-blk .slim-side .person-note .pn-name {
    font-size: 16px;
    color: #2D3446;
    margin: 0 0 4px 0;
}

.cert-pg .expert-blk .slim-side .person-note .pn-role {
    font-size: 13px;
    color: #8A92A6;
    margin: 0 0 12px 0;
}

.cert-pg .expert-blk .slim-side .person-note .pn-quote {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(45, 52, 70, 0.7);
    margin: 0;
    border-top: 1px solid rgba(45, 52, 70, 0.1);
    padding-top: 12px;
}

@media (max-width: 1200px) {
    .cert-pg .lead-blk {
        padding: 64px 32px 32px 32px;
    }

    .cert-pg .lead-blk .lead-grid {
        gap: 32px;
    }

    .cert-pg .certs-blk {
        padding: 64px 32px;
    }

    .cert-pg .expert-blk {
        padding: 64px 32px;
    }

    .cert-pg .expert-blk .asym-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

@media (max-width: 992px) {
    .cert-pg .lead-blk .lead-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cert-pg .lead-blk .lead-text h1 {
        font-size: 52px;
    }

    .cert-pg .lead-blk .lead-img-col {
        align-items: flex-start;
    }

    .cert-pg .lead-blk .lead-img-col .img-frame {
        max-width: 100%;
    }

    .cert-pg .certs-blk .col-hdr {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cert-pg .certs-blk .col-hdr .main-txt h2 {
        font-size: 28px;
    }

    .cert-pg .expert-blk .asym-grid {
        grid-template-columns: 1fr;
    }

    .cert-pg .expert-blk .slim-side {
        padding-top: 0;
        flex-direction: row;
        align-items: flex-start;
    }

    .cert-pg .expert-blk .slim-side .portrait-wrap {
        width: 200px;
        flex-shrink: 0;
    }

    .cert-pg .expert-blk .rich-side h3 {
        font-size: 28px;
    }

    .cert-pg .expert-blk .rich-side .body-col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 576px) {
    .cert-pg .lead-blk {
        padding: 32px 20px 20px 20px;
    }

    .cert-pg .lead-blk .lead-text h1 {
        font-size: 28px;
    }

    .cert-pg .certs-blk {
        padding: 32px 20px;
    }

    .cert-pg .cert-list {
        grid-template-columns: 1fr;
    }

    .cert-pg .expert-blk {
        padding: 32px 20px;
    }

    .cert-pg .expert-blk .slim-side {
        flex-direction: column;
    }

    .cert-pg .expert-blk .slim-side .portrait-wrap {
        width: 100%;
    }

    .cert-pg .expert-blk .rich-side .metrics-row {
        gap: 20px;
    }

    .cert-pg .divider-a,
    .cert-pg .divider-b {
        padding: 12px 0;
    }
}

.ctus-pg {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
}

.ctus-pg .band-top {
    padding: 32px 64px;
    background: #FCFDFD;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
}

.ctus-pg .band-top::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    width: 48px;
    height: 48px;
    border-top: 1.5px solid #8A92A6;
    border-left: 1.5px solid #8A92A6;
    pointer-events: none;
}

.ctus-pg .band-top::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-bottom: 1.5px solid #8A92A6;
    border-right: 1.5px solid #8A92A6;
    pointer-events: none;
}

.ctus-pg .band-top__text {
    flex: 1;
}

.ctus-pg .band-top__label {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ctus-pg .band-top__heading {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0 0 12px 0;
}

.ctus-pg .band-top__heading span {
    display: block;
}

.ctus-pg .band-top__slogan {
    font-size: 16px;
    line-height: 1.45;
    color: #8A92A6;
    margin: 0;
    max-width: 480px;
}

.ctus-pg .band-top__img-wrap {
    width: 260px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(138, 146, 166, 0.18);
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
}

.ctus-pg .band-top__img-wrap img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    display: block;
}

.ctus-pg .band-top__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 52, 70, 0.38) 0%, transparent 60%);
    pointer-events: none;
}

.ctus-pg .sep-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0 64px;
    height: 20px;
}

.ctus-pg .sep-dots span {
    width: 3px;
    height: 3px;
    border-radius: 40px;
    background: rgba(138, 146, 166, 0.35);
    display: inline-block;
}

.ctus-pg .form-area {
    padding: 64px 64px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
    background: #FCFDFD;
}

.ctus-pg .form-col {}

.ctus-pg .form-col__intro {
    margin-bottom: 32px;
}

.ctus-pg .form-col__intro-note {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    display: block;
    margin-bottom: 8px;
}

.ctus-pg .form-col__intro-head {
    font-size: 28px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0 0 12px 0;
}

.ctus-pg .form-col__intro-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
}

.ctus-pg .req-form {}

.ctus-pg .req-form .field-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-bottom: 20px;
}

.ctus-pg .req-form .field-wrap {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ctus-pg .req-form .field-wrap--full {
    flex: 1 1 100%;
    margin-bottom: 20px;
}

.ctus-pg .req-form .field-label {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    margin-bottom: 4px;
    transition: color 0.1s ease-out;
}

.ctus-pg .req-form .field-input {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    background: #fff;
    border: 1.5px solid rgba(138, 146, 166, 0.35);
    border-radius: 4px;
    padding: 12px;
    outline: none;
    transition: border-color 0.08s ease-out, box-shadow 0.08s ease-out;
    width: 100%;
    box-sizing: border-box;
}

.ctus-pg .req-form .field-input:focus {
    border-color: #2D3446;
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
}

.ctus-pg .req-form .field-input:focus+.field-label,
.ctus-pg .req-form .field-wrap:focus-within .field-label {
    color: #2D3446;
}

.ctus-pg .req-form .field-select {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    background: #fff;
    border: 1.5px solid rgba(138, 146, 166, 0.35);
    border-radius: 4px;
    padding: 12px;
    outline: none;
    transition: border-color 0.08s ease-out;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
}

.ctus-pg .req-form .field-select:focus {
    border-color: #2D3446;
}

.ctus-pg .req-form .select-wrap {
    position: relative;
}

.ctus-pg .req-form .select-wrap::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #8A92A6;
    pointer-events: none;
}

.ctus-pg .req-form .field-textarea {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    background: #fff;
    border: 1.5px solid rgba(138, 146, 166, 0.35);
    border-radius: 4px;
    padding: 12px;
    outline: none;
    transition: border-color 0.08s ease-out;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 120px;
}

.ctus-pg .req-form .field-textarea:focus {
    border-color: #2D3446;
}

.ctus-pg .req-form .category-row {
    margin-bottom: 20px;
}

.ctus-pg .req-form .category-label-top {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    margin-bottom: 8px;
    display: block;
}

.ctus-pg .req-form .category-opts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.ctus-pg .req-form .cat-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus-pg .req-form .cat-opt input[type="radio"] {
    accent-color: #2D3446;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.ctus-pg .req-form .cat-opt-lbl {
    font-size: 13px;
    line-height: 1.45;
    color: #2D3446;
    cursor: pointer;
}

.ctus-pg .req-form .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: rgba(138, 146, 166, 0.06);
    border-radius: 4px;
}

.ctus-pg .req-form .privacy-row input[type="checkbox"] {
    accent-color: #2D3446;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.ctus-pg .req-form .privacy-text {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
}

.ctus-pg .req-form .privacy-text a {
    color: #2D3446;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ctus-pg .req-form .submit-btn {
    font-size: 16px;
    line-height: 1.45;
    color: #FCFDFD;
    background: #2D3446;
    border: none;
    border-radius: 4px;
    padding: 12px 32px;
    cursor: pointer;
    transition: background 0.1s ease-out, box-shadow 0.1s ease-out;
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    position: relative;
    overflow: hidden;
}

.ctus-pg .req-form .submit-btn::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: rgba(252, 253, 253, 0.12);
    transition: width 0.6s linear;
}

.ctus-pg .req-form .submit-btn:active::after {
    width: 100%;
    transition: width 0.6s linear;
}

.ctus-pg .req-form .submit-btn:hover {
    background: #3a4260;
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
}

.ctus-pg .req-form .submit-btn:focus-visible {
    outline: 2px solid #2D3446;
    outline-offset: 3px;
}

.ctus-pg .info-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ctus-pg .info-card {
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(138, 146, 166, 0.18);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
    padding: 32px;
}

.ctus-pg .info-card__tag {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus-pg .info-card__tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 40px;
    background: #2D3446;
    display: inline-block;
    flex-shrink: 0;
}

.ctus-pg .info-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ctus-pg .info-card__item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus-pg .info-card__item-label {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
}

.ctus-pg .info-card__item-val {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    font-weight: 600;
}

.ctus-pg .info-card__item-val a {
    color: #2D3446;
    text-decoration: none;
    transition: color 0.08s ease-out;
}

.ctus-pg .info-card__item-val a:hover {
    color: #8A92A6;
}

.ctus-pg .hours-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted rgba(138, 146, 166, 0.28);
}

.ctus-pg .hours-row:last-child {
    border-bottom: none;
}

.ctus-pg .hours-row__day {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
}

.ctus-pg .hours-row__time {
    font-size: 13px;
    line-height: 1.45;
    color: #2D3446;
    font-weight: 600;
}

.ctus-pg .metric-strip {
    padding: 64px 64px;
    background: linear-gradient(158deg, rgba(45, 52, 70, 0.07) 0%, transparent 70%);
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start;
    border-top: 1px dotted rgba(138, 146, 166, 0.3);
}

.ctus-pg .metric-strip__aside {
    width: 180px;
    flex-shrink: 0;
}

.ctus-pg .metric-strip__aside-label {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
}

.ctus-pg .metric-strip__metrics {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}

.ctus-pg .metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}

.ctus-pg .metric-item__num {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    font-weight: 700;
}

.ctus-pg .metric-item__bar-wrap {
    width: 100%;
    height: 2px;
    background: rgba(138, 146, 166, 0.2);
    border-radius: 40px;
    overflow: hidden;
}

.ctus-pg .metric-item__bar {
    height: 100%;
    background: #2D3446;
    border-radius: 40px;
    animation: bar-grow 1.2s ease-out forwards;
    transform-origin: left;
}

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

    to {
        width: var(--bar-w, 60%);
    }
}

.ctus-pg .metric-item__desc {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
}

.ctus-pg .float-icon {
    display: inline-block;
    animation: float-ud 3s ease-in-out infinite;
}

.ctus-pg .float-icon--delay {
    animation-delay: 1.1s;
}

@keyframes float-ud {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.ctus-pg .icon-svg {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 992px) {
    .ctus-pg .band-top {
        padding: 32px 32px;
        flex-direction: column;
        gap: 32px;
    }

    .ctus-pg .band-top__img-wrap {
        width: 100%;
    }

    .ctus-pg .band-top__img-wrap img {
        width: 100%;
        height: 160px;
    }

    .ctus-pg .form-area {
        padding: 32px 32px;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ctus-pg .metric-strip {
        padding: 32px 32px;
        flex-direction: column;
        gap: 32px;
    }

    .ctus-pg .metric-strip__aside {
        width: 100%;
    }

    .ctus-pg .sep-dots {
        padding: 0 32px;
    }
}

@media (max-width: 576px) {
    .ctus-pg .band-top {
        padding: 20px 20px;
    }

    .ctus-pg .band-top__heading {
        font-size: 28px;
    }

    .ctus-pg .form-area {
        padding: 20px 20px;
    }

    .ctus-pg .req-form .field-row {
        flex-direction: column;
        gap: 20px;
    }

    .ctus-pg .metric-strip {
        padding: 20px 20px;
    }

    .ctus-pg .metric-strip__metrics {
        gap: 20px;
    }

    .ctus-pg .metric-item__num {
        font-size: 28px;
    }

    .ctus-pg .info-card {
        padding: 20px;
    }

    .ctus-pg .sep-dots {
        padding: 0 20px;
    }

    .ctus-pg .category-opts {
        flex-direction: column;
    }
}

.ld-pg {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
}

.ld-pg .schema-block {
    display: none;
}

@keyframes grid-pulse {

    0%,
    100% {
        opacity: 0.04;
    }

    50% {
        opacity: 0.11;
    }
}

.ld-pg *::selection {
    background: #2D3446;
    color: #FCFDFD;
}

.ld-pg .tb {
    background: #2D3446;
    padding: 96px 64px 64px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
}

.ld-pg .tb__grid-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0;
}

.ld-pg .tb__grid-deco::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 146, 166, 0) 0%, rgba(139, 146, 166, 0.08) 50%, rgba(139, 146, 166, 0) 100%),
        repeating-linear-gradient(90deg, rgba(139, 146, 166, 0.07) 0px, rgba(139, 146, 166, 0.07) 1px, transparent 1px, transparent 80px),
        repeating-linear-gradient(0deg, rgba(139, 146, 166, 0.07) 0px, rgba(139, 146, 166, 0.07) 1px, transparent 1px, transparent 80px);
    animation: grid-pulse 5s ease-out infinite;
}

.ld-pg .tb__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ld-pg .tb__shapes::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(139, 146, 166, 0.12);
    border-radius: 8px;
    top: -80px;
    right: -60px;
    transform: rotate(22deg);
}

.ld-pg .tb__shapes::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(139, 146, 166, 0.08);
    border-radius: 4px;
    bottom: 20px;
    right: 120px;
    transform: rotate(11deg);
}

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

.ld-pg .tb__label {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ld-pg .tb__h1 {
    font-size: 66px;
    line-height: 1.15;
    color: #FCFDFD;
    margin: 0 0 32px;
}

.ld-pg .tb__h1 span {
    display: block;
}

.ld-pg .tb__desc {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    max-width: 420px;
    margin: 0 0 32px;
}

.ld-pg .tb__actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.ld-pg .tb__btn--primary {
    background: #FCFDFD;
    color: #2D3446;
    border: 2px solid #FCFDFD;
    padding: 12px 32px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.12s ease-out, color 0.12s ease-out;
    position: relative;
    overflow: hidden;
}

.ld-pg .tb__btn--primary::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: #8A92A6;
    transition: width 0s;
    z-index: 0;
}

.ld-pg .tb__btn--primary:active::after {
    width: 100%;
    transition: width 0.7s linear;
}

.ld-pg .tb__btn--primary span {
    position: relative;
    z-index: 1;
}

.ld-pg .tb__btn--primary:hover {
    background: #8A92A6;
    border-color: #8A92A6;
    color: #FCFDFD;
}

.ld-pg .tb__btn--sec {
    background: transparent;
    color: #8A92A6;
    border: 2px solid rgba(139, 146, 166, 0.35);
    padding: 12px 32px;
    font-size: 13px;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.1s linear, color 0.1s linear;
}

.ld-pg .tb__btn--sec:hover {
    border-color: #8A92A6;
    color: #FCFDFD;
}

.ld-pg .tb__img-col {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

.ld-pg .tb__img-wrap {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(139, 146, 166, 0.2);
}

.ld-pg .tb__img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: filter 0.14s ease-out;
}

.ld-pg .tb__img-wrap:hover img {
    filter: saturate(0.4) brightness(0.75) hue-rotate(0deg);
}

.ld-pg .tb__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(45, 52, 70, 0.45) 0%, transparent 60%);
    pointer-events: none;
    transition: opacity 0.14s ease-out;
}

.ld-pg .tb__img-wrap:hover::after {
    background: linear-gradient(160deg, rgba(45, 52, 70, 0.7) 0%, rgba(138, 146, 166, 0.25) 100%);
}

.ld-pg .tb__stat-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    width: 100%;
    max-width: 480px;
}

.ld-pg .tb__stat {
    flex: 1;
    background: rgba(139, 146, 166, 0.1);
    border: 1px solid rgba(139, 146, 166, 0.15);
    border-radius: 8px;
    padding: 20px;
}

.ld-pg .tb__stat-num {
    font-size: 28px;
    line-height: 1.15;
    color: #FCFDFD;
    display: block;
}

.ld-pg .tb__stat-lbl {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    margin-top: 4px;
    display: block;
}

.ld-pg .div-tri {
    width: 100%;
    line-height: 0;
    background: #2D3446;
}

.ld-pg .div-tri svg {
    display: block;
    width: 100%;
}

.ld-pg .prob {
    background: #FCFDFD;
    padding: 64px 64px 80px;
    position: relative;
}

.ld-pg .prob__diagonal {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ld-pg .prob__diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(170deg, rgba(139, 146, 166, 0.06) 0%, transparent 70%);
}

.ld-pg .prob__inner {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.ld-pg .prob__aside {
    padding-top: 8px;
}

.ld-pg .prob__aside-label {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    display: block;
    margin-bottom: 20px;
}

.ld-pg .prob__aside-img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(45, 52, 70, 0.1);
    position: relative;
}

.ld-pg .prob__aside-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.13s ease-out;
}

.ld-pg .prob__aside-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.13s ease-out;
    pointer-events: none;
}

.ld-pg .prob__aside-img:hover::after {
    background: rgba(45, 52, 70, 0.38);
}

.ld-pg .prob__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld-pg .prob__h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0;
}

.ld-pg .prob__h2 span {
    display: block;
}

.ld-pg .prob__text {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    margin: 0;
    max-width: 580px;
}

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

.ld-pg .prob__item {
    background: #FCFDFD;
    border: 1px solid rgba(45, 52, 70, 0.12);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.ld-pg .prob__item-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.ld-pg .prob__item-check svg {
    width: 20px;
    height: 20px;
}

.ld-pg .prob__item-text {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
}

.ld-pg .prob__item-text strong {
    display: block;
    font-size: 13px;
    color: #8A92A6;
    margin-top: 4px;
    font-weight: normal;
}

.ld-pg .div-line {
    width: 100%;
    background: #FCFDFD;
    display: flex;
    justify-content: center;
    padding: 0;
    line-height: 0;
}

.ld-pg .div-line svg {
    display: block;
    width: 100%;
}

.ld-pg .exmp {
    background: #2D3446;
    padding: 80px 64px;
    position: relative;
}

.ld-pg .exmp__bg-split {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ld-pg .exmp__bg-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 146, 166, 0.05) 0%, transparent 55%);
}

.ld-pg .exmp__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.ld-pg .exmp__top {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

.ld-pg .exmp__copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ld-pg .exmp__eyebrow {
    font-size: 13px;
    color: #8A92A6;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.ld-pg .exmp__h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #FCFDFD;
    margin: 0;
}

.ld-pg .exmp__h2 span {
    display: block;
}

.ld-pg .exmp__p {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
    max-width: 500px;
}

.ld-pg .exmp__mini-card {
    background: #FCFDFD;
    border-radius: 8px;
    padding: 32px;
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.ld-pg .exmp__mini-card::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #2D3446;
    border-radius: 4px;
    transform: rotate(45deg);
}

.ld-pg .exmp__mini-card-label {
    font-size: 13px;
    color: #8A92A6;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ld-pg .exmp__mini-card-name {
    font-size: 21px;
    line-height: 1.15;
    color: #2D3446;
}

.ld-pg .exmp__mini-card-quote {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    margin: 0;
    font-style: italic;
}

.ld-pg .exmp__mini-card-person {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(45, 52, 70, 0.1);
}

.ld-pg .exmp__portrait {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(45, 52, 70, 0.15);
}

.ld-pg .exmp__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ld-pg .exmp__person-name {
    font-size: 13px;
    color: #2D3446;
    display: block;
}

.ld-pg .exmp__person-role {
    font-size: 13px;
    color: #8A92A6;
    display: block;
}

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

.ld-pg .exmp__img-item {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(139, 146, 166, 0.15);
    position: relative;
}

.ld-pg .exmp__img-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: filter 0.13s ease-out;
}

.ld-pg .exmp__img-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transition: background 0.13s ease-out;
    pointer-events: none;
}

.ld-pg .exmp__img-item:hover::after {
    background: rgba(139, 146, 166, 0.4);
}

.ld-pg .exmp__img-caption {
    padding: 12px;
    font-size: 13px;
    color: #8A92A6;
    background: rgba(255, 255, 255, 0.04);
}

.ld-pg .div-rev {
    background: #2D3446;
    line-height: 0;
}

.ld-pg .div-rev svg {
    display: block;
    width: 100%;
}

.ld-pg .recog {
    background: #FCFDFD;
    padding: 80px 64px 96px;
    position: relative;
}

.ld-pg .recog__deco-diamond {
    position: absolute;
    top: 32px;
    right: 64px;
    width: 40px;
    height: 40px;
    background: rgba(45, 52, 70, 0.06);
    transform: rotate(45deg);
    border-radius: 4px;
    pointer-events: none;
}

.ld-pg .recog__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 64px;
}

.ld-pg .recog__aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ld-pg .recog__aside-label {
    font-size: 13px;
    color: #8A92A6;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.ld-pg .recog__aside-note {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
}

.ld-pg .recog__aside-link {
    font-size: 13px;
    color: #2D3446;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.1s linear;
}

.ld-pg .recog__aside-link:hover {
    color: #8A92A6;
}

.ld-pg .recog__body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ld-pg .recog__h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0;
}

.ld-pg .recog__h2 span {
    display: block;
}

.ld-pg .recog__p {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    margin: 0;
    max-width: 560px;
}

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

.ld-pg .recog__card {
    border: 1px solid rgba(45, 52, 70, 0.12);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.12s ease-out;
}

.ld-pg .recog__card:hover {
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
}

.ld-pg .recog__card-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 4px;
}

.ld-pg .recog__card-icon svg {
    width: 32px;
    height: 32px;
}

.ld-pg .recog__card-title {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
}

.ld-pg .recog__card-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
}

.ld-pg .recog__faq {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(45, 52, 70, 0.1);
}

.ld-pg .recog__faq-item {
    border-bottom: 1px solid rgba(45, 52, 70, 0.1);
    padding: 20px 0;
}

.ld-pg .recog__faq-q {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    margin: 0 0 8px;
}

.ld-pg .recog__faq-a {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
}

@media (max-width: 1200px) {
    .ld-pg .tb {
        padding: 64px 32px 48px;
        gap: 32px;
    }

    .ld-pg .prob {
        padding: 64px 32px;
    }

    .ld-pg .exmp {
        padding: 64px 32px;
    }

    .ld-pg .recog {
        padding: 64px 32px 80px;
    }
}

@media (max-width: 992px) {
    .ld-pg .tb {
        grid-template-columns: 1fr;
        padding: 64px 32px 48px;
    }

    .ld-pg .tb__h1 {
        font-size: 52px;
    }

    .ld-pg .tb__img-col {
        align-items: flex-start;
    }

    .ld-pg .tb__img-wrap {
        max-width: 100%;
    }

    .ld-pg .prob__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .ld-pg .prob__aside-img {
        width: 160px;
        flex-shrink: 0;
    }

    .ld-pg .prob__items {
        grid-template-columns: 1fr;
    }

    .ld-pg .exmp__top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ld-pg .exmp__imgs {
        grid-template-columns: 1fr 1fr;
    }

    .ld-pg .recog__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ld-pg .recog__grid {
        grid-template-columns: 1fr 1fr;
    }

    .ld-pg .recog__h2 {
        font-size: 28px;
    }

    .ld-pg .prob__h2 {
        font-size: 28px;
    }

    .ld-pg .exmp__h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .ld-pg .tb {
        padding: 48px 20px 32px;
    }

    .ld-pg .tb__h1 {
        font-size: 28px;
    }

    .ld-pg .tb__stat-row {
        flex-direction: column;
        gap: 12px;
    }

    .ld-pg .prob {
        padding: 48px 20px;
    }

    .ld-pg .prob__aside {
        flex-direction: column;
    }

    .ld-pg .prob__aside-img {
        width: 100%;
    }

    .ld-pg .exmp {
        padding: 48px 20px;
    }

    .ld-pg .exmp__imgs {
        grid-template-columns: 1fr;
    }

    .ld-pg .recog {
        padding: 48px 20px 64px;
    }

    .ld-pg .recog__grid {
        grid-template-columns: 1fr;
    }

    .ld-pg .recog__deco-diamond {
        display: none;
    }
}

.abt-us {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
    position: relative;
}

.abt-us .pg-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.abt-us .band--top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    position: relative;
    background: #FCFDFD;
    border-right: 1px solid rgba(45, 52, 70, 0.10);
}

.abt-us .band--top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, rgba(45, 52, 70, 0.04) 0px, rgba(45, 52, 70, 0.04) 1px, transparent 1px, transparent 48px), repeating-linear-gradient(90deg, rgba(45, 52, 70, 0.04) 0px, rgba(45, 52, 70, 0.04) 1px, transparent 1px, transparent 48px);
    pointer-events: none;
    z-index: 0;
}

.abt-us .band--top .txt-zone {
    padding: 64px 64px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.abt-us .band--top .txt-zone .eyebrow {
    font-size: 13px;
    color: #8A92A6;
    line-height: 1.45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.abt-us .band--top .txt-zone h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 0;
}

.abt-us .band--top .txt-zone h1 span {
    display: block;
}

.abt-us .band--top .txt-zone .rule-line {
    width: 40px;
    height: 2px;
    background: #2D3446;
    margin: 20px 0;
}

.abt-us .band--top .txt-zone .sub-text {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    max-width: 380px;
}

.abt-us .band--top .img-zone {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.abt-us .band--top .img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.85) brightness(0.92) hue-rotate(0deg);
    border-left: 1px solid rgba(138, 146, 166, 0.18);
}

.abt-us .band--top .img-zone::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 52, 70, 0.18) 0%, transparent 60%);
    pointer-events: none;
}

.abt-us .divider--a {
    display: flex;
    align-items: center;
    padding: 0 64px;
    height: 24px;
    background: #FCFDFD;
}

.abt-us .divider--a span {
    display: block;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(90deg, #2D3446 0px, #2D3446 4px, transparent 4px, transparent 8px, #2D3446 8px, #2D3446 10px, transparent 10px, transparent 16px);
    opacity: 0.18;
}

.abt-us .story-seg {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 0;
    background: #2D3446;
    position: relative;
    overflow: hidden;
}

.abt-us .story-seg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(138, 146, 166, 0.07) 0%, transparent 55%);
    pointer-events: none;
    animation: overlay-fade 6s ease-in-out infinite alternate;
}

@keyframes overlay-fade {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.abt-us .story-seg .side-label {
    padding: 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-right: 1px solid rgba(252, 253, 253, 0.08);
    position: relative;
    z-index: 1;
}

.abt-us .story-seg .side-label .vert-txt {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 13px;
    color: rgba(252, 253, 253, 0.35);
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.abt-us .story-seg .story-body {
    padding: 64px 32px 64px 64px;
    position: relative;
    z-index: 1;
}

.abt-us .story-seg .story-body h2 {
    font-size: 28px;
    line-height: 1.15;
    color: #FCFDFD;
    margin-bottom: 20px;
}

.abt-us .story-seg .story-body h2 span {
    display: block;
}

.abt-us .story-seg .story-body .rule-line {
    width: 32px;
    height: 2px;
    background: #8A92A6;
    margin-bottom: 20px;
}

.abt-us .story-seg .story-body p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(252, 253, 253, 0.72);
    margin-bottom: 20px;
}

.abt-us .story-seg .story-body p:last-child {
    margin-bottom: 0;
}

.abt-us .story-seg .story-aside {
    padding: 64px 64px 64px 32px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.abt-us .story-seg .story-aside .aside-note {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(252, 253, 253, 0.45);
    border-top: 1px solid rgba(252, 253, 253, 0.10);
    padding-top: 20px;
    margin-bottom: 32px;
}

.abt-us .story-seg .story-aside .metric-pair {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.abt-us .story-seg .story-aside .metric .val {
    font-size: 52px;
    line-height: 1.15;
    color: #FCFDFD;
    font-weight: 700;
}

.abt-us .story-seg .story-aside .metric .lbl {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(252, 253, 253, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.abt-us .divider--b {
    height: 20px;
    background: #FCFDFD;
    display: flex;
    align-items: center;
    padding: 0 64px;
}

.abt-us .divider--b span {
    display: block;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(90deg, transparent 0px, transparent 6px, #8A92A6 6px, #8A92A6 8px, transparent 8px, transparent 12px, #8A92A6 12px, #8A92A6 13px);
    opacity: 0.22;
}

.abt-us .team-seg {
    background: #FCFDFD;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.abt-us .team-seg .team-head {
    display: flex;
    flex-direction: column;
}

.abt-us .team-seg .team-head h3 {
    font-size: 28px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 20px;
}

.abt-us .team-seg .team-head h3 span {
    display: block;
}

.abt-us .team-seg .team-head .rule-line {
    width: 32px;
    height: 2px;
    background: #8A92A6;
    margin-bottom: 20px;
}

.abt-us .team-seg .team-head p {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    margin-bottom: 20px;
}

.abt-us .team-seg .team-head p:last-child {
    margin-bottom: 0;
}

.abt-us .team-seg .portrait-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.abt-us .team-seg .portrait-pair .portrait-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.12s ease-out;
}

.abt-us .team-seg .portrait-pair .portrait-card:hover {
    transform: translateY(-4px);
}

.abt-us .team-seg .portrait-pair .portrait-card:hover .portrait-img-wrap {
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
}

.abt-us .team-seg .portrait-pair .portrait-img-wrap {
    width: 100%;
    aspect-ratio: 2/3;
    overflow: hidden;
    border-radius: 40px;
    border: 1px solid rgba(138, 146, 166, 0.20);
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    transition: box-shadow 0.15s ease-out;
}

.abt-us .team-seg .portrait-pair .portrait-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.88) brightness(0.94);
}

.abt-us .team-seg .portrait-pair .portrait-name {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    font-weight: 600;
}

.abt-us .team-seg .portrait-pair .portrait-role {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
}

.abt-us .divider--c {
    height: 20px;
    background: rgba(45, 52, 70, 0.03);
    display: flex;
    align-items: center;
    padding: 0 64px;
}

.abt-us .divider--c span {
    display: block;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(90deg, #2D3446 0px, #2D3446 2px, transparent 2px, transparent 6px, #8A92A6 6px, #8A92A6 8px, transparent 8px, transparent 14px);
    opacity: 0.15;
}

.abt-us .approach-seg {
    background: rgba(45, 52, 70, 0.03);
    padding: 64px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 64px;
    align-items: start;
}

.abt-us .approach-seg .approach-img-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-us .approach-seg .approach-img-col .img-frame {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(138, 146, 166, 0.20);
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
}

.abt-us .approach-seg .approach-img-col .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.82) brightness(0.93);
}

.abt-us .approach-seg .approach-img-col .img-note {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
}

.abt-us .approach-seg .approach-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abt-us .approach-seg .approach-body h3 {
    font-size: 28px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 0;
}

.abt-us .approach-seg .approach-body h3 span {
    display: block;
}

.abt-us .approach-seg .approach-body .rule-line {
    width: 32px;
    height: 2px;
    background: #2D3446;
    margin-top: 20px;
    margin-bottom: 4px;
}

.abt-us .approach-seg .approach-body .step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.abt-us .approach-seg .approach-body .step-list li {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 12px;
    align-items: start;
    padding: 20px;
    background: #FCFDFD;
    border-radius: 8px;
    border: 1px solid rgba(138, 146, 166, 0.14);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
    transition: box-shadow 0.1s ease-out, border-color 0.1s ease-out;
}

.abt-us .approach-seg .approach-body .step-list li:hover {
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    border-color: rgba(45, 52, 70, 0.20);
}

.abt-us .approach-seg .approach-body .step-list li .step-num {
    width: 32px;
    height: 32px;
    background: #2D3446;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #FCFDFD;
    font-weight: 700;
    flex-shrink: 0;
}

.abt-us .approach-seg .approach-body .step-list li .step-txt h6 {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    margin-bottom: 4px;
}

.abt-us .approach-seg .approach-body .step-list li .step-txt p {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0;
}

.abt-us .approach-seg .approach-body .img-pair-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.abt-us .approach-seg .approach-body .img-pair-row .img-frame-sm {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(138, 146, 166, 0.18);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
}

.abt-us .approach-seg .approach-body .img-pair-row .img-frame-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.80) brightness(0.92);
}

@media (max-width: 992px) {
    .abt-us .band--top {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .abt-us .band--top .img-zone {
        height: 280px;
    }

    .abt-us .band--top .txt-zone {
        padding: 32px;
    }

    .abt-us .band--top .txt-zone h1 {
        font-size: 28px;
    }

    .abt-us .story-seg {
        grid-template-columns: 1fr;
    }

    .abt-us .story-seg .side-label {
        display: none;
    }

    .abt-us .story-seg .story-body,
    .abt-us .story-seg .story-aside {
        padding: 32px;
    }

    .abt-us .team-seg {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .abt-us .approach-seg {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .abt-us .divider--a,
    .abt-us .divider--b,
    .abt-us .divider--c {
        padding: 0 32px;
    }
}

@media (max-width: 576px) {
    .abt-us .band--top .txt-zone {
        padding: 20px;
    }

    .abt-us .band--top .txt-zone h1 {
        font-size: 21px;
    }

    .abt-us .story-seg .story-body,
    .abt-us .story-seg .story-aside {
        padding: 20px;
    }

    .abt-us .story-seg .story-aside .metric .val {
        font-size: 28px;
    }

    .abt-us .team-seg {
        padding: 20px;
        gap: 20px;
    }

    .abt-us .team-seg .portrait-pair {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .abt-us .approach-seg {
        padding: 20px;
        gap: 20px;
    }

    .abt-us .approach-seg .approach-body .img-pair-row {
        grid-template-columns: 1fr;
    }

    .abt-us .divider--a,
    .abt-us .divider--b,
    .abt-us .divider--c {
        padding: 0 20px;
    }
}

.cs-pg {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
    position: relative;
}

.cs-pg .lead-strip {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 560px;
    position: relative;
}

.cs-pg .lead-strip__text {
    padding: 64px 64px 64px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cs-pg .lead-strip__img-col {
    position: relative;
    overflow: hidden;
}

.cs-pg .lead-strip__img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-left: 1px solid rgba(45, 52, 70, 0.12);
    filter: saturate(0.7) brightness(0.92) contrast(1.05);
}

.cs-pg .lead-strip__img-col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(252, 253, 253, 0.85) 0%, transparent 40%);
    pointer-events: none;
}

.cs-pg .lead-strip__curves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cs-pg .lead-strip__curves svg {
    position: absolute;
    top: -40px;
    left: -60px;
    opacity: 0.07;
    width: 480px;
    height: 480px;
}

.cs-pg .pg-label {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.cs-pg .lead-h1 {
    font-size: 66px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 20px;
    max-width: 540px;
}

.cs-pg .lead-h1 span {
    display: block;
}

.cs-pg .lead-sub {
    font-size: 21px;
    line-height: 1.45;
    color: #8A92A6;
    max-width: 440px;
    margin-bottom: 32px;
}

.cs-pg .lead-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #FCFDFD;
    background: #2D3446;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    transition: background 0.12s ease-out, box-shadow 0.1s ease-out;
    position: relative;
    overflow: hidden;
    align-self: flex-start;
}

.cs-pg .lead-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 0%;
    background: rgba(252, 253, 253, 0.08);
    transition: width 0.15s linear;
}

.cs-pg .lead-link:hover {
    background: #3d4560;
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
}

.cs-pg .lead-link:hover::after {
    width: 100%;
}

.cs-pg .lead-link:focus-visible {
    outline: 2px solid #2D3446;
    outline-offset: 3px;
}

.cs-pg .divider-a {
    height: 2px;
    background: linear-gradient(to right, #2D3446 0%, transparent 60%);
    margin: 0;
    border: none;
}

.cs-pg .cases-grid {
    padding: 64px 64px;
    background: #FCFDFD;
    position: relative;
}

.cs-pg .cases-grid__diag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    pointer-events: none;
    opacity: 0.05;
    overflow: hidden;
}

.cs-pg .cases-grid__diag svg {
    display: block;
}

.cs-pg .cases-grid__head {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 32px;
    margin-bottom: 64px;
    align-items: start;
}

.cs-pg .cases-grid__aside {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
    padding-top: 8px;
    border-top: 1px solid rgba(138, 146, 166, 0.25);
}

.cs-pg .cases-grid__htxt h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 12px;
}

.cs-pg .cases-grid__htxt h2 span {
    display: block;
}

.cs-pg .cases-grid__htxt p {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    max-width: 560px;
}

.cs-pg .case-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cs-pg .case-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 32px;
    align-items: start;
    padding: 32px;
    border-radius: 8px;
    border: 1px solid rgba(45, 52, 70, 0.08);
    background: #fff;
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
    transition: box-shadow 0.12s ease-out, border-color 0.1s ease-out;
}

.cs-pg .case-item:hover {
    box-shadow: 1px 12px 36px -1px rgba(45, 52, 70, 0.14);
    border-color: rgba(45, 52, 70, 0.18);
}

.cs-pg .case-item__num {
    font-size: 52px;
    line-height: 1.15;
    color: rgba(45, 52, 70, 0.08);
    font-weight: 700;
    user-select: none;
}

.cs-pg .case-item__body h3 {
    font-size: 28px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 12px;
}

.cs-pg .case-item__body h3 span {
    display: block;
}

.cs-pg .case-item__body p {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    margin-bottom: 12px;
}

.cs-pg .case-item__body p+p {
    color: #8A92A6;
}

.cs-pg .case-item__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 160px;
}

.cs-pg .meta-tag {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    background: rgba(45, 52, 70, 0.04);
    border-radius: 4px;
    padding: 4px 12px;
    white-space: nowrap;
}

.cs-pg .meta-tag strong {
    display: block;
    color: #2D3446;
    font-size: 13px;
}

.cs-pg .divider-b {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(138, 146, 166, 0.3) 30%, transparent 100%);
    margin: 0 64px;
    border: none;
}

.cs-pg .process-strip {
    padding: 64px 64px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
    background: rgba(45, 52, 70, 0.025);
    position: relative;
}

.cs-pg .process-strip__diag {
    position: absolute;
    top: 12px;
    left: 12px;
    pointer-events: none;
    opacity: 0.06;
    overflow: hidden;
}

.cs-pg .process-strip__diag svg {
    display: block;
}

.cs-pg .proc-head {
    margin-bottom: 32px;
}

.cs-pg .proc-head h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
    margin-bottom: 12px;
}

.cs-pg .proc-head h2 span {
    display: block;
}

.cs-pg .proc-head p {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    max-width: 480px;
}

.cs-pg .proc-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-pg .proc-step {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 20px;
    align-items: start;
}

.cs-pg .proc-step__dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2D3446;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.cs-pg .proc-step__dot span {
    font-size: 13px;
    line-height: 1.15;
    color: #FCFDFD;
    font-weight: 700;
}

.cs-pg .proc-step__txt h4 {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    margin-bottom: 4px;
}

.cs-pg .proc-step__txt p {
    font-size: 13px;
    line-height: 1.7;
    color: #8A92A6;
}

.cs-pg .proc-img-col {
    position: relative;
}

.cs-pg .proc-img-col img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    border: 1px solid rgba(45, 52, 70, 0.1);
    display: block;
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
}

.cs-pg .proc-img-col::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(160deg, rgba(45, 52, 70, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cs-pg .divider-c {
    height: 2px;
    background: linear-gradient(to right, transparent 0%, #8A92A6 50%, transparent 100%);
    opacity: 0.2;
    margin: 0;
    border: none;
}

.cs-pg .voices-row {
    padding: 64px 64px;
    background: #fff;
    position: relative;
}

.cs-pg .voices-row__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
    align-items: end;
}

.cs-pg .voices-row__head h2 {
    font-size: 52px;
    line-height: 1.15;
    color: #2D3446;
}

.cs-pg .voices-row__head h2 span {
    display: block;
}

.cs-pg .voices-row__head p {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    max-width: 400px;
}

.cs-pg .voices-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cs-pg .voice-card {
    border-radius: 8px;
    padding: 32px;
    border: 1px solid rgba(45, 52, 70, 0.08);
    background: rgba(252, 253, 253, 0.7);
    box-shadow: 1px 3px 2px -1px rgba(45, 52, 70, 0.08);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.cs-pg .voice-card__strips {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 4px;
    pointer-events: none;
}

.cs-pg .voice-card__strip {
    width: 6px;
    background: rgba(45, 52, 70, 0.04);
    border-radius: 0;
    transition: background 0.1s ease-out;
    height: 0%;
    align-self: flex-end;
}

.cs-pg .voice-card:hover .voice-card__strip:nth-child(1) {
    height: 60%;
    background: rgba(45, 52, 70, 0.07);
}

.cs-pg .voice-card:hover .voice-card__strip:nth-child(2) {
    height: 80%;
    background: rgba(45, 52, 70, 0.05);
}

.cs-pg .voice-card:hover .voice-card__strip:nth-child(3) {
    height: 45%;
    background: rgba(45, 52, 70, 0.07);
}

.cs-pg .voice-card:hover .voice-card__strip:nth-child(4) {
    height: 70%;
    background: rgba(45, 52, 70, 0.05);
}

.cs-pg .voice-card:hover .voice-card__strip:nth-child(5) {
    height: 55%;
    background: rgba(45, 52, 70, 0.07);
}

.cs-pg .voice-card__strip {
    transition: height 0.15s ease-out, background 0.1s ease-out;
}

.cs-pg .voice-card__person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.cs-pg .voice-card__portrait {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(45, 52, 70, 0.1);
}

.cs-pg .voice-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cs-pg .voice-card__name {
    font-size: 16px;
    line-height: 1.45;
    color: #2D3446;
    font-weight: 600;
}

.cs-pg .voice-card__role {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
}

.cs-pg .voice-card__quote {
    font-size: 16px;
    line-height: 1.7;
    color: #2D3446;
    flex: 1;
}

.cs-pg .voice-card__tag {
    font-size: 13px;
    line-height: 1.45;
    color: #8A92A6;
    background: rgba(45, 52, 70, 0.04);
    border-radius: 4px;
    padding: 4px 12px;
    align-self: flex-start;
}

@keyframes bg-flicker {
    0% {
        opacity: 1;
    }

    18% {
        opacity: 0.97;
    }

    35% {
        opacity: 1;
    }

    52% {
        opacity: 0.95;
    }

    70% {
        opacity: 1;
    }

    85% {
        opacity: 0.98;
    }

    100% {
        opacity: 1;
    }
}

.cs-pg .lead-strip {
    animation: bg-flicker 8s linear infinite;
}

@media (max-width: 1200px) {
    .cs-pg .lead-strip {
        grid-template-columns: 1fr 320px;
    }

    .cs-pg .lead-h1 {
        font-size: 52px;
    }

    .cs-pg .cases-grid__head {
        grid-template-columns: 160px 1fr;
    }

    .cs-pg .voices-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .cs-pg .lead-strip {
        grid-template-columns: 1fr;
    }

    .cs-pg .lead-strip__img-col {
        display: none;
    }

    .cs-pg .lead-strip__text {
        padding: 64px 32px;
    }

    .cs-pg .cases-grid {
        padding: 64px 32px;
    }

    .cs-pg .cases-grid__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cs-pg .case-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
    }

    .cs-pg .case-item__meta {
        grid-column: 2;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cs-pg .process-strip {
        grid-template-columns: 1fr;
        padding: 64px 32px;
        gap: 32px;
    }

    .cs-pg .proc-img-col img {
        height: 280px;
    }

    .cs-pg .voices-row {
        padding: 64px 32px;
    }

    .cs-pg .voices-row__head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cs-pg .voices-cards {
        grid-template-columns: 1fr;
    }

    .cs-pg .divider-b {
        margin: 0 32px;
    }
}

@media (max-width: 576px) {
    .cs-pg .lead-strip__text {
        padding: 32px 20px;
    }

    .cs-pg .lead-h1 {
        font-size: 28px;
    }

    .cs-pg .lead-sub {
        font-size: 16px;
    }

    .cs-pg .cases-grid {
        padding: 32px 20px;
    }

    .cs-pg .case-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .cs-pg .case-item__num {
        font-size: 28px;
    }

    .cs-pg .case-item__meta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cs-pg .process-strip {
        padding: 32px 20px;
    }

    .cs-pg .proc-head h2 {
        font-size: 28px;
    }

    .cs-pg .voices-row {
        padding: 32px 20px;
    }

    .cs-pg .voices-row__head h2 {
        font-size: 28px;
    }

    .cs-pg .divider-b {
        margin: 0 20px;
    }

    .cs-pg .cases-grid__htxt h2 {
        font-size: 28px;
    }
}

.success-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 20px;
    background-color: #FCFDFD;
}

.success-page .confirm-wrap {
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.success-page .confirm-wrap .icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-page .confirm-wrap .icon-wrap svg {
    width: 64px;
    height: 64px;
}

.success-page .confirm-wrap .confirm-heading {
    font-size: 28px;
    line-height: 1.15;
    color: #2D3446;
    margin: 0 0 20px;
}

.success-page .confirm-wrap .confirm-text {
    font-size: 16px;
    line-height: 1.7;
    color: #8A92A6;
    margin: 0 0 32px;
}

.success-page .confirm-wrap .divider-line {
    width: 48px;
    height: 2px;
    background-color: #2D3446;
    margin: 0 auto 32px;
    border-radius: 4px;
    opacity: 0.18;
}

.success-page .confirm-wrap .action-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.success-page .confirm-wrap .btn-primary {
    display: inline-block;
    padding: 12px 32px;
    background-color: #2D3446;
    color: #FCFDFD;
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2D3446;
    box-shadow: 1px 6px 18px -1px rgba(45, 52, 70, 0.08);
    transition: background-color 0.12s ease-out, border-color 0.12s ease-out;
    cursor: pointer;
}

.success-page .confirm-wrap .btn-primary:hover {
    background-color: #8A92A6;
    border-color: #8A92A6;
}

.success-page .confirm-wrap .btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background-color: transparent;
    color: #2D3446;
    font-size: 13px;
    line-height: 1.45;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #2D3446;
    transition: background-color 0.09s linear, color 0.09s linear;
    cursor: pointer;
}

.success-page .confirm-wrap .btn-secondary:hover {
    background-color: #2D3446;
    color: #FCFDFD;
}

@media (max-width: 576px) {
    .success-page {
        padding: 64px 20px;
    }

    .success-page .confirm-wrap .action-row {
        flex-direction: column;
        align-items: center;
    }

    .success-page .confirm-wrap .btn-primary,
    .success-page .confirm-wrap .btn-secondary {
        width: 100%;
        text-align: center;
    }
}