html {
    box-sizing: border-box;
}

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

body {
    margin: 0;
}

*:focus {
    outline: none;
    border-bottom: 4px solid #535B7C;
}

.utilbar {
    background: #535B7C;
    padding: 6px 28px;
}

.utilbar-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
}

.utilbar-contact {
    display: flex;
    align-items: center;
    gap: 14px;
}

.utilbar-link {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #B6B8DA;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.utilbar-link:hover {
    color: #FFFFFF;
}

.utilbar-separator {
    width: 1px;
    height: 14px;
    background: rgba(182, 184, 218, 0.35);
    display: inline-block;
}

.sitehead {
    background: linear-gradient(135deg, #FFFFFF 0%, #f0f1f8 60%, #e8eaf4 100%);
    border-bottom: 2px solid #B6B8DA;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    position: relative;
}

.sitehead-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 28px 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}

.brandbox {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    flex-shrink: 0;
}

.logoframe {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #535B7C;
    border-radius: 32px;
    background: #FFFFFF;
    box-shadow: 2px 1px 5px 1px rgba(83, 91, 124, 0.06);
    overflow: hidden;
    padding: 4px;
    flex-shrink: 0;
}

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

.brandname {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: #535B7C;
    letter-spacing: 0;
}

.sitenav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.sitenav-item {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    transition: color 0.18s ease-out;
    z-index: 1;
}

.sitenav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #535B7C;
    border-radius: 6px;
    transition: left 0.16s ease-out;
    z-index: -1;
}

.sitenav-item:hover::before {
    left: 0;
}

.sitenav-item:hover {
    color: #FFFFFF;
}

.sitenav-item[data-active="true"] {
    background: #535B7C;
    color: #FFFFFF;
}

.sitenav-item[data-active="true"]::before {
    left: 0;
}

.sitenav-arrow {
    display: inline-block;
    margin-left: 6px;
    font-style: normal;
    font-size: 16px;
}

.sitefooter {
    background: linear-gradient(160deg, #535B7C 0%, #3e4560 100%);
    padding: 56px 28px 28px 28px;
}

.sitefooter-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.sitefooter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(182, 184, 218, 0.25);
}

.sitefooter-col-label {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #B6B8DA;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0;
}

.sitefooter-navlist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sitefooter-navlink {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.12s ease-out;
    display: inline-block;
}

.sitefooter-navlink:hover {
    color: #FFFFFF;
}

.sitefooter-contacttext {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 6px 0;
}

.sitefooter-contactlink {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #B6B8DA;
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
    transition: color 0.12s ease-out;
}

.sitefooter-contactlink:hover {
    color: #FFFFFF;
}

.sitefooter-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 28px;
}

.sitefooter-copyright {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.sitefooter-logobox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(182, 184, 218, 0.5);
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 2px 1px 5px 1px rgba(182, 184, 218, 0.06);
    overflow: hidden;
    padding: 4px;
    flex-shrink: 0;
}

.sitefooter-logobox img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.cookiepopup {
    display: none;
    position: fixed;
    bottom: 28px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 56px);
    max-width: 680px;
    background: #FFFFFF;
    border-radius: 10px;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
    border: 1px solid #B6B8DA;
    z-index: 2000;
    padding: 28px;
    transform: translateY(120%);
    transition: transform 0.32s ease-out;
}

.cookiepopup[data-visible="true"] {
    transform: translateY(0);
}

.cookiepopup-desc {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin: 0 0 6px 0;
}

.cookiepopup-uses {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin: 0 0 14px 0;
    padding-left: 14px;
}

.cookiepopup-headline {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    color: #535B7C;
    margin: 0 0 14px 0;
}

.cookiepopup-panel {
    display: none;
    margin-bottom: 14px;
    padding: 14px;
    background: #f0f1f8;
    border-radius: 6px;
}

.cookiepopup-panel[data-open="true"] {
    display: block;
}

.cookiepopup-togglerow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cookiepopup-togglelabel {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
}

.cookiepopup-toggle {
    width: 40px;
    height: 22px;
    border-radius: 32px;
    background: #B6B8DA;
    border: none;
    cursor: pointer;
    position: relative;
    transition: background 0.15s ease-out;
    flex-shrink: 0;
}

.cookiepopup-toggle[data-checked="true"] {
    background: #535B7C;
}

.cookiepopup-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    border-radius: 32px;
    background: #FFFFFF;
    transition: left 0.15s ease-out;
}

.cookiepopup-toggle[data-checked="true"]::after {
    left: 21px;
}

.cookiepopup-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cookiepopup-btn {
    flex: 1;
    min-width: 120px;
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    padding: 6px 14px;
    border-radius: 6px;
    border: 2px solid #535B7C;
    cursor: pointer;
    transition: background 0.16s ease-out, color 0.16s ease-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cookiepopup-btn-primary {
    background: #535B7C;
    color: #FFFFFF;
}

.cookiepopup-btn-primary:hover {
    background: #3e4560;
}

.cookiepopup-btn-secondary {
    background: #FFFFFF;
    color: #535B7C;
}

.cookiepopup-btn-secondary:hover {
    background: #f0f1f8;
}

.cookiepopup-manage {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-bottom: 14px;
    display: block;
    transition: color 0.12s ease-out;
}

.cookiepopup-manage:hover {
    color: #3e4560;
}

.cookiepopup-policyref {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(83, 91, 124, 0.65);
    margin: 14px 0 0 0;
}

.cookiepopup-policylink {
    color: #535B7C;
    text-decoration: underline;
    transition: color 0.12s ease-out;
}

.cookiepopup-policylink:hover {
    color: #3e4560;
}

.cookiepopup-datasale {
    margin-bottom: 14px;
    padding: 14px;
    background: #f0f1f8;
    border-radius: 6px;
}

.cookiepopup-datasale-notice {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin: 0 0 6px 0;
    font-weight: 700;
}

.cookiepopup-datasale-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cookiepopup-datasale-label {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
}

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

@media (max-width: 640px) {
    .utilbar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .sitehead-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
    }

    .sitefooter-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .sitefooter-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookiepopup {
        width: calc(100% - 28px);
        bottom: 14px;
    }
}

