body {
    margin: 0;
    position: relative;
    min-height: 100vh;
    font-family: 'Fira Code', monospace
}

.pg-wrap {
    box-sizing: border-box;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px
}

.site-head {
    border-bottom: 2px solid #3A5C74;
    background: #fff;
    position: relative
}

.head-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 28px;
    gap: 28px;
    background: linear-gradient(135deg, #3A5C74 0%, #4E8D8B 100%);
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box
}

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

.logo-pill {
    background: #fff;
    border-radius: 22px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 4px 28px -2px #3a5c741a 0 0 0 2px #4e8d8b4d;
    width: 80px;
    height: 52px;
    box-sizing: border-box
}

.logo-pill img {
    width: 48px;
    height: 40px;
    object-fit: contain;
    display: block
}

.brand-name {
    font-family: 'Fira Code', monospace;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0;
    line-height: 1.2
}

.head-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0
}

.head-contact a {
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    color: #ffffffeb;
    text-decoration: none;
    line-height: 1.6;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.head-contact a:focus {
    outline: 2px dashed #7CC599;
    outline-offset: 2px
}

.head-contact a:hover {
    color: #7CC599
}

.head-nav-bar {
    background: #fff;
    border-top: 1px solid #3a5c741f;
    box-shadow: -1px 4px 28px -2px #3a5c741a
}

.head-nav-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px;
    box-sizing: border-box;
    display: flex;
    align-items: stretch;
    gap: 4px;
    flex-wrap: wrap
}

.nav-item {
    position: relative
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 16px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    font-weight: 700;
    color: #3A5C74;
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: color .35s ease-in-out, border-color .35s ease-in-out;
    min-height: 44px;
    box-sizing: border-box
}

.nav-link:hover,
.nav-link:focus {
    color: #4E8D8B;
    border-bottom-color: #7CC599;
    outline: none
}

.nav-link:focus-visible {
    outline: 2px dashed #3A5C74;
    outline-offset: 2px
}

.nav-item:hover .sub-panel,
.nav-item:focus-within .sub-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.sub-panel {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #3a5c7424;
    border-radius: 4px;
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    padding: 8px 0;
    min-width: 240px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity .38s ease-in-out, transform .38s ease-in-out
}

.sub-panel::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent
}

.sub-link {
    display: block;
    padding: 8px 16px;
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    color: #3A5C74;
    text-decoration: none;
    line-height: 1.6;
    transition: background-color .32s ease-in-out, color .32s ease-in-out;
    min-height: 44px;
    box-sizing: border-box;
    display: flex;
    align-items: center
}

.sub-link:hover,
.sub-link:focus {
    background: #4e8d8b14;
    color: #4E8D8B;
    outline: none
}

.sub-link:focus-visible {
    outline: 2px dashed #3A5C74;
    outline-offset: -2px
}

.nav-arrow {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    flex-shrink: 0
}

.site-foot {
    background: linear-gradient(180deg, #f2f6f8 0%, #e8f0f4 100%);
    border-top: 2px solid #3a5c742e;
    font-family: 'Fira Code', monospace
}

.foot-main {
    max-width: 1440px;
    margin: 0 auto;
    padding: 56px 28px 28px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 56px;
    align-items: start
}

.foot-brand {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.foot-logo-wrap {
    display: flex;
    align-items: center;
    gap: 16px
}

.foot-logo-pill {
    background: #fff;
    border-radius: 14px;
    padding: 8px;
    box-shadow: -1px 4px 28px -2px #3a5c741a 0 0 0 1px #3a5c741f;
    width: 56px;
    height: 56px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.foot-logo-pill img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.foot-brand-name {
    font-size: 16px;
    font-weight: 700;
    color: #3A5C74;
    line-height: 1.2
}

.foot-tagline {
    font-size: 13px;
    color: #4E8D8B;
    line-height: 1.6;
    max-width: 220px
}

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

.foot-col-label {
    font-size: 13px;
    font-weight: 700;
    color: #3A5C74;
    line-height: 1.2;
    margin-bottom: 8px;
    display: block
}

.foot-addr {
    font-size: 13px;
    color: #3A5C74;
    line-height: 1.6;
    font-style: normal
}

.foot-contact-link {
    font-size: 13px;
    color: #4E8D8B;
    text-decoration: none;
    line-height: 1.6;
    transition: color .36s ease-in-out;
    display: block
}

.foot-contact-link:hover {
    color: #3A5C74
}

.foot-contact-link:focus-visible {
    outline: 2px dashed #3A5C74;
    outline-offset: 2px
}

.foot-legal-col {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.foot-legal-link {
    font-size: 13px;
    color: #4E8D8B;
    text-decoration: none;
    line-height: 1.6;
    transition: color .36s ease-in-out;
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center
}

.foot-legal-link:hover {
    color: #3A5C74
}

.foot-legal-link:focus-visible {
    outline: 2px dashed #3A5C74;
    outline-offset: 2px
}

.foot-bottom {
    border-top: 1px solid #3a5c7424;
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 28px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.foot-copy {
    font-size: 13px;
    color: #3a5c74a6;
    line-height: 1.6
}

.foot-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.foot-badge {
    font-size: 13px;
    background: #3A5C74;
    color: #fff;
    border-radius: 2px;
    padding: 4px 8px;
    line-height: 1.2
}

.foot-badge.alt {
    background: #4E8D8B
}

.foot-badge.light {
    background: #7CC599;
    color: #1d3a4a
}

@media (max-width: 992px) {
    .foot-main {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    .foot-brand {
        grid-column: 1 / -1
    }
}

@media (max-width: 576px) {
    .head-top {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 16px
    }

    .head-contact {
        align-items: center
    }

    .head-nav-inner {
        padding: 0 16px
    }

    .nav-link {
        padding: 12px 8px;
        font-size: 13px
    }

    .foot-main {
        grid-template-columns: 1fr;
        padding: 28px 16px 16px;
        gap: 28px
    }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px
    }
}

.consent-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #3A5C74;
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    z-index: 1000;
    font-family: 'Fira Code', monospace;
    box-sizing: border-box
}

.consent-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 28px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    gap: 28px;
    flex-wrap: wrap
}

.consent-text-col {
    flex: 1;
    min-width: 240px
}

.consent-desc {
    font-size: 13px;
    color: #3A5C74;
    line-height: 1.6;
    margin: 0 0 4px
}

.consent-headline {
    font-size: 16px;
    font-weight: 700;
    color: #3A5C74;
    line-height: 1.2;
    margin: 0
}

.consent-btn-row {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    flex-shrink: 0
}

.consent-btn {
    font-family: 'Fira Code', monospace;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    border: 2px solid #3A5C74;
    cursor: pointer;
    min-height: 44px;
    min-width: 100px;
    transition: background-color .32s cubic-bezier(0.34, 1.2, 0.64, 1), color .32s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .32s cubic-bezier(0.34, 1.2, 0.64, 1);
    line-height: 1.2
}

.consent-btn.accept {
    background: #3A5C74;
    color: #fff
}

.consent-btn.accept:hover {
    background: #4E8D8B;
    border-color: #4E8D8B;
    box-shadow: -1px 4px 28px -2px #3a5c741a
}

.consent-btn.reject {
    background: #fff;
    color: #3A5C74
}

.consent-btn.reject:hover {
    background: #3a5c740f;
    box-shadow: -1px 1px 5px -2px #3a5c7414
}

.consent-btn.manage {
    background: transparent;
    color: #4E8D8B;
    border-color: #4E8D8B
}

.consent-btn.manage:hover {
    background: #4e8d8b14
}

.consent-btn:focus-visible {
    outline: 2px dashed #3A5C74;
    outline-offset: 2px
}

.consent-btn:active {
    box-shadow: inset 0 2px 6px #3a5c742e
}

.consent-panel {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 28px 16px;
    box-sizing: border-box;
    border-top: 1px solid #3a5c741f
}

.consent-panel-inner {
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.consent-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 0
}

.consent-toggle-label {
    font-size: 13px;
    color: #3A5C74;
    line-height: 1.6;
    flex: 1
}

.consent-toggle-label strong {
    display: block;
    font-weight: 700;
    line-height: 1.2
}

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

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

.toggle-track {
    position: absolute;
    inset: 0;
    background: #3a5c7433;
    border-radius: 22px;
    cursor: pointer;
    transition: background-color .35s ease-in-out
}

.toggle-track::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 18px;
    height: 18px;
    border-radius: 22px;
    background: #fff;
    transition: transform .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: -1px 1px 5px -2px #3a5c7414
}

.toggle-switch input:checked+.toggle-track {
    background: #4E8D8B
}

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

.toggle-switch input:focus-visible+.toggle-track {
    outline: 2px dashed #3A5C74;
    outline-offset: 2px
}

.always-on-badge {
    font-size: 13px;
    color: #4E8D8B;
    font-weight: 700;
    flex-shrink: 0
}

.settings-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: #3A5C74;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 900;
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transition: background-color .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.settings-fab:hover {
    background: #4E8D8B;
    box-shadow: -1px 12px 52px -2px #3a5c7421
}

.settings-fab:focus-visible {
    outline: 2px dashed #3A5C74;
    outline-offset: 2px
}

.settings-fab:active {
    box-shadow: inset 0 2px 6px #3a5c742e
}

.settings-icon {
    width: 20px;
    height: 20px;
    display: block
}

.policy-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 56px 28px;
    color: #2c3e50
}

.policy-section h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #3A5C74;
    margin-bottom: 28px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #4E8D8B
}

.policy-section h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #3A5C74;
    margin-top: 56px;
    margin-bottom: 16px
}

