* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.pg-hdr {
    font-family: 'IBM Plex Serif', Georgia, serif;
    background: #ffffff;
    padding: 20px 20px 0;
}

.hdr-shell {
    max-width: 1024px;
    margin: 0 auto;
    background: linear-gradient(160deg, #f4f4f8 0%, #ecedf5 60%, #DCD6C6 100%);
    border-radius: 36px;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    padding: 40px 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.hdr-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.hdr-logo-wrap {
    width: 80px;
    height: 80px;
    border-radius: 48px;
    background: rgba(53, 59, 193, 0.07);
    border: 2px solid rgba(53, 59, 193, 0.18);
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05), 0 0 0 4px rgba(220, 214, 198, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.hdr-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #1b1e6e;
    letter-spacing: 0;
    text-align: center;
}

.hdr-tagline {
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    font-style: italic;
    text-align: center;
}

.hdr-contact-strip {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.hdr-contact-strip a {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.35;
    color: #2a2f8f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.25s ease-out, color 0.18s ease-out;
}

.hdr-contact-strip a:hover,
.hdr-contact-strip a:focus {
    background-color: rgba(53, 59, 193, 0.08);
    color: #353BC1;
    outline: none;
}

.hdr-contact-strip a:focus-visible {
    background-color: rgba(220, 214, 198, 0.5);
    outline: 2px solid #353BC1;
    outline-offset: 2px;
}

.hdr-contact-strip .oi {
    font-size: 15px;
    color: #353BC1;
}

.hdr-sep {
    width: 1px;
    height: 20px;
    background: rgba(53, 59, 193, 0.2);
    flex-shrink: 0;
}

.pg-nav {
    width: 100%;
    border-top: 1px solid rgba(53, 59, 193, 0.12);
}

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

.pg-nav ul li {
    position: relative;
}

.pg-nav ul li a {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.55;
    color: #2a2f8f;
    text-decoration: none;
    display: block;
    padding: 20px 20px;
    border-radius: 0;
    transition: color 0.2s ease-out, background-color 0.22s ease-out;
    white-space: nowrap;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.pg-nav ul li a:hover,
.pg-nav ul li a:focus {
    color: #353BC1;
    background-color: rgba(53, 59, 193, 0.06);
    outline: none;
}

.pg-nav ul li a:focus-visible {
    background-color: rgba(220, 214, 198, 0.45);
    outline: 2px solid #353BC1;
    outline-offset: -2px;
}

.pg-nav ul li a.active {
    color: #353BC1;
    font-weight: 700;
}

.nav-has-sub {
    position: relative;
}

.nav-has-sub>a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    margin-left: 8px;
    flex-shrink: 0;
}

.sub-menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10), 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    border: 1px solid rgba(53, 59, 193, 0.10);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease-out;
    z-index: 100;
}

.nav-has-sub::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
}

.nav-has-sub:hover .sub-menu,
.nav-has-sub:focus-within .sub-menu {
    opacity: 1;
    pointer-events: auto;
}

.sub-menu li a {
    font-size: 15px;
    line-height: 1.55;
    padding: 12px 20px;
    color: #2a2f8f;
    white-space: normal;
    border-radius: 0;
}

.sub-menu li a:hover,
.sub-menu li a:focus {
    background-color: rgba(53, 59, 193, 0.06);
    color: #353BC1;
}

.pg-ftr {
    font-family: 'IBM Plex Serif', Georgia, serif;
    background: #f0efe9;
    border-top: 1px solid rgba(53, 59, 193, 0.10);
    padding: 80px 20px 40px;
}

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

.ftr-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.ftr-logo-wrap {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: rgba(53, 59, 193, 0.07);
    border: 1.5px solid rgba(53, 59, 193, 0.15);
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.ftr-name {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #1b1e6e;
    text-align: center;
}

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

.ftr-contact-row a {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.55;
    color: #2a2f8f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background-color 0.28s ease-out, color 0.2s ease-out;
}

.ftr-contact-row a:hover,
.ftr-contact-row a:focus {
    background-color: rgba(53, 59, 193, 0.08);
    color: #353BC1;
    outline: none;
}

.ftr-contact-row a:focus-visible {
    background-color: rgba(220, 214, 198, 0.5);
    outline: 2px solid #353BC1;
    outline-offset: 2px;
}

.ftr-contact-row .oi {
    color: #353BC1;
    font-size: 15px;
}

.ftr-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    align-items: center;
}

.ftr-links a {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.55;
    color: #353BC1;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(53, 59, 193, 0.35);
    padding: 4px 8px;
    border-radius: 8px;
    transition: background-color 0.22s ease-out, text-decoration-color 0.18s ease-out;
}

.ftr-links a:hover,
.ftr-links a:focus {
    background-color: rgba(53, 59, 193, 0.07);
    text-decoration-color: #353BC1;
    outline: none;
}

.ftr-links a:focus-visible {
    background-color: rgba(220, 214, 198, 0.45);
    outline: 2px solid #353BC1;
    outline-offset: 2px;
}

.ftr-divider {
    width: 100%;
    height: 1px;
    background: rgba(53, 59, 193, 0.12);
}

.ftr-copy {
    font-size: 15px;
    line-height: 1.55;
    color: #5a5f8a;
    text-align: center;
}

.ftr-addr {
    font-size: 15px;
    line-height: 1.55;
    color: #7a7f9a;
    text-align: center;
    font-style: normal;
}

.cookie-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 340px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 10px 40px 0 rgba(53, 59, 193, 0.10), 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    border: 1px solid rgba(53, 59, 193, 0.12);
    padding: 20px;
    z-index: 4000;
    font-family: 'IBM Plex Serif', Georgia, serif;
}

.cookie-bar[hidden] {
    display: none;
}

.cookie-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon svg {
    width: 28px;
    height: 28px;
}

.cookie-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2f8f;
    margin: 0 0 12px;
}

.cookie-desc a {
    color: #353BC1;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-uses {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookie-uses li {
    font-size: 15px;
    line-height: 1.35;
    color: #5a5f8a;
    padding-left: 12px;
    position: relative;
}

.cookie-uses li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 48px;
    background: #353BC1;
}