@media (max-width: 360px) {
    .utilbar {
        padding: 6px 14px;
    }

    .sitehead-inner {
        padding: 14px;
        gap: 14px;
    }

    .sitefooter {
        padding: 28px 14px 14px 14px;
    }
}

.yrp-terms-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 28px;
}

.yrp-terms-wrapper h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin-bottom: 28px;
    margin-top: 0;
}

.yrp-terms-wrapper h2 {
    font-size: 18px;
    line-height: 1.6;
    color: #535B7C;
    margin-top: 56px;
    margin-bottom: 14px;
    padding-bottom: 6px;
    border-bottom: 2px solid #B6B8DA;
}

.yrp-terms-wrapper h3 {
    font-size: 18px;
    line-height: 1.6;
    color: #535B7C;
    margin-top: 28px;
    margin-bottom: 14px;
}

.yrp-terms-wrapper h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin-top: 28px;
    margin-bottom: 6px;
}

.yrp-terms-wrapper h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin-top: 14px;
    margin-bottom: 6px;
}

.yrp-terms-wrapper h6 {
    font-size: 16px;
    line-height: 1.6;
    color: #B6B8DA;
    margin-top: 14px;
    margin-bottom: 6px;
}

.yrp-terms-wrapper p {
    font-size: 16px;
    line-height: 1.6;
    color: #2d3148;
    margin-top: 0;
    margin-bottom: 14px;
}

.yrp-terms-wrapper ul {
    margin: 14px 0 28px 0;
    padding-left: 28px;
    list-style: none;
}

.yrp-terms-wrapper ol {
    margin: 14px 0 28px 0;
    padding-left: 28px;
    list-style: none;
    counter-reset: policy-counter;
}

.yrp-terms-wrapper ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #2d3148;
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}

.yrp-terms-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #B6B8DA;
}

.yrp-terms-wrapper ol li {
    font-size: 16px;
    line-height: 1.6;
    color: #2d3148;
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
    counter-increment: policy-counter;
}

.yrp-terms-wrapper ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -14px;
    color: #535B7C;
    font-size: 16px;
    line-height: 1.6;
}

.yrp-terms-wrapper ul ul,
.yrp-terms-wrapper ol ol,
.yrp-terms-wrapper ul ol,
.yrp-terms-wrapper ol ul {
    margin-top: 6px;
    margin-bottom: 6px;
}

.yrp-terms-wrapper em,
.yrp-terms-wrapper i {
    font-style: italic;
    color: #535B7C;
}

.yrp-terms-wrapper a {
    color: #535B7C;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: #B6B8DA;
    transition: color 0.15s ease-out, text-decoration-color 0.2s ease;
}

.yrp-terms-wrapper a:hover {
    color: #2d3148;
    text-decoration-color: #535B7C;
}

.yrp-terms-wrapper a:focus-visible {
    outline: 2px solid #535B7C;
    outline-offset: 2px;
    border-radius: 6px;
}

.yrp-terms-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 16px;
    line-height: 1.6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 1px 5px 1px rgba(83, 91, 124, 0.06);
}

.yrp-terms-wrapper thead {
    background-color: #535B7C;
}

.yrp-terms-wrapper thead th {
    color: #FFFFFF;
    font-size: 16px;
    line-height: 1.6;
    padding: 14px 28px;
    text-align: left;
    font-weight: 600;
}

.yrp-terms-wrapper tbody tr {
    border-bottom: 1px solid #B6B8DA;
    transition: background-color 0.15s ease;
}

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

.yrp-terms-wrapper tbody tr:nth-child(even) {
    background-color: rgba(182, 184, 218, 0.12);
}

.yrp-terms-wrapper tbody tr:hover {
    background-color: rgba(182, 184, 218, 0.22);
}

.yrp-terms-wrapper td {
    padding: 14px 28px;
    color: #2d3148;
    font-size: 16px;
    line-height: 1.6;
    vertical-align: top;
}

.yrp-terms-wrapper th {
    padding: 14px 28px;
    font-size: 16px;
    line-height: 1.6;
    vertical-align: top;
}

.yrp-terms-wrapper hr {
    border: none;
    border-top: 1px solid #B6B8DA;
    margin: 56px 0;
    opacity: 0.6;
}

.yrp-terms-wrapper div {
    font-size: 16px;
    line-height: 1.6;
    color: #2d3148;
}

@media (max-width: 1024px) {
    .yrp-terms-wrapper {
        padding: 56px 28px;
    }

    .yrp-terms-wrapper h1 {
        font-size: clamp(36px, 5vw, 56px);
    }
}

