html {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Lora', Georgia, serif;
}

.pg-shell {
    box-sizing: border-box;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.hd-root {
    background: #313235;
    position: relative;
}

.hd-band {
    display: flex;
    align-items: stretch;
    min-height: 96px;
}

.hd-brand-col {
    display: flex;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-right: 32px;
    flex-shrink: 0;
}

.hd-divider {
    width: 1px;
    background: #9D8C89;
    opacity: 0.4;
    align-self: stretch;
    flex-shrink: 0;
}

.hd-nav-col {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 32px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CDC3C4;
    border-radius: 22px;
    padding: 8px 16px;
    width: 75px;
    height: 60px;
    box-shadow: 1px 1px 4px 0 rgba(49, 50, 53, 0.05), 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
    flex-shrink: 0;
}

.logo-pill img {
    width: 55px;
    height: 44px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.brand-text-hold {
    margin-left: 16px;
}

.brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    color: #f5f0ef;
    letter-spacing: 0.01em;
    display: block;
}

.brand-sub {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: #CDC3C4;
    letter-spacing: 0.06em;
    display: block;
    margin-top: 8px;
}

.hd-link {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #CDC3C4;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
    white-space: nowrap;
    transition: color 0.5s ease-in-out, background-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.hd-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: #9D8C89;
    border-radius: 4px;
    transition: right 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.hd-link:hover::after {
    right: 0;
}

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

.hd-link:hover {
    color: #f5f0ef;
}

.hd-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 140, 137, 0.55);
}

.hd-link.active {
    color: #f5f0ef;
    background: rgba(157, 140, 137, 0.18);
}

.hd-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #9D8C89 0%, #CDC3C4 60%, #9D8C89 100%);
}

.ft-root {
    background: #3d3e41;
}

.ft-top {
    padding-top: 56px;
    padding-bottom: 56px;
}

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

.ft-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ft-logo-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CDC3C4;
    border-radius: 22px;
    padding: 8px 16px;
    width: 75px;
    height: 60px;
    box-shadow: 1px 1px 4px 0 rgba(49, 50, 53, 0.05), 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
    flex-shrink: 0;
}

.ft-logo-pill img {
    width: 55px;
    height: 44px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.ft-brand-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.2;
    color: #f5f0ef;
    display: block;
}

.ft-desc {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    line-height: 1.6;
    color: #CDC3C4;
    display: block;
}

.ft-col-label {
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #9D8C89;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

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

.ft-contact-list li {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    line-height: 1.6;
    color: #CDC3C4;
}

.ft-contact-link {
    color: #CDC3C4;
    text-decoration: none;
    transition: color 0.45s ease-in-out;
}

.ft-contact-link:hover {
    color: #f5f0ef;
}

.ft-contact-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 140, 137, 0.55);
    border-radius: 1px;
}

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

.ft-nav-link {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    line-height: 1.6;
    color: #CDC3C4;
    text-decoration: none;
    transition: color 0.45s ease-in-out;
    display: inline-block;
}

.ft-nav-link:hover {
    color: #f5f0ef;
}

.ft-nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 140, 137, 0.55);
    border-radius: 1px;
}

.ft-mid {
    border-top: 1px solid rgba(157, 140, 137, 0.2);
    padding-top: 32px;
    padding-bottom: 32px;
}

.ft-addr {
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
}

.ft-bottom {
    border-top: 1px solid rgba(157, 140, 137, 0.12);
    padding-top: 16px;
    padding-bottom: 32px;
}

.ft-copy {
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    line-height: 1.4;
    color: #9D8C89;
}

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

@media (max-width: 768px) {
    .pg-shell {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hd-band {
        flex-direction: column;
        min-height: auto;
    }

    .hd-brand-col {
        padding-right: 16px;
        padding-bottom: 16px;
    }

    .hd-divider {
        width: 100%;
        height: 1px;
    }

    .hd-nav-col {
        padding-left: 0;
        padding-top: 16px;
    }

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

    .logo-pill {
        display: none;
    }
}

@media (max-width: 375px) {
    .brand-name {
        font-size: 14px;
    }

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

.ck-mount {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
    width: 360px;
    z-index: 8000;
    transform: translateY(-200%);
    transition: transform 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: none;
}

.ck-mount.ck-visible {
    transform: translateY(0);
}

.ck-box {
    background: #f5f0ef;
    border-radius: 14px;
    box-shadow: 1px 8px 36px 0 rgba(49, 50, 53, 0.10);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ck-desc {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
}

.ck-policy-link {
    color: #9D8C89;
    text-decoration: underline;
    transition: color 0.45s ease-in-out;
}

.ck-policy-link:hover {
    color: #313235;
}

.ck-headline {
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    color: #313235;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ck-pref-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.ck-pref-panel.open {
    display: flex;
}

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

.ck-toggle-label {
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    line-height: 1.4;
    color: #313235;
}

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

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

.ck-track {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #CDC3C4;
    border-radius: 22px;
    cursor: pointer;
    transition: background-color 0.45s ease-in-out;
}

.ck-switch input:checked+.ck-track {
    background: #9D8C89;
}

.ck-switch input:checked+.ck-track::before {
    transform: translateX(20px);
    box-shadow: inset 0 1px 3px rgba(49, 50, 53, 0.15);
}

.ck-track::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 22px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ck-switch input:focus+.ck-track {
    box-shadow: 0 0 0 3px rgba(157, 140, 137, 0.45);
}

.ck-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ck-btn-accept {
    font-family: 'Lora', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #f5f0ef;
    background: #313235;
    border: none;
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease-in-out;
}

.ck-btn-accept::after {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: #9D8C89;
    transition: right 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.ck-btn-accept:hover::after {
    right: 0;
}

.ck-btn-accept span {
    position: relative;
    z-index: 1;
}

.ck-btn-accept:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 140, 137, 0.55);
}

.ck-btn-decline {
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    line-height: 1.4;
    color: #9D8C89;
    background: transparent;
    border: 1px solid #CDC3C4;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    width: 100%;
    transition: color 0.45s ease-in-out, border-color 0.45s ease-in-out;
}

.ck-btn-decline:hover {
    color: #313235;
    border-color: #9D8C89;
}

.ck-btn-decline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 140, 137, 0.55);
}

.ck-btn-prefs {
    font-family: 'Lora', Georgia, serif;
    font-size: 13px;
    line-height: 1.4;
    color: #9D8C89;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.45s ease-in-out;
}

.ck-btn-prefs:hover {
    color: #313235;
}

.ck-btn-prefs:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 140, 137, 0.45);
    border-radius: 1px;
}

.doc-body-u {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 32px;
    color: #313235;
}

.doc-body-u h1 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #313235;
    margin-bottom: 32px;
    margin-top: 0;
}

.doc-body-u h2 {
    font-size: 27px;
    line-height: 1.4;
    letter-spacing: 0.1px;
    color: #313235;
    margin-top: 56px;
    margin-bottom: 16px;
}

.doc-body-u h3 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #9D8C89;
    margin-top: 32px;
    margin-bottom: 8px;
}

.doc-body-u h4 {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.3px;
    color: #313235;
    margin-top: 32px;
    margin-bottom: 8px;
}

.doc-body-u h5 {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.4px;
    color: #9D8C89;
    margin-top: 16px;
    margin-bottom: 8px;
}

.doc-body-u h6 {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #CDC3C4;
    margin-top: 16px;
    margin-bottom: 8px;
}

.doc-body-u p {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch;
}

.doc-body-u ul {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none;
}

.doc-body-u ol {
    margin-top: 0;
    margin-bottom: 16px;
    padding-left: 32px;
    list-style: none;
    counter-reset: policy-counter;
}

.doc-body-u ul li {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin-bottom: 8px;
    position: relative;
    max-width: 72ch;
}

.doc-body-u ul li::before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 1px;
    background-color: #9D8C89;
    position: absolute;
    left: -16px;
    top: 11px;
}

.doc-body-u ol li {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin-bottom: 8px;
    position: relative;
    max-width: 72ch;
    counter-increment: policy-counter;
}

.doc-body-u ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -24px;
    top: 0;
    font-size: 13px;
    line-height: 1.9;
    color: #9D8C89;
    letter-spacing: 0.3px;
}