.policy-section h3 {
    font-size: 28px;
    line-height: 1.6;
    color: #4E8D8B;
    margin-top: 28px;
    margin-bottom: 16px
}

.policy-section h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #3A5C74;
    margin-top: 28px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.policy-section h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #4E8D8B;
    margin-top: 16px;
    margin-bottom: 8px
}

.policy-section h6 {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.policy-section p {
    font-size: 16px;
    line-height: 1.9;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 16px
}

.policy-section ul,
.policy-section ol {
    font-size: 16px;
    line-height: 1.9;
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 28px
}

.policy-section ul {
    list-style: none;
    padding-left: 28px
}

.policy-section ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px
}

.policy-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #7CC599
}

.policy-section ol {
    list-style: decimal
}

.policy-section ol li {
    padding-left: 8px;
    margin-bottom: 8px
}

.policy-section ol li::marker {
    color: #4E8D8B;
    font-size: 16px
}

.policy-section ul ul,
.policy-section ol ol,
.policy-section ul ol,
.policy-section ol ul {
    margin-top: 8px;
    margin-bottom: 4px
}

.policy-section em,
.policy-section i {
    font-style: italic;
    color: #4E8D8B
}

.policy-section hr {
    border: none;
    border-top: 1px solid #4e8d8b40;
    margin-top: 56px;
    margin-bottom: 56px
}

.policy-section table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 4px 28px -2px #3a5c741a
}

.policy-section thead {
    background-color: #3A5C74;
    color: #fff
}

.policy-section thead th {
    padding: 16px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .07em;
    text-align: left;
    color: #fff;
    border: none
}

.policy-section tbody tr {
    border-bottom: 1px solid #4e8d8b26;
    transition: background-color .35s ease-in-out
}

.policy-section tbody tr:last-child {
    border-bottom: none
}

.policy-section tbody tr:nth-child(even) {
    background-color: #7cc59912
}

.policy-section tbody tr:hover {
    background-color: #4e8d8b1a
}

.policy-section td {
    padding: 16px;
    color: #2c3e50;
    vertical-align: top
}

.policy-section th {
    padding: 16px;
    text-align: left
}

.policy-section div {
    margin-bottom: 16px
}

@media (max-width: 992px) {
    .policy-section {
        padding: 56px 28px
    }

    .policy-section h1 {
        font-size: 38px
    }

    .policy-section h2 {
        font-size: 28px
    }

    .policy-section h3 {
        font-size: 16px
    }
}

@media (max-width: 576px) {
    .policy-section {
        padding: 28px 16px
    }

    .policy-section h1 {
        font-size: 28px
    }

    .policy-section h2 {
        font-size: 28px;
        margin-top: 28px
    }

    .policy-section h3 {
        font-size: 16px
    }

    .policy-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px
    }

    .policy-section thead th,
    .policy-section td {
        padding: 8px;
        font-size: 13px
    }

    .policy-section hr {
        margin-top: 28px;
        margin-bottom: 28px
    }
}

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

.proc-pg * {
    box-sizing: border-box
}

.proc-pg .pg-lead {
    position: relative;
    background: linear-gradient(170deg, transparent 0%, #3A5C74 100%);
    padding: 56px 28px;
    overflow: hidden
}

.proc-pg .pg-lead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(./picture_gallery/DSCN8658.jpg) center/cover no-repeat;
    opacity: .18;
    z-index: 0;
    filter: grayscale(30%)
}

.proc-pg .pg-lead::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(170deg, #4a8d8b1f 0%, #3a5c74eb 100%);
    z-index: 1
}

.proc-pg .lead-shape-a {
    position: absolute;
    top: -28px;
    right: 8%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid #7cc59938;
    z-index: 2;
    pointer-events: none
}

.proc-pg .lead-shape-b {
    position: absolute;
    bottom: 16px;
    left: 4%;
    width: 80px;
    height: 80px;
    border-radius: 22px;
    border: 1px solid #7cc5992e;
    transform: rotate(22deg);
    z-index: 2;
    pointer-events: none
}

.proc-pg .lead-shape-c {
    position: absolute;
    top: 28px;
    right: 18%;
    width: 44px;
    height: 44px;
    border-radius: 4px;
    background: #7cc5991a;
    z-index: 2;
    transform: rotate(-14deg);
    pointer-events: none
}

.proc-pg .lead-inner {
    position: relative;
    z-index: 3;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.proc-pg .lead-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffc7;
    max-width: 540px;
    margin: 0
}

.proc-pg .lead-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    max-width: 720px;
    text-shadow: 0 2px 18px #3a5c7461
}

.proc-pg .lead-h1 .acc {
    color: #7CC599
}

.proc-pg .lead-h1 .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(-22px);
    animation: letter-drop .38s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

@keyframes letter-drop {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.proc-pg .lead-tag {
    display: inline-block;
    background: #4E8D8B;
    color: #fff;
    font-size: 13px;
    line-height: 1.6;
    padding: 4px 16px;
    border-radius: 2px
}

.proc-pg .lead-bar {
    display: flex;
    flex-direction: row;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 8px
}

.proc-pg .lead-stat {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.proc-pg .lead-stat-num {
    font-size: 28px;
    line-height: 1.2;
    color: #7CC599;
    font-weight: 700
}

.proc-pg .lead-stat-lbl {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffffa6
}

.proc-pg .steps-sec {
    background: #fff;
    padding: 56px 28px;
    position: relative
}

.proc-pg .steps-sec::after {
    content: '';
    position: absolute;
    right: 0;
    top: 56px;
    bottom: 56px;
    width: 3px;
    background: linear-gradient(180deg, #7CC599 0%, transparent 100%);
    border-radius: 2px
}

.proc-pg .steps-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start
}

.proc-pg .steps-aside {
    position: sticky;
    top: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.proc-pg .steps-aside-label {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    text-transform: uppercase;
    letter-spacing: .08em
}

.proc-pg .steps-aside-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #3A5C74;
    margin: 0;
    text-shadow: 1px 2px 8px #3a5c741a
}

.proc-pg .steps-aside-h2 .acc {
    color: #4E8D8B
}

.proc-pg .steps-aside-p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5e6a;
    margin: 0;
    max-width: 320px
}

.proc-pg .steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0
}

.proc-pg .step-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    position: relative;
    padding-bottom: 28px
}

.proc-pg .step-item:last-child {
    padding-bottom: 0
}

.proc-pg .step-col-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0
}

.proc-pg .step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #3A5C74;
    color: #fff;
    font-size: 16px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.proc-pg .step-item:hover .step-num {
    background: #4E8D8B;
    box-shadow: -1px 4px 28px -2px #4e8d8b38
}

.proc-pg .step-line {
    width: 2px;
    flex: 1;
    min-height: 40px;
    background: linear-gradient(180deg, #4E8D8B 0%, #7cc59940 100%);
    border-radius: 2px;
    margin-top: 4px
}

.proc-pg .step-item:last-child .step-line {
    display: none
}

.proc-pg .step-body {
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.proc-pg .step-h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #3A5C74;
    margin: 0;
    font-weight: 700
}

.proc-pg .step-p {
    font-size: 13px;
    line-height: 1.9;
    color: #4a5e6a;
    margin: 0
}

.proc-pg .step-badge {
    display: inline-block;
    background: #7cc59926;
    color: #3A5C74;
    font-size: 13px;
    line-height: 1.6;
    padding: 4px 8px;
    border-radius: 4px;
    align-self: flex-start
}

.proc-pg .split-sec {
    position: relative;
    padding: 0;
    overflow: hidden
}

.proc-pg .split-top {
    background: #f4f7f9;
    padding: 56px 28px 28px
}

.proc-pg .split-bottom {
    background: #3A5C74;
    padding: 28px 28px 56px
}

.proc-pg .split-top-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center
}

.proc-pg .split-img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden
}

.proc-pg .split-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 14px;
    transition: transform .42s ease-in-out, box-shadow .42s ease-in-out
}

.proc-pg .split-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.proc-pg .split-img-wrap:hover .split-img {
    transform: scale(1.04);
    box-shadow: -1px 12px 52px -2px #3a5c742e
}

.proc-pg .split-img-wrap:hover::after {
    border-color: #4E8D8B
}

.proc-pg .split-txt {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.proc-pg .split-label {
    font-size: 13px;
    color: #4E8D8B;
    text-transform: uppercase;
    letter-spacing: .08em
}

.proc-pg .split-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #3A5C74;
    margin: 0;
    text-shadow: 1px 2px 8px #3a5c7417
}

.proc-pg .split-h2 .acc {
    color: #4E8D8B
}

.proc-pg .split-p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a5e6a;
    margin: 0
}

.proc-pg .feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.proc-pg .feat-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.9;
    color: #4a5e6a
}

.proc-pg .feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #7CC599;
    flex-shrink: 0;
    margin-top: 7px
}

.proc-pg .split-bottom-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.proc-pg .metric-card {
    background: #ffffff12;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #ffffff1a;
    transition: background .4s ease-in-out, box-shadow .4s ease-in-out
}

.proc-pg .metric-card:hover {
    background: #ffffff1f;
    box-shadow: -1px 12px 52px -2px #3a5c7438
}

.proc-pg .metric-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: #7cc59933;
    display: flex;
    align-items: center;
    justify-content: center
}

.proc-pg .metric-icon svg {
    width: 18px;
    height: 18px;
    fill: #7CC599
}

.proc-pg .metric-val {
    font-size: 28px;
    line-height: 1.2;
    color: #7CC599;
    font-weight: 700
}