@media (max-width: 640px) {
    .yrp-terms-wrapper {
        padding: 28px 14px;
    }

    .yrp-terms-wrapper h1 {
        font-size: clamp(28px, 8vw, 56px);
    }

    .yrp-terms-wrapper h2 {
        margin-top: 28px;
    }

    .yrp-terms-wrapper table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .yrp-terms-wrapper thead th,
    .yrp-terms-wrapper td {
        padding: 14px;
    }
}

@media (max-width: 360px) {
    .yrp-terms-wrapper {
        padding: 28px 6px;
    }

    .yrp-terms-wrapper h1 {
        font-size: clamp(24px, 9vw, 56px);
    }

    .yrp-terms-wrapper thead th,
    .yrp-terms-wrapper td {
        padding: 6px 14px;
    }
}

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

.bse .titlBlock {
    position: relative;
    padding: 56px 96px;
    background: #f4f5f9;
    border-bottom: 2px solid #B6B8DA;
}

.bse .titlBlock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #535B7C 0%, #B6B8DA 60%, transparent 100%);
}

.bse .titlBlock .topRow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 56px;
    max-width: 1100px;
    margin: 0 auto;
}

.bse .titlBlock .leftCol {
    flex: 1 1 0;
    min-width: 0;
}

.bse .titlBlock .numAccent {
    font-size: 72px;
    line-height: 1.1;
    color: #B6B8DA;
    opacity: 0.38;
    display: block;
    margin-bottom: 6px;
    user-select: none;
}

.bse .titlBlock .mainHead {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin: 0 0 28px 0;
}

.bse .titlBlock .subText {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3f55;
    max-width: 480px;
}

.bse .titlBlock .rightCol {
    flex: 0 0 340px;
    position: relative;
}

.bse .titlBlock .imgShift {
    width: 340px;
    height: 226px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    filter: saturate(1.18) contrast(1.06) hue-rotate(0deg);
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
}

.bse .titlBlock .imgShift {
    filter: saturate(1.3) contrast(1.08) brightness(0.97) sepia(0.08);
}

.bse .divLine {
    height: 1px;
    background: linear-gradient(90deg, #535B7C 0%, #B6B8DA 40%, transparent 100%);
    margin: 0;
    border: none;
}

.bse .availBlock {
    padding: 96px 96px 56px 96px;
    background: #ffffff;
}

.bse .availBlock .innerWrap {
    max-width: 1100px;
    margin: 0 auto;
}

.bse .availBlock .secNum {
    font-size: 72px;
    line-height: 1.1;
    color: #B6B8DA;
    opacity: 0.28;
    display: block;
    user-select: none;
    margin-bottom: 6px;
}

.bse .availBlock .secHead {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin: 0 0 28px 0;
}

.bse .availBlock .leadPara {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3f55;
    max-width: 560px;
    margin: 0 0 56px 0;
}

.bse .availBlock .cardGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.bse .availBlock .topicCard {
    background: #f4f5f9;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 1px 5px 1px rgba(83, 91, 124, 0.06);
    transition: box-shadow 0.15s ease-out, transform 0.12s ease-out;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bse .availBlock .topicCard:hover {
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    transform: translateY(-3px);
}

.bse .availBlock .cardDot {
    width: 10px;
    height: 10px;
    border-radius: 32px;
    background: #535B7C;
    flex-shrink: 0;
}

.bse .availBlock .cardTitleRow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
}

.bse .availBlock .cardLabel {
    font-size: 18px;
    line-height: 1.1;
    color: #535B7C;
    font-weight: 600;
}

.bse .availBlock .cardDesc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4f68;
}

.bse .availBlock .imgRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 56px;
}

.bse .availBlock .imgRowImg {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
}