.cookie-btns {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.cookie-btns button {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.35;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease-out;
}

.cookie-accept {
    color: #353BC1;
    text-decoration-color: #353BC1;
}

.cookie-accept:hover,
.cookie-accept:focus {
    color: #1b1e6e;
    outline: none;
}

.cookie-accept:focus-visible {
    background-color: rgba(220, 214, 198, 0.45);
    outline: 2px solid #353BC1;
    outline-offset: 2px;
    border-radius: 8px;
}

.cookie-decline {
    color: #7a7f9a;
    text-decoration-color: rgba(122, 127, 154, 0.4);
}

.cookie-decline:hover,
.cookie-decline:focus {
    color: #2a2f8f;
    outline: none;
}

.cookie-decline:focus-visible {
    background-color: rgba(220, 214, 198, 0.45);
    outline: 2px solid #353BC1;
    outline-offset: 2px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .pg-hdr {
        padding: 12px 12px 0;
    }

    .hdr-shell {
        padding: 20px 20px 0;
        border-radius: 8px;
    }

    .hdr-brand {
        margin-bottom: 20px;
    }

    .hdr-contact-strip {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 12px;
    }

    .hdr-sep {
        display: none;
    }

    .pg-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .pg-nav ul li a {
        justify-content: center;
        padding: 12px 20px;
    }

    .sub-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(53, 59, 193, 0.10);
        border-radius: 0;
        opacity: 1;
        pointer-events: auto;
        padding: 0;
        background: rgba(53, 59, 193, 0.03);
    }

    .nav-has-sub::before {
        display: none;
    }

    .ftr-contact-row {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-bar {
        width: calc(100vw - 40px);
        right: 20px;
        left: 20px;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    .hdr-name {
        font-size: 15px;
    }

    .ftr-links {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }
}

@media (min-width: 1280px) {
    .hdr-shell {
        padding: 40px 80px 0;
    }
}

.sk-policy-details {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a2a35;
    line-height: 1.8;
    font-size: 15px;
}

.sk-policy-details h1 {
    font-size: 64px;
    line-height: 1.1;
    color: #1e2060;
    margin-bottom: 40px;
    margin-top: 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #353BC1;
}

.sk-policy-details h2 {
    font-size: 34px;
    line-height: 1.35;
    color: #1e2060;
    margin-top: 80px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #D2D3DE;
}

.sk-policy-details h3 {
    font-size: 24px;
    line-height: 1.35;
    color: #2a2a35;
    margin-top: 40px;
    margin-bottom: 12px;
}

.sk-policy-details h4 {
    font-size: 15px;
    line-height: 1.55;
    color: #353BC1;
    margin-top: 40px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sk-policy-details h5 {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a35;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.sk-policy-details h6 {
    font-size: 15px;
    line-height: 1.55;
    color: #5a5a70;
    margin-top: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.sk-policy-details ul,
.sk-policy-details ol {
    margin-top: 12px;
    margin-bottom: 20px;
    padding-left: 40px;
}

.sk-policy-details ul {
    list-style: none;
    padding-left: 20px;
}

.sk-policy-details ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    line-height: 1.8;
}

.sk-policy-details ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background-color: #353BC1;
    opacity: 0.7;
}

.sk-policy-details ol {
    list-style: decimal;
}

.sk-policy-details ol li {
    margin-bottom: 8px;
    line-height: 1.8;
    padding-left: 4px;
}

.sk-policy-details ol li::marker {
    color: #353BC1;
    font-weight: 700;
}

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

.sk-policy-details ul ul li::before {
    width: 4px;
    height: 4px;
    background-color: #DCD6C6;
    border: 1px solid #353BC1;
    top: 12px;
}

.sk-policy-details strong,
.sk-policy-details b {
    font-weight: 700;
    color: #1e2060;
}

.sk-policy-details em,
.sk-policy-details i {
    font-style: italic;
    color: #3a3a50;
}

.sk-policy-details a {
    color: #353BC1;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.2s ease-out, text-decoration-color 0.25s ease-out;
    text-decoration-color: rgba(53, 59, 193, 0.4);
}

.sk-policy-details a:hover {
    color: #1e2060;
    text-decoration-color: #1e2060;
}

.sk-policy-details a:visited {
    color: #5a5fc0;
    text-decoration-color: rgba(90, 95, 192, 0.4);
}

.sk-policy-details hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #353BC1, #D2D3DE, transparent);
    margin-top: 80px;
    margin-bottom: 80px;
    opacity: 0.5;
}

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

    .sk-policy-details h1 {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .sk-policy-details h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .sk-policy-details h3 {
        font-size: 15px;
        margin-top: 20px;
    }

    .sk-policy-details hr {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .sk-policy-details {
        padding: 20px 12px;
    }

    .sk-policy-details h1 {
        font-size: 24px;
        line-height: 1.35;
    }

    .sk-policy-details ul,
    .sk-policy-details ol {
        padding-left: 20px;
    }

    .sk-policy-details ul {
        padding-left: 12px;
    }
}

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

.lrn-prog .pg-title {
    background: linear-gradient(170deg, transparent 0%, #353BC1 80%, #23278a 100%);
    padding: 40px 0 0 0;
    position: relative;
}

.lrn-prog .pg-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #DCD6C6 0%, #353BC1 60%, #D2D3DE 100%);
}

.lrn-prog .title-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
}

.lrn-prog .title-text {
    flex: 0 0 60%;
    padding-bottom: 40px;
}

.lrn-prog .title-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    color: #DCD6C6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(220, 214, 198, 0.4);
}

.lrn-prog .title-h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #fff;
    font-weight: 800;
}

.lrn-prog .title-h1 span {
    color: #DCD6C6;
}

.lrn-prog .title-tag {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 0 20px 0;
    max-width: 480px;
}

.lrn-prog .title-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
}

.lrn-prog .btn-prim {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    background: #DCD6C6;
    padding: 12px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease-out;
    z-index: 1;
}

.lrn-prog .btn-prim::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #23278a;
    transition: height 0.22s ease-out;
    z-index: -1;
}

.lrn-prog .btn-prim:hover {
    color: #fff;
}

.lrn-prog .btn-prim:hover::after {
    height: 100%;
}

.lrn-prog .btn-sec {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    color: #DCD6C6;
    background: transparent;
    padding: 12px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1.5px solid rgba(220, 214, 198, 0.5);
    position: relative;
    overflow: hidden;
    transition: color 0.2s ease-out, border-color 0.2s ease-out;
    z-index: 1;
}

.lrn-prog .btn-sec::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: rgba(220, 214, 198, 0.15);
    transition: height 0.18s ease-out;
    z-index: -1;
}

.lrn-prog .btn-sec:hover {
    color: #fff;
    border-color: rgba(220, 214, 198, 0.9);
}

.lrn-prog .btn-sec:hover::after {
    height: 100%;
}

.lrn-prog .title-img-col {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    align-self: flex-end;
}

.lrn-prog .title-img-wrap {
    width: 100%;
    max-width: 340px;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
}

.lrn-prog .title-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.55);
    transition: opacity 0.35s ease-out;
    pointer-events: none;
}

.lrn-prog .title-img-wrap:hover::after {
    opacity: 0;
}

.lrn-prog .title-img-wrap img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease-out, filter 0.4s ease-out;
    filter: grayscale(60%);
}

.lrn-prog .title-img-wrap:hover img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.lrn-prog .svg-divider-1 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.lrn-prog .svg-divider-1 svg {
    display: block;
    width: 100%;
}

.lrn-prog .svc-block {
    background: #fff;
    padding: 80px 0;
}

.lrn-prog .svc-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.lrn-prog .svc-left {
    flex: 0 0 58%;
}

.lrn-prog .svc-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lrn-prog .sec-label {
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 700;
    margin-bottom: 12px;
}

.lrn-prog .svc-h2 {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-align: center;
    color: #23278a;
}

.lrn-prog .svc-h2 span {
    color: #353BC1;
}

.lrn-prog .svc-lead {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a3a;
    margin: 0 0 20px 0;
}

.lrn-prog .svc-lead strong {
    color: #353BC1;
}