.proc-pg .metric-lbl {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffffa6
}

.proc-pg .expert-sec {
    background: #fff;
    padding: 56px 28px;
    position: relative
}

.proc-pg .expert-sec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 56px;
    bottom: 56px;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, #4E8D8B 50%, transparent 100%);
    border-radius: 2px
}

.proc-pg .expert-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start
}

.proc-pg .expert-profile {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start
}

.proc-pg .expert-portrait-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.proc-pg .expert-portrait-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.proc-pg .expert-portrait-wrap:hover::after {
    border-color: #4E8D8B
}

.proc-pg .expert-portrait-wrap:hover {
    box-shadow: -1px 4px 28px -2px #4e8d8b38
}

.proc-pg .expert-portrait {
    width: 120px;
    height: 120px;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    display: block;
    transition: transform .42s ease-in-out
}

.proc-pg .expert-portrait-wrap:hover .expert-portrait {
    transform: scale(1.06)
}

.proc-pg .expert-name {
    font-size: 16px;
    line-height: 1.6;
    color: #3A5C74;
    font-weight: 700;
    margin: 0
}

.proc-pg .expert-role {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    margin: 0
}

.proc-pg .expert-quote {
    font-size: 16px;
    line-height: 1.9;
    color: #4a5e6a;
    margin: 0;
    font-style: italic;
    border-top: 1px solid #3a5c741f;
    padding-top: 16px
}

.proc-pg .expert-right {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.proc-pg .expert-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #3A5C74;
    margin: 0;
    text-shadow: 1px 2px 8px #3a5c7417
}

.proc-pg .expert-h2 .acc {
    color: #7CC599
}

.proc-pg .expert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.proc-pg .exp-card {
    background: #f4f7f9;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: box-shadow .4s ease-in-out, background .4s ease-in-out
}

.proc-pg .exp-card::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    width: 3px;
    height: 28px;
    background: #7CC599;
    border-radius: 0 0 2px 2px
}

.proc-pg .exp-card:hover {
    background: #edf3f6;
    box-shadow: -1px 4px 28px -2px #3a5c7421
}

.proc-pg .exp-card-h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #3A5C74;
    margin: 0;
    font-weight: 700;
    padding-left: 8px
}

.proc-pg .exp-card-p {
    font-size: 13px;
    line-height: 1.9;
    color: #4a5e6a;
    margin: 0;
    padding-left: 8px
}

.proc-pg .expert-img-row {
    position: relative;
    border-radius: 14px;
    overflow: hidden
}

.proc-pg .expert-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    display: block;
    transition: transform .42s ease-in-out
}

.proc-pg .expert-img-row::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.proc-pg .expert-img-row:hover .expert-img {
    transform: scale(1.04)
}

.proc-pg .expert-img-row:hover::after {
    border-color: #4E8D8B
}

.proc-pg .divider-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0 28px;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden
}

.proc-pg .divider-a span {
    display: inline-block;
    flex-shrink: 0
}

.proc-pg .divider-a .d-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #3a5c7440
}

.proc-pg .divider-a .d-dash {
    width: 12px;
    height: 2px;
    border-radius: 2px;
    background: #3a5c742e
}

.proc-pg .divider-b {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0 28px;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden
}

.proc-pg .divider-b span {
    display: inline-block;
    flex-shrink: 0
}

.proc-pg .divider-b .d-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4e8d8b38
}

.proc-pg .divider-b .d-dash {
    width: 20px;
    height: 1px;
    border-radius: 2px;
    background: #4e8d8b26
}

.proc-pg .div-wrap-a {
    padding: 16px 0;
    background: #fff
}

.proc-pg .div-wrap-b {
    padding: 16px 0;
    background: #f4f7f9
}

@keyframes grad-angle {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.proc-pg .animated-grad-btn {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 4px;
    background: linear-gradient(120deg, #3A5C74, #4E8D8B, #7CC599, #4E8D8B, #3A5C74);
    background-size: 300% 300%;
    animation: grad-angle 4s ease-in-out infinite;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    transition: box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity .35s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.proc-pg .animated-grad-btn::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 2px;
    border: 1.5px solid #fff0;
    transition: border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.proc-pg .animated-grad-btn:hover {
    box-shadow: -1px 4px 28px -2px #4e8d8b52;
    opacity: .93
}

.proc-pg .animated-grad-btn:hover::after {
    border-color: #ffffff8c
}

.proc-pg .animated-grad-btn:active {
    box-shadow: inset -1px 2px 8px -2px #3a5c7447
}

.proc-pg .cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.proc-pg .sec-link {
    font-size: 16px;
    line-height: 1.6;
    color: #4E8D8B;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .35s ease-in-out, opacity .35s ease-in-out
}

.proc-pg .sec-link:hover {
    color: #3A5C74;
    opacity: .85
}

@media (max-width: 992px) {
    .proc-pg .lead-h1 {
        font-size: 38px
    }

    .proc-pg .steps-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .proc-pg .steps-aside {
        position: static
    }

    .proc-pg .split-top-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .proc-pg .split-bottom-inner {
        grid-template-columns: 1fr 1fr
    }

    .proc-pg .expert-inner {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .proc-pg .expert-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 576px) {
    .proc-pg .lead-h1 {
        font-size: 28px
    }

    .proc-pg .lead-bar {
        gap: 16px
    }

    .proc-pg .split-bottom-inner {
        grid-template-columns: 1fr
    }

    .proc-pg .steps-sec::after {
        display: none
    }

    .proc-pg .expert-sec::before {
        display: none
    }

    .proc-pg .pg-lead {
        padding: 56px 16px
    }

    .proc-pg .steps-sec,
    .proc-pg .expert-sec {
        padding: 56px 16px
    }
}

.up-prg {
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden
}

.up-prg .prog-title {
    padding: 56px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 56px
}

.up-prg .prog-title::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid #3a5c741f;
    border-radius: 14px;
    pointer-events: none;
    z-index: 0
}

.up-prg .prog-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 60% 50%, #4e8d8b12 0%, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.up-prg .pt-img-wrap {
    position: relative;
    z-index: 1;
    flex: 0 0 480px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 12px 52px -2px #3a5c7421
}

.up-prg .pt-img-wrap img {
    width: 480px;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.up-prg .pt-img-wrap:hover img {
    transform: scale(1.05)
}

.up-prg .pt-img-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, #ffffff2e 0%, transparent 60%);
    pointer-events: none;
    border-radius: 14px
}

.up-prg .pt-text {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.up-prg .pt-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3a5c7417;
    color: #3A5C74;
    font-size: 13px;
    line-height: 1.6;
    padding: 4px 16px;
    border-radius: 4px;
    width: fit-content
}

.up-prg .pt-badge svg {
    width: 14px;
    height: 14px;
    fill: #3A5C74;
    flex-shrink: 0
}

.up-prg .pt-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1b3445;
    margin: 0;
    text-shadow: 1px 2px 8px #3a5c741a
}

.up-prg .pt-h1 .acc {
    color: #4E8D8B
}

.up-prg .pt-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #2c4a5e;
    margin: 0;
    max-width: 480px
}

.up-prg .pt-deco {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    border-radius: 22px;
    background: #7cc59921;
    z-index: 1;
    pointer-events: none
}

.up-prg .pt-deco-sm {
    position: absolute;
    bottom: 40px;
    right: 100px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #4e8d8b1a;
    z-index: 1;
    pointer-events: none
}

.up-prg .pt-stats {
    display: flex;
    flex-direction: row;
    gap: 28px;
    margin-top: 8px
}

.up-prg .pt-stat {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.up-prg .pt-stat-val {
    font-size: 28px;
    line-height: 1.2;
    color: #3A5C74;
    font-weight: 700;
    text-shadow: 0 1px 4px #3a5c741f
}

.up-prg .pt-stat-lbl {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B
}

.up-prg .pt-sep {
    width: 1px;
    background: #3a5c7426;
    align-self: stretch
}

.up-prg .sched {
    padding: 56px;
    background: #f2f6f8;
    position: relative;
    overflow: hidden
}

.up-prg .sched-wave {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0
}

.up-prg .sched-wave::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -10%;
    width: 120%;
    height: 80px;
    background: linear-gradient(90deg, transparent, #4e8d8b14, #7cc59912, transparent);
    animation: wave-pass 6s ease-in-out infinite;
    border-radius: 50%
}

.up-prg .sched-wave::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -10%;
    width: 120%;
    height: 60px;
    background: linear-gradient(90deg, transparent, #3a5c740f, #4e8d8b12, transparent);
    animation: wave-pass 8s ease-in-out 2s infinite reverse;
    border-radius: 50%
}

@keyframes wave-pass {
    0% {
        transform: translateX(-20%) scaleY(1)
    }

    50% {
        transform: translateX(10%) scaleY(1.4)
    }

    100% {
        transform: translateX(-20%) scaleY(1)
    }
}

.up-prg .sched-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
    z-index: 1
}

.up-prg .sched-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1b3445;
    margin: 0;
    text-shadow: 1px 1px 6px #3a5c7417
}

.up-prg .sched-h2 .acc {
    color: #4E8D8B
}

.up-prg .sched-sub {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    max-width: 320px;
    text-align: right
}

.up-prg .sched-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    position: relative;
    z-index: 1
}

.up-prg .prog-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transition: box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1), transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden
}

.up-prg .prog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3A5C74, #4E8D8B, #7CC599);
    border-radius: 14px 14px 0 0;
    opacity: 0;
    transition: opacity .35s ease-in-out
}

.up-prg .prog-card:hover {
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    transform: translateY(-4px)
}