.bse .condBlock {
    padding: 56px 96px 96px 96px;
    background: linear-gradient(160deg, #eceef5 0%, #B6B8DA 55%, #d8daf0 100%);
    position: relative;
}

.bse .condBlock .dLines {
    position: absolute;
    top: 28px;
    right: 56px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.bse .condBlock .dLines span {
    display: block;
    height: 1px;
    background: rgba(83, 91, 124, 0.22);
}

.bse .condBlock .dLines span:nth-child(1) {
    width: 56px;
}

.bse .condBlock .dLines span:nth-child(2) {
    width: 40px;
}

.bse .condBlock .dLines span:nth-child(3) {
    width: 28px;
}

.bse .condBlock .dLines span:nth-child(4) {
    width: 14px;
}

.bse .condBlock .innerWrap {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.bse .condBlock .leftSide {
    flex: 0 0 420px;
}

.bse .condBlock .secNum {
    font-size: 72px;
    line-height: 1.1;
    color: #535B7C;
    opacity: 0.22;
    display: block;
    user-select: none;
    margin-bottom: 6px;
}

.bse .condBlock .secHead {
    font-size: 56px;
    line-height: 1.1;
    color: #2e3248;
    margin: 0 0 28px 0;
}

.bse .condBlock .condImg {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
    margin-top: 28px;
}

.bse .condBlock .rightSide {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 28px;
}

.bse .condBlock .condItem {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeSlideUp 0.18s ease-out forwards;
}

.bse .condBlock .condItem:nth-child(1) {
    animation-delay: 0.05s;
}

.bse .condBlock .condItem:nth-child(2) {
    animation-delay: 0.10s;
}

.bse .condBlock .condItem:nth-child(3) {
    animation-delay: 0.15s;
}

.bse .condBlock .condItem:nth-child(4) {
    animation-delay: 0.20s;
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.bse .condBlock .condDot {
    width: 10px;
    height: 10px;
    border-radius: 32px;
    background: #535B7C;
    flex-shrink: 0;
    margin-top: 6px;
}

.bse .condBlock .condText {
    font-size: 16px;
    line-height: 1.6;
    color: #2e3248;
}

.bse .condBlock .condText strong {
    color: #2e3248;
    font-weight: 600;
}

.bse .suppBlock {
    padding: 96px 96px;
    background: #ffffff;
    position: relative;
}

.bse .suppBlock .innerWrap {
    max-width: 1100px;
    margin: 0 auto;
}

.bse .suppBlock .asymRow {
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.bse .suppBlock .richSide {
    flex: 1 1 0;
    min-width: 0;
}

.bse .suppBlock .leanSide {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 56px;
}

.bse .suppBlock .secNum {
    font-size: 72px;
    line-height: 1.1;
    color: #B6B8DA;
    opacity: 0.32;
    display: block;
    user-select: none;
    margin-bottom: 6px;
}

.bse .suppBlock .secHead {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin: 0 0 28px 0;
}

.bse .suppBlock .leadPara {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3f55;
    max-width: 520px;
    margin: 0 0 28px 0;
}

.bse .suppBlock .suppImg {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
    margin-bottom: 28px;
}

.bse .suppBlock .faqItem {
    border-radius: 6px;
    background: #f4f5f9;
    padding: 14px 28px;
    box-shadow: 2px 1px 5px 1px rgba(83, 91, 124, 0.06);
}

.bse .suppBlock .faqQ {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.bse .suppBlock .faqA {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4f68;
    margin: 0;
}

.bse .suppBlock .leanStat {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 28px;
    background: linear-gradient(160deg, #535B7C 0%, #B6B8DA 100%);
    border-radius: 10px;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
}

.bse .suppBlock .statNum {
    font-size: 56px;
    line-height: 1.1;
    color: #ffffff;
}

.bse .suppBlock .statLabel {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.bse .suppBlock .leanNote {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    padding: 14px 0;
    border-top: 1px solid #B6B8DA;
}

.bse .suppBlock .dLines {
    position: absolute;
    bottom: 56px;
    left: 56px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
}

.bse .suppBlock .dLines span {
    display: block;
    height: 1px;
    background: rgba(182, 184, 218, 0.45);
}

.bse .suppBlock .dLines span:nth-child(1) {
    width: 56px;
}

.bse .suppBlock .dLines span:nth-child(2) {
    width: 40px;
}

.bse .suppBlock .dLines span:nth-child(3) {
    width: 28px;
}

@media (max-width: 1024px) {
    .bse .titlBlock {
        padding: 56px 56px;
    }

    .bse .titlBlock .topRow {
        gap: 28px;
    }

    .bse .titlBlock .rightCol {
        flex: 0 0 260px;
    }

    .bse .titlBlock .imgShift {
        width: 260px;
        height: 173px;
    }

    .bse .availBlock {
        padding: 56px 56px 56px 56px;
    }

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

    .bse .condBlock {
        padding: 56px 56px;
    }

    .bse .condBlock .innerWrap {
        flex-direction: column;
        gap: 28px;
    }

    .bse .condBlock .leftSide {
        flex: none;
        width: 100%;
    }

    .bse .suppBlock {
        padding: 56px 56px;
    }

    .bse .suppBlock .asymRow {
        flex-direction: column;
        gap: 28px;
    }

    .bse .suppBlock .leanSide {
        flex: none;
        width: 100%;
        padding-top: 0;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .bse .suppBlock .leanStat {
        flex: 1 1 180px;
    }
}

@media (max-width: 640px) {
    .bse .titlBlock {
        padding: 28px 14px;
    }

    .bse .titlBlock .topRow {
        flex-direction: column;
        gap: 28px;
    }

    .bse .titlBlock .rightCol {
        flex: none;
        width: 100%;
    }

    .bse .titlBlock .imgShift {
        width: 100%;
        height: 180px;
    }

    .bse .titlBlock .mainHead {
        font-size: 56px;
    }

    .bse .availBlock {
        padding: 56px 14px;
    }

    .bse .availBlock .cardGrid {
        grid-template-columns: 1fr;
    }

    .bse .availBlock .imgRow {
        grid-template-columns: 1fr;
    }

    .bse .condBlock {
        padding: 56px 14px;
    }

    .bse .condBlock .secHead {
        font-size: 56px;
    }

    .bse .suppBlock {
        padding: 56px 14px;
    }

    .bse .suppBlock .secHead {
        font-size: 56px;
    }

    .bse .suppBlock .leanSide {
        flex-direction: column;
    }
}

@media (max-width: 360px) {
    .bse .titlBlock .mainHead {
        font-size: 56px;
    }

    .bse .titlBlock .numAccent {
        font-size: 56px;
    }

    .bse .availBlock .secHead {
        font-size: 56px;
    }

    .bse .availBlock .secNum {
        font-size: 56px;
    }
}

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

.contUs .reachBlk {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 56px;
    padding: 96px 56px;
    background: #fff;
    position: relative;
}

.contUs .reachBlk::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 56px;
    right: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #B6B8DA 40%, #535B7C 60%, transparent);
}

.contUs .imgCol {
    flex: 0 0 55%;
    position: relative;
    padding: 28px;
}

.contUs .imgBorderOuter {
    position: absolute;
    inset: 0;
    border: 2px solid #535B7C;
    border-radius: 10px;
    pointer-events: none;
}

.contUs .imgBorderInner {
    position: absolute;
    inset: 7px;
    border: 2px solid #B6B8DA;
    border-radius: 6px;
    pointer-events: none;
}

.contUs .imgWrap {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
}

.contUs .imgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
    display: block;
}

.contUs .imgFade {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0) 55%, rgba(182, 184, 218, 0.22) 100%);
    border-radius: 10px;
    pointer-events: none;
}

.contUs .imgDecor {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 56px;
    height: 56px;
    border-radius: 0px;
    background: linear-gradient(135deg, #535B7C 0%, #B6B8DA 100%);
    opacity: 0.18;
    pointer-events: none;
}

.contUs .textCol {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 14px 28px 0;
}

.contUs .textCol .fadeNum {
    font-size: 72px;
    line-height: 1.1;
    color: #B6B8DA;
    opacity: 0.18;
    font-weight: 900;
    margin-bottom: -28px;
    user-select: none;
    display: block;
}

.contUs .textCol .pgHead {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.contUs .textCol .pgSlogan {
    font-size: 18px;
    line-height: 1.6;
    color: #535B7C;
    border-top: 2px solid #B6B8DA;
    padding-top: 14px;
    margin-bottom: 28px;
    font-style: italic;
}

.contUs .textCol .pgDesc {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin-bottom: 0;
}

.contUs .infoStrip {
    background: #535B7C;
    padding: 56px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    position: relative;
    animation: ctAppear 0.2s ease-out both;
}

@keyframes ctAppear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.contUs .infoStrip::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B6B8DA 0%, #fff 50%, #B6B8DA 100%);
}

.contUs .infoCard {
    background: rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    transition: background 0.15s ease-out;
}

.contUs .infoCard:hover {
    background: rgba(255, 255, 255, 0.13);
}

.contUs .infoCard .cardCounter {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 16px;
    color: #B6B8DA;
    opacity: 0.5;
    font-weight: 700;
    user-select: none;
}

.contUs .infoCard .cardIcon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.contUs .infoCard .cardIcon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #B6B8DA;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contUs .infoCard .cardLabel {
    font-size: 16px;
    color: #B6B8DA;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contUs .infoCard .cardVal {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
}

.contUs .infoCard .cardVal a {
    color: #fff;
    text-decoration: none;
    transition: color 0.15s ease-out;
}

.contUs .infoCard .cardVal a:hover {
    color: #B6B8DA;
}

.contUs .formArea {
    padding: 96px 56px;
    background: #fff;
    display: flex;
    flex-direction: row;
    gap: 56px;
    align-items: flex-start;
}

.contUs .formSide {
    flex: 1;
    min-width: 0;
}

.contUs .formSide .sideHead {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin-bottom: 14px;
    position: relative;
}

.contUs .formSide .sideHead .fadeNum {
    font-size: 72px;
    line-height: 1.1;
    color: #B6B8DA;
    opacity: 0.15;
    font-weight: 900;
    display: block;
    margin-bottom: -28px;
    user-select: none;
}

.contUs .formSide .sideSub {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin-bottom: 56px;
    max-width: 520px;
}

.contUs .formPanel {
    background: #fff;
    border-radius: 10px;
    border: 2px solid #B6B8DA;
    padding: 56px;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
    position: relative;
}

.contUs .formPanel::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(182, 184, 218, 0.35);
    border-radius: 6px;
    pointer-events: none;
}

.contUs .fieldGroup {
    margin-bottom: 28px;
    position: relative;
}

.contUs .fieldGroup .floatLabel {
    position: absolute;
    top: 16px;
    left: 14px;
    font-size: 16px;
    color: #535B7C;
    pointer-events: none;
    transition: top 0.15s ease-out, font-size 0.15s ease-out, color 0.15s ease-out;
    background: #fff;
    padding: 0 6px;
    border-radius: 0px;
    z-index: 1;
}

.contUs .fieldGroup .fInput:focus~.floatLabel,
.contUs .fieldGroup .fInput:not(:placeholder-shown)~.floatLabel {
    top: -10px;
    font-size: 16px;
    color: #535B7C;
    font-weight: 600;
}

.contUs .fieldGroup .fInput {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    line-height: 1.6;
    border: 2px solid #B6B8DA;
    border-radius: 6px;
    background: #fff;
    color: #535B7C;
    outline: none;
    transition: border-color 0.15s ease-out, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.contUs .fieldGroup .fInput::placeholder {
    color: transparent;
}

.contUs .fieldGroup .fInput:focus {
    border-color: #535B7C;
    box-shadow: 2px 1px 5px 1px rgba(83, 91, 124, 0.06);
}

.contUs .chanSelect {
    margin-bottom: 28px;
}

.contUs .chanSelect .chanLabel {
    font-size: 16px;
    color: #535B7C;
    margin-bottom: 14px;
    display: block;
    font-weight: 600;
}

.contUs .chanOpts {
    display: flex;
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
}

.contUs .chanOpts .chanOpt {
    flex: 1;
    min-width: 100px;
}

.contUs .chanOpts .chanOpt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contUs .chanOpts .chanOpt label {
    display: block;
    padding: 14px;
    border: 2px solid #B6B8DA;
    border-radius: 6px;
    font-size: 16px;
    color: #535B7C;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.15s ease-out, background 0.15s ease-out;
    position: relative;
    overflow: hidden;
}

.contUs .chanOpts .chanOpt label::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #535B7C;
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
    z-index: 0;
    border-radius: 4px;
}

.contUs .chanOpts .chanOpt label span {
    position: relative;
    z-index: 1;
}

.contUs .chanOpts .chanOpt input[type="radio"]:checked+label {
    border-color: #535B7C;
    color: #fff;
}

.contUs .chanOpts .chanOpt input[type="radio"]:checked+label::before {
    transform: translateX(0);
}

.contUs .chanOpts .chanOpt input[type="radio"]:focus+label {
    outline: 2px solid #535B7C;
    outline-offset: 2px;
}

.contUs .privacyRow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
    padding: 14px;
    background: rgba(182, 184, 218, 0.12);
    border-radius: 6px;
}

.contUs .privacyRow input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #535B7C;
    flex-shrink: 0;
    cursor: pointer;
}

.contUs .privacyRow .privText {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
}

.contUs .privacyRow .privText a {
    color: #535B7C;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.15s ease-out;
}

.contUs .privacyRow .privText a:hover {
    color: #B6B8DA;
}

.contUs .submitBtn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 14px 28px;
    font-size: 18px;
    line-height: 1.1;
    color: #535B7C;
    background: transparent;
    border: 2px solid #535B7C;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.2s ease-out, border-color 0.2s ease-out;
}

.contUs .submitBtn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #535B7C;
    transform: translateX(-100%);
    transition: transform 0.2s ease-out;
    z-index: 0;
}