.doc-body-u em,
.doc-body-u i {
    font-style: italic;
    color: #9D8C89;
}

.doc-body-u a {
    color: #313235;
    text-decoration: underline;
    text-decoration-color: #CDC3C4;
    text-underline-offset: 3px;
    transition: color 0.5s ease-in-out, text-decoration-color 0.5s ease-in-out;
}

.doc-body-u a:hover {
    color: #9D8C89;
    text-decoration-color: #9D8C89;
}

.doc-body-u table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 13px;
    line-height: 1.6;
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.doc-body-u thead {
    background-color: #313235;
}

.doc-body-u thead th {
    color: #CDC3C4;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.doc-body-u tbody tr {
    border-bottom: 1px solid #CDC3C4;
    transition: background-color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.doc-body-u tbody tr:hover {
    background-color: #f5f3f3;
}

.doc-body-u td {
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
    padding: 16px;
    vertical-align: top;
}

.doc-body-u th {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.4px;
    padding: 16px;
    vertical-align: top;
}

@media (max-width: 768px) {
    .doc-body-u {
        padding: 32px 16px;
    }

    .doc-body-u h1 {
        font-size: 27px;
        line-height: 1.2;
    }

    .doc-body-u h2 {
        font-size: 14px;
        line-height: 1.6;
        letter-spacing: 0.3px;
        margin-top: 32px;
    }

    .doc-body-u table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px;
    }

    .doc-body-u p,
    .doc-body-u ul li,
    .doc-body-u ol li {
        max-width: 100%;
    }
}

@media (max-width: 375px) {
    .doc-body-u {
        padding: 32px 8px;
    }

    .doc-body-u h1 {
        font-size: 27px;
    }

    .doc-body-u ul {
        padding-left: 16px;
    }

    .doc-body-u ol {
        padding-left: 16px;
    }
}

.upd-prog {
    background: #fff;
    color: #313235;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.upd-prog .bread {
    padding: 16px 56px;
    border-bottom: 1px solid #CDC3C4;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.upd-prog .bread a {
    font-size: 13px;
    line-height: 1.4;
    color: #9D8C89;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.upd-prog .bread a:hover {
    color: #313235;
}

.upd-prog .bread-sep {
    font-size: 13px;
    color: #CDC3C4;
    line-height: 1.4;
}

.upd-prog .bread-cur {
    font-size: 13px;
    color: #313235;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.upd-prog .title-block {
    padding: 56px 56px 56px 56px;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 56px;
    align-items: start;
    position: relative;
}

.upd-prog .title-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(307deg,
            transparent,
            transparent 28px,
            rgba(156, 140, 137, 0.04) 28px,
            rgba(156, 140, 137, 0.04) 29px);
    pointer-events: none;
}

.upd-prog .title-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.upd-prog .tag-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.upd-prog .cat-tag {
    background: #313235;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.1em;
    padding: 4px 16px;
    border-radius: 4px;
    text-transform: uppercase;
}

.upd-prog .user-tag {
    background: #9D8C89;
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 4px;
}

.upd-prog .title-text h1 {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #313235;
    margin: 0;
    font-weight: 700;
}

.upd-prog .sub-para {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin: 0;
    max-width: 540px;
}

.upd-prog .meta-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.upd-prog .meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.upd-prog .meta-label {
    font-size: 13px;
    line-height: 1.4;
    color: #9D8C89;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.upd-prog .meta-val {
    font-size: 14px;
    line-height: 1.4;
    color: #313235;
    font-weight: 600;
}

.upd-prog .img-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 8px 36px 0 rgba(49, 50, 53, 0.10);
}

.upd-prog .img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(0.35) contrast(1.08) brightness(0.92) saturate(0.8);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.upd-prog .img-wrap:hover img {
    filter: sepia(0.1) contrast(1.02) brightness(0.98) saturate(1.1);
}

.upd-prog .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(307deg, rgba(49, 50, 53, 0.82), transparent 60%, rgba(157, 140, 137, 0.18));
    padding: 32px;
    border-radius: 0 0 8px 8px;
}

.upd-prog .seats-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    padding: 8px 16px;
    backdrop-filter: blur(6px);
}

.upd-prog .seats-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #CDC3C4;
    flex-shrink: 0;
}

.upd-prog .seats-txt {
    font-size: 13px;
    color: #fff;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

.upd-prog .divider-a {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 56px;
}

.upd-prog .divider-a .line-thick {
    height: 2px;
    background: #313235;
    width: 100%;
}

.upd-prog .divider-a .line-thin {
    height: 1px;
    background: #CDC3C4;
    width: 100%;
}

.upd-prog .body-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    padding: 56px 56px;
    align-items: start;
}

.upd-prog .prog-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.upd-prog .prog-col h2 {
    font-size: 27px;
    line-height: 1.2;
    color: #313235;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}

.upd-prog .prog-col h3 {
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.upd-prog .prog-col p {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin: 0;
}

.upd-prog .prog-col em {
    color: #9D8C89;
    font-style: italic;
}

.upd-prog .prog-col ul,
.upd-prog .prog-col ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: step-count;
}

.upd-prog .prog-col ol li {
    counter-increment: step-count;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #CDC3C4;
    position: relative;
}

.upd-prog .prog-col ol li::before {
    content: counter(step-count, decimal-leading-zero);
    font-size: 27px;
    font-weight: 700;
    color: #CDC3C4;
    line-height: 1.2;
    min-width: 48px;
    flex-shrink: 0;
}

.upd-prog .prog-col ul li {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
    padding: 8px 0;
    border-bottom: 1px solid #CDC3C4;
}

.upd-prog .prog-col ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: #9D8C89;
    flex-shrink: 0;
    margin-top: 6px;
}

.upd-prog .prog-col blockquote {
    margin: 0;
    padding: 16px 32px;
    border-top: 2px solid #313235;
    border-bottom: 1px solid #CDC3C4;
    background: linear-gradient(307deg, rgba(205, 195, 196, 0.12), transparent 70%, rgba(157, 140, 137, 0.06));
}

.upd-prog .prog-col blockquote p {
    font-size: 14px;
    line-height: 1.9;
    font-style: italic;
    color: #313235;
}

.upd-prog .prog-col cite {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.06em;
}