.up-prg .prog-card:hover::before {
    opacity: 1
}

.up-prg .prog-card.feat {
    background: linear-gradient(155deg, #3A5C74 0%, #2c4a5e 100%);
    color: #fff
}

.up-prg .prog-card.feat::before {
    background: linear-gradient(90deg, #7CC599, #4E8D8B, #3A5C74)
}

.up-prg .card-date-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

.up-prg .card-date {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.up-prg .prog-card.feat .card-date {
    color: #7cc599e6
}

.up-prg .card-date svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0
}

.up-prg .card-tag {
    font-size: 13px;
    line-height: 1.6;
    padding: 4px 8px;
    border-radius: 4px;
    background: #3a5c7414;
    color: #3A5C74
}

.up-prg .prog-card.feat .card-tag {
    background: #7cc5992e;
    color: #7CC599
}

.up-prg .card-h {
    font-size: 16px;
    line-height: 1.6;
    color: #1b3445;
    margin: 0;
    font-weight: 700
}

.up-prg .prog-card.feat .card-h {
    color: #fff
}

.up-prg .card-body {
    font-size: 13px;
    line-height: 1.9;
    color: #3d5a6e;
    margin: 0
}

.up-prg .prog-card.feat .card-body {
    color: #fffc
}

.up-prg .card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px solid #3a5c741a
}

.up-prg .prog-card.feat .card-meta {
    border-top-color: #ffffff1f
}

.up-prg .card-meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B
}

.up-prg .prog-card.feat .card-meta-row {
    color: #7cc599d9
}

.up-prg .card-meta-row svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
    flex-shrink: 0
}

.up-prg .card-expert {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.up-prg .expert-av {
    width: 32px;
    height: 32px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0
}

.up-prg .expert-av.av-a {
    background: #3a5c741f;
    color: #3A5C74
}

.up-prg .expert-av.av-b {
    background: #4e8d8b1f;
    color: #4E8D8B
}

.up-prg .expert-av.av-c {
    background: #7cc5992e;
    color: #2c7a5e
}

.up-prg .expert-av.av-d {
    background: #3a5c7426;
    color: #3A5C74
}

.up-prg .expert-av.av-e {
    background: #4e8d8b26;
    color: #4E8D8B
}

.up-prg .prog-card.feat .expert-av {
    background: #ffffff26;
    color: #fff
}

.up-prg .expert-info {
    display: flex;
    flex-direction: column
}

.up-prg .expert-name {
    font-size: 13px;
    line-height: 1.6;
    color: #1b3445;
    font-weight: 600
}

.up-prg .prog-card.feat .expert-name {
    color: #fff
}

.up-prg .expert-role {
    font-size: 13px;
    line-height: 1.2;
    color: #4E8D8B
}

.up-prg .prog-card.feat .expert-role {
    color: #7cc599cc
}

.up-prg .card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    border: 2px solid #3A5C74;
    background: transparent;
    color: #3A5C74;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
    transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), color .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s ease-in-out;
    width: 100%;
    font-weight: 600;
    position: relative
}

.up-prg .card-btn::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1px solid transparent;
    border-radius: 2px;
    transition: border-color .35s ease-in-out
}

.up-prg .card-btn:hover {
    background: #3A5C74;
    color: #fff;
    box-shadow: -1px 4px 28px -2px #3a5c742e
}

.up-prg .card-btn:hover::after {
    border-color: #ffffff40
}

.up-prg .card-btn:active {
    box-shadow: inset 0 2px 6px #3a5c7438
}

.up-prg .card-btn-solid {
    background: #7CC599;
    border-color: #7CC599;
    color: #1b3445
}

.up-prg .card-btn-solid:hover {
    background: #5aad7e;
    border-color: #5aad7e;
    color: #fff
}

.up-prg .sched-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #3a5c741f;
    position: relative;
    z-index: 1
}

.up-prg .sb-track {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.up-prg .sb-track-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #2c4a5e
}

.up-prg .sb-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

.up-prg .sb-dot.d-live {
    background: #3A5C74
}

.up-prg .sb-dot.d-rec {
    background: #4E8D8B
}

.up-prg .sb-dot.d-int {
    background: #7CC599
}

.up-prg .sb-note {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    text-align: right
}

@media (max-width: 992px) {
    .up-prg .prog-title {
        flex-direction: column;
        padding: 28px;
        gap: 28px
    }

    .up-prg .pt-img-wrap {
        flex: 0 0 auto;
        width: 100%
    }

    .up-prg .pt-img-wrap img {
        width: 100%;
        height: 280px
    }

    .up-prg .pt-h1 {
        font-size: 38px
    }

    .up-prg .pt-desc {
        max-width: 100%
    }

    .up-prg .sched-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .up-prg .sched-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .up-prg .sched-sub {
        text-align: left
    }

    .up-prg .sched {
        padding: 28px
    }

    .up-prg .sched-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .up-prg .sb-note {
        text-align: left
    }
}

@media (max-width: 576px) {
    .up-prg .prog-title {
        padding: 16px
    }

    .up-prg .pt-h1 {
        font-size: 28px
    }

    .up-prg .pt-stats {
        flex-direction: column;
        gap: 16px
    }

    .up-prg .pt-sep {
        display: none
    }

    .up-prg .sched-grid {
        grid-template-columns: 1fr
    }

    .up-prg .sched {
        padding: 16px
    }

    .up-prg .sched-h2 {
        font-size: 28px
    }

    .up-prg .sb-track {
        flex-direction: column;
        gap: 8px
    }
}

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

.ct-us .pg-band {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 520px;
    padding: 56px;
    background: #fff;
    position: relative;
    gap: 56px;
    margin-left: 28px
}

.ct-us .pg-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%, #4e8d8b12 0%, transparent 70%);
    pointer-events: none
}

.ct-us .dot-field {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden
}

.ct-us .dot-field span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #3a5c7421
}

.ct-us .band-img {
    flex: 0 0 420px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center
}

.ct-us .band-img .img-frame {
    width: 100%;
    height: 380px;
    border-radius: 14px;
    background: linear-gradient(135deg, #3a5c742e 0%, #4e8d8b38 60%, #7cc59926 100%);
    position: relative;
    overflow: hidden;
    opacity: .82
}

.ct-us .band-img .img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 60%, #7cc5992e 0%, transparent 70%)
}

.ct-us .img-deco {
    position: absolute;
    top: 16px;
    left: 16px;
    pointer-events: none
}

.ct-us .img-deco span {
    display: block;
    border: 1.5px solid #3a5c742e;
    border-radius: 4px;
    position: absolute
}

.ct-us .band-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 56px;
    position: relative;
    z-index: 1
}

.ct-us .band-label {
    font-size: 13px;
    color: #4E8D8B;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600
}

.ct-us .band-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1b2e3a;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px #3a5c741a
}

.ct-us .band-h1 em {
    font-style: normal;
    color: #4E8D8B
}

.ct-us .band-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4f5c;
    max-width: 400px;
    margin: 0 0 28px
}

.ct-us .band-counter {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #3a5c740f;
    border-radius: 14px;
    padding: 16px 28px;
    width: fit-content
}

.ct-us .ctr-item {
    display: flex;
    flex-direction: column;
    align-items: center
}

.ct-us .ctr-num {
    font-size: 28px;
    line-height: 1.2;
    color: #3A5C74;
    font-weight: 700
}

.ct-us .ctr-desc {
    font-size: 13px;
    color: #4E8D8B;
    line-height: 1.6
}

.ct-us .ctr-div {
    width: 1px;
    height: 36px;
    background: #3a5c742e
}

.ct-us .pg-brush {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0
}

.ct-us .pg-brush svg {
    display: block;
    width: 100%
}

.ct-us .form-band {
    background: linear-gradient(160deg, #3a5c740a 0%, #4e8d8b12 50%, #7cc5990d 100%);
    padding: 56px 56px 56px 84px;
    position: relative;
    margin-right: 28px
}

.ct-us .form-band::after {
    content: '';
    position: absolute;
    top: 28px;
    right: 28px;
    width: 90px;
    height: 90px;
    border: 1.5px solid #3a5c741f;
    border-radius: 4px;
    pointer-events: none
}

.ct-us .form-band::before {
    content: '';
    position: absolute;
    top: 36px;
    right: 36px;
    width: 66px;
    height: 66px;
    border: 1.5px solid #4e8d8b1a;
    border-radius: 4px;
    pointer-events: none
}

.ct-us .fb-inner {
    position: absolute;
    top: 44px;
    right: 44px;
    width: 44px;
    height: 44px;
    border: 1.5px solid #7cc59921;
    border-radius: 4px;
    pointer-events: none
}

.ct-us .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 820px
}

.ct-us .form-head {
    margin: 0 0 28px
}

.ct-us .form-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1b2e3a;
    margin: 0 0 8px;
    text-shadow: 1px 2px 6px #3a5c7417
}

.ct-us .form-h2 em {
    font-style: normal;
    color: #3A5C74
}

.ct-us .form-sub {
    font-size: 16px;
    color: #3a4f5c;
    line-height: 1.6;
    margin: 0
}

.ct-us .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ct-us .field-grp.full {
    grid-column: 1 / -1
}

.ct-us .field-grp label {
    font-size: 13px;
    color: #3A5C74;
    font-weight: 600;
    line-height: 1.6
}

.ct-us .field-grp input,
.ct-us .field-grp select {
    padding: 16px;
    border: 1.5px solid #3a5c7438;
    border-radius: 4px;
    font-size: 16px;
    color: #1b2e3a;
    background: #fff;
    outline: none;
    transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none
}