.lrn-prog .svc-steps {
    list-style: decimal;
    padding-left: 20px;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lrn-prog .svc-steps li {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a3a;
    padding-left: 4px;
}

.lrn-prog .svc-steps li strong {
    color: #353BC1;
}

.lrn-prog .metric-card {
    background: #f4f4f8;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    transition: box-shadow 0.28s ease-out, transform 0.28s ease-out;
}

.lrn-prog .metric-card:hover {
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    transform: translateY(-2px);
}

.lrn-prog .metric-num {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #353BC1;
    display: block;
}

.lrn-prog .metric-sep {
    display: block;
    width: 32px;
    height: 2px;
    background: #DCD6C6;
    margin: 8px 0;
}

.lrn-prog .metric-desc {
    font-size: 15px;
    line-height: 1.35;
    color: #3a3a4a;
}

.lrn-prog .svg-divider-2 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.lrn-prog .svg-divider-2 svg {
    display: block;
    width: 100%;
}

.lrn-prog .team-block {
    background: linear-gradient(155deg, #D2D3DE 0%, #DCD6C6 55%, #e8e6de 100%);
    padding: 80px 0;
}

.lrn-prog .team-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.lrn-prog .team-header {
    text-align: center;
    margin-bottom: 40px;
}

.lrn-prog .team-h2 {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 12px 0;
    color: #23278a;
}

.lrn-prog .team-h2 span {
    color: #353BC1;
}

.lrn-prog .team-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3a4a;
    max-width: 520px;
    margin: 0 auto;
}

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

.lrn-prog .person-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    transition: box-shadow 0.32s ease-out, transform 0.32s ease-out;
}

.lrn-prog .person-card:hover {
    box-shadow: 0 10px 40px 0 rgba(53, 59, 193, 0.10);
    transform: translateY(-4px);
}

.lrn-prog .person-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.lrn-prog .person-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.38);
    transition: opacity 0.38s ease-out;
    pointer-events: none;
}

.lrn-prog .person-card:hover .person-img-wrap::after {
    opacity: 0;
}

.lrn-prog .person-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.42s ease-out, filter 0.42s ease-out;
    filter: grayscale(40%);
}

.lrn-prog .person-card:hover .person-img-wrap img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.lrn-prog .person-info {
    padding: 12px;
}

.lrn-prog .person-name {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #23278a;
    margin: 0 0 4px 0;
}

.lrn-prog .person-role {
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    margin: 0 0 8px 0;
}

.lrn-prog .person-note {
    font-size: 15px;
    line-height: 1.35;
    color: #4a4a5a;
    margin: 0;
}

.lrn-prog .review-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.lrn-prog .review-strip {
    background: #fff;
    border-radius: 48px;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
}

.lrn-prog .review-stars {
    flex: 0 0 auto;
}

.lrn-prog .star-rating {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.lrn-prog .star-rating .star {
    width: 16px;
    height: 16px;
}

.lrn-prog .star-rating .star svg {
    width: 16px;
    height: 16px;
}

.lrn-prog .review-quote {
    flex: 1;
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a3a;
    font-style: italic;
}

.lrn-prog .review-author {
    flex: 0 0 auto;
    text-align: right;
}

.lrn-prog .review-name {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #353BC1;
    display: block;
}

.lrn-prog .review-pos {
    font-size: 15px;
    line-height: 1.35;
    color: #5a5a6a;
}

@keyframes wordReveal {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.lrn-prog .title-h1 .wr {
    display: inline-block;
    opacity: 0;
    animation: wordReveal 0.35s ease-out forwards;
}

.lrn-prog .title-h1 .wr:nth-child(1) {
    animation-delay: 0.05s;
}

.lrn-prog .title-h1 .wr:nth-child(2) {
    animation-delay: 0.15s;
}

.lrn-prog .title-h1 .wr:nth-child(3) {
    animation-delay: 0.25s;
}

.lrn-prog .title-h1 .wr:nth-child(4) {
    animation-delay: 0.35s;
}

.lrn-prog .curve-connector {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    pointer-events: none;
}

@media (max-width: 1280px) {
    .lrn-prog .title-h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .lrn-prog .title-inner {
        flex-direction: column;
        gap: 20px;
    }

    .lrn-prog .title-text {
        flex: none;
        width: 100%;
        padding-bottom: 0;
    }

    .lrn-prog .title-img-col {
        flex: none;
        width: 100%;
        align-items: flex-start;
    }

    .lrn-prog .title-img-wrap {
        max-width: 100%;
    }

    .lrn-prog .title-h1 {
        font-size: 34px;
    }

    .lrn-prog .svc-inner {
        flex-direction: column;
        gap: 20px;
    }

    .lrn-prog .svc-left {
        flex: none;
        width: 100%;
    }

    .lrn-prog .svc-right {
        flex: none;
        width: 100%;
        flex-direction: row;
    }

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

    .lrn-prog .review-strip {
        flex-direction: column;
        align-items: flex-start;
        border-radius: 8px;
        padding: 20px;
    }

    .lrn-prog .review-author {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .lrn-prog .svc-block {
        padding: 40px 0;
    }

    .lrn-prog .team-block {
        padding: 40px 0;
    }

    .lrn-prog .svc-right {
        flex-direction: column;
    }

    .lrn-prog .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .lrn-prog .title-links {
        flex-direction: column;
    }

    .lrn-prog .btn-prim,
    .lrn-prog .btn-sec {
        text-align: center;
    }
}

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

.srv .divider-grad {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #353BC1 30%, #DCD6C6 70%, transparent 100%);
    border: none;
    margin: 0;
}

.srv .tb {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.srv .tb-txt {
    position: relative;
    padding: 40px;
}

.srv .tb-txt::before,
.srv .tb-txt::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: #353BC1;
    border-style: solid;
}

.srv .tb-txt::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
}

.srv .tb-txt::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
}

.srv .tb-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #353BC1;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.srv .tb-h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #1b1e2e;
}

.srv .tb-h1 span {
    color: #353BC1;
}

.srv .tb-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0 0 20px;
}

.srv .tb-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #353BC1;
    border-bottom: 2px solid #DCD6C6;
    padding-bottom: 4px;
}

.srv .tb-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
}

.srv .tb-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
}

.srv .tb-img-wrap.big {
    grid-column: 1 / 3;
    height: 220px;
}

.srv .tb-img-wrap.sm {
    height: 120px;
}

.srv .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.9);
    transition: filter 0.25s ease-out;
}

.srv .tb-img-wrap:hover img {
    filter: saturate(1) brightness(1);
}

.srv .tb-img-wrap .img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.18);
    transition: opacity 0.35s ease-out;
    pointer-events: none;
}

.srv .tb-img-wrap:hover .img-overlay {
    opacity: 0;
}

.srv .tb-css-box {
    height: 120px;
    border-radius: 8px;
    background: linear-gradient(135deg, #353BC1 0%, #DCD6C6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv .tb-css-icon {
    width: 48px;
    height: 48px;
}

.srv .svc-area {
    background: #f4f4f8;
    background-image: url('./web_graphics/sidebar-20260518.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.srv .svc-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(244, 244, 248, 0.93);
    pointer-events: none;
}

.srv .svc-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
}

.srv .svc-hd {
    text-align: center;
    margin-bottom: 40px;
}

.srv .svc-hd h2 {
    font-size: 34px;
    line-height: 1.1;
    color: #1b1e2e;
    margin: 0 0 12px;
}

.srv .svc-hd h2 span {
    color: #353BC1;
}

.srv .svc-hd p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    max-width: 560px;
    margin: 0 auto;
}

.srv .svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.srv .svc-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    transition: box-shadow 0.2s ease-out, transform 0.25s ease-out;
    position: relative;
}

.srv .svc-card:hover {
    box-shadow: 0 10px 40px 0 rgba(53, 59, 193, 0.10);
    transform: scale(1.01);
}

.srv .svc-card.offset {
    margin-top: 20px;
}

.srv .svc-card-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #353BC1;
    border-radius: 50%;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.srv .svc-card h3 {
    font-size: 24px;
    line-height: 1.35;
    color: #1b1e2e;
    margin: 0 0 12px;
}