.upd-prog .prog-col figure {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upd-prog .prog-col figcaption {
    font-size: 13px;
    color: #9D8C89;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.upd-prog .side-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 32px;
}

.upd-prog .price-card {
    border-radius: 8px;
    border: 1px solid #CDC3C4;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #fff;
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.upd-prog .price-card:hover {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    box-shadow: 1px 8px 36px 0 rgba(157, 140, 137, 0.10);
}

.upd-prog .price-big {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #313235;
    letter-spacing: -0.02em;
}

.upd-prog .price-des {
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
}

.upd-prog .price-note {
    font-size: 13px;
    line-height: 1.6;
    color: #CDC3C4;
    border-top: 1px solid #CDC3C4;
    padding-top: 16px;
}

.upd-prog .enroll-btn {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background: #313235;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
}

.upd-prog .enroll-btn::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #9D8C89;
    border-radius: 4px;
    transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.upd-prog .enroll-btn:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

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

.upd-prog .enroll-btn:focus {
    outline: 2px solid #313235;
    outline-offset: 2px;
}

.upd-prog .enroll-btn:active {
    box-shadow: inset 1px 1px 4px 0 rgba(49, 50, 53, 0.15);
}

.upd-prog .info-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.upd-prog .info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(205, 195, 196, 0.5);
}

.upd-prog .info-k {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.06em;
}

.upd-prog .info-v {
    font-size: 13px;
    color: #313235;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.upd-prog .divider-b {
    padding: 0 56px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.upd-prog .divider-b .line-thin {
    height: 1px;
    background: #CDC3C4;
}

.upd-prog .divider-b .line-thick {
    height: 3px;
    background: #9D8C89;
}

.upd-prog .desc-block {
    padding: 56px 56px;
    position: relative;
    background: linear-gradient(307deg, rgba(205, 195, 196, 0.18), transparent 55%, rgba(157, 140, 137, 0.08));
}

.upd-prog .desc-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.upd-prog .desc-inner {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.upd-prog .desc-label {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9D8C89;
    text-align: center;
}

.upd-prog .desc-inner h2 {
    font-size: 27px;
    line-height: 1.2;
    font-weight: 700;
    color: #313235;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
}

.upd-prog .desc-inner p {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin: 0;
}

.upd-prog .desc-inner h3 {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    color: #313235;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
}

.upd-prog .desc-inner mark {
    background: rgba(157, 140, 137, 0.18);
    color: #313235;
    padding: 1px 4px;
    border-radius: 1px;
}

.upd-prog .desc-inner ul,
.upd-prog .desc-inner ol {
    margin: 0;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    counter-reset: desc-count;
}

.upd-prog .desc-inner ol li {
    counter-increment: desc-count;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
    padding: 8px 0;
    border-bottom: 1px solid rgba(205, 195, 196, 0.5);
}

.upd-prog .desc-inner ol li::before {
    content: counter(desc-count, decimal-leading-zero);
    font-size: 27px;
    font-weight: 700;
    color: #CDC3C4;
    line-height: 1.2;
    min-width: 48px;
    flex-shrink: 0;
}

.upd-prog .desc-inner ul li {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
    padding: 8px 0;
    border-bottom: 1px solid rgba(205, 195, 196, 0.5);
}

.upd-prog .desc-inner ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 1px;
    background: #9D8C89;
    flex-shrink: 0;
    margin-top: 6px;
}

.upd-prog .desc-inner dl {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8px 32px;
    margin: 0;
}

.upd-prog .desc-inner dt {
    font-size: 13px;
    font-weight: 700;
    color: #9D8C89;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.6;
    padding: 8px 0;
    border-bottom: 1px solid rgba(205, 195, 196, 0.4);
}

.upd-prog .desc-inner dd {
    font-size: 14px;
    color: #313235;
    line-height: 1.6;
    margin: 0;
    padding: 8px 0;
    border-bottom: 1px solid rgba(205, 195, 196, 0.4);
}

.upd-prog .desc-inner blockquote {
    margin: 0;
    padding: 16px 32px;
    border-top: 2px solid #9D8C89;
    background: rgba(205, 195, 196, 0.12);
    border-radius: 0 8px 8px 0;
}

.upd-prog .desc-inner blockquote p {
    font-size: 14px;
    line-height: 1.9;
    font-style: italic;
}

.upd-prog .desc-inner cite {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.06em;
}

.upd-prog .geo-decor {
    position: absolute;
    top: 56px;
    right: 32px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(205, 195, 196, 0.3);
    border-radius: 22px;
    animation: slow-spin 18s linear infinite;
    pointer-events: none;
}

.upd-prog .geo-decor-inner {
    position: absolute;
    top: 56px;
    right: 32px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(157, 140, 137, 0.15);
    border-radius: 14px;
    animation: slow-spin 12s linear infinite reverse;
    pointer-events: none;
}

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

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

@keyframes desat-cycle {
    0% {
        filter: saturate(1);
    }

    50% {
        filter: saturate(0.15);
    }

    100% {
        filter: saturate(1);
    }
}

.upd-prog .bg-anim {
    animation: desat-cycle 14s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .upd-prog .title-block {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }

    .upd-prog .img-wrap {
        display: none;
    }

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

    .upd-prog .side-col {
        position: static;
    }

    .upd-prog .bread {
        padding: 16px 32px;
    }

    .upd-prog .divider-a,
    .upd-prog .divider-b {
        padding: 0 32px;
    }

    .upd-prog .desc-block {
        padding: 56px 32px;
    }
}

@media (max-width: 768px) {
    .upd-prog .title-block {
        padding: 32px 16px;
    }

    .upd-prog .title-text h1 {
        font-size: 27px;
    }

    .upd-prog .body-grid {
        padding: 32px 16px;
    }

    .upd-prog .bread {
        padding: 16px;
    }

    .upd-prog .divider-a,
    .upd-prog .divider-b {
        padding: 0 16px;
    }

    .upd-prog .desc-block {
        padding: 32px 16px;
    }

    .upd-prog .meta-row {
        gap: 16px;
    }

    .upd-prog .price-big {
        font-size: 27px;
    }

    .upd-prog .geo-decor,
    .upd-prog .geo-decor-inner {
        display: none;
    }
}

@media (max-width: 375px) {
    .upd-prog .title-text h1 {
        font-size: 27px;
    }

    .upd-prog .cat-tag,
    .upd-prog .user-tag {
        font-size: 13px;
    }
}

.opn {
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: clip;
}

.opn .slide-in {
    animation: diagSlide 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.opn .slide-in-delay {
    animation: diagSlide 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.18s both;
}

@keyframes diagSlide {
    from {
        opacity: 0;
        transform: translate(-28px, 28px);
    }

    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.opn .t-blk {
    position: relative;
    padding: 96px 56px 56px;
    background: #f5f2f2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: end;
}

.opn .t-blk::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(307deg, transparent 40%, #9D8C89);
}

.opn .t-blk-text {
    padding-bottom: 32px;
    position: relative;
    z-index: 1;
}

.opn .t-blk-deco {
    position: absolute;
    top: 56px;
    left: 56px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.opn .t-blk-deco span {
    display: block;
    width: 32px;
    height: 2px;
    background: #9D8C89;
}

.opn .t-blk-deco span:nth-child(2) {
    width: 22px;
}

.opn .t-blk-deco span:nth-child(3) {
    width: 16px;
}

.opn .t-tag {
    display: inline-block;
    background: #313235;
    color: #f5f2f2;
    font-size: 13px;
    letter-spacing: 0.12em;
    padding: 8px 16px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.opn .t-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #313235;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.opn .t-h1 em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: #9D8C89;
    text-underline-offset: 6px;
}

.opn .t-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
    max-width: 440px;
}

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

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

.opn .t-img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 40%;
    background: radial-gradient(ellipse at top left, rgba(205, 195, 196, 0.55) 0%, transparent 70%);
    pointer-events: none;
}

.opn .val-blk {
    padding: 96px 56px;
    background: #fff;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: start;
    margin-left: 56px;
}

.opn .val-label {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9D8C89;
    margin-bottom: 16px;
}

.opn .val-h2 {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 32px;
}

.opn .val-body {
    font-size: 14px;
    line-height: 1.9;
    color: #5a5658;
}

.opn .val-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: vstep;
}

.opn .val-steps li {
    counter-increment: vstep;
    display: flex;
    gap: 16px;
    padding: 32px 0;
    border-bottom: 1px solid #CDC3C4;
    position: relative;
}

.opn .val-steps li:first-child {
    border-top: 1px solid #CDC3C4;
}

.opn .val-steps li::before {
    content: counter(vstep, decimal-leading-zero);
    font-size: 27px;
    font-weight: 700;
    color: #CDC3C4;
    line-height: 1.2;
    flex-shrink: 0;
    width: 48px;
}

.opn .val-step-txt {
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
}

.opn .val-step-txt strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.opn .cond-blk {
    padding: 56px 56px 96px;
    background: #313235;
    position: relative;
    margin-right: 56px;
}

.opn .cond-blk::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 6px;
    height: 60%;
    background: #9D8C89;
}

.opn .cond-divider {
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    color: #9D8C89;
    letter-spacing: 0.18em;
    margin-bottom: 56px;
    opacity: 0.5;
}

.opn .cond-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 32px;
}

.opn .cond-h2 {
    font-size: 27px;
    line-height: 1.4;
    color: #f5f2f2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 16px;
}

.opn .cond-intro {
    font-size: 14px;
    line-height: 1.6;
    color: #CDC3C4;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 32px;
}

.opn .cond-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(205, 195, 196, 0.2);
    border-radius: 8px;
    padding: 32px;
    transition: background 0.55s ease-in-out, border-color 0.45s ease-in-out;
}

.opn .cond-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(205, 195, 196, 0.4);
}

.opn .cond-card-num {
    font-size: 52px;
    font-weight: 700;
    color: #9D8C89;
    line-height: 1.2;
    opacity: 0.4;
    display: block;
    margin-bottom: 16px;
}