.ct-us .field-grp select {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%233A5C74' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer
}

.ct-us .field-grp input:focus,
.ct-us .field-grp select:focus {
    border-color: #4E8D8B;
    box-shadow: -1px 4px 28px -2px #4e8d8b1a
}

.ct-us .field-grp input::placeholder {
    color: #3a5c7461;
    font-size: 13px
}

.ct-us .privacy-row {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-top: 8px
}

.ct-us .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid #3a5c744d;
    border-radius: 2px;
    appearance: none;
    -webkit-appearance: none;
    background: #fff;
    cursor: pointer;
    margin-top: 2px;
    transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    box-shadow: inset 0 1px 3px #3a5c7414;
    padding: 0
}

.ct-us .privacy-row input[type="checkbox"]:checked {
    background: #4E8D8B;
    border-color: #4E8D8B;
    box-shadow: inset 0 2px 5px #3a5c742e
}

.ct-us .privacy-row input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg)
}

.ct-us .privacy-txt {
    font-size: 13px;
    color: #3a4f5c;
    line-height: 1.9
}

.ct-us .privacy-txt a {
    color: #4E8D8B;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .32s ease-in-out
}

.ct-us .privacy-txt a:hover {
    color: #3A5C74
}

.ct-us .submit-row {
    grid-column: 1 / -1;
    margin-top: 8px
}

.ct-us .btn-send {
    position: relative;
    overflow: hidden;
    padding: 16px 56px;
    background: #3A5C74;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    letter-spacing: .03em;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: -1px 4px 28px -2px #3a5c7421;
    display: inline-block
}

.ct-us .btn-send::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #4E8D8B;
    transition: height .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0
}

.ct-us .btn-send:hover::before {
    height: 100%
}

.ct-us .btn-send:hover {
    box-shadow: -1px 12px 52px -2px #3a5c742e
}

.ct-us .btn-send:hover::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1.5px solid #ffffff59;
    border-radius: 2px;
    pointer-events: none;
    z-index: 2
}

.ct-us .btn-send:active {
    box-shadow: inset 0 2px 8px #3a5c742e
}

.ct-us .btn-send span {
    position: relative;
    z-index: 1
}

.ct-us .info-band {
    display: flex;
    flex-direction: row;
    gap: 0;
    background: #fff;
    padding: 56px;
    margin-left: 56px;
    position: relative;
    align-items: stretch
}

.ct-us .info-band::before {
    content: '';
    position: absolute;
    bottom: 28px;
    left: 28px;
    width: 80px;
    height: 80px;
    border: 1.5px solid #7cc5992e;
    border-radius: 4px;
    pointer-events: none
}

.ct-us .info-band::after {
    content: '';
    position: absolute;
    bottom: 36px;
    left: 36px;
    width: 56px;
    height: 56px;
    border: 1.5px solid #4e8d8b21;
    border-radius: 4px;
    pointer-events: none
}

.ct-us .info-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-right: 56px
}

.ct-us .info-h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b2e3a;
    margin: 0 0 8px;
    text-shadow: 0 1px 4px #3a5c7414
}

.ct-us .info-h3 em {
    font-style: normal;
    color: #4E8D8B
}

.ct-us .info-p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4f5c;
    margin: 0;
    max-width: 340px
}

.ct-us .info-items {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ct-us .info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.ct-us .info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    background: #3a5c7414;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ct-us .info-item:hover .info-icon {
    background: #4e8d8b29
}

.ct-us .info-icon svg {
    display: block
}

.ct-us .info-detail {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ct-us .info-lbl {
    font-size: 13px;
    color: #4E8D8B;
    font-weight: 600;
    line-height: 1.6
}

.ct-us .info-val {
    font-size: 16px;
    color: #1b2e3a;
    line-height: 1.6;
    text-decoration: none;
    transition: color .35s ease-in-out
}

.ct-us .info-val:hover {
    color: #4E8D8B
}

.ct-us .chart-col {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #3a5c740a;
    border-radius: 14px;
    padding: 28px
}

.ct-us .chart-head {
    font-size: 16px;
    color: #1b2e3a;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 8px
}

.ct-us .chart-sub {
    font-size: 13px;
    color: #4E8D8B;
    line-height: 1.6;
    margin: 0 0 16px
}

.ct-us .bar-group {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ct-us .bar-label {
    font-size: 13px;
    color: #3a4f5c;
    line-height: 1.6;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.ct-us .bar-track {
    height: 10px;
    background: #3a5c741a;
    border-radius: 2px;
    overflow: hidden
}

.ct-us .bar-fill {
    height: 100%;
    border-radius: 2px;
    transition: width .44s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.ct-us .bar-fill.c1 {
    background: #3A5C74;
    width: 88%
}

.ct-us .bar-fill.c2 {
    background: #4E8D8B;
    width: 74%
}

.ct-us .bar-fill.c3 {
    background: #7CC599;
    width: 61%
}

.ct-us .bar-fill.c4 {
    background: #3A5C74;
    width: 52%
}

.ct-us .chart-note {
    font-size: 13px;
    color: #3a5c748c;
    line-height: 1.6;
    margin-top: 8px
}

@media (max-width: 992px) {
    .ct-us .pg-band {
        flex-direction: column;
        padding: 56px 28px 28px;
        margin-left: 0;
        gap: 28px
    }

    .ct-us .band-img {
        flex: 0 0 auto
    }

    .ct-us .band-img .img-frame {
        height: 220px
    }

    .ct-us .band-h1 {
        font-size: 38px
    }

    .ct-us .form-band {
        padding: 56px 28px;
        margin-right: 0
    }

    .ct-us .form-grid {
        grid-template-columns: 1fr
    }

    .ct-us .field-grp.full {
        grid-column: 1
    }

    .ct-us .privacy-row {
        grid-column: 1
    }

    .ct-us .submit-row {
        grid-column: 1
    }

    .ct-us .info-band {
        flex-direction: column;
        margin-left: 0;
        padding: 56px 28px;
        gap: 28px
    }

    .ct-us .info-col {
        padding-right: 0
    }

    .ct-us .chart-col {
        flex: 0 0 auto
    }
}

@media (max-width: 576px) {
    .ct-us .band-h1 {
        font-size: 28px
    }

    .ct-us .band-counter {
        flex-direction: column;
        gap: 8px;
        padding: 16px
    }

    .ct-us .ctr-div {
        width: 36px;
        height: 1px
    }

    .ct-us .btn-send {
        width: 100%;
        padding: 16px 28px
    }

    .ct-us .form-h2 {
        font-size: 28px
    }

    .ct-us .pg-band {
        padding: 28px 16px 16px
    }

    .ct-us .form-band {
        padding: 28px 16px
    }

    .ct-us .info-band {
        padding: 28px 16px
    }
}

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

.abt-us .divider-line {
    width: 100%;
    height: 2px;
    background: #4E8D8B;
    border: none;
    margin: 0
}

.abt-us .tag-badge {
    display: inline-block;
    background: #3A5C74;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 4px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.abt-us .accent-word {
    color: #4E8D8B
}

.abt-us .accent-green {
    color: #7CC599
}

.abt-us .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 22px;
    background: #4E8D8B;
    outline: 2px solid #7CC599;
    outline-offset: 3px;
    flex-shrink: 0
}

.abt-us .icon-circle svg {
    width: 22px;
    height: 22px;
    fill: #fff
}

.abt-us .icon-rotate-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-us .icon-rotate-btn:active .icon-circle svg {
    animation: icon-settle .45s cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

@keyframes icon-settle {
    0% {
        transform: rotate(0deg)
    }

    60% {
        transform: rotate(360deg)
    }

    80% {
        transform: rotate(340deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.abt-us .about-panel {
    position: relative;
    padding: 56px 56px 80px;
    background: #fff
}

.abt-us .about-panel::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid #4e8d8b2e;
    border-radius: 14px;
    pointer-events: none
}

.abt-us .about-panel::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid #3a5c7417;
    border-radius: 14px;
    pointer-events: none
}

.abt-us .about-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1
}

.abt-us .about-text-col {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.abt-us .about-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1b2e3c;
    margin: 0;
    text-shadow: 1px 2px 0 #3a5c741a
}

.abt-us .about-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0
}

.abt-us .about-points li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #2b3d4a
}

.abt-us .point-label {
    font-size: 13px;
    line-height: 1.2;
    color: #4E8D8B;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding-top: 2px;
    white-space: nowrap
}

.abt-us .about-img-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .about-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    opacity: .72;
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transition: opacity .38s ease-in-out
}

.abt-us .about-img-wrap:hover {
    opacity: .92
}

.abt-us .about-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abt-us .about-img-wrap:hover img {
    transform: scale(1.04)
}

.abt-us .about-founding {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    text-align: center;
    padding: 8px 16px;
    border-radius: 4px;
    background: #4e8d8b12
}

.abt-us .team-strip {
    position: relative;
    background: #f3f7f9;
    overflow: hidden
}

.abt-us .strip-diagonal {
    position: absolute;
    inset: 0;
    background: linear-gradient(147deg, #4e8d8b1a 0%, transparent 55%);
    pointer-events: none
}

.abt-us .strip-diagonal-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(147deg, transparent 45%, #7cc59914 100%);
    pointer-events: none
}

.abt-us .team-inner {
    padding: 56px;
    position: relative;
    z-index: 1
}

.abt-us .team-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 56px
}

.abt-us .team-top-text {
    max-width: 560px
}

.abt-us .team-h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1b2e3c;
    margin: 0 0 16px;
    text-shadow: 1px 1px 0 #3a5c7417
}