.contUs .submitBtn:hover {
    color: #fff;
}

.contUs .submitBtn:hover::before {
    transform: translateX(0);
}

.contUs .submitBtn .btnTxt {
    position: relative;
    z-index: 1;
}

.contUs .submitBtn .btnArrow {
    position: relative;
    z-index: 1;
    display: inline-block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: width 0.15s ease-out;
}

.contUs .submitBtn .btnArrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.contUs .submitBtn:hover .btnArrow {
    width: 28px;
}

.contUs .submitBtn:focus {
    outline: 2px solid #535B7C;
    outline-offset: 3px;
}

.contUs .submitBtn:active {
    box-shadow: inset 0 6px 10px rgba(83, 91, 124, 0.18);
}

.contUs .formInfoAside {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding-top: 96px;
}

.contUs .asideCard {
    background: #fff;
    border-radius: 10px;
    border: 2px solid #B6B8DA;
    padding: 28px;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    position: relative;
    animation: ctAppear 0.2s ease-out both;
}

.contUs .asideCard .acNum {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 16px;
    color: #B6B8DA;
    font-weight: 700;
    opacity: 0.5;
    user-select: none;
}

.contUs .asideCard .acHead {
    font-size: 18px;
    line-height: 1.1;
    color: #535B7C;
    margin-bottom: 14px;
    font-weight: 700;
}