.opn .cond-card-h {
    font-size: 14px;
    font-weight: 700;
    color: #f5f2f2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.opn .cond-card-p {
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
}

.opn .cond-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 56px;
}

.opn .cond-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 260px;
}

.opn .cond-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.opn .cond-img-wrap.offset {
    margin-top: 32px;
}

.opn .supp-blk {
    padding: 96px 56px;
    background: #f5f2f2;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 56px;
    align-items: start;
    margin-left: 32px;
    position: relative;
}

.opn .supp-blk::after {
    content: "";
    position: absolute;
    top: 56px;
    right: 56px;
    width: 6px;
    height: 40%;
    background: linear-gradient(307deg, transparent, #CDC3C4);
}

.opn .supp-h2 {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 32px;
}

.opn .supp-body {
    font-size: 14px;
    line-height: 1.9;
    color: #5a5658;
    margin-bottom: 32px;
}

.opn .supp-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: slist;
}

.opn .supp-list li {
    counter-increment: slist;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
}

.opn .supp-list li::before {
    content: counter(slist);
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #9D8C89;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.opn .supp-list-connector {
    margin-left: 11px;
    border-left: 1px solid #CDC3C4;
    height: 16px;
}

.opn .supp-list-txt {
    font-size: 14px;
    line-height: 1.6;
    color: #313235;
}

.opn .supp-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.opn .supp-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 320px;
}

.opn .supp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.opn .supp-img-caption {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.opn .gap-blk {
    padding: 96px 56px;
    background: #fff;
    position: relative;
    margin-right: 32px;
}

.opn .gap-blk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(307deg, #9D8C89, transparent 60%, #CDC3C4);
}

.opn .gap-divider {
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    color: #CDC3C4;
    letter-spacing: 0.2em;
    margin-bottom: 56px;
}

.opn .gap-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.opn .gap-h2 {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 32px;
}

.opn .gap-body {
    font-size: 14px;
    line-height: 1.9;
    color: #5a5658;
    margin-bottom: 32px;
}

.opn .gap-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: #313235;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.5s ease-in-out;
}

.opn .gap-link::before {
    content: "";
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #9D8C89;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.opn .gap-link:hover::before {
    right: 0;
}

.opn .gap-link:hover {
    color: #fff;
}

.opn .gap-link span {
    position: relative;
    z-index: 1;
}

.opn .gap-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.opn .gap-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.opn .gap-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.opn .scale-blk {
    padding: 96px 56px;
    background: #313235;
    position: relative;
}

.opn .scale-blk::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(307deg, transparent 30%, #9D8C89);
}

.opn .scale-h2 {
    font-size: 27px;
    line-height: 1.4;
    color: #f5f2f2;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
    margin-bottom: 8px;
}

.opn .scale-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #9D8C89;
    text-align: left;
    max-width: 560px;
    margin: 0 auto 56px;
}

.opn .scale-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.opn .scale-metric {
    border-top: 2px solid #9D8C89;
    padding-top: 32px;
    position: relative;
}

.opn .scale-num {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #f5f2f2;
    display: block;
}

.opn .scale-unit {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
    margin-top: 8px;
}

.opn .scale-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #CDC3C4;
    margin-top: 8px;
}

.opn .scale-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    border-top: 1px solid rgba(205, 195, 196, 0.2);
    padding-top: 56px;
}

.opn .scale-quote {
    font-size: 14px;
    line-height: 1.9;
    color: #CDC3C4;
    font-style: italic;
}

.opn .scale-quote cite {
    display: block;
    font-style: normal;
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 16px;
}

.opn .scale-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    height: 260px;
}

.opn .scale-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.opn .shift-pat {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(307deg,
            transparent,
            transparent 48px,
            rgba(157, 140, 137, 0.04) 48px,
            rgba(157, 140, 137, 0.04) 50px);
    background-size: 200px 200px;
    animation: patShift 8s linear infinite;
    pointer-events: none;
}

@keyframes patShift {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 200px 200px;
    }
}

@media (max-width: 1024px) {
    .opn .t-blk {
        grid-template-columns: 1fr;
        padding: 56px 32px;
        margin: 0;
    }

    .opn .t-img-wrap {
        height: 340px;
    }

    .opn .val-blk {
        grid-template-columns: 1fr;
        margin-left: 0;
        padding: 56px 32px;
    }

    .opn .cond-blk {
        margin-right: 0;
        padding: 56px 32px;
    }

    .opn .cond-grid {
        grid-template-columns: 1fr;
    }

    .opn .cond-img-row {
        grid-template-columns: 1fr;
    }

    .opn .cond-img-wrap.offset {
        margin-top: 0;
    }

    .opn .supp-blk {
        grid-template-columns: 1fr;
        margin-left: 0;
        padding: 56px 32px;
    }

    .opn .gap-blk {
        margin-right: 0;
        padding: 56px 32px;
    }

    .opn .gap-inner {
        grid-template-columns: 1fr;
    }

    .opn .scale-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .opn .scale-bottom {
        grid-template-columns: 1fr;
    }

    .opn .scale-blk {
        padding: 56px 32px;
    }
}

@media (max-width: 768px) {
    .opn .t-blk {
        padding: 56px 16px 32px;
    }

    .opn .t-h1 {
        font-size: 27px;
    }

    .opn .t-img-wrap {
        display: none;
    }

    .opn .val-blk {
        padding: 56px 16px;
    }

    .opn .cond-blk {
        padding: 56px 16px;
    }

    .opn .cond-img-row {
        display: none;
    }

    .opn .supp-blk {
        padding: 56px 16px;
    }

    .opn .supp-img-col {
        display: none;
    }

    .opn .gap-blk {
        padding: 56px 16px;
    }

    .opn .gap-img-col {
        display: none;
    }

    .opn .scale-metrics {
        grid-template-columns: 1fr;
    }

    .opn .scale-blk {
        padding: 56px 16px;
    }
}

@media (max-width: 375px) {
    .opn .t-h1 {
        font-size: 27px;
    }

    .opn .scale-num {
        font-size: 27px;
    }
}

.up-prog {
    background: #fff;
    overflow-x: clip;
}

.up-prog .pg-band {
    background: linear-gradient(307deg, transparent 40%, #9D8C89 100%);
    padding: 96px 56px;
    max-width: 1400px;
    margin: 0 auto;
}

.up-prog .band-inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 56px;
}

.up-prog .band-img-col {
    flex: 0 0 320px;
    position: relative;
}

.up-prog .band-img-wrap {
    width: 320px;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #CDC3C4;
    box-shadow: 1px 8px 36px 0 rgba(157, 140, 137, 0.10);
}

.up-prog .band-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.55) contrast(1.05);
    transition: filter 0.55s ease-in-out;
}

.up-prog .band-img-wrap:hover img {
    filter: saturate(1) contrast(1.05);
}

.up-prog .band-dots {
    position: absolute;
    top: -24px;
    left: -24px;
    width: 80px;
    height: 80px;
    pointer-events: none;
    overflow: hidden;
}

.up-prog .band-dots svg {
    width: 80px;
    height: 80px;
}

.up-prog .band-text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
}

.up-prog .band-tag {
    display: inline-block;
    background: #313235;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    width: fit-content;
}

.up-prog .band-h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #313235;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
}

.up-prog .band-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5557;
    max-width: 520px;
    margin: 0;
}

.up-prog .band-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.up-prog .btn-main {
    display: inline-block;
    background: #313235;
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.up-prog .btn-main::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #9D8C89;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.up-prog .btn-main:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

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

.up-prog .btn-ghost {
    display: inline-block;
    background: transparent;
    color: #313235;
    font-size: 14px;
    letter-spacing: 0.06em;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #313235;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.up-prog .btn-ghost::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #313235;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.up-prog .btn-ghost:hover {
    color: #fff;
}

.up-prog .btn-ghost:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

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

.up-prog .divider-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 32px 56px;
    max-width: 1400px;
    margin: 0 auto;
}

.up-prog .divider-cross .d-line {
    flex: 1;
    height: 1px;
    background: #CDC3C4;
}

.up-prog .divider-cross .d-cross {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
}