.abt-us .team-lead {
    font-size: 16px;
    line-height: 1.6;
    color: #2b3d4a;
    margin: 0;
    max-width: 480px
}

.abt-us .metrics-cluster {
    display: flex;
    flex-direction: row;
    gap: 28px;
    flex-shrink: 0
}

.abt-us .metric-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 28px;
    box-shadow: -1px 4px 28px -2px #4e8d8b1a;
    min-width: 100px;
    border-top: 2px solid #4E8D8B
}

.abt-us .metric-num {
    font-size: 38px;
    line-height: 1.2;
    color: #3A5C74;
    font-weight: 800
}

.abt-us .metric-desc {
    font-size: 13px;
    line-height: 1.2;
    color: #4E8D8B;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .04em
}

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

.abt-us .expert-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 1px 5px -2px #3a5c7414;
    overflow: hidden;
    transition: box-shadow .38s ease-in-out, transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex;
    flex-direction: column
}

.abt-us .expert-card:hover {
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    transform: translateY(-4px)
}

.abt-us .expert-portrait {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 14px 14px 0 0
}

.abt-us .expert-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abt-us .expert-card:hover .expert-portrait img {
    transform: scale(1.05)
}

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

.abt-us .expert-name {
    font-size: 16px;
    line-height: 1.2;
    color: #1b2e3c;
    font-weight: 700;
    margin: 0
}

.abt-us .expert-role {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em
}

.abt-us .expert-bio {
    font-size: 13px;
    line-height: 1.6;
    color: #3d5060;
    margin: 0
}

.abt-us .expert-no-portrait {
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 1px 5px -2px #3a5c7414;
    transition: box-shadow .38s ease-in-out, transform .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden
}

.abt-us .expert-no-portrait:hover {
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    transform: translateY(-4px)
}

.abt-us .no-portrait-top {
    background: linear-gradient(ellipse at center, #4E8D8B 0%, transparent 100%);
    background-color: #3A5C74;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px 14px 0 0
}

.abt-us .no-portrait-initials {
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    opacity: .8
}

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

.abt-us .no-portrait-name {
    font-size: 16px;
    line-height: 1.2;
    color: #1b2e3c;
    font-weight: 700;
    margin: 0
}

.abt-us .no-portrait-role {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em
}

.abt-us .no-portrait-bio {
    font-size: 13px;
    line-height: 1.6;
    color: #3d5060;
    margin: 0
}

.abt-us .approach-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px
}

.abt-us .approach-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    box-shadow: -1px 1px 5px -2px #3a5c7414;
    transition: box-shadow .4s ease-in-out
}

.abt-us .approach-card:hover {
    box-shadow: -1px 4px 28px -2px #3a5c741a
}

.abt-us .approach-text {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .approach-h4 {
    font-size: 16px;
    line-height: 1.2;
    color: #1b2e3c;
    font-weight: 700;
    margin: 0
}

.abt-us .approach-p {
    font-size: 13px;
    line-height: 1.6;
    color: #3d5060;
    margin: 0
}

.abt-us .prog-cta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    box-shadow: -1px 4px 28px -2px #4e8d8b1a;
    justify-content: space-between
}

.abt-us .prog-cta-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.abt-us .prog-cta-h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b2e3c;
    margin: 0;
    text-shadow: 1px 1px 0 #3a5c7417
}

.abt-us .prog-cta-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3d5060;
    margin: 0
}

.abt-us .prog-cta-imgs {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-shrink: 0
}

.abt-us .prog-img-thumb {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 1px 5px -2px #3a5c7414
}

.abt-us .prog-img-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.abt-us .prog-img-thumb:hover img {
    transform: scale(1.07)
}

.abt-us .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3A5C74;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 28px;
    border-radius: 4px;
    border: 2px solid #3A5C74;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    flex-shrink: 0
}

.abt-us .btn-primary::before {
    content: '';
    position: absolute;
    inset: 3px;
    border: 2px solid transparent;
    border-radius: 2px;
    transition: border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.abt-us .btn-primary:hover {
    background: #4E8D8B;
    border-color: #4E8D8B
}

.abt-us .btn-primary:hover::before {
    border-color: #ffffff59
}

.abt-us .btn-primary:active {
    box-shadow: inset 0 2px 8px #3a5c742e
}

.abt-us .btn-primary:focus-visible {
    outline: 2px solid #7CC599;
    outline-offset: 3px
}

@media (max-width: 992px) {
    .abt-us .about-layout {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abt-us .about-img-col {
        display: none
    }

    .abt-us .about-panel {
        padding: 28px 28px 56px
    }

    .abt-us .team-inner {
        padding: 28px
    }

    .abt-us .team-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        margin-bottom: 28px
    }

    .abt-us .metrics-cluster {
        flex-direction: row;
        gap: 16px
    }

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

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

    .abt-us .prog-cta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .abt-us .prog-cta-imgs {
        display: none
    }
}

@media (max-width: 576px) {
    .abt-us .about-h1 {
        font-size: 38px
    }

    .abt-us .team-h2 {
        font-size: 28px
    }

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

    .abt-us .metrics-cluster {
        flex-wrap: wrap;
        gap: 8px
    }

    .abt-us .metric-box {
        padding: 8px 16px
    }

    .abt-us .about-panel {
        padding: 16px 16px 28px
    }

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

    .abt-us .prog-cta-h3 {
        font-size: 16px
    }
}

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

.lrn-prog .prog-title {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 560px;
    background: #fff;
    position: relative
}

.lrn-prog .prog-title .img-strip {
    width: 320px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.lrn-prog .prog-title .img-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(0px);
    mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 60%, transparent 100%);
    animation: img-load-scale .38s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

@keyframes img-load-scale {
    from {
        transform: scale(0.97)
    }

    to {
        transform: scale(1)
    }
}

.lrn-prog .prog-title .img-strip .strip-deco {
    position: absolute;
    bottom: 28px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none
}

.lrn-prog .prog-title .img-strip .strip-deco span {
    display: block;
    width: 36px;
    height: 2px;
    background: #7cc5998c;
    border-radius: 2px
}

.lrn-prog .prog-title .img-strip .strip-deco span:nth-child(2) {
    width: 24px
}

.lrn-prog .prog-title .img-strip .strip-deco span:nth-child(3) {
    width: 16px
}

.lrn-prog .prog-title .txt-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px;
    background: linear-gradient(160deg, #f4f8fa 0%, #e8f3f2 100%)
}

.lrn-prog .prog-title .txt-area .tag-label {
    display: inline-block;
    background: #3A5C74;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.lrn-prog .prog-title .txt-area h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0 0 28px;
    text-shadow: -1px 1px 5px -2px #3a5c7421;
    max-width: 640px
}

.lrn-prog .prog-title .txt-area h1 .accent {
    color: #4E8D8B
}

.lrn-prog .prog-title .txt-area .pull-quote {
    font-size: 16px;
    line-height: 1.9;
    color: #3A5C74;
    border-top: 2px solid #7CC599;
    padding-top: 16px;
    max-width: 520px;
    font-style: italic
}

.lrn-prog .prog-title .txt-area .meta-row {
    display: flex;
    flex-direction: row;
    gap: 28px;
    margin-top: 28px;
    flex-wrap: wrap
}

.lrn-prog .prog-title .txt-area .meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lrn-prog .prog-title .txt-area .meta-item .m-val {
    font-size: 28px;
    line-height: 1.2;
    color: #3A5C74;
    font-weight: 700
}

.lrn-prog .prog-title .txt-area .meta-item .m-lbl {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    text-transform: uppercase;
    letter-spacing: .05em
}

.lrn-prog .prog-detail {
    background: #fff;
    padding: 56px;
    position: relative
}

.lrn-prog .prog-detail::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3A5C74, #4E8D8B, #7CC599);
    border-radius: 0 0 2px 2px
}

.lrn-prog .prog-detail .detail-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr 2fr;
    gap: 28px;
    align-items: start
}

.lrn-prog .prog-detail .col-left {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog .prog-detail .col-left h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0;
    text-shadow: -1px 1px 5px -2px #3a5c741a
}

.lrn-prog .prog-detail .col-left h2 .accent {
    color: #4E8D8B
}

.lrn-prog .prog-detail .col-left .sub-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3A5C74
}

.lrn-prog .prog-detail .col-left .enroll-btn {
    display: inline-block;
    background: #3A5C74;
    color: #fff !important;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 28px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .42s ease-in-out;
    position: relative;
    overflow: hidden;
    align-self: flex-start
}