.srv .svc-card h3 span {
    color: #353BC1;
}

.srv .svc-card p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0 0 20px;
}

.srv .svc-card ol {
    margin: 0;
    padding-left: 20px;
}

.srv .svc-card ol li {
    font-size: 15px;
    line-height: 1.8;
    color: #3a3d52;
}

.srv .svc-tag {
    display: inline-block;
    margin-top: 20px;
    font-size: 15px;
    font-weight: 700;
    color: #353BC1;
    text-decoration: none;
    border-bottom: 2px solid #DCD6C6;
    padding-bottom: 4px;
    transition: border-color 0.2s ease-out;
}

.srv .svc-tag:hover {
    border-color: #353BC1;
}

.srv .tl-faq {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
}

.srv .tl-faq-hd {
    text-align: center;
    margin-bottom: 40px;
}

.srv .tl-faq-hd h2 {
    font-size: 34px;
    line-height: 1.1;
    color: #1b1e2e;
    margin: 0 0 12px;
}

.srv .tl-faq-hd h2 span {
    color: #353BC1;
}

.srv .tl-faq-hd p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
}

.srv .timeline {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: relative;
    margin-bottom: 80px;
    align-items: flex-start;
}

.srv .timeline::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #353BC1 0%, #DCD6C6 100%);
}

.srv .tl-step {
    flex: 1;
    padding-top: 48px;
    padding-right: 12px;
    position: relative;
}

.srv .tl-dot {
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    background: #353BC1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    transform: scale(0.8);
    animation: dotpop 0.35s ease-out 0.1s forwards;
}

@keyframes dotpop {
    0% {
        transform: scale(0.8);
    }

    70% {
        transform: scale(1.06);
    }

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

.srv .tl-step h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1b1e2e;
    margin: 0 0 4px;
    line-height: 1.35;
}

.srv .tl-step p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0;
}

.srv .faq-area {
    display: grid;
    grid-template-columns: 30fr 70fr;
    gap: 40px;
    align-items: start;
}

.srv .faq-left h3 {
    font-size: 24px;
    line-height: 1.35;
    color: #1b1e2e;
    margin: 0 0 12px;
}

.srv .faq-left h3 span {
    color: #353BC1;
}

.srv .faq-left p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0 0 20px;
}

.srv .faq-portraits {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.srv .faq-portrait {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #DCD6C6;
    flex-shrink: 0;
}

.srv .faq-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.srv .faq-portrait-label {
    font-size: 15px;
    color: #3a3d52;
    line-height: 1.35;
}

.srv .faq-portrait-label strong {
    display: block;
    color: #1b1e2e;
}

.srv .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv .faq-item {
    border: 1px solid #D2D3DE;
    border-radius: 8px;
    overflow: hidden;
}

.srv .faq-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.srv .faq-lbl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 700;
    color: #1b1e2e;
    line-height: 1.35;
    user-select: none;
    gap: 12px;
    background: #fff;
    transition: background 0.2s ease-out;
}

.srv .faq-lbl:hover {
    background: #f4f4f8;
}

.srv .faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
}

.srv .faq-icon::before,
.srv .faq-icon::after {
    content: '';
    position: absolute;
    background: #353BC1;
    border-radius: 2px;
    transition: transform 0.25s ease-out, opacity 0.2s ease-out;
}

.srv .faq-icon::before {
    width: 12px;
    height: 2px;
    top: 9px;
    left: 4px;
}

.srv .faq-icon::after {
    width: 2px;
    height: 12px;
    top: 4px;
    left: 9px;
}

.srv .faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out, padding 0.2s ease-out;
    padding: 0 20px;
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    background: #fff;
}

.srv .faq-item.open .faq-body {
    max-height: 300px;
    padding: 0 20px 20px;
}

.srv .faq-item.open .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