.up-prog .divider-cross .d-cross::before,
.up-prog .divider-cross .d-cross::after {
    content: '';
    position: absolute;
    background: #9D8C89;
    border-radius: 1px;
}

.up-prog .divider-cross .d-cross::before {
    width: 16px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.up-prog .divider-cross .d-cross::after {
    width: 1px;
    height: 16px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.up-prog .stats-strip {
    background: #313235;
    padding: 56px;
}

.up-prog .stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: center;
}

.up-prog .stat-item {
    flex: 1;
    text-align: center;
}

.up-prog .stat-num {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #CDC3C4;
    display: block;
}

.up-prog .stat-label {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9D8C89;
    display: block;
    margin-top: 8px;
}

.up-prog .stat-divider {
    width: 1px;
    height: 64px;
    background: #9D8C89;
    opacity: 0.4;
    flex-shrink: 0;
}

.up-prog .cards-area {
    padding: 96px 56px;
    max-width: 1400px;
    margin: 0 auto;
}

.up-prog .cards-head {
    margin-bottom: 56px;
}

.up-prog .cards-head h2 {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 8px 0;
}

.up-prog .cards-head p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5557;
    text-align: left;
    max-width: 560px;
    margin: 0;
}

.up-prog .card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.up-prog .prog-card {
    border-radius: 14px;
    border: 1px solid #CDC3C4;
    background: #fff;
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.up-prog .prog-card:hover {
    box-shadow: 1px 8px 36px 0 rgba(49, 50, 53, 0.10);
    transform: translateY(-4px);
}

.up-prog .card-top {
    padding: 32px 32px 16px 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    justify-content: space-between;
}

.up-prog .card-tags {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.up-prog .tag-theme {
    background: #9D8C89;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
}

.up-prog .tag-level {
    background: #CDC3C4;
    color: #313235;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding: 4px 12px;
    border-radius: 4px;
}

.up-prog .card-seats {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}

.up-prog .card-seats strong {
    color: #313235;
    font-weight: 700;
}

.up-prog .card-body {
    padding: 0 32px 16px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.up-prog .card-body h3 {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.01em;
}

.up-prog .card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5557;
    margin: 0;
}

.up-prog .card-meta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.up-prog .meta-item {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.04em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.up-prog .meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 22px;
    background: #CDC3C4;
    flex-shrink: 0;
}

.up-prog .card-foot {
    padding: 16px 32px 32px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #CDC3C4;
    margin-top: 16px;
    gap: 16px;
}

.up-prog .price-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.up-prog .price-val {
    font-size: 27px;
    font-weight: 700;
    color: #313235;
    line-height: 1.2;
}

.up-prog .price-desc {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.04em;
}

.up-prog .price-note {
    font-size: 13px;
    color: #9D8C89;
    font-style: italic;
}

.up-prog .card-link {
    display: inline-block;
    background: #313235;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.08em;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
}

.up-prog .card-link::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #9D8C89;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.up-prog .card-link:hover::after {
    width: 100%;
    left: 0;
    right: auto;
}

.up-prog .card-link span {
    position: relative;
    z-index: 1;
}

.up-prog .prog-card:hover .card-link {
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
}

.up-prog .trust-area {
    background: linear-gradient(307deg, #CDC3C4 0%, transparent 55%, #9D8C89 100%);
    padding: 96px 56px;
    position: relative;
}

.up-prog .trust-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.up-prog .trust-area-bg svg {
    position: absolute;
    top: -40px;
    right: -40px;
    opacity: 0.07;
    width: 340px;
    height: 340px;
}

.up-prog .trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.up-prog .trust-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.up-prog .trust-left h2 {
    font-size: 27px;
    line-height: 1.4;
    font-weight: 700;
    color: #313235;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.up-prog .trust-left p {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin: 0;
}

.up-prog .reviews-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.up-prog .review-card {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
    border: 1px solid rgba(205, 195, 196, 0.5);
    transition: box-shadow 0.6s ease-in-out;
}

.up-prog .review-card:hover {
    box-shadow: 1px 8px 36px 0 rgba(49, 50, 53, 0.10);
}

.up-prog .review-card:hover+.review-card {
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
}

.up-prog .reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: #313235;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 8px;
}

.up-prog .reviewer-role {
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.up-prog .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5557;
    margin: 0;
}

.up-prog .trust-accent-divider {
    width: 3px;
    background: #9D8C89;
    border-radius: 1px;
    align-self: stretch;
    flex-shrink: 0;
}

.up-prog .steps-area {
    padding: 96px 56px;
    max-width: 1400px;
    margin: 0 auto;
}

.up-prog .steps-area h2 {
    font-size: 27px;
    line-height: 1.4;
    font-weight: 700;
    color: #313235;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
    margin: 0 0 56px 0;
}

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

.up-prog .step-item {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    padding: 32px 0;
    border-bottom: 1px solid #CDC3C4;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.up-prog .step-item:last-child {
    border-bottom: none;
}

.up-prog .step-num-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 8px;
}

.up-prog .step-num {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #CDC3C4;
    width: 64px;
    text-align: center;
    transition: color 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.up-prog .step-item:hover .step-num {
    color: #9D8C89;
}

.up-prog .step-connector {
    width: 1px;
    flex: 1;
    background: #CDC3C4;
    min-height: 32px;
}

.up-prog .step-content {
    flex: 1;
    padding-top: 8px;
}

.up-prog .step-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #313235;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 8px 0;
}

.up-prog .step-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5557;
    margin: 0;
}

.up-prog .faq-area {
    background: #313235;
    padding: 96px 56px;
    animation: bg-desat 6s ease-in-out infinite alternate;
}

@keyframes bg-desat {
    0% {
        background: #313235;
    }

    50% {
        background: #4a4850;
    }

    100% {
        background: #313235;
    }
}

.up-prog .faq-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 56px;
}

.up-prog .faq-label-col {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
}

.up-prog .faq-label-col h2 {
    font-size: 27px;
    line-height: 1.4;
    font-weight: 700;
    color: #CDC3C4;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
}

.up-prog .faq-label-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #9D8C89;
    margin: 0;
}

.up-prog .faq-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.up-prog .faq-item {
    border-bottom: 1px solid rgba(205, 195, 196, 0.2);
}

.up-prog .faq-item:first-child {
    border-top: 1px solid rgba(205, 195, 196, 0.2);
}

.up-prog .faq-q {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    cursor: pointer;
    gap: 16px;
}

.up-prog .faq-q-text {
    font-size: 14px;
    font-weight: 700;
    color: #CDC3C4;
    letter-spacing: 0.04em;
    line-height: 1.4;
}

.up-prog .faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 22px;
    border: 1px solid #9D8C89;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.up-prog .faq-icon svg {
    width: 12px;
    height: 12px;
}

.up-prog details.faq-item summary {
    list-style: none;
}

.up-prog details.faq-item summary::-webkit-details-marker {
    display: none;
}

.up-prog details.faq-item[open] .faq-icon {
    background: #9D8C89;
}

.up-prog .faq-ans {
    font-size: 14px;
    line-height: 1.9;
    color: #9D8C89;
    padding: 0 0 24px 0;
    margin: 0;
}

@media (max-width: 1024px) {
    .up-prog .pg-band {
        padding: 56px 32px;
    }

    .up-prog .band-img-col {
        flex: 0 0 240px;
    }

    .up-prog .band-img-wrap {
        width: 240px;
        height: 320px;
    }

    .up-prog .band-h1 {
        font-size: 27px;
    }

    .up-prog .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .up-prog .cards-area {
        padding: 56px 32px;
    }

    .up-prog .stats-inner {
        gap: 32px;
        padding: 0;
    }

    .up-prog .stats-strip {
        padding: 56px 32px;
    }

    .up-prog .trust-area {
        padding: 56px 32px;
    }

    .up-prog .steps-area {
        padding: 56px 32px;
    }

    .up-prog .faq-area {
        padding: 56px 32px;
    }

    .up-prog .faq-inner {
        flex-direction: column;
        gap: 32px;
    }

    .up-prog .faq-label-col {
        flex: none;
    }
}