.contUs .asideCard .acText {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
}

.contUs .reachBlk {
    animation: ctAppear 0.15s ease-out both;
}

@media (max-width: 1024px) {
    .contUs .reachBlk {
        flex-direction: column;
        gap: 28px;
        padding: 56px 28px;
    }

    .contUs .imgCol {
        flex: none;
        width: 100%;
    }

    .contUs .imgWrap {
        height: 340px;
    }

    .contUs .textCol {
        padding: 14px 0;
    }

    .contUs .infoStrip {
        grid-template-columns: 1fr 1fr;
        padding: 56px 28px;
        gap: 14px;
    }

    .contUs .formArea {
        flex-direction: column;
        padding: 56px 28px;
        gap: 28px;
    }

    .contUs .formInfoAside {
        flex: none;
        width: 100%;
        padding-top: 0;
    }

    .contUs .formPanel {
        padding: 28px;
    }
}

@media (max-width: 640px) {
    .contUs .reachBlk {
        padding: 56px 14px;
    }

    .contUs .textCol .pgHead {
        font-size: 56px;
    }

    .contUs .infoStrip {
        grid-template-columns: 1fr;
        padding: 56px 14px;
    }

    .contUs .formArea {
        padding: 56px 14px;
    }

    .contUs .chanOpts {
        flex-direction: column;
    }

    .contUs .formPanel {
        padding: 14px;
    }

    .contUs .formSide .sideHead {
        font-size: 56px;
    }
}

@media (max-width: 360px) {
    .contUs .textCol .pgHead {
        font-size: 56px;
    }

    .contUs .formSide .sideHead {
        font-size: 56px;
    }
}

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

.aboutUs .abt-inner {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}

.aboutUs .vigPulse {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 60%, rgba(83, 91, 124, 0.13) 100%);
    animation: vigBreath 4s ease-in-out infinite alternate;
}

@keyframes vigBreath {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

.aboutUs .splitScreen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
    padding-top: 96px;
    position: relative;
}

.aboutUs .splitLeft {
    background: #535B7C;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 96px 56px 56px 56px;
    position: relative;
    overflow: hidden;
}