.lrn-prog .prog-detail .col-left .enroll-btn::after {
    content: '';
    position: absolute;
    inset: 3px;
    border: 1.5px solid #7cc59900;
    border-radius: 2px;
    transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.lrn-prog .prog-detail .col-left .enroll-btn:hover {
    background: #2d4a5f;
    box-shadow: -1px 12px 52px -2px #3a5c7421
}

.lrn-prog .prog-detail .col-left .enroll-btn:hover::after {
    border-color: #7cc599b3
}

.lrn-prog .prog-detail .col-left .enroll-btn:active {
    box-shadow: inset -1px 1px 5px -2px #3a5c742e
}

.lrn-prog .prog-detail .col-mid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(180deg, #f4f8fa 0%, #eaf4f3 100%);
    border-radius: 14px;
    padding: 28px;
    box-shadow: -1px 1px 5px -2px #4e8d8b14
}

.lrn-prog .prog-detail .col-mid h4 {
    font-size: 16px;
    line-height: 1.2;
    color: #3A5C74;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.lrn-prog .prog-detail .col-mid .module-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog .prog-detail .col-mid .module-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #1b3545
}

.lrn-prog .prog-detail .col-mid .module-list li .mod-num {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: #3A5C74;
    color: #fff;
    border-radius: 2px;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    font-weight: 700;
    margin-top: 2px
}

.lrn-prog .prog-detail .col-mid .entry-exit {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1.5px solid #7cc59959;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog .prog-detail .col-mid .entry-exit .marker {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B
}

.lrn-prog .prog-detail .col-mid .entry-exit .marker .dot {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    flex-shrink: 0
}

.lrn-prog .prog-detail .col-mid .entry-exit .marker.start .dot {
    background: #7CC599
}

.lrn-prog .prog-detail .col-mid .entry-exit .marker.end .dot {
    background: #3A5C74
}

.lrn-prog .prog-detail .col-right {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.lrn-prog .prog-detail .col-right h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0;
    text-shadow: -1px 1px 5px -2px #3a5c7414
}

.lrn-prog .prog-detail .col-right .body-text {
    font-size: 16px;
    line-height: 1.9;
    color: #2e4a5c
}

.lrn-prog .prog-detail .col-right .body-text p {
    margin: 0 0 16px
}

.lrn-prog .prog-detail .col-right .body-text p:last-child {
    margin-bottom: 0
}

.lrn-prog .prog-detail .col-right .experts-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.lrn-prog .prog-detail .col-right .expert-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    flex: 1;
    min-width: 200px;
    transition: box-shadow .42s ease-in-out
}

.lrn-prog .prog-detail .col-right .expert-card:hover {
    box-shadow: -1px 12px 52px -2px #3a5c7421
}

.lrn-prog .prog-detail .col-right .expert-card .portrait {
    width: 56px;
    height: 56px;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 0
}

.lrn-prog .prog-detail .col-right .expert-card .portrait img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.92);
    transition: brightness .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.lrn-prog .prog-detail .col-right .expert-card:hover .portrait img {
    filter: brightness(1.05)
}

.lrn-prog .prog-detail .col-right .expert-card .exp-info {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lrn-prog .prog-detail .col-right .expert-card .exp-name {
    font-size: 16px;
    line-height: 1.2;
    color: #1b3545;
    font-weight: 600
}

.lrn-prog .prog-detail .col-right .expert-card .exp-role {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B
}

.lrn-prog .prog-detail .col-right .feat-cards {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.lrn-prog .prog-detail .col-right .feat-card {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(160deg, #3A5C74 0%, #4E8D8B 100%);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transition: box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1), opacity .38s ease-in-out
}

.lrn-prog .prog-detail .col-right .feat-card:hover {
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    opacity: .93
}

.lrn-prog .prog-detail .col-right .feat-card .fc-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn-prog .prog-detail .col-right .feat-card .fc-icon svg {
    width: 22px;
    height: 22px;
    fill: #7CC599
}

.lrn-prog .prog-detail .col-right .feat-card .fc-label {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffffbf;
    text-transform: uppercase;
    letter-spacing: .05em
}

.lrn-prog .prog-detail .col-right .feat-card .fc-val {
    font-size: 28px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700
}

.lrn-prog .prog-detail .col-right .feat-card .fc-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffffd1
}

.lrn-prog .prog-detail .col-right .pull-lg {
    font-size: 28px;
    line-height: 1.6;
    color: #3A5C74;
    font-style: italic;
    border-radius: 4px;
    padding: 16px 28px;
    background: linear-gradient(160deg, #7cc5991a 0%, #4e8d8b12 100%);
    margin: 0
}

@media (max-width: 992px) {
    .lrn-prog .prog-title {
        flex-direction: column;
        min-height: auto
    }

    .lrn-prog .prog-title .img-strip {
        width: 100%;
        height: 280px
    }

    .lrn-prog .prog-title .txt-area {
        padding: 28px
    }

    .lrn-prog .prog-title .txt-area h1 {
        font-size: 38px
    }

    .lrn-prog .prog-detail {
        padding: 28px
    }

    .lrn-prog .prog-detail .detail-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }
}

@media (max-width: 576px) {
    .lrn-prog .prog-title .txt-area {
        padding: 16px
    }

    .lrn-prog .prog-title .txt-area h1 {
        font-size: 28px
    }

    .lrn-prog .prog-title .txt-area .meta-row {
        gap: 16px
    }

    .lrn-prog .prog-detail {
        padding: 16px
    }

    .lrn-prog .prog-detail .col-right .experts-row {
        flex-direction: column
    }

    .lrn-prog .prog-detail .col-right .feat-cards {
        flex-direction: column
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .lrn-prog .prog-detail .detail-grid {
        grid-template-columns: 1fr 1.2fr 1.8fr
    }

    .lrn-prog .prog-title .img-strip {
        width: 260px
    }

    .lrn-prog .prog-title .txt-area h1 {
        font-size: 38px
    }
}

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

.prm .div-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #4E8D8B, transparent);
    margin: 0;
    border: none
}

.prm .t-blk {
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 520px;
    padding: 56px 56px 80px;
    gap: 56px;
    position: relative;
    background: linear-gradient(160deg, #f4f8fa 0%, #e8f3f2 100%)
}

.prm .t-blk .geo-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 120px;
    pointer-events: none
}

.prm .t-blk .geo-lines span {
    position: absolute;
    border: 1px solid #4e8d8b2e;
    border-radius: 2px
}

.prm .t-blk .geo-lines span:nth-child(1) {
    top: 16px;
    left: 16px;
    width: 80px;
    height: 80px
}

.prm .t-blk .geo-lines span:nth-child(2) {
    top: 28px;
    left: 28px;
    width: 56px;
    height: 56px
}

.prm .t-blk .geo-lines span:nth-child(3) {
    top: 40px;
    left: 40px;
    width: 32px;
    height: 32px
}

.prm .t-txt {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    animation: zoomOut .55s cubic-bezier(0.34, 1.2, 0.64, 1) both
}

@keyframes zoomOut {
    from {
        transform: scale(1.08);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

.prm .t-txt .t-kicker {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-weight: 600
}

.prm .t-txt h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0;
    font-weight: 800
}

.prm .t-txt h1 .acc {
    color: #4E8D8B
}

.prm .t-txt .t-sub {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4e5c;
    max-width: 480px;
    margin: 0
}

.prm .t-txt .t-btns {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.prm .t-txt .btn-prim {
    display: inline-block;
    padding: 16px 28px;
    background: #3A5C74;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #3A5C74;
    transition: background .35s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    position: relative
}

.prm .t-txt .btn-prim::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1.5px solid #fff0;
    border-radius: 2px;
    transition: border-color .38s ease-in-out
}

.prm .t-txt .btn-prim:hover {
    background: #2d4a5e;
    box-shadow: -1px 12px 52px -2px #3a5c7421
}

.prm .t-txt .btn-prim:hover::after {
    border-color: #ffffff73
}

.prm .t-txt .btn-prim:active {
    box-shadow: inset -1px 1px 5px -2px #3a5c742e
}

.prm .t-img-strip {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    animation: fadeImg .7s ease-in-out .2s both
}

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

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

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

.prm .who-blk {
    padding: 56px;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start
}

.prm .who-blk .who-left h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0 0 16px;
    font-weight: 700;
    text-shadow: 0 2px 8px #3a5c7414
}

.prm .who-blk .who-left h2 .acc {
    color: #4E8D8B
}

.prm .who-blk .who-left p {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4e5c;
    margin: 0 0 16px
}

.prm .who-blk .who-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm .who-blk .who-right h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0 0 8px;
    font-weight: 700
}

.prm .fit-card {
    border-radius: 14px;
    padding: 16px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 1px 5px -2px #3a5c7414;
    transition: box-shadow .38s ease-in-out, transform .38s ease-in-out
}

.prm .fit-card:hover {
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transform: translateY(-2px)
}

.prm .fit-card.yes {
    background: linear-gradient(135deg, #f0faf7 0%, #e6f5f4 100%);
    border-top: 2px solid #7CC599
}

.prm .fit-card.no {
    background: linear-gradient(135deg, #f7f4f0 0%, #f5ece6 100%);
    border-top: 2px solid #3a5c7440
}

.prm .fit-card .fc-label {
    font-size: 13px;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em
}

.prm .fit-card.yes .fc-label {
    color: #3A8C6A
}

.prm .fit-card.no .fc-label {
    color: #7a6050
}

.prm .fit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4e5c;
    margin: 0
}

.prm .who-img-wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-top: 8px;
    box-shadow: -1px 4px 28px -2px #3a5c741a
}

.prm .who-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .42s ease-in-out
}

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

.prm .rep-blk {
    padding: 56px;
    background: linear-gradient(160deg, #3A5C74 0%, #4E8D8B 100%);
    position: relative;
    overflow: hidden
}

.prm .rep-blk .rep-deco {
    position: absolute;
    bottom: -28px;
    right: -28px;
    width: 180px;
    height: 180px;
    pointer-events: none
}

.prm .rep-blk .rep-deco span {
    position: absolute;
    border: 1px solid #7cc5992e;
    border-radius: 2px
}

.prm .rep-blk .rep-deco span:nth-child(1) {
    inset: 0
}

.prm .rep-blk .rep-deco span:nth-child(2) {
    inset: 16px
}

.prm .rep-blk .rep-deco span:nth-child(3) {
    inset: 32px
}

.prm .rep-blk .rep-deco span:nth-child(4) {
    inset: 48px
}

.prm .rep-blk h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 8px;
    font-weight: 700;
    text-shadow: 0 2px 12px #00000026
}