@media (max-width: 768px) {
    .up-prog .pg-band {
        padding: 56px 16px;
    }

    .up-prog .band-inner {
        flex-direction: column;
        gap: 32px;
    }

    .up-prog .band-img-col {
        display: none;
    }

    .up-prog .band-h1 {
        font-size: 27px;
    }

    .up-prog .card-grid {
        grid-template-columns: 1fr;
    }

    .up-prog .cards-area {
        padding: 56px 16px;
    }

    .up-prog .stats-inner {
        flex-direction: column;
        gap: 32px;
    }

    .up-prog .stat-divider {
        width: 64px;
        height: 1px;
    }

    .up-prog .stats-strip {
        padding: 56px 16px;
    }

    .up-prog .trust-inner {
        flex-direction: column;
        gap: 32px;
    }

    .up-prog .trust-accent-divider {
        width: 100%;
        height: 3px;
        align-self: auto;
    }

    .up-prog .trust-area {
        padding: 56px 16px;
    }

    .up-prog .steps-area {
        padding: 56px 16px;
    }

    .up-prog .faq-area {
        padding: 56px 16px;
    }

    .up-prog .faq-inner {
        flex-direction: column;
        gap: 32px;
    }

    .up-prog .card-top {
        flex-direction: column;
        gap: 8px;
    }

    .up-prog .card-foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .up-prog .divider-cross {
        padding: 32px 16px;
    }

    .up-prog .band-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 375px) {
    .up-prog .band-h1 {
        font-size: 27px;
    }

    .up-prog .step-num {
        font-size: 27px;
    }
}

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

.ct-pg .reveal {
    animation: revealUp 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(16px);
    }

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

.ct-pg .reveal-d1 {
    animation-delay: 0.08s;
}

.ct-pg .reveal-d2 {
    animation-delay: 0.18s;
}

.ct-pg .reveal-d3 {
    animation-delay: 0.28s;
}

.ct-pg .reveal-d4 {
    animation-delay: 0.38s;
}

::selection {
    background: #313235;
    color: #ffffff;
}

.ct-pg .pg-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 56px 56px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 56px;
}

.ct-pg .pg-top-left {
    flex: 1 1 0;
}

.ct-pg .pg-eyebrow {
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #9D8C89;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.ct-pg .pg-h1 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #313235;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 32px;
}

.ct-pg .pg-h1 em {
    font-style: normal;
    color: #9D8C89;
}

.ct-pg .pg-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5760;
    max-width: 380px;
}

.ct-pg .pg-top-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.ct-pg .stat-card {
    background: #313235;
    color: #CDC3C4;
    border-radius: 14px;
    padding: 32px;
    width: 220px;
    box-shadow: 1px 8px 36px 0 rgba(49, 50, 53, 0.10);
}

.ct-pg .stat-num {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    display: block;
}

.ct-pg .stat-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9D8C89;
    display: block;
    margin-top: 8px;
}

.ct-pg .stat-card-alt {
    background: linear-gradient(307deg, transparent 30%, #9D8C89 100%);
    background-color: #CDC3C4;
    border-radius: 8px;
    padding: 16px 32px;
    width: 220px;
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
}

.ct-pg .stat-card-alt .stat-num {
    color: #313235;
    font-size: 27px;
}

.ct-pg .stat-card-alt .stat-label {
    color: #5a5760;
}

.ct-pg .divider-word {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
}

.ct-pg .divider-word::before,
.ct-pg .divider-word::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #CDC3C4;
}

.ct-pg .divider-word span {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9D8C89;
    white-space: nowrap;
}

.ct-pg .form-band {
    background: #313235;
    padding: 96px 56px;
}

.ct-pg .form-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
}

.ct-pg .form-aside {
    flex: 0 0 320px;
}

.ct-pg .form-aside-label {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9D8C89;
    display: block;
    margin-bottom: 16px;
}

.ct-pg .form-aside-h {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 32px;
}

.ct-pg .form-aside-text {
    font-size: 14px;
    line-height: 1.6;
    color: #CDC3C4;
    margin-bottom: 32px;
}

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

.ct-pg .aside-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    padding-bottom: 32px;
}

.ct-pg .aside-step:last-child {
    padding-bottom: 0;
}

.ct-pg .step-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 0 0 auto;
}

.ct-pg .step-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #9D8C89;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ct-pg .step-line {
    width: 1px;
    flex: 1;
    background: #4a4b4e;
    margin-top: 8px;
    min-height: 32px;
}

.ct-pg .aside-step:last-child .step-line {
    display: none;
}

.ct-pg .step-body {
    padding-top: 6px;
}

.ct-pg .step-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.ct-pg .step-desc {
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
}

.ct-pg .form-col {
    flex: 1 1 0;
}

.ct-pg .form-dashed {
    border: 1.5px dashed #9D8C89;
    border-radius: 14px;
    padding: 56px;
}

.ct-pg .field-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 32px;
}

.ct-pg .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 0;
}

.ct-pg .field-group.full {
    flex: 1 1 100%;
}

.ct-pg .f-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #CDC3C4;
}

.ct-pg .f-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #4a4b4e;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.45s ease-in-out, background 0.55s ease-in-out;
    width: 100%;
    box-sizing: border-box;
    min-height: 52px;
}

.ct-pg .f-input::placeholder {
    color: #6a6b6f;
}

.ct-pg .f-input:focus {
    border-color: #9D8C89;
    background: rgba(157, 140, 137, 0.08);
    box-shadow: inset 0 1px 4px 0 rgba(157, 140, 137, 0.10);
}

.ct-pg .checks-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #CDC3C4;
    display: block;
    margin-bottom: 16px;
}

.ct-pg .checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 32px;
}

.ct-pg .check-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ct-pg .check-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #4a4b4e;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.45s ease-in-out, border-color 0.45s ease-in-out;
    position: relative;
}

.ct-pg .check-item input[type="checkbox"]:checked {
    background: #9D8C89;
    border-color: #9D8C89;
    box-shadow: inset 0 1px 3px 0 rgba(49, 50, 53, 0.15);
}

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

.ct-pg .check-text {
    font-size: 14px;
    color: #CDC3C4;
    line-height: 1.4;
}

.ct-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 32px;
}

.ct-pg .privacy-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #9D8C89;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: background 0.45s ease-in-out, border-color 0.45s ease-in-out;
    position: relative;
}

.ct-pg .privacy-row input[type="checkbox"]:checked {
    background: #9D8C89;
    border-color: #9D8C89;
    box-shadow: inset 0 1px 3px 0 rgba(49, 50, 53, 0.15);
}

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

.ct-pg .privacy-text {
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
}

.ct-pg .privacy-text a {
    color: #CDC3C4;
    text-decoration: underline;
    transition: color 0.45s ease-in-out;
}

.ct-pg .privacy-text a:hover {
    color: #ffffff;
}

.ct-pg .btn-submit {
    background: #ffffff;
    color: #313235;
    border: none;
    border-radius: 8px;
    padding: 16px 56px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
}

.ct-pg .btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: #9D8C89;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.ct-pg .btn-submit:hover::before {
    width: 100%;
    left: 0;
    right: auto;
}

.ct-pg .btn-submit:hover {
    color: #ffffff;
}

.ct-pg .btn-submit:active {
    box-shadow: inset 1px 1px 4px 0 rgba(49, 50, 53, 0.15);
}

.ct-pg .btn-submit span {
    position: relative;
    z-index: 1;
}

.ct-pg .divider-line {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
    height: 1px;
    background: linear-gradient(307deg, transparent, #CDC3C4, transparent);
}

.ct-pg .info-band {
    padding: 96px 56px;
    background: #f5f3f2;
}

.ct-pg .info-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.ct-pg .info-img-col {
    grid-column: span 1;
    position: relative;
}

.ct-pg .img-wrap {
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 8px 36px 0 rgba(49, 50, 53, 0.10);
}

.ct-pg .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(30%) contrast(1.1);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-pg .img-wrap:hover img {
    filter: grayscale(0%) contrast(1.05);
}

.ct-pg .num-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 56px;
    height: 56px;
    background: #9D8C89;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
    z-index: 1;
}