@media (max-width: 1280px) {
    .srv .tb {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .srv .tb {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 20px;
    }

    .srv .tb-h1 {
        font-size: 34px;
    }

    .srv .tb-txt {
        padding: 20px;
    }

    .srv .tb-imgs {
        order: -1;
    }

    .srv .tb-img-wrap.big {
        height: 160px;
    }

    .srv .svc-inner {
        padding: 40px 20px;
    }

    .srv .svc-grid {
        grid-template-columns: 1fr;
    }

    .srv .svc-card.offset {
        margin-top: 0;
    }

    .srv .tl-faq {
        padding: 40px 20px;
    }

    .srv .timeline {
        flex-direction: column;
        gap: 20px;
    }

    .srv .timeline::before {
        top: 0;
        bottom: 0;
        left: 18px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .srv .tl-step {
        padding-top: 0;
        padding-left: 52px;
        padding-right: 0;
    }

    .srv .tl-dot {
        top: 0;
        left: 0;
    }

    .srv .faq-area {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .srv .tb-h1 {
        font-size: 34px;
    }

    .srv .svc-card {
        padding: 20px;
    }

    .srv .tl-faq-hd h2,
    .srv .svc-hd h2 {
        font-size: 24px;
    }
}

.cu-pg {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.cu-pg .geo-shape {
    position: fixed;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(53, 59, 193, 0.06);
    border-radius: 8px;
    top: 10%;
    right: -120px;
    animation: rot-slow 28s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.cu-pg .geo-shape::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(53, 59, 193, 0.04);
    border-radius: 8px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(30deg);
}

@keyframes rot-slow {
    from {
        transform: rotate(0deg);
    }

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

.cu-pg .divider-cross {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 40px;
    overflow: hidden;
}

.cu-pg .divider-cross .cross-line {
    flex: 1;
    height: 1px;
    background: #D2D3DE;
}

.cu-pg .divider-cross .crosses {
    display: flex;
    gap: 12px;
    align-items: center;
}

.cu-pg .divider-cross .cr {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0;
}

.cu-pg .divider-cross .cr::before,
.cu-pg .divider-cross .cr::after {
    content: '';
    position: absolute;
    background: #353BC1;
    border-radius: 1px;
}

.cu-pg .divider-cross .cr::before {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px;
}

.cu-pg .divider-cross .cr::after {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0;
}

.cu-pg .pg-top {
    background: #353BC1;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
    animation: bright-pulse 6s ease-in-out infinite;
}

@keyframes bright-pulse {

    0%,
    100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.06);
    }
}

.cu-pg .pg-top .top-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
}

.cu-pg .pg-top .top-left {
    flex: 1;
}

.cu-pg .pg-top .top-right {
    flex: 1;
    padding-top: 40px;
}

.cu-pg .pg-top .faded-q {
    font-size: 64px;
    line-height: 1.1;
    color: rgba(220, 214, 198, 0.18);
    margin-bottom: 8px;
    display: block;
    font-style: normal;
}

.cu-pg .pg-top .top-label {
    font-size: 15px;
    line-height: 1.55;
    color: #DCD6C6;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.cu-pg .pg-top h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.cu-pg .pg-top h1 .w1 {
    color: #DCD6C6;
}

.cu-pg .pg-top h1 .w2 {
    color: rgba(255, 255, 255, 0.9);
}

.cu-pg .pg-top .top-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(220, 214, 198, 0.82);
    max-width: 380px;
}

.cu-pg .pg-top .contact-quick {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cu-pg .pg-top .cq-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cu-pg .pg-top .cq-lbl {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(220, 214, 198, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cu-pg .pg-top .cq-val {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease-out;
}

.cu-pg .pg-top .cq-val:hover {
    color: #DCD6C6;
}

.cu-pg .pg-top .cq-val.accent {
    color: #DCD6C6;
}

.cu-pg .form-blk {
    background: #fff;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.cu-pg .form-blk .fb-inner {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.cu-pg .form-blk .fb-left {
    flex: 1;
}

.cu-pg .form-blk .fb-right {
    flex: 1;
    padding-top: 80px;
}

.cu-pg .form-blk h2 {
    font-size: 34px;
    line-height: 1.35;
    margin: 0 0 8px 0;
    text-align: center;
}

.cu-pg .form-blk h2 .hw1 {
    color: #353BC1;
}

.cu-pg .form-blk h2 .hw2 {
    color: #2a2a2a;
}

.cu-pg .form-blk .fb-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.cu-pg .form-blk .cf {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.cu-pg .form-blk .f-lbl {
    font-size: 15px;
    line-height: 1.35;
    color: #2a2a2a;
    font-weight: 600;
}

.cu-pg .form-blk .f-lbl .req {
    color: #353BC1;
    margin-left: 2px;
}

.cu-pg .form-blk .f-inp {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #D2D3DE;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a2a;
    background: #fff;
    box-sizing: border-box;
    transition: border-color 0.2s ease-out, box-shadow 0.25s ease-out;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    outline: none;
}

.cu-pg .form-blk .f-inp::placeholder {
    color: #aaa;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.04em;
}

.cu-pg .form-blk .f-inp:focus {
    border-color: #353BC1;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
}

.cu-pg .form-blk .f-ta {
    min-height: 140px;
    resize: vertical;
}

.cu-pg .form-blk .f-check-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.cu-pg .form-blk .f-chk {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #353BC1;
    flex-shrink: 0;
    cursor: pointer;
}

.cu-pg .form-blk .f-check-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
}

.cu-pg .form-blk .f-check-txt a {
    color: #353BC1;
    text-decoration: underline;
}

.cu-pg .form-blk .f-check-txt a:hover {
    color: #2a2f9e;
}

.cu-pg .form-blk .btn-submit {
    display: inline-block;
    padding: 12px 40px;
    background: #353BC1;
    color: #fff;
    font-size: 15px;
    line-height: 1.55;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.2s ease-out, box-shadow 0.25s ease-out;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    align-self: flex-start;
}

.cu-pg .form-blk .btn-submit::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2a2f9e;
    transition: height 0.22s ease-out;
    z-index: 0;
    border-radius: 8px;
}

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

.cu-pg .form-blk .btn-submit:focus {
    outline: 2px solid #353BC1;
    outline-offset: 3px;
}

.cu-pg .form-blk .btn-submit span {
    position: relative;
    z-index: 1;
}

.cu-pg .form-blk .side-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cu-pg .form-blk .si-item {
    position: relative;
    overflow: hidden;
}

.cu-pg .form-blk .si-item .si-head {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.cu-pg .form-blk .si-item .si-head .si-dot {
    width: 8px;
    height: 8px;
    background: #353BC1;
    border-radius: 48px;
    flex-shrink: 0;
}

.cu-pg .form-blk .si-item .si-body {
    font-size: 15px;
    line-height: 1.55;
    color: #555;
    padding-left: 20px;
}

.cu-pg .form-blk .si-item .si-body a {
    color: #353BC1;
    text-decoration: none;
}

.cu-pg .form-blk .si-item .si-body a:hover {
    text-decoration: underline;
}

.cu-pg .form-blk .expand-slit {
    height: 4px;
    background: #D2D3DE;
    border-radius: 2px;
    overflow: hidden;
    transition: height 0.35s ease-out;
    margin-top: 8px;
}

.cu-pg .form-blk .si-item:hover .expand-slit {
    height: 40px;
}

.cu-pg .form-blk .expand-slit .slit-fill {
    height: 100%;
    background: linear-gradient(90deg, #353BC1 0%, #DCD6C6 100%);
    border-radius: 2px;
}

.cu-pg .channels-blk {
    background: #2a2a2f;
    padding: 80px 40px;
    position: relative;
    z-index: 1;
}

.cu-pg .channels-blk .cb-inner {
    max-width: 1024px;
    margin: 0 auto;
}

.cu-pg .channels-blk h3 {
    font-size: 34px;
    line-height: 1.35;
    margin: 0 0 40px 0;
    text-align: center;
}

.cu-pg .channels-blk h3 .cw1 {
    color: #DCD6C6;
}

.cu-pg .channels-blk h3 .cw2 {
    color: rgba(255, 255, 255, 0.9);
}

.cu-pg .channels-blk .ch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.cu-pg .channels-blk .ch-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(220, 214, 198, 0.12);
    border-radius: 8px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background 0.22s ease-out, border-color 0.22s ease-out;
}

.cu-pg .channels-blk .ch-card:hover {
    background: rgba(53, 59, 193, 0.14);
    border-color: rgba(53, 59, 193, 0.4);
}

.cu-pg .channels-blk .ch-icon {
    width: 40px;
    height: 40px;
    background: rgba(53, 59, 193, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cu-pg .channels-blk .ch-icon svg {
    width: 20px;
    height: 20px;
    fill: #DCD6C6;
}

.cu-pg .channels-blk .ch-lbl {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(220, 214, 198, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cu-pg .channels-blk .ch-val {
    font-size: 15px;
    line-height: 1.55;
    color: #fff;
    text-decoration: none;
    transition: color 0.18s ease-out;
}

.cu-pg .channels-blk .ch-val:hover {
    color: #DCD6C6;
}

.cu-pg .channels-blk .ch-note {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(220, 214, 198, 0.5);
}

.cu-pg .channels-blk .addr-row {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(220, 214, 198, 0.1);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.cu-pg .channels-blk .addr-row .addr-lbl {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(220, 214, 198, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}

.cu-pg .channels-blk .addr-row .addr-val {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
}

.cu-pg .channels-blk .bars-compare {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cu-pg .channels-blk .bc-label {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(220, 214, 198, 0.6);
    margin-bottom: 4px;
}

.cu-pg .channels-blk .bar-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.cu-pg .channels-blk .bar-name {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.75);
    width: 120px;
    flex-shrink: 0;
}

.cu-pg .channels-blk .bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 36px;
    overflow: hidden;
}

.cu-pg .channels-blk .bar-fill {
    height: 100%;
    border-radius: 36px;
    transition: width 0.45s ease-out;
}

.cu-pg .channels-blk .bar-fill.bf-a {
    background: #353BC1;
}

.cu-pg .channels-blk .bar-fill.bf-b {
    background: #DCD6C6;
}

.cu-pg .channels-blk .bar-pct {
    font-size: 15px;
    line-height: 1.35;
    color: rgba(220, 214, 198, 0.65);
    width: 40px;
    text-align: right;
    flex-shrink: 0;
}

@media (max-width: 1280px) {
    .cu-pg .pg-top h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .cu-pg .pg-top {
        padding: 40px 20px;
    }

    .cu-pg .pg-top .top-inner {
        flex-direction: column;
        gap: 40px;
    }

    .cu-pg .pg-top .top-right {
        padding-top: 0;
    }

    .cu-pg .pg-top h1 {
        font-size: 34px;
    }

    .cu-pg .pg-top .faded-q {
        font-size: 34px;
    }

    .cu-pg .form-blk {
        padding: 40px 20px;
    }

    .cu-pg .form-blk .fb-inner {
        flex-direction: column;
        gap: 40px;
    }

    .cu-pg .form-blk .fb-right {
        padding-top: 0;
    }

    .cu-pg .channels-blk {
        padding: 40px 20px;
    }

    .cu-pg .channels-blk .ch-grid {
        grid-template-columns: 1fr;
    }

    .cu-pg .channels-blk .addr-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cu-pg .channels-blk .bar-name {
        width: 80px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .cu-pg .pg-top h1 {
        font-size: 24px;
    }

    .cu-pg .form-blk h2 {
        font-size: 24px;
    }

    .cu-pg .channels-blk h3 {
        font-size: 24px;
    }

    .cu-pg .divider-cross {
        padding: 0 20px;
    }
}

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

.prm .geo-pulse {
    position: absolute;
    border: 1px solid rgba(53, 59, 193, 0.08);
    border-radius: 50%;
    pointer-events: none;
    animation: geo-breathe 8s ease-in-out infinite;
}

@keyframes geo-breathe {

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

    50% {
        opacity: 0.9;
        transform: scale(1.03);
    }
}

.prm .t-blk {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 40px;
    align-items: center;
    position: relative;
}

.prm .t-left {
    position: relative;
}

.prm .t-corner {
    position: absolute;
    pointer-events: none;
}

.prm .t-corner.tl {
    top: -20px;
    left: -20px;
    width: 48px;
    height: 48px;
    border-top: 1px solid #353BC1;
    border-left: 1px solid #353BC1;
    border-radius: 8px 0 0 0;
}

.prm .t-corner.br {
    bottom: -20px;
    right: -20px;
    width: 32px;
    height: 32px;
    border-bottom: 1px solid #DCD6C6;
    border-right: 1px solid #DCD6C6;
}

.prm .t-label {
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.prm .t-h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #1a1f2e;
}

.prm .t-h1 span {
    color: #353BC1;
}

.prm .t-thesis {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0 0 8px;
    max-width: 440px;
}

.prm .t-img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.prm .t-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease-out;
}

.prm .t-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.38);
    transition: background 0.35s ease-out;
    pointer-events: none;
}

.prm .t-img-wrap:hover .t-img-overlay {
    background: rgba(53, 59, 193, 0.08);
}

.prm .t-img-wrap:hover img {
    transform: scale(1.02);
}

.prm .clients-sec {
    background: #f5f4f0;
    position: relative;
    overflow: hidden;
}

.prm .clients-sec .geo-pulse {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -100px;
}

.prm .clients-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
}

.prm .sec-label {
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 20px;
    display: block;
}

.prm .sec-h2 {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 40px;
    text-align: center;
    color: #1a1f2e;
}

.prm .sec-h2 span {
    color: #353BC1;
}

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

.prm .c-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    position: relative;
}

.prm .c-card .rating {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-bottom: 12px;
}

.prm .c-card .star {
    width: 14px;
    height: 14px;
}

.prm .c-card .star svg {
    width: 14px;
    height: 14px;
    fill: #353BC1;
}

.prm .c-name {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 4px;
}

.prm .c-role {
    font-size: 15px;
    line-height: 1.35;
    color: #6a6e8a;
    margin: 0 0 12px;
}

.prm .c-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0;
}

.prm .c-portrait-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.prm .c-portrait {
    width: 56px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.prm .c-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prm .outcomes-sec {
    background: #fff;
    position: relative;
}

.prm .outcomes-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.prm .out-left {
    position: sticky;
    top: 40px;
}

.prm .out-h2 {
    font-size: 34px;
    line-height: 1.1;
    margin: 0 0 20px;
    color: #1a1f2e;
}

.prm .out-h2 span {
    color: #353BC1;
}

.prm .out-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0 0 20px;
}

.prm .out-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.prm .out-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prm .out-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 8px;
    background: #f5f4f0;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    transition: box-shadow 0.25s ease-out;
}

.prm .out-item:hover {
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
}

.prm .out-num {
    font-size: 34px;
    line-height: 1.1;
    color: #353BC1;
    font-weight: 700;
    flex-shrink: 0;
    width: 48px;
    text-align: center;
}

.prm .out-item-body {}

.prm .out-item-h {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 4px;
}

.prm .out-item-p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0;
}

.prm .situations-sec {
    background: linear-gradient(160deg, #353BC1 0%, #2a2f9e 40%, #1e2280 100%);
    position: relative;
    overflow: hidden;
}

.prm .situations-sec .geo-pulse {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: -100px;
    border-color: rgba(220, 214, 198, 0.15);
    animation-delay: 3s;
}

.prm .sit-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
}

.prm .sit-label {
    font-size: 15px;
    line-height: 1.35;
    color: #DCD6C6;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 20px;
    display: block;
}

.prm .sit-h2 {
    font-size: 34px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 40px;
    text-align: center;
}

.prm .sit-h2 span {
    color: #DCD6C6;
}

.prm .sit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.prm .sit-item {
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(220, 214, 198, 0.2);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: background 0.2s ease-out, border-color 0.2s ease-out;
}

.prm .sit-item:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(220, 214, 198, 0.45);
}

.prm .sit-item-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 12px;
    position: relative;
}