.aboutUs .splitLeft::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    border: 1.5px solid rgba(182, 184, 218, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.aboutUs .splitLeft::after {
    content: "";
    position: absolute;
    bottom: 56px;
    left: 28px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(182, 184, 218, 0.10);
    border-radius: 50%;
    pointer-events: none;
}

.aboutUs .splitHeadLabel {
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    color: #B6B8DA;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.aboutUs .splitH1 {
    font-size: 72px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.aboutUs .splitH1 span {
    display: block;
    font-size: 56px;
    color: #B6B8DA;
    line-height: 1.1;
}

.aboutUs .splitH1 em {
    display: block;
    font-size: 72px;
    font-style: normal;
    color: #ffffff;
    line-height: 1.1;
}

.aboutUs .splitDesc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(182, 184, 218, 0.85);
    max-width: 380px;
    margin-bottom: 0;
}

.aboutUs .splitRight {
    background: #B6B8DA;
    position: relative;
    overflow: hidden;
}

.aboutUs .splitImgWrap {
    position: absolute;
    inset: 0;
}

.aboutUs .splitImgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: imgFadeIn 1.1s 0.3s ease-out forwards;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
}

@keyframes imgFadeIn {
    from {
        opacity: 0;
        transform: scale(1.03);
    }

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

.aboutUs .splitImgOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(83, 91, 124, 0.25) 0%, rgba(182, 184, 218, 0.10) 60%, transparent 100%);
    pointer-events: none;
}

.aboutUs .curlDeco {
    position: absolute;
    bottom: 28px;
    right: 28px;
    width: 80px;
    height: 80px;
    opacity: 0.18;
    pointer-events: none;
}

.aboutUs .storyWrap {
    padding-top: 96px;
    padding-bottom: 96px;
    background: #ffffff;
    position: relative;
}

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

.aboutUs .storyImgFloat {
    flex: 0 0 420px;
    max-width: 420px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    position: relative;
    top: 0;
}

.aboutUs .storyImgFloat img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.aboutUs .storyText {
    flex: 1 1 0;
    min-width: 0;
}

.aboutUs .storyNumBg {
    font-size: 72px;
    line-height: 1.1;
    color: rgba(182, 184, 218, 0.22);
    font-weight: 900;
    display: block;
    margin-bottom: 6px;
    user-select: none;
}

.aboutUs .storyH2 {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin-bottom: 28px;
}

.aboutUs .storyBody {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3f55;
    max-width: 520px;
    margin-bottom: 28px;
}

.aboutUs .storyBody:last-child {
    margin-bottom: 0;
}

.aboutUs .storyPillRow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.aboutUs .storyPill {
    background: linear-gradient(120deg, #535B7C 0%, #B6B8DA 80%, #ffffff 100%);
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    padding: 6px 28px;
    border-radius: 6px;
    box-shadow: 2px 1px 5px 1px rgba(83, 91, 124, 0.06);
    font-weight: 600;
}

.aboutUs .principlesOuter {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
    background: #535B7C;
}

.aboutUs .principlesOuter::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-repeat: repeat;
    pointer-events: none;
    opacity: 0.55;
}

.aboutUs .blockEntry {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.aboutUs .blockEntry .entryLine {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(182, 184, 218, 0.6) 0%, rgba(182, 184, 218, 0.1) 100%);
}

.aboutUs .blockEntry .entryLabel {
    font-size: 16px;
    line-height: 1.6;
    color: #B6B8DA;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.aboutUs .blockExit {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    margin-top: 56px;
    position: relative;
    z-index: 1;
}

.aboutUs .blockExit .exitLine {
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(182, 184, 218, 0.1) 0%, rgba(182, 184, 218, 0.6) 100%);
}

.aboutUs .blockExit .exitLabel {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(182, 184, 218, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

.aboutUs .principlesHead {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1;
}

.aboutUs .principlesNumBg {
    font-size: 72px;
    line-height: 1.1;
    color: rgba(182, 184, 218, 0.12);
    font-weight: 900;
    display: block;
    user-select: none;
}

.aboutUs .principlesH2 {
    font-size: 56px;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 14px;
}

.aboutUs .principlesSubtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(182, 184, 218, 0.85);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.aboutUs .principlesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

.aboutUs .prinCard {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    transition: background 0.18s ease-out, transform 0.15s ease-out;
    position: relative;
    overflow: hidden;
}

.aboutUs .prinCard:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-4px);
}

.aboutUs .prinCard .cardNumFade {
    font-size: 56px;
    line-height: 1.1;
    color: rgba(182, 184, 218, 0.14);
    font-weight: 900;
    position: absolute;
    top: 14px;
    right: 14px;
    user-select: none;
    pointer-events: none;
}

.aboutUs .prinCard .cardIcon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
}

.aboutUs .prinCardH {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 14px;
}

.aboutUs .prinCardP {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(182, 184, 218, 0.82);
}

.aboutUs .teamClose {
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(160deg, #f5f5f8 0%, #ecedf4 55%, #ffffff 100%);
    position: relative;
}

.aboutUs .teamClose::after {
    content: "";
    position: absolute;
    top: 56px;
    right: 56px;
    width: 90px;
    height: 90px;
    border-radius: 0px;
    border: 1.5px solid rgba(83, 91, 124, 0.08);
    transform: rotate(22deg);
    pointer-events: none;
}

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

.aboutUs .teamTextCol {
    padding-right: 28px;
}

.aboutUs .teamNumBg {
    font-size: 72px;
    line-height: 1.1;
    color: rgba(83, 91, 124, 0.09);
    font-weight: 900;
    display: block;
    user-select: none;
}

.aboutUs .teamH2 {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin-bottom: 28px;
}

.aboutUs .teamBody {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3f55;
    margin-bottom: 28px;
    max-width: 460px;
}

.aboutUs .teamBody:last-of-type {
    margin-bottom: 0;
}

.aboutUs .teamImgCol {
    position: relative;
}

.aboutUs .teamImgWrap {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
}

.aboutUs .teamImgWrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.aboutUs .teamStatRow {
    display: flex;
    flex-direction: row;
    gap: 28px;
    margin-top: 28px;
}

.aboutUs .teamStat {
    background: #535B7C;
    border-radius: 6px;
    padding: 14px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    flex: 1 1 0;
}

.aboutUs .teamStatNum {
    font-size: 56px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 900;
}

.aboutUs .teamStatLabel {
    font-size: 16px;
    line-height: 1.6;
    color: #B6B8DA;
}

.aboutUs .ctaLink {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    line-height: 1.6;
    color: #535B7C;
    font-weight: 700;
    text-decoration: none;
    margin-top: 28px;
    padding: 14px 28px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1.5px solid #535B7C;
    transition: color 0.18s ease-out;
    z-index: 1;
}

.aboutUs .ctaLink::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #535B7C 0%, #B6B8DA 100%);
    transform: translateX(-100%);
    transition: transform 0.18s ease-out;
    z-index: -1;
}