.ct-pg .info-details-col {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ct-pg .info-h {
    font-size: 27px;
    font-weight: 700;
    line-height: 1.4;
    color: #313235;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 16px;
}

.ct-pg .info-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #5a5760;
    margin: 0 0 32px;
}

.ct-pg .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-pg .contact-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 16px 32px;
    box-shadow: 1px 1px 4px 0 rgba(49, 50, 53, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-pg .contact-card:hover {
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
}

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

.ct-pg .cc-icon svg {
    width: 18px;
    height: 18px;
    fill: #313235;
}

.ct-pg .cc-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ct-pg .cc-type {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9D8C89;
}

.ct-pg .cc-val {
    font-size: 14px;
    font-weight: 600;
    color: #313235;
    line-height: 1.4;
}

.ct-pg .cc-val a {
    color: #313235;
    text-decoration: none;
    transition: color 0.45s ease-in-out;
}

.ct-pg .cc-val a:hover {
    color: #9D8C89;
}

.ct-pg .img2-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ct-pg .img2-wrap {
    width: 100%;
    height: 240px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
}

.ct-pg .img2-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ct-pg .img2-wrap:hover img {
    filter: grayscale(0%) contrast(1.0);
}

.ct-pg .img2-caption {
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
    letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
    .ct-pg .pg-top {
        flex-direction: column;
        padding: 56px 32px 32px;
        gap: 32px;
    }

    .ct-pg .pg-top-right {
        flex-direction: row;
        align-items: flex-start;
        width: 100%;
    }

    .ct-pg .stat-card,
    .ct-pg .stat-card-alt {
        width: auto;
        flex: 1;
    }

    .ct-pg .form-band {
        padding: 56px 32px;
    }

    .ct-pg .form-inner {
        flex-direction: column;
        gap: 56px;
    }

    .ct-pg .form-aside {
        flex: none;
        width: 100%;
    }

    .ct-pg .info-band {
        padding: 56px 32px;
    }

    .ct-pg .info-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ct-pg .info-img-col {
        display: none;
    }

    .ct-pg .info-details-col {
        grid-column: span 1;
    }

    .ct-pg .divider-word {
        padding: 0 32px;
    }

    .ct-pg .divider-line {
        padding: 0 32px;
    }
}

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

    .ct-pg .pg-top {
        padding: 56px 16px 32px;
    }

    .ct-pg .pg-top-right {
        flex-direction: column;
    }

    .ct-pg .form-band {
        padding: 56px 16px;
    }

    .ct-pg .form-dashed {
        padding: 32px 16px;
    }

    .ct-pg .field-row {
        flex-direction: column;
    }

    .ct-pg .checks-grid {
        grid-template-columns: 1fr;
    }

    .ct-pg .info-band {
        padding: 56px 16px;
    }

    .ct-pg .divider-word {
        padding: 0 16px;
    }

    .ct-pg .divider-line {
        padding: 0 16px;
    }
}

@media (max-width: 375px) {
    .ct-pg .pg-h1 {
        font-size: 27px;
    }

    .ct-pg .stat-num {
        font-size: 27px;
    }

    .ct-pg .btn-submit {
        width: 100%;
        padding: 16px 32px;
    }
}

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

.abt .pg-top {
    position: relative;
    padding: 96px 56px;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.abt .pg-top::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(307deg,
            transparent,
            transparent 18px,
            rgba(157, 140, 137, 0.06) 18px,
            rgba(157, 140, 137, 0.06) 19px);
    pointer-events: none;
}

.abt .top-tag {
    display: inline-block;
    background: #9D8C89;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.abt .top-h {
    font-size: 52px;
    line-height: 1.2;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 auto 16px;
    max-width: 780px;
}

.abt .top-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #9D8C89;
    max-width: 560px;
    margin: 0 auto 56px;
    text-align: left;
}

.abt .top-img-wrap {
    position: relative;
    display: inline-block;
    border-radius: 14px;
    overflow: hidden;
    max-width: 860px;
    width: 100%;
}

.abt .top-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.92) hue-rotate(0deg);
    opacity: 0.88;
    border-radius: 14px;
    transition: opacity 0.55s ease-in-out;
}

.abt .top-img-wrap:hover img {
    opacity: 1;
}

.abt .geo-spin {
    position: absolute;
    top: 32px;
    right: 56px;
    width: 80px;
    height: 80px;
    border: 1.5px solid rgba(157, 140, 137, 0.18);
    border-radius: 22px;
    animation: geo-rot 18s linear infinite;
    pointer-events: none;
}

.abt .geo-spin::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(205, 195, 196, 0.22);
    border-radius: 14px;
    animation: geo-rot 10s linear infinite reverse;
}

@keyframes geo-rot {
    to {
        transform: rotate(360deg);
    }
}

.abt .story-band {
    position: relative;
    padding: 96px 56px;
    background: #313235;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.abt .story-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(307deg, transparent 0%, #9D8C89 50%, transparent 100%);
    border-radius: 1px;
}

.abt .story-band-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 1px;
    box-shadow: inset 0 0 60px 0 rgba(157, 140, 137, 0.04);
    animation: edge-glow 5s ease-in-out infinite alternate;
}

@keyframes edge-glow {
    from {
        box-shadow: inset 0 0 40px 0 rgba(157, 140, 137, 0.03);
    }

    to {
        box-shadow: inset 0 0 80px 0 rgba(157, 140, 137, 0.09);
    }
}

.abt .story-left {
    flex: 1 1 0;
    min-width: 0;
}

.abt .story-right {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abt .story-label {
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #CDC3C4;
    margin-bottom: 16px;
    display: block;
}

.abt .story-h {
    font-size: 27px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 32px;
}

.abt .story-body {
    font-size: 14px;
    line-height: 1.9;
    color: #CDC3C4;
    margin-bottom: 16px;
}

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

.abt .stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt .stat-num {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: #9D8C89;
    letter-spacing: -0.01em;
}

.abt .stat-lbl {
    font-size: 13px;
    line-height: 1.4;
    color: #CDC3C4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.abt .story-img-wrap {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.abt .story-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.82;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt .story-img-wrap:hover img {
    opacity: 1;
}

.abt .story-note {
    background: rgba(157, 140, 137, 0.12);
    border-radius: 8px;
    padding: 16px;
}

.abt .story-note-txt {
    font-size: 13px;
    line-height: 1.6;
    color: #CDC3C4;
}

.abt .approach-band {
    padding: 96px 56px;
    background: #f5f3f3;
    position: relative;
}

.abt .approach-band::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(307deg, transparent, #CDC3C4, transparent);
}

.abt .approach-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 56px;
    margin-bottom: 56px;
}

.abt .approach-head {
    flex: 1 1 0;
}

.abt .approach-tag {
    display: inline-block;
    background: #CDC3C4;
    color: #313235;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.abt .approach-h {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.abt .approach-intro {
    flex: 0 0 400px;
    font-size: 14px;
    line-height: 1.6;
    color: #9D8C89;
}

.abt .steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.abt .step-item {
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
    transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.45s ease-in-out;
}

.abt .step-item:hover {
    box-shadow: 1px 8px 36px 0 rgba(49, 50, 53, 0.10);
    transform: translateY(-4px);
}

.abt .step-num {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 700;
    color: rgba(157, 140, 137, 0.18);
    position: absolute;
    top: 16px;
    right: 16px;
    letter-spacing: -0.02em;
}

.abt .step-line {
    width: 32px;
    height: 2px;
    background: #9D8C89;
    border-radius: 1px;
    margin-bottom: 16px;
}

.abt .step-h {
    font-size: 14px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.abt .step-txt {
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
}

.abt .steps-connector {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
}

.abt .conn-dot {
    width: 10px;
    height: 10px;
    border-radius: 22px;
    background: #9D8C89;
    flex-shrink: 0;
}

.abt .conn-line {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(90deg, #9D8C89, #CDC3C4);
}

.abt .team-band {
    padding: 96px 56px;
    background: #fff;
    position: relative;
}

.abt .team-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(307deg, transparent, #CDC3C4 50%, transparent);
    border-radius: 1px;
}

.abt .team-top {
    text-align: center;
    margin-bottom: 56px;
}

.abt .team-tag {
    display: inline-block;
    background: #313235;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.abt .team-h {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.abt .team-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #9D8C89;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
}

.abt .team-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
}

.abt .team-anchor {
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 1px 8px 36px 0 rgba(157, 140, 137, 0.10);
}

.abt .team-anchor img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt .team-anchor:hover img {
    transform: scale(1.03);
}

.abt .anchor-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    background: linear-gradient(307deg, rgba(49, 50, 53, 0.92), rgba(49, 50, 53, 0.6) 60%, transparent);
    border-radius: 0 0 14px 14px;
}