.prm .sit-item-icon svg {
    width: 36px;
    height: 36px;
    stroke: #DCD6C6;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dashoffset 0.45s ease-out;
}

.prm .sit-item-icon svg path,
.prm .sit-item-icon svg rect,
.prm .sit-item-icon svg circle,
.prm .sit-item-icon svg polyline,
.prm .sit-item-icon svg line {
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    transition: stroke-dashoffset 0.45s ease-out;
}

.prm .sit-item:hover .sit-item-icon svg path,
.prm .sit-item:hover .sit-item-icon svg rect,
.prm .sit-item:hover .sit-item-icon svg circle,
.prm .sit-item:hover .sit-item-icon svg polyline,
.prm .sit-item:hover .sit-item-icon svg line {
    stroke-dashoffset: 0;
}

.prm .sit-item-h {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.prm .sit-item-p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(220, 214, 198, 0.85);
    margin: 0;
}

.prm .sit-imgs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 40px;
}

.prm .sit-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.prm .sit-img-wrap img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease-out;
}

.prm .sit-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.5);
    transition: background 0.35s ease-out;
    pointer-events: none;
}

.prm .sit-img-wrap:hover .sit-img-overlay {
    background: rgba(53, 59, 193, 0.1);
}

.prm .sit-img-wrap:hover img {
    transform: scale(1.04);
}

.prm .limits-sec {
    background: #D2D3DE;
    position: relative;
}

.prm .limits-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.prm .lim-h2 {
    font-size: 34px;
    line-height: 1.1;
    color: #1a1f2e;
    margin: 0 0 20px;
}

.prm .lim-h2 span {
    color: #353BC1;
}

.prm .lim-intro {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0 0 20px;
}

.prm .lim-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.prm .lim-list {
    list-style: decimal;
    margin: 0;
    padding: 0 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prm .lim-list li {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    padding-left: 8px;
}

.prm .lim-list li strong {
    color: #1a1f2e;
}

.prm .diff-sec {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.prm .diff-sec .geo-pulse {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -80px;
    animation-delay: 1.5s;
}

.prm .diff-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
}

.prm .diff-h2 {
    font-size: 34px;
    line-height: 1.1;
    color: #1a1f2e;
    margin: 0 0 40px;
    text-align: center;
}

.prm .diff-h2 span {
    color: #353BC1;
}

.prm .diff-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.prm .diff-col-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.prm .diff-col-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease-out;
}