.prm .rep-blk h2 .acc {
    color: #7CC599
}

.prm .rep-blk .rep-sub {
    font-size: 16px;
    line-height: 1.9;
    color: #ffffffd1;
    max-width: 560px;
    margin: 0 0 28px
}

.prm .rep-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.prm .rep-item {
    background: #ffffff1a;
    border-radius: 14px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid #ffffff24;
    transition: background .4s ease-in-out, box-shadow .4s ease-in-out
}

.prm .rep-item:hover {
    background: #ffffff29;
    box-shadow: -1px 4px 28px -2px #3a5c7421
}

.prm .rep-item .ri-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.prm .rep-item .ri-icon svg {
    width: 32px;
    height: 32px;
    fill: #7CC599
}

.prm .rep-item h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0;
    font-weight: 700
}

.prm .rep-item p {
    font-size: 13px;
    line-height: 1.6;
    color: #ffffffbf;
    margin: 0
}

.prm .rep-assoc {
    margin-top: 28px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center
}

.prm .rep-assoc .assoc-tag {
    background: #7cc5992e;
    border: 1px solid #7cc59959;
    border-radius: 22px;
    padding: 8px 16px;
    font-size: 13px;
    line-height: 1.6;
    color: #c8f0db;
    font-weight: 600
}

.prm .voices-blk {
    padding: 56px;
    background: #f4f8fa;
    display: flex;
    flex-direction: column;
    gap: 28px
}

.prm .voices-blk h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0;
    font-weight: 700;
    text-shadow: 0 2px 8px #3a5c7412
}

.prm .voices-blk h2 .acc {
    color: #4E8D8B
}

.prm .voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px
}

.prm .voice-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: -1px 1px 5px -2px #3a5c7414;
    transition: box-shadow .42s ease-in-out, transform .42s ease-in-out
}

.prm .voice-card:hover {
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    transform: translateY(-3px)
}

.prm .voice-card.featured {
    grid-column: span 2;
    flex-direction: row;
    gap: 28px;
    align-items: flex-start;
    background: linear-gradient(135deg, #f0faf7 0%, #e8f5f4 100%)
}

.prm .voice-card.featured .vc-img-wrap {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #7CC599
}

.prm .voice-card.featured .vc-img-wrap img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    display: block
}

.prm .voice-card .vc-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.prm .voice-card .vc-quote {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4e5c;
    margin: 0;
    font-style: italic
}

.prm .voice-card .vc-before {
    font-size: 13px;
    line-height: 1.6;
    color: #4E8D8B;
    margin: 0;
    font-weight: 600
}

.prm .voice-card .vc-person {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.prm .voice-card .vc-name {
    font-size: 16px;
    line-height: 1.2;
    color: #1b3545;
    font-weight: 700
}

.prm .voice-card .vc-role {
    font-size: 13px;
    line-height: 1.6;
    color: #7a8e9c
}

.prm .voice-img-bottom {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 4px 28px -2px #3a5c741a
}

.prm .voice-img-bottom img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .44s ease-in-out
}

.prm .voice-img-bottom:hover img {
    transform: scale(1.04)
}

.prm .scale-blk {
    padding: 56px;
    background: #fff;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 56px;
    align-items: center
}

.prm .scale-blk .sc-left h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #1b3545;
    margin: 0 0 16px;
    font-weight: 700;
    text-shadow: 0 2px 8px #3a5c7412
}

.prm .scale-blk .sc-left h2 .acc {
    color: #4E8D8B
}

.prm .scale-blk .sc-left p {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4e5c;
    margin: 0
}

.prm .sc-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.prm .sc-num {
    background: linear-gradient(160deg, #f4f8fa 0%, #eaf4f3 100%);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    box-shadow: -1px 1px 5px -2px #3a5c7414;
    transition: box-shadow .4s ease-in-out, transform .4s ease-in-out
}

.prm .sc-num:hover {
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transform: translateY(-2px)
}

.prm .sc-num.big {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, #3A5C74 0%, #4E8D8B 100%)
}

.prm .sc-num.big .sc-val {
    color: #fff
}

.prm .sc-num.big .sc-desc {
    color: #ffffffd1
}

.prm .sc-val {
    font-size: 52px;
    line-height: 1.2;
    color: #3A5C74;
    font-weight: 800
}

.prm .sc-val .sc-unit {
    font-size: 28px;
    color: #4E8D8B;
    font-weight: 700
}

.prm .sc-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a4e5c;
    margin: 0
}

.prm .sc-num .sc-deco {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 48px;
    height: 48px;
    pointer-events: none
}

.prm .sc-num .sc-deco span {
    position: absolute;
    border: 1px solid #4e8d8b24;
    border-radius: 2px
}

.prm .sc-num .sc-deco span:nth-child(1) {
    inset: 0
}

.prm .sc-num .sc-deco span:nth-child(2) {
    inset: 8px
}

.prm .sc-num .sc-deco span:nth-child(3) {
    inset: 16px
}

@media (max-width: 992px) {
    .prm .t-blk {
        grid-template-columns: 1fr;
        padding: 56px 28px;
        gap: 28px
    }

    .prm .t-img-strip {
        height: 260px
    }

    .prm .t-txt h1 {
        font-size: 52px
    }

    .prm .who-blk {
        grid-template-columns: 1fr;
        padding: 56px 28px;
        gap: 28px
    }

    .prm .rep-blk {
        padding: 56px 28px
    }

    .prm .rep-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .prm .voices-blk {
        padding: 56px 28px
    }

    .prm .voices-grid {
        grid-template-columns: 1fr
    }

    .prm .voice-card.featured {
        grid-column: span 1
    }

    .prm .scale-blk {
        grid-template-columns: 1fr;
        padding: 56px 28px;
        gap: 28px
    }
}

@media (max-width: 576px) {
    .prm .t-blk {
        padding: 28px 16px 56px
    }

    .prm .t-txt h1 {
        font-size: 38px
    }

    .prm .t-txt .t-btns {
        flex-direction: column
    }

    .prm .who-blk {
        padding: 56px 16px
    }

    .prm .rep-blk {
        padding: 56px 16px
    }

    .prm .rep-grid {
        grid-template-columns: 1fr
    }

    .prm .voices-blk {
        padding: 56px 16px
    }

    .prm .voice-card.featured {
        flex-direction: column
    }

    .prm .scale-blk {
        padding: 56px 16px
    }

    .prm .sc-right {
        grid-template-columns: 1fr
    }

    .prm .sc-num.big {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .prm .sc-val {
        font-size: 38px
    }
}

.succ-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 56px 28px;
    background: linear-gradient(160deg, #f4f8fa 0%, #e8f4f0 60%, #f0f9f4 100%)
}

.succ-page .succ-wrap {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 56px;
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    text-align: center;
    position: relative
}

.succ-page .succ-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center
}

.succ-page .succ-icon svg {
    width: 72px;
    height: 72px
}

.succ-page .succ-badge {
    display: inline-block;
    background: #7CC599;
    color: #fff;
    font-size: 13px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.succ-page .succ-title {
    font-size: 38px;
    line-height: 1.2;
    color: #3A5C74;
    margin: 0 0 16px;
    text-shadow: 0 2px 8px #3a5c7414
}

.succ-page .succ-title span {
    color: #4E8D8B
}

.succ-page .succ-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3A5C74;
    margin: 0 0 28px;
    opacity: .85
}

.succ-page .succ-divider {
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #4E8D8B, #7CC599);
    border-radius: 2px;
    margin: 0 auto 28px
}

.succ-page .succ-info {
    font-size: 13px;
    line-height: 1.9;
    color: #4E8D8B;
    margin: 0 0 28px;
    background: linear-gradient(135deg, #4e8d8b12 0%, transparent 100%);
    border-radius: 14px;
    padding: 16px 28px
}

.succ-page .succ-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.succ-page .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #3A5C74;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: -1px 4px 28px -2px #3a5c741a;
    transition: background .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .42s ease-in-out, border-color .35s cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: pointer;
    position: relative
}

.succ-page .btn-primary:hover {
    background: #4E8D8B;
    box-shadow: -1px 12px 52px -2px #3a5c7421;
    border-color: #7CC599
}

.succ-page .btn-primary:focus {
    outline: 3px solid #7CC599;
    outline-offset: 2px
}

.succ-page .btn-primary:active {
    box-shadow: inset 0 2px 8px #3a5c742e
}

.succ-page .btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #3A5C74;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 28px;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid #4E8D8B;
    transition: background .4s ease-in-out, color .36s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .38s ease-in-out;
    cursor: pointer
}

.succ-page .btn-sec:hover {
    background: #4e8d8b14;
    border-color: #3A5C74;
    color: #3A5C74
}

.succ-page .btn-sec:focus {
    outline: 3px solid #7CC599;
    outline-offset: 2px
}

.succ-page .btn-sec:active {
    box-shadow: inset 0 2px 6px #4e8d8b26
}

.succ-page .succ-contact {
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.6;
    color: #3A5C74;
    opacity: .7
}

.succ-page .succ-contact a {
    color: #4E8D8B;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .35s ease-in-out, opacity .38s ease-in-out
}

.succ-page .succ-contact a:hover {
    color: #3A5C74;
    opacity: 1
}

@media (max-width: 576px) {
    .succ-page .succ-wrap {
        padding: 28px 16px
    }

    .succ-page .succ-title {
        font-size: 28px
    }

    .succ-page .succ-actions {
        flex-direction: column;
        align-items: stretch
    }

    .succ-page .btn-primary,
    .succ-page .btn-sec {
        justify-content: center
    }
}