.aboutUs .ctaLink:hover {
    color: #ffffff;
}

.aboutUs .ctaLink:hover::before {
    transform: translateX(0);
}

.aboutUs .ctaLink:focus-visible {
    outline: 2px solid #535B7C;
    outline-offset: 3px;
}

.aboutUs .ctaArrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

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

    .aboutUs .splitLeft {
        padding: 96px 28px 56px 28px;
    }

    .aboutUs .splitRight {
        height: 380px;
    }

    .aboutUs .splitH1 {
        font-size: 56px;
    }

    .aboutUs .splitH1 em {
        font-size: 56px;
    }

    .aboutUs .storyWrap .abt-inner {
        flex-direction: column;
    }

    .aboutUs .storyImgFloat {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }

    .aboutUs .principlesGrid {
        grid-template-columns: 1fr 1fr;
    }

    .aboutUs .teamCloseInner {
        grid-template-columns: 1fr;
    }

    .aboutUs .teamTextCol {
        padding-right: 0;
    }
}

@media (max-width: 640px) {
    .aboutUs .splitH1 {
        font-size: 56px;
    }

    .aboutUs .splitH1 span {
        font-size: 56px;
    }

    .aboutUs .splitH1 em {
        font-size: 56px;
    }

    .aboutUs .storyH2,
    .aboutUs .principlesH2,
    .aboutUs .teamH2 {
        font-size: 56px;
    }

    .aboutUs .principlesGrid {
        grid-template-columns: 1fr;
    }

    .aboutUs .teamStatRow {
        flex-direction: column;
    }

    .aboutUs .splitLeft {
        padding: 56px 14px 28px 14px;
    }

    .aboutUs .storyWrap,
    .aboutUs .principlesOuter,
    .aboutUs .teamClose {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .aboutUs .abt-inner {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 360px) {
    .aboutUs .splitH1 {
        font-size: 56px;
    }

    .aboutUs .teamStatNum {
        font-size: 56px;
    }
}

.successPage {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 28px;
    background: linear-gradient(158deg, #ffffff 0%, #e8e9f3 52%, #B6B8DA 100%);
}

.successPage .innerWrap {
    max-width: 640px;
    width: 100%;
    text-align: center;
    padding: 56px 56px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 2px 5px 28px 1px rgba(83, 91, 124, 0.09);
    position: relative;
}

.successPage .iconCircle {
    width: 72px;
    height: 72px;
    border-radius: 32px;
    background: linear-gradient(158deg, #535B7C 0%, #B6B8DA 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px auto;
    box-shadow: 2px 12px 40px 1px rgba(83, 91, 124, 0.11);
}

.successPage .checkmark {
    width: 32px;
    height: 32px;
    display: block;
}

.successPage .successTitle {
    font-size: 56px;
    line-height: 1.1;
    color: #535B7C;
    margin: 0 0 14px 0;
    letter-spacing: 0;
}

.successPage .successSubtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #535B7C;
    opacity: 0.75;
    margin: 0 0 56px 0;
}

.successPage .dividerLine {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #535B7C, #B6B8DA);
    border-radius: 0px;
    margin: 0 auto 56px auto;
}

.successPage .messageText {
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    margin: 0 0 56px 0;
}

.successPage .backBtn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    line-height: 1.1;
    color: #535B7C;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    border: 2px solid #B6B8DA;
    background: linear-gradient(to right, #535B7C 50%, transparent 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    transition: background-position 0.18s ease-out, color 0.15s ease-out, border-color 0.15s ease;
    position: relative;
    overflow: hidden;
}

.successPage .backBtn:hover {
    background-position: left bottom;
    color: #ffffff;
    border-color: #535B7C;
}

.successPage .backBtn:focus {
    outline: 2px solid #535B7C;
    outline-offset: 3px;
}

.successPage .backBtn:active {
    box-shadow: inset 0 6px 10px 0 rgba(83, 91, 124, 0.18);
}

.successPage .arrowShape {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.successPage .brandNote {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.6;
    color: #535B7C;
    opacity: 0.5;
}

@media (max-width: 640px) {
    .successPage .innerWrap {
        padding: 56px 28px;
    }

    .successPage .successTitle {
        font-size: 56px;
    }
}

@media (max-width: 360px) {
    .successPage {
        padding: 56px 14px;
    }

    .successPage .innerWrap {
        padding: 28px 14px;
    }

    .successPage .successTitle {
        font-size: 56px;
    }
}