.prm .diff-col-img:hover img {
    transform: scale(1.03);
}

.prm .diff-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.32);
    transition: background 0.4s ease-out;
    pointer-events: none;
}

.prm .diff-col-img:hover .diff-img-overlay {
    background: rgba(53, 59, 193, 0.06);
}

.prm .diff-col-txt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.prm .diff-point {
    padding: 20px;
    border-radius: 8px;
    background: #f5f4f0;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
}

.prm .diff-point-h {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 8px;
}

.prm .diff-point-p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0;
}

.prm .step-track {
    display: flex;
    flex-direction: row;
    gap: 0;
    margin-top: 40px;
    position: relative;
}

.prm .step-track::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: #D2D3DE;
}

.prm .step-node {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.prm .step-num {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: #353BC1;
    color: #fff;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
}

.prm .step-lbl {
    font-size: 15px;
    line-height: 1.35;
    color: #3a3d52;
    text-align: center;
    max-width: 120px;
}

.prm .creds-sec {
    background: #f5f4f0;
    position: relative;
}

.prm .creds-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 40px;
}

.prm .creds-h2 {
    font-size: 34px;
    line-height: 1.1;
    color: #1a1f2e;
    margin: 0 0 8px;
    text-align: center;
}

.prm .creds-h2 span {
    color: #353BC1;
}

.prm .creds-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    text-align: center;
    margin: 0 0 40px;
}

.prm .creds-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 40px;
}

.prm .cred-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 36px;
    background: #fff;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    transition: box-shadow 0.2s ease-out;
}

.prm .cred-badge:hover {
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
}

.prm .cred-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #353BC1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.prm .cred-icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.prm .cred-txt {}

.prm .cred-name {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1a1f2e;
    display: block;
}

.prm .cred-detail {
    font-size: 15px;
    line-height: 1.35;
    color: #6a6e8a;
    display: block;
}

.prm .agg-rating {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 40px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    max-width: 480px;
    margin: 0 auto;
}

.prm .agg-score {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 700;
    color: #353BC1;
}

.prm .agg-right {}

.prm .agg-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-bottom: 4px;
}

.prm .agg-stars svg {
    width: 18px;
    height: 18px;
    fill: #353BC1;
}

.prm .agg-count {
    font-size: 15px;
    line-height: 1.35;
    color: #6a6e8a;
}

@media (max-width: 1280px) {
    .prm .t-blk {
        grid-template-columns: 1fr 420px;
    }

    .prm .t-h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .prm .t-blk {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .prm .t-h1 {
        font-size: 34px;
    }

    .prm .t-img-wrap img {
        height: 280px;
    }

    .prm .clients-inner,
    .prm .sit-inner,
    .prm .diff-inner,
    .prm .creds-inner {
        padding: 40px 20px;
    }

    .prm .clients-grid {
        grid-template-columns: 1fr;
    }

    .prm .outcomes-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px;
    }

    .prm .out-left {
        position: static;
    }

    .prm .sit-grid {
        grid-template-columns: 1fr;
    }

    .prm .sit-imgs {
        grid-template-columns: 1fr 1fr;
    }

    .prm .limits-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .prm .diff-cols {
        grid-template-columns: 1fr;
    }

    .prm .step-track {
        flex-direction: column;
        gap: 20px;
    }

    .prm .step-track::before {
        display: none;
    }

    .prm .step-node {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .prm .step-lbl {
        text-align: left;
        max-width: none;
    }

    .prm .creds-row {
        flex-direction: column;
        align-items: stretch;
    }

    .prm .agg-rating {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .prm .t-h1 {
        font-size: 24px;
    }

    .prm .sec-h2,
    .prm .out-h2,
    .prm .sit-h2,
    .prm .lim-h2,
    .prm .diff-h2,
    .prm .creds-h2 {
        font-size: 24px;
    }

    .prm .agg-score {
        font-size: 34px;
    }

    .prm .sit-imgs {
        grid-template-columns: 1fr;
    }
}

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

.abt-pg .pulse-el {
    animation: soft-pulse 3.2s ease-out infinite;
}

@keyframes soft-pulse {

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

    50% {
        transform: scale(1.02);
    }
}

.abt-pg .sec-split {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1024px;
    margin: 0 auto;
    padding: 80px 20px;
    gap: 40px;
}

.abt-pg .split-img-zone {
    flex: 0 0 420px;
    position: relative;
    border-radius: 48px;
    overflow: hidden;
}

.abt-pg .split-img-zone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease-out;
}

.abt-pg .img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.38);
    transition: opacity 0.35s ease-out;
    border-radius: 48px;
    pointer-events: none;
}

.abt-pg .split-img-zone:hover .img-overlay {
    opacity: 0;
}

.abt-pg .split-img-zone:hover img {
    transform: scale(1.03);
}

.abt-pg .geo-shape {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 120px;
    height: 120px;
    border-radius: 48px;
    background: rgba(220, 214, 198, 0.55);
    pointer-events: none;
    z-index: 0;
}

.abt-pg .geo-shape2 {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-radius: 36px;
    background: rgba(210, 211, 222, 0.45);
    pointer-events: none;
    z-index: 0;
}

.abt-pg .split-text-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.abt-pg .eyebrow {
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.abt-pg .main-hdg {
    font-size: 64px;
    line-height: 1.1;
    color: #1b1e3d;
    font-weight: 800;
    margin: 0;
}

.abt-pg .main-hdg span {
    color: #353BC1;
}

.abt-pg .main-hdg em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: #DCD6C6;
    text-decoration-thickness: 4px;
    text-underline-offset: 6px;
}

.abt-pg .lead-para {
    font-size: 15px;
    line-height: 1.55;
    color: #2c2f4a;
    max-width: 480px;
}

.abt-pg .lead-para strong {
    color: #1b1e3d;
}

.abt-pg .stat-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 8px;
}

.abt-pg .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
}

.abt-pg .stat-num {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #353BC1;
}

.abt-pg .stat-lbl {
    font-size: 15px;
    line-height: 1.35;
    color: #4a4e6a;
}

.abt-pg .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 40px;
    background: #1b1e3d;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.25s ease-out;
    align-self: flex-start;
    margin-top: 8px;
}

.abt-pg .cta-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #353BC1;
    transition: height 0.35s ease-out;
    z-index: 0;
}

.abt-pg .cta-link:hover::before {
    height: 100%;
}

.abt-pg .cta-link span {
    position: relative;
    z-index: 1;
}

.abt-pg .cta-link:focus-visible {
    outline: 3px solid #353BC1;
    outline-offset: 3px;
}

.abt-pg .sec-timeline {
    background: linear-gradient(160deg, #f4f4f8 0%, #e8e8f0 55%, #dcd6c6 100%);
    padding: 80px 0;
    position: relative;
}

.abt-pg .tl-inner {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-pg .tl-hdg-wrap {
    text-align: center;
    margin-bottom: 40px;
}

.abt-pg .tl-hdg {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #1b1e3d;
    margin: 0 0 12px;
}

.abt-pg .tl-hdg span {
    color: #353BC1;
}

.abt-pg .tl-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4e6a;
    max-width: 520px;
    margin: 0 auto;
}

.abt-pg .tl-track {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.abt-pg .tl-track::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #353BC1 0%, #DCD6C6 100%);
    z-index: 0;
}

.abt-pg .tl-point {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.abt-pg .tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 36px;
    background: #fff;
    border: 3px solid #353BC1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    flex-shrink: 0;
}

.abt-pg .tl-dot svg {
    width: 18px;
    height: 18px;
}

.abt-pg .tl-card {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    width: 100%;
    text-align: center;
}

.abt-pg .tl-year {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #353BC1;
    margin-bottom: 4px;
}

.abt-pg .tl-card-hdg {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1e3d;
    margin: 0 0 4px;
}

.abt-pg .tl-card-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4e6a;
    margin: 0;
}