.abt .anchor-name {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.abt .anchor-role {
    font-size: 13px;
    line-height: 1.4;
    color: #CDC3C4;
    letter-spacing: 0.06em;
}

.abt .team-compact {
    border-radius: 8px;
    background: #f5f3f3;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 1px 1px 4px 0 rgba(49, 50, 53, 0.05);
    transition: background 0.5s ease-in-out;
}

.abt .team-compact:hover {
    background: #313235;
}

.abt .team-compact:hover .compact-name {
    color: #fff;
}

.abt .team-compact:hover .compact-role {
    color: #CDC3C4;
}

.abt .team-compact:hover .compact-bio {
    color: #9D8C89;
}

.abt .compact-name {
    font-size: 14px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: color 0.5s ease-in-out;
}

.abt .compact-role {
    font-size: 13px;
    line-height: 1.4;
    color: #9D8C89;
    letter-spacing: 0.06em;
    transition: color 0.5s ease-in-out;
}

.abt .compact-bio {
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
    margin-top: 8px;
    transition: color 0.5s ease-in-out;
}

.abt .team-img-compact {
    border-radius: 8px;
    overflow: hidden;
}

.abt .team-img-compact img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.85;
    transition: opacity 0.55s ease-in-out;
}

.abt .team-img-compact:hover img {
    opacity: 1;
}

.abt .data-band {
    padding: 96px 56px;
    background: #f5f3f3;
    position: relative;
}

.abt .data-inner {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.abt .data-narrative {
    flex: 1 1 0;
    min-width: 0;
}

.abt .data-tag {
    display: inline-block;
    background: #9D8C89;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.abt .data-h {
    font-size: 27px;
    line-height: 1.4;
    color: #313235;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.abt .data-body {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin-bottom: 16px;
}

.abt .data-accent {
    display: inline;
    font-size: 27px;
    font-weight: 700;
    color: #9D8C89;
    line-height: 1.2;
}

.abt .data-accent-lbl {
    display: inline;
    font-size: 13px;
    color: #9D8C89;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-left: 8px;
}

.abt .data-table-wrap {
    flex: 0 0 480px;
}

.abt .data-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 1px 5px 14px 0 rgba(49, 50, 53, 0.08);
}

.abt .data-table thead tr {
    background: #313235;
}

.abt .data-table thead th {
    font-size: 13px;
    line-height: 1.4;
    color: #CDC3C4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px;
    text-align: left;
    font-weight: 600;
}

.abt .data-table tbody tr {
    background: #fff;
    transition: background 0.45s ease-in-out;
}

.abt .data-table tbody tr:nth-child(even) {
    background: #f5f3f3;
}

.abt .data-table tbody tr:hover {
    background: rgba(157, 140, 137, 0.12);
}

.abt .data-table tbody td {
    font-size: 13px;
    line-height: 1.6;
    color: #313235;
    padding: 16px;
    border-bottom: 1px solid rgba(205, 195, 196, 0.3);
}

.abt .data-table tbody td.td-val {
    color: #9D8C89;
    font-weight: 700;
    font-size: 14px;
}

.abt .data-table tbody tr:last-child td {
    border-bottom: none;
}

.abt .cta-strip {
    padding: 56px;
    background: #313235;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
}

.abt .cta-strip::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(307deg, transparent, #9D8C89 50%, transparent);
}

.abt .cta-txt-h {
    font-size: 27px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.abt .cta-txt-p {
    font-size: 14px;
    line-height: 1.6;
    color: #CDC3C4;
    max-width: 480px;
}

.abt .cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: #9D8C89;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
    transition: box-shadow 0.45s ease-in-out, color 0.15s ease-in-out;
}

.abt .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 100%;
    background: #CDC3C4;
    transition: left 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.abt .cta-btn:hover::before {
    left: 0;
}

.abt .cta-btn:hover {
    color: #313235;
    box-shadow: 1px 8px 36px 0 rgba(157, 140, 137, 0.10);
}

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

@media (max-width: 1024px) {
    .abt .story-band {
        flex-direction: column;
        padding: 56px 32px;
    }

    .abt .story-right {
        flex: 0 0 auto;
        width: 100%;
    }

    .abt .approach-top {
        flex-direction: column;
        gap: 16px;
    }

    .abt .approach-intro {
        flex: 0 0 auto;
    }

    .abt .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .abt .team-layout {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .abt .team-anchor {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .abt .data-inner {
        flex-direction: column;
    }

    .abt .data-table-wrap {
        flex: 0 0 auto;
        width: 100%;
    }

    .abt .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .abt .pg-top {
        padding: 56px 16px;
    }

    .abt .top-h {
        font-size: 27px;
    }

    .abt .top-img-wrap img {
        height: 260px;
    }

    .abt .geo-spin {
        display: none;
    }

    .abt .story-band {
        padding: 56px 16px;
    }

    .abt .stat-row {
        flex-direction: column;
        gap: 16px;
    }

    .abt .approach-band {
        padding: 56px 16px;
    }

    .abt .steps-grid {
        grid-template-columns: 1fr;
    }

    .abt .team-band {
        padding: 56px 16px;
    }

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

    .abt .team-anchor {
        grid-column: 1;
    }

    .abt .data-band {
        padding: 56px 16px;
    }

    .abt .cta-strip {
        padding: 56px 16px;
    }

    .abt .top-img-wrap {
        display: none;
    }
}

@media (max-width: 375px) {
    .abt .top-h {
        font-size: 27px;
        letter-spacing: 0.02em;
    }

    .abt .stat-num {
        font-size: 27px;
    }
}

.ok-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background-color: #fff;
}

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

.ok-page .ok-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(307deg, transparent 40%, #CDC3C4);
    box-shadow: 1px 5px 14px 0 rgba(157, 140, 137, 0.08);
}

.ok-page .ok-icon svg {
    display: block;
}

.ok-page .ok-title {
    font-size: 52px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #313235;
    margin: 0 0 16px;
    font-weight: 700;
    text-transform: uppercase;
}

.ok-page .ok-sub {
    font-size: 14px;
    line-height: 1.6;
    color: #9D8C89;
    margin: 0 0 56px;
    letter-spacing: 0.02em;
}

.ok-page .ok-divider {
    width: 40px;
    height: 1px;
    background: #CDC3C4;
    margin: 0 auto 56px;
    border: none;
}

.ok-page .ok-msg {
    font-size: 14px;
    line-height: 1.9;
    color: #313235;
    margin: 0 0 56px;
}

.ok-page .ok-back {
    display: inline-block;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    background-color: #313235;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 1px 4px 0 rgba(49, 50, 53, 0.05);
    transition: color 0.5s ease-in-out;
}

.ok-page .ok-back::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #9D8C89;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.ok-page .ok-back:hover::before {
    transform: translateX(0);
}

.ok-page .ok-back:focus {
    outline: 2px solid #9D8C89;
    outline-offset: 3px;
}

.ok-page .ok-back:active {
    box-shadow: inset 1px 1px 4px 0 rgba(49, 50, 53, 0.10);
}

.ok-page .ok-back span {
    position: relative;
    z-index: 1;
}

.ok-page .ok-contact {
    margin-top: 32px;
    font-size: 13px;
    line-height: 1.6;
    color: #9D8C89;
    letter-spacing: 0.03em;
}

.ok-page .ok-contact a {
    color: #313235;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out;
}

.ok-page .ok-contact a:hover {
    color: #9D8C89;
}

@media (max-width: 375px) {
    .ok-page {
        padding: 56px 16px;
    }

    .ok-page .ok-title {
        font-size: 27px;
    }

    .ok-page .ok-back {
        width: 100%;
        text-align: center;
    }
}