.abt-pg .team-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(53, 59, 193, 0.12);
}

.abt-pg .portrait-col {
    flex: 0 0 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.abt-pg .portrait-wrap {
    width: 120px;
    height: 160px;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    position: relative;
}

.abt-pg .portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease-out;
}

.abt-pg .portrait-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.25);
    transition: opacity 0.3s ease-out;
    pointer-events: none;
}

.abt-pg .portrait-wrap:hover .portrait-overlay {
    opacity: 0;
}

.abt-pg .portrait-wrap:hover img {
    transform: scale(1.04);
}

.abt-pg .portrait-name {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1e3d;
    text-align: center;
}

.abt-pg .portrait-role {
    font-size: 15px;
    line-height: 1.35;
    color: #353BC1;
    text-align: center;
}

.abt-pg .team-bio-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abt-pg .bio-hdg {
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1e3d;
    margin: 0;
}

.abt-pg .bio-hdg span {
    color: #353BC1;
}

.abt-pg .bio-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4e6a;
    margin: 0;
}

.abt-pg .bio-txt strong {
    color: #1b1e3d;
}

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

.abt-pg .rating-label {
    font-size: 15px;
    line-height: 1.35;
    color: #4a4e6a;
}

.abt-pg .star-container {
    display: inline-flex;
}

.abt-pg .star {
    width: 18px;
    height: 18px;
    fill: #353BC1;
}

.abt-pg .star.empty {
    fill: #D2D3DE;
}

.abt-pg .geom-motif {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    overflow: hidden;
    pointer-events: none;
}

.abt-pg .geom-dot {
    width: 8px;
    height: 8px;
    border-radius: 36px;
    background: rgba(53, 59, 193, 0.18);
    flex-shrink: 0;
}

.abt-pg .frosted-band {
    margin-top: 40px;
    padding: 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 2px 6px rgba(53, 59, 193, 0.07), 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
}

.abt-pg .frosted-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.6);
}

.abt-pg .fi-lbl {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b1e3d;
}

.abt-pg .fi-lbl span {
    color: #353BC1;
}

.abt-pg .fi-txt {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4e6a;
    margin: 0;
}

.abt-pg .img-pair-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
    align-items: stretch;
}

.abt-pg .img-pair-item {
    flex: 1;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.abt-pg .img-pair-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease-out;
}

.abt-pg .img-pair-overlay {
    position: absolute;
    inset: 0;
    background: rgba(53, 59, 193, 0.32);
    transition: opacity 0.35s ease-out;
    pointer-events: none;
}

.abt-pg .img-pair-item:hover .img-pair-overlay {
    opacity: 0;
}

.abt-pg .img-pair-item:hover img {
    transform: scale(1.04);
}

.abt-pg .img-caption {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    text-shadow: 0 1px 6px rgba(53, 59, 193, 0.4);
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 1280px) {
    .abt-pg .sec-split {
        padding: 80px 20px;
    }

    .abt-pg .split-img-zone {
        flex: 0 0 360px;
    }

    .abt-pg .main-hdg {
        font-size: 64px;
    }
}

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

    .abt-pg .split-img-zone {
        flex: none;
        height: 280px;
    }

    .abt-pg .main-hdg {
        font-size: 34px;
    }

    .abt-pg .stat-row {
        flex-wrap: wrap;
    }

    .abt-pg .tl-track {
        flex-direction: column;
        align-items: flex-start;
    }

    .abt-pg .tl-track::before {
        top: 0;
        bottom: 0;
        left: 20px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, #353BC1 0%, #DCD6C6 100%);
    }

    .abt-pg .tl-point {
        flex-direction: row;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .abt-pg .tl-card {
        text-align: left;
    }

    .abt-pg .team-row {
        flex-direction: column;
        gap: 20px;
    }

    .abt-pg .portrait-col {
        flex-direction: row;
        flex: none;
        align-items: center;
        gap: 20px;
    }

    .abt-pg .frosted-band {
        flex-direction: column;
    }

    .abt-pg .img-pair-row {
        flex-direction: column;
    }

    .abt-pg .tl-hdg {
        font-size: 24px;
    }

    .abt-pg .geom-motif {
        display: none;
    }
}

@media (max-width: 480px) {
    .abt-pg .main-hdg {
        font-size: 34px;
    }

    .abt-pg .stat-item {
        flex: 1 1 calc(50% - 10px);
    }

    .abt-pg .cta-link {
        width: 100%;
        justify-content: center;
    }

    .abt-pg .tl-inner {
        padding: 0 12px;
    }

    .abt-pg .sec-timeline {
        padding: 40px 0;
    }
}

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

.pg-success .inner {
    max-width: 1024px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.pg-success .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background: #353BC1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 28px 0 rgba(53, 59, 193, 0.10);
    flex-shrink: 0;
}

.pg-success .icon-wrap svg {
    display: block;
}

.pg-success .msg-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.pg-success .msg-block .heading {
    font-size: 34px;
    line-height: 1.1;
    color: #1b1e3d;
    margin: 0;
}

.pg-success .msg-block .heading span {
    color: #353BC1;
}

.pg-success .msg-block .sub {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0;
    max-width: 480px;
}

.pg-success .divider {
    width: 48px;
    height: 3px;
    background: #DCD6C6;
    border-radius: 8px;
}

.pg-success .detail-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.pg-success .detail-block .note {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3d52;
    margin: 0;
    text-align: center;
    max-width: 420px;
}

.pg-success .detail-block .note strong {
    color: #1b1e3d;
}

.pg-success .back-link {
    display: inline-block;
    padding: 12px 40px;
    background: #353BC1;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid #353BC1;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    transition: background 0.25s ease-out, color 0.18s ease-out, box-shadow 0.22s ease-out;
    position: relative;
    overflow: hidden;
}

.pg-success .back-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #1b1e3d;
    border-radius: 8px;
    transition: bottom 0.28s ease-out;
    z-index: 0;
}

.pg-success .back-link:hover::before {
    bottom: 0;
}

.pg-success .back-link span {
    position: relative;
    z-index: 1;
}

.pg-success .back-link:focus-visible {
    outline: 2px solid #353BC1;
    outline-offset: 3px;
}

.pg-success .meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.pg-success .meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 20px;
    background: #f5f5f8;
    border-radius: 8px;
    box-shadow: 0 1px 6px 0 rgba(53, 59, 193, 0.05);
    min-width: 140px;
}

.pg-success .meta-item .label {
    font-size: 15px;
    line-height: 1.35;
    color: #7a7d99;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 15px;
}

.pg-success .meta-item .val {
    font-size: 15px;
    line-height: 1.35;
    color: #1b1e3d;
}

.pg-success .meta-item .val strong {
    color: #353BC1;
}

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

    .pg-success .inner {
        gap: 20px;
    }

    .pg-success .msg-block .heading {
        font-size: 24px;
    }

    .pg-success .meta-row {
        flex-direction: column;
        gap: 8px;
    }

    .pg-success .meta-item {
        width: 100%;
        min-width: unset;
    }
}