@import "https://cdn.jsdelivr.net/npm/@fontsource/eb-garamond@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/eb-garamond@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/eb-garamond@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/eb-garamond@latest/700-italic.css";

* {
    box-sizing: border-box
}

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'EB Garamond', Georgia, serif
}

.site-header {
    position: relative;
    background: linear-gradient(160deg, #fff 0%, #F2F3F5 55%, #C7D3E3 100%);
    border-bottom: 1px solid #C7D3E3;
    box-shadow: 0 3px 4px 0 #5a8db814;
    padding: 0;
    z-index: 100
}

.hd-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 48px;
    border-bottom: 1px solid #5a8db81f
}

.hd-contact-line {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #3a5f7d;
    letter-spacing: .01em
}

.hd-contact-line a {
    color: #3a5f7d;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.hd-contact-line a:hover {
    color: #5A8DB8;
    border-bottom-color: #5A8DB8
}

.hd-contact-line a:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    animation: dash-spin 3s linear infinite;
    border-radius: 2px
}

.hd-tagline {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #7a97b0;
    font-style: italic
}

.hd-body {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 48px;
    gap: 24px
}

.nav-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px
}

.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 4px
}

.nav-left a,
.nav-right a {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #2c3e50;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: background-color .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.nav-left a:hover,
.nav-right a:hover {
    background-color: #F2F3F5;
    border-color: #C7D3E3;
    color: #5A8DB8
}

.nav-left a:focus,
.nav-right a:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    animation: dash-spin 3s linear infinite;
    border-radius: 6px
}

.nav-left a[aria-current="page"],
.nav-right a[aria-current="page"] {
    color: #5A8DB8;
    border-color: #C7D3E3;
    background-color: #c7d3e34d
}

.logo-hub {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px
}

.logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: #fff;
    border: 1px solid #C7D3E3;
    box-shadow: inset 0 2px 6px 0 #5a8db81a 0 3px 4px 0 #5a8db814;
    border-radius: 2px;
    padding: 4px;
    text-decoration: none
}

.logo-frame img {
    display: block;
    object-fit: contain
}

.brand-name {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.2;
    color: #2c3e50;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center
}

@keyframes dash-spin {
    from {
        outline-offset: 3px
    }

    to {
        outline-offset: 3px
    }
}

@keyframes focus-dash {
    0% {
        outline-color: #5A8DB8
    }

    50% {
        outline-color: #C7D3E3
    }

    100% {
        outline-color: #5A8DB8
    }
}

.nav-left a:focus,
.nav-right a:focus,
.hd-contact-line a:focus,
.logo-frame:focus {
    animation: focus-dash 1.8s ease-in-out infinite
}

.logo-frame:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    border-radius: 2px
}

@media (max-width: 1280px) {
    .hd-body {
        padding: 24px
    }

    .hd-strip {
        padding: 8px 24px
    }
}

@media (max-width: 768px) {
    .hd-body {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        justify-items: center;
        padding: 16px;
        gap: 16px
    }

    .nav-left {
        justify-content: center;
        flex-wrap: wrap;
        order: 2
    }

    .nav-right {
        justify-content: center;
        flex-wrap: wrap;
        order: 3
    }

    .logo-hub {
        order: 1
    }

    .hd-strip {
        flex-direction: column;
        gap: 4px;
        padding: 8px 16px;
        text-align: center
    }
}

@media (max-width: 480px) {

    .nav-left a,
    .nav-right a {
        font-size: 16px;
        padding: 8px
    }
}

.site-footer {
    background-color: #C7D3E3;
    border-top: 1px solid #5a8db833;
    box-shadow: 0 -3px 4px 0 #5a8db814
}

.ft-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

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

.ft-label {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.2;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.ft-addr,
.ft-detail {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.65;
    color: #3a5f7d
}

.ft-detail a {
    color: #3a5f7d;
    text-decoration: none;
    border-bottom: 1px solid #5a8db84d;
    transition: color .5s cubic-bezier(0.16, 1, 0.3, 1), border-color .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.ft-detail a:hover {
    color: #2c3e50;
    border-bottom-color: #2c3e50
}

.ft-detail a:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    border-radius: 2px;
    animation: focus-dash 1.8s ease-in-out infinite
}

.ft-nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ft-nav-col nav {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ft-nav-col nav a {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.65;
    color: #3a5f7d;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .45s ease-in-out, border-color .45s ease-in-out;
    padding: 4px 0;
    display: inline-block
}

.ft-nav-col nav a:hover {
    color: #2c3e50;
    border-bottom-color: #2c3e5066
}

.ft-nav-col nav a:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    border-radius: 2px;
    animation: focus-dash 1.8s ease-in-out infinite
}

.ft-divider {
    max-width: 1200px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid #5a8db833
}

.ft-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.ft-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center
}

.ft-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #5a8db859;
    box-shadow: inset 0 2px 4px 0 #5a8db81a 0 3px 4px 0 #5a8db814;
    border-radius: 2px;
    padding: 4px
}

.ft-logo-frame img {
    display: block;
    object-fit: contain
}

.ft-copy {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #3a5f7d;
    text-align: center
}

@media (max-width: 768px) {
    .ft-main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 24px 24px
    }

    .ft-bottom {
        padding: 24px
    }

    .ft-divider {
        margin: 0 24px
    }
}

@media (max-width: 480px) {
    .ft-main {
        padding: 24px 16px 16px
    }

    .ft-bottom {
        padding: 16px
    }
}

.consent-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #C7D3E3;
    box-shadow: 0 -6px 18px 0 #5a8db81a;
    z-index: 2000;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(0.16, 1, 0.3, 1)
}

.consent-bar.sliding-in {
    transform: translateX(0)
}

.consent-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.consent-text {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #2c3e50;
    flex: 1;
    min-width: 200px
}

.consent-text a {
    color: #5A8DB8;
    text-decoration: none;
    border-bottom: 1px solid #5a8db866;
    transition: color .4s ease-in-out
}

.consent-text a:hover {
    color: #3a5f7d
}

.consent-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.consent-btn {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    padding: 8px 24px;
    border-radius: 6px;
    border: 1px solid #5A8DB8;
    background: transparent;
    color: #5A8DB8;
    cursor: pointer;
    min-height: 44px;
    transition: background-color .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.consent-btn:hover {
    background-color: #5A8DB8;
    color: #fff
}

.consent-btn:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    border-radius: 6px;
    animation: focus-dash 1.8s ease-in-out infinite
}

.consent-btn:active {
    transform: scale(0.97)
}

.consent-btn.decline {
    border-color: #7a97b0;
    color: #7a97b0
}

.consent-btn.decline:hover {
    background-color: #7a97b0;
    color: #fff
}

.pref-panel {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #C7D3E3;
    box-shadow: 0 -10px 44px 0 #5a8db81f;
    z-index: 2001;
    max-height: 80vh;
    overflow-y: auto
}

.pref-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 48px
}

.pref-heading {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 30px;
    line-height: 1.2;
    color: #2c3e50;
    font-weight: 700;
    margin: 0 0 16px
}

.pref-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #F2F3F5
}

.pref-row:last-of-type {
    border-bottom: none
}

.pref-info {
    flex: 1
}

.pref-cat-name {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #2c3e50;
    display: block;
    margin-bottom: 4px
}

.pref-cat-desc {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #7a97b0
}

.pref-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.pref-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #5A8DB8
}

.pref-toggle label {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #3a5f7d;
    cursor: pointer
}

.pref-datasale {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #C7D3E3;
    margin-top: 8px
}

.pref-datasale input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #5A8DB8;
    flex-shrink: 0;
    margin-top: 2px
}

.pref-datasale label {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    color: #3a5f7d;
    cursor: pointer
}

.pref-footer-row {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap
}

.pref-save-btn {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 16px;
    line-height: 1.45;
    padding: 8px 24px;
    border-radius: 6px;
    border: 1px solid #5A8DB8;
    background: transparent;
    color: #5A8DB8;
    cursor: pointer;
    min-height: 44px;
    transition: background-color .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.pref-save-btn:hover {
    background-color: #5A8DB8;
    color: #fff
}

.pref-save-btn:active {
    transform: scale(0.97)
}

.pref-save-btn:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    border-radius: 6px;
    animation: focus-dash 1.8s ease-in-out infinite
}

.pref-trigger {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    width: 44px;
    height: 44px;
    border-radius: 24px;
    border: 1px solid #C7D3E3;
    background: #fff;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    cursor: pointer;
    z-index: 1999;
    align-items: center;
    justify-content: center;
    transition: background-color .4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.pref-trigger:hover {
    background-color: #F2F3F5;
    box-shadow: 0 10px 44px 0 #5a8db81f
}

.pref-trigger:focus {
    outline: 2px dashed #5A8DB8;
    outline-offset: 3px;
    border-radius: 24px;
    animation: focus-dash 1.8s ease-in-out infinite
}

.pref-trigger svg {
    width: 20px;
    height: 20px;
    display: block
}

@media (max-width: 768px) {
    .consent-bar-inner {
        padding: 16px 24px
    }

    .pref-panel-inner {
        padding: 24px
    }
}

@media (max-width: 480px) {
    .consent-bar-inner {
        padding: 16px
    }

    .pref-panel-inner {
        padding: 16px
    }

    .consent-actions {
        width: 100%
    }

    .consent-btn {
        flex: 1;
        text-align: center
    }
}

.policy-ar-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #2c3a4a;
    line-height: 1.65;
    font-size: 16px
}

.policy-ar-section h1 {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b2a3a;
    margin-bottom: 24px;
    margin-top: 0
}

.policy-ar-section h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #1b2a3a;
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #C7D3E3
}

.policy-ar-section h3 {
    font-size: 16px;
    line-height: 1.45;
    color: #2c3a4a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 48px;
    margin-bottom: 16px
}

.policy-ar-section h4 {
    font-size: 16px;
    line-height: 1.45;
    color: #2c3a4a;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px
}

.policy-ar-section h5 {
    font-size: 16px;
    line-height: 1.45;
    color: #4a5f72;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px
}

.policy-ar-section h6 {
    font-size: 16px;
    line-height: 1.45;
    color: #4a5f72;
    font-weight: 500;
    font-style: italic;
    margin-top: 16px;
    margin-bottom: 8px
}

.policy-ar-section ul,
.policy-ar-section ol {
    margin: 16px 0;
    padding-left: 24px
}

.policy-ar-section ul {
    list-style: none;
    padding-left: 0
}

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

.policy-ar-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background-color: #5A8DB8
}

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

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

.policy-ar-section ol li::marker {
    color: #5A8DB8;
    font-weight: 600
}

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

.policy-ar-section strong,
.policy-ar-section b {
    font-weight: 700;
    color: #1b2a3a
}

.policy-ar-section a {
    color: #5A8DB8;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color .35s ease-in-out;
    text-decoration-color: #5a8db866
}

.policy-ar-section a:hover {
    color: #3a6d98;
    text-decoration-color: #3a6d98
}

.policy-ar-section a:focus-visible {
    outline: 2px solid #5A8DB8;
    outline-offset: 2px;
    border-radius: 2px
}

.policy-ar-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 16px;
    line-height: 1.45;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 #5a8db814
}

.policy-ar-section thead {
    background-color: #5A8DB8
}

.policy-ar-section thead th {
    color: #fff;
    font-weight: 600;
    text-align: left;
    padding: 16px;
    font-size: 16px;
    letter-spacing: .03em
}

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

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

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

.policy-ar-section tbody tr:hover {
    background-color: #c7d3e359
}

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

.policy-ar-section th {
    padding: 16px;
    vertical-align: top
}

.policy-ar-section hr {
    border: none;
    border-top: 1px solid #C7D3E3;
    margin: 48px 0
}

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

@media (max-width: 768px) {
    .policy-ar-section {
        padding: 24px 16px
    }

    .policy-ar-section h1 {
        font-size: 30px
    }

    .policy-ar-section h2 {
        font-size: 16px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-top: 24px
    }

    .policy-ar-section h3 {
        margin-top: 24px
    }

    .policy-ar-section table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }
}

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

    .policy-ar-section h1 {
        font-size: 30px;
        line-height: 1.2
    }

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

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

.tech-req .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.tech-req .reveal-up {
    opacity: 0;
    transform: translateY(32px);
    animation: revealUp .55s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.tech-req .reveal-diag {
    opacity: 0;
    transform: translate(-28px, 28px);
    animation: revealDiag .5s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

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

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

.tech-req .reveal-up:nth-child(1) {
    animation-delay: .05s
}

.tech-req .reveal-up:nth-child(2) {
    animation-delay: .15s
}

.tech-req .reveal-up:nth-child(3) {
    animation-delay: .25s
}

.tech-req .reveal-up:nth-child(4) {
    animation-delay: .35s
}

.tech-req .reveal-diag:nth-child(1) {
    animation-delay: .1s
}

.tech-req .reveal-diag:nth-child(2) {
    animation-delay: .2s
}

.tech-req .reveal-diag:nth-child(3) {
    animation-delay: .3s
}

.tech-req .band-divider {
    height: 4px;
    background: #5A8DB8;
    width: 100%
}

.tech-req .band-divider.light {
    background: #C7D3E3
}

.tech-req .accent-bar {
    width: 48px;
    height: 4px;
    background: #5A8DB8;
    border-radius: 2px;
    margin-bottom: 16px
}

.tech-req .accent-word {
    color: #5A8DB8
}

.tech-req .faded-num {
    position: absolute;
    font-size: 72px;
    font-weight: 900;
    color: #5a8db814;
    line-height: 1.2;
    top: -8px;
    left: -8px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -2px
}

.tech-req .req-intro {
    background: linear-gradient(157deg, #fff 0%, #F2F3F5 45%, #C7D3E3 100%);
    padding: 48px 0;
    position: relative
}

.tech-req .req-intro .corner-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 48px solid #5a8db81f;
    border-right: 48px solid transparent;
    pointer-events: none
}

.tech-req .req-intro .corner-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 48px solid #5a8db81f;
    border-left: 48px solid transparent;
    pointer-events: none
}

.tech-req .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.tech-req .intro-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.tech-req .intro-label {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600
}

.tech-req .intro-heading {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #1e2d3d;
    margin: 0
}

.tech-req .intro-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    margin: 0
}

.tech-req .intro-aside {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start
}

.tech-req .aside-note {
    min-width: 120px;
    max-width: 140px;
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    border-right: 2px solid #C7D3E3;
    padding-right: 16px;
    font-style: italic;
    opacity: .85
}

.tech-req .aside-main {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a
}

.tech-req .intro-img-col {
    position: relative
}

.tech-req .img-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 44px 0 #5a8db81f;
    border: 1px solid #C7D3E3
}

.tech-req .img-frame img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.tech-req .img-frame:hover img {
    transform: scale(1.03)
}

.tech-req .img-overlay {
    position: absolute;
    inset: 0;
    background: #1e2d3d00;
    border-radius: 12px;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    transition: background .45s ease-in-out
}

.tech-req .img-frame:hover .img-overlay {
    background: #1e2d3db8
}

.tech-req .img-overlay-text {
    font-size: 16px;
    line-height: 1.45;
    color: #fff;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease-in-out, transform .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.tech-req .img-frame:hover .img-overlay-text {
    opacity: 1;
    transform: translateY(0)
}

.tech-req .bracket-tl,
.tech-req .bracket-br {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
    z-index: 2
}

.tech-req .bracket-tl {
    top: -8px;
    left: -8px;
    border-top: 3px solid #5A8DB8;
    border-left: 3px solid #5A8DB8;
    border-radius: 2px 0 0 0
}

.tech-req .bracket-br {
    bottom: -8px;
    right: -8px;
    border-bottom: 3px solid #5A8DB8;
    border-right: 3px solid #5A8DB8;
    border-radius: 0 0 2px 0
}

.tech-req .reqs-section {
    padding: 48px 0;
    background: #fff;
    position: relative
}

.tech-req .reqs-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(157deg, #5a8db806 0px, #5a8db806 1px, transparent 1px, transparent 28px);
    pointer-events: none
}

.tech-req .reqs-header {
    text-align: center;
    margin-bottom: 48px
}

.tech-req .reqs-header .accent-bar {
    margin: 0 auto 16px
}

.tech-req .reqs-heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0 0 8px
}

.tech-req .reqs-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    max-width: 560px;
    margin: 0 auto
}

.tech-req .req-featured {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px
}

.tech-req .req-card {
    position: relative;
    background: #F2F3F5;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #C7D3E3;
    box-shadow: 0 3px 4px 0 #5a8db814;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .4s ease-in-out;
    overflow: hidden
}

.tech-req .req-card:hover {
    box-shadow: 0 10px 44px 0 #5a8db81f;
    transform: translateY(-4px)
}

.tech-req .req-card.dominant {
    background: #fff;
    border-color: #5A8DB8;
    box-shadow: 0 6px 18px 0 #5a8db81a
}

.tech-req .req-card-num {
    font-size: 72px;
    font-weight: 900;
    color: #5a8db812;
    line-height: 1.2;
    position: absolute;
    top: -4px;
    right: 8px;
    pointer-events: none;
    user-select: none
}

.tech-req .req-card-label {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px
}

.tech-req .req-card-heading {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0 0 16px
}

.tech-req .req-card.narrow .req-card-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45
}

.tech-req .req-card-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    margin: 0
}

.tech-req .req-card-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.tech-req .req-card-list li {
    font-size: 16px;
    line-height: 1.45;
    color: #3a4a5a;
    padding-left: 16px;
    position: relative
}

.tech-req .req-card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #5A8DB8
}

.tech-req .bar-chart-wrap {
    margin-top: 48px;
    background: #F2F3F5;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #C7D3E3;
    box-shadow: inset 0 2px 6px 0 #5a8db80f
}

.tech-req .bar-chart-heading {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0 0 24px
}

.tech-req .bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.tech-req .bar-row:last-child {
    margin-bottom: 0
}

.tech-req .bar-label {
    font-size: 16px;
    line-height: 1.45;
    color: #3a4a5a;
    display: flex;
    flex-direction: row;
    justify-content: space-between
}

.tech-req .bar-label span {
    color: #5A8DB8;
    font-weight: 600
}

.tech-req .bar-track {
    height: 12px;
    background: #C7D3E3;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px 0 #5a8db814
}

.tech-req .bar-fill {
    height: 100%;
    border-radius: 6px;
    background: linear-gradient(157deg, #5A8DB8 0%, #7aadd4 60%, #C7D3E3 100%);
    transform-origin: left center;
    animation: barGrow .55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transform: scaleX(0)
}

@keyframes barGrow {
    to {
        transform: scaleX(1)
    }
}

.tech-req .bar-fill.d1 {
    animation-delay: .1s
}

.tech-req .bar-fill.d2 {
    animation-delay: .2s
}

.tech-req .bar-fill.d3 {
    animation-delay: .3s
}

.tech-req .bar-fill.d4 {
    animation-delay: .4s
}

.tech-req .img2-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #C7D3E3;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    margin-top: 48px
}

.tech-req .img2-frame img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.tech-req .img2-frame:hover img {
    transform: scale(1.04)
}

.tech-req .img2-overlay {
    position: absolute;
    inset: 0;
    background: #1e2d3d00;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    transition: background .45s ease-in-out
}

.tech-req .img2-frame:hover .img2-overlay {
    background: #1e2d3dad
}

.tech-req .img2-overlay-text {
    font-size: 16px;
    line-height: 1.45;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .4s ease-in-out, transform .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.tech-req .img2-frame:hover .img2-overlay-text {
    opacity: 1;
    transform: translateY(0)
}

.tech-req .req-grid-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px
}

.tech-req .req-item {
    position: relative;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #C7D3E3;
    box-shadow: 0 3px 4px 0 #5a8db814;
    transition: box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.tech-req .req-item:nth-child(even) {
    text-align: center
}

.tech-req .req-item:hover {
    box-shadow: 0 6px 18px 0 #5a8db81a
}

.tech-req .req-item-num {
    position: absolute;
    font-size: 58px;
    font-weight: 900;
    color: #5a8db80f;
    line-height: 1.2;
    top: 0;
    left: 8px;
    pointer-events: none;
    user-select: none
}

.tech-req .req-item-heading {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0 0 8px;
    position: relative;
    z-index: 1
}

.tech-req .req-item-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    margin: 0;
    position: relative;
    z-index: 1
}

.tech-req .aside-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-top: 16px
}

.tech-req .aside-row .aside-note {
    min-width: 100px;
    max-width: 120px
}

@media (max-width: 1280px) {
    .tech-req .intro-heading {
        font-size: 30px
    }

    .tech-req .req-featured {
        grid-template-columns: 1fr 1fr
    }

    .tech-req .req-card.dominant {
        grid-column: 1 / -1
    }
}

@media (max-width: 768px) {
    .tech-req .intro-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .tech-req .req-featured {
        grid-template-columns: 1fr
    }

    .tech-req .req-card.dominant {
        grid-column: auto
    }

    .tech-req .req-grid-lower {
        grid-template-columns: 1fr
    }

    .tech-req .intro-heading {
        font-size: 30px
    }

    .tech-req .intro-aside {
        flex-direction: column;
        gap: 8px
    }

    .tech-req .aside-note {
        border-right: none;
        border-bottom: 2px solid #C7D3E3;
        padding-right: 0;
        padding-bottom: 8px;
        max-width: 100%
    }
}

@media (max-width: 480px) {
    .tech-req .req-intro {
        padding: 24px 0
    }

    .tech-req .reqs-section {
        padding: 24px 0
    }

    .tech-req .pg-wrap {
        padding: 0 16px
    }

    .tech-req .bar-chart-wrap {
        padding: 16px
    }
}

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

.ctus .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.ctus .reach-band {
    padding: 48px 24px;
    background: linear-gradient(157deg, #5A8DB8 0%, #C7D3E3 55%, #F2F3F5 100%);
    position: relative
}

.ctus .reach-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 80%, #5a8db847 0%, transparent 50%), radial-gradient(circle at 85% 20%, #c7d3e359 0%, transparent 45%);
    pointer-events: none
}

.ctus .reach-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1
}

.ctus .reach-text {
    flex: 1 1 0
}

.ctus .reach-label {
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #2d4f6e;
    margin-bottom: 16px;
    display: block
}

.ctus .reach-h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #1b3347;
    margin-bottom: 24px
}

.ctus .reach-h1 em {
    font-style: normal;
    color: #5A8DB8
}

.ctus .reach-decl {
    font-size: 16px;
    line-height: 1.65;
    color: #2d4f6e;
    max-width: 480px
}

.ctus .reach-img-col {
    flex: 0 0 360px;
    position: relative
}

.ctus .reach-img-frame {
    width: 360px;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #5a8db840;
    box-shadow: 0 10px 44px 0 #5a8db81f;
    position: relative
}

.ctus .reach-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    mix-blend-mode: luminosity;
    display: block
}

.ctus .reach-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(157deg, #5a8db82e 0%, transparent 70%);
    pointer-events: none
}

.ctus .reach-counter {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #5A8DB8;
    color: #fff;
    font-size: 16px;
    border-radius: 40px;
    padding: 4px 16px;
    box-shadow: 0 3px 4px 0 #5a8db814
}

.ctus .info-strip {
    padding: 48px 24px;
    background: #F2F3F5
}

.ctus .info-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.ctus .info-aside {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .info-note {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    border-top: 2px solid #C7D3E3;
    border-left: 3px solid #5A8DB8;
    padding: 8px 16px;
    border-radius: 2px
}

.ctus .info-body {
    flex: 1 1 0
}

.ctus .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.ctus .info-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    border: 1px solid #c7d3e399;
    position: relative;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .35s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .info-card:hover {
    box-shadow: 0 10px 44px 0 #5a8db81f;
    transform: translateY(-2px)
}

.ctus .info-card-num {
    font-size: 72px;
    line-height: 1.2;
    color: #5a8db814;
    position: absolute;
    top: 8px;
    right: 16px;
    pointer-events: none;
    user-select: none
}

.ctus .info-card-label {
    font-size: 16px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5A8DB8;
    margin-bottom: 8px;
    display: block
}

.ctus .info-card-val {
    font-size: 16px;
    line-height: 1.45;
    color: #1b3347
}

.ctus .info-card-val a {
    color: #1b3347;
    text-decoration: underline;
    text-decoration-color: #5a8db866;
    text-underline-offset: 3px;
    transition: color .35s ease-in-out, text-decoration-color .35s ease-in-out
}

.ctus .info-card-val a:hover {
    color: #5A8DB8;
    text-decoration-color: #5A8DB8
}

.ctus .info-card.wide {
    grid-column: 1 / -1
}

.ctus .form-band {
    padding: 48px 24px;
    background: #fff;
    position: relative
}

.ctus .form-band-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, transparent 28px, #c7d3e31f 29px, #c7d3e31f 30px, transparent 31px), radial-gradient(circle at 60% 50%, transparent 28px, #c7d3e31f 29px, #c7d3e31f 30px, transparent 31px);
    background-size: 64px 64px;
    pointer-events: none;
    opacity: .6
}

.ctus .form-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    position: relative;
    z-index: 1
}

.ctus .form-col-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .form-heading {
    font-size: 30px;
    line-height: 1.2;
    color: #1b3347
}

.ctus .form-heading em {
    font-style: normal;
    color: #5A8DB8
}

.ctus .form-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #3a5a74
}

.ctus .form-tech-link {
    display: inline-block;
    font-size: 16px;
    color: #5A8DB8;
    text-decoration: none;
    border: 1px solid #5a8db859;
    border-radius: 6px;
    padding: 8px 16px;
    transition: background .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .form-tech-link:hover {
    background: #5a8db814;
    border-color: #5A8DB8
}

.ctus .form-divider {
    width: 2px;
    align-self: stretch;
    background: linear-gradient(157deg, #5A8DB8 0%, #C7D3E3 60%, #F2F3F5 100%);
    border-radius: 2px;
    flex-shrink: 0
}

.ctus .form-col-right {
    flex: 1 1 0
}

.ctus .ctus-form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .fld-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus .fld-label {
    font-size: 16px;
    color: #2d4f6e;
    line-height: 1.45
}

.ctus .fld-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #5a8db84d;
    border-radius: 6px;
    font-size: 16px;
    color: #1b3347;
    background: #F2F3F5;
    box-shadow: inset 0 2px 6px 0 #5a8db80f;
    transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box
}

.ctus .fld-input::placeholder {
    font-style: italic;
    opacity: .55;
    color: #5A8DB8
}

.ctus .fld-input:focus {
    outline: none;
    border-color: #5A8DB8;
    box-shadow: inset 0 2px 6px 0 #5a8db814 0 0 0 3px #5a8db81f
}

.ctus .radio-group {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.ctus .radio-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.ctus .radio-opt input[type="radio"] {
    accent-color: #5A8DB8;
    width: 18px;
    height: 18px;
    cursor: pointer
}

.ctus .radio-opt-label {
    font-size: 16px;
    color: #1b3347;
    line-height: 1.45
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.ctus .privacy-row input[type="checkbox"] {
    accent-color: #5A8DB8;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer
}

.ctus .privacy-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3a5a74
}

.ctus .privacy-text a {
    color: #5A8DB8;
    text-decoration: underline;
    text-underline-offset: 3px
}

.ctus .submit-btn {
    align-self: flex-start;
    padding: 12px 48px;
    border-radius: 24px;
    border: 2px solid #5A8DB8;
    background: transparent;
    color: #5A8DB8;
    font-size: 16px;
    cursor: pointer;
    transition: background .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s cubic-bezier(0.16, 1, 0.3, 1), transform .2s ease-in-out
}

.ctus .submit-btn:hover {
    background: #5A8DB8;
    color: #fff
}

.ctus .submit-btn:active {
    transform: scale(0.97)
}

.ctus .submit-btn:focus {
    outline: 3px solid #5a8db866;
    outline-offset: 2px
}

.ctus .fld-row {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.ctus .fld-row .fld-group {
    flex: 1 1 0
}

@keyframes ctus-reveal {
    from {
        clip-path: inset(0 100% 0 0)
    }

    to {
        clip-path: inset(0 0% 0 0)
    }
}

.ctus .reach-h1 {
    animation: ctus-reveal .9s cubic-bezier(0.16, 1, 0.3, 1) both
}

.ctus .reach-img-frame {
    animation: ctus-reveal 1.1s cubic-bezier(0.16, 1, 0.3, 1) .2s both
}

@keyframes ctus-fadein {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

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

.ctus .info-card {
    animation: ctus-fadein .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

.ctus .info-card:nth-child(1) {
    animation-delay: .05s
}

.ctus .info-card:nth-child(2) {
    animation-delay: .15s
}

.ctus .info-card:nth-child(3) {
    animation-delay: .25s
}

.ctus .form-col-left {
    animation: ctus-fadein .5s cubic-bezier(0.16, 1, 0.3, 1) .1s both
}

.ctus .form-col-right {
    animation: ctus-fadein .55s cubic-bezier(0.16, 1, 0.3, 1) .2s both
}

@media (max-width: 1280px) {
    .ctus .reach-img-col {
        flex: 0 0 280px
    }

    .ctus .reach-img-frame {
        width: 280px;
        height: 240px
    }
}

@media (max-width: 768px) {
    .ctus .reach-inner {
        flex-direction: column;
        gap: 24px
    }

    .ctus .reach-h1 {
        font-size: 30px
    }

    .ctus .reach-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .ctus .reach-img-frame {
        width: 100%;
        height: 220px
    }

    .ctus .info-strip-inner {
        flex-direction: column;
        gap: 24px
    }

    .ctus .info-aside {
        flex: 0 0 auto
    }

    .ctus .info-grid {
        grid-template-columns: 1fr
    }

    .ctus .info-card.wide {
        grid-column: auto
    }

    .ctus .form-inner {
        flex-direction: column;
        gap: 24px
    }

    .ctus .form-col-left {
        flex: 0 0 auto
    }

    .ctus .form-divider {
        width: 100%;
        height: 2px;
        align-self: auto
    }

    .ctus .fld-row {
        flex-direction: column;
        gap: 16px
    }

    .ctus .radio-group {
        flex-direction: column
    }
}

@media (max-width: 480px) {
    .ctus .reach-h1 {
        font-size: 30px
    }

    .ctus .form-heading {
        font-size: 30px
    }

    .ctus .submit-btn {
        width: 100%;
        text-align: center
    }
}

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

.bse .pg-wrap {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px
}

.bse .dbl-rule {
    border: none;
    border-top: 1px solid #C7D3E3;
    margin: 0;
    position: relative
}

.bse .dbl-rule::after {
    content: '';
    display: block;
    border-top: 1px solid #C7D3E3;
    margin-top: 3px
}

.bse .accent-word {
    color: #5A8DB8
}

.bse .fade-num {
    position: absolute;
    font-size: 72px;
    line-height: 1.2;
    font-weight: 900;
    color: #C7D3E3;
    opacity: .28;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -2px
}

.bse .rel-pos {
    position: relative;
    z-index: 1
}

@keyframes dropBounce {
    0% {
        transform: translateY(-32px);
        opacity: 0
    }

    60% {
        transform: translateY(6px);
        opacity: 1
    }

    78% {
        transform: translateY(-3px)
    }

    90% {
        transform: translateY(2px)
    }

    100% {
        transform: translateY(0);
        opacity: 1
    }
}

.bse .drop-reveal {
    animation: dropBounce .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

.bse .drop-reveal-delay {
    animation: dropBounce .55s cubic-bezier(0.16, 1, 0.3, 1) .18s both
}

.bse .title-blk {
    padding-top: 48px;
    padding-bottom: 48px;
    position: relative;
    overflow: hidden
}

.bse .title-blk .geo-line-tl {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    pointer-events: none
}

.bse .title-blk .geo-line-br {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    pointer-events: none
}

.bse .title-inner {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: stretch
}

.bse .img-strip {
    flex: 0 0 220px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid #C7D3E3;
    box-shadow: 0 6px 18px 0 #5a8db81a
}

.bse .img-strip img {
    width: 220px;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.04) brightness(0.97)
}

.bse .img-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #5a8db80f;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='grain'%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(%23grain)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none
}

.bse .title-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.bse .title-kicker {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    letter-spacing: .12em;
    text-transform: uppercase
}

.bse .title-h1 {
    font-size: 58px;
    line-height: 1.2;
    font-weight: 800;
    color: #1e2d3d;
    margin: 0
}

.bse .title-num-accent {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 900;
    color: #C7D3E3;
    display: block
}

.bse .title-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5c;
    max-width: 540px
}

.bse .title-cta {
    display: inline-block;
    padding: 16px 24px;
    border: 1.5px solid #5A8DB8;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    background: transparent;
    text-decoration: none;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1);
    align-self: flex-start
}

.bse .title-cta:hover {
    background: #5A8DB8;
    color: #fff
}

.bse .title-cta:active {
    transform: scale(0.97)
}

.bse .exp-shape {
    padding-top: 48px;
    padding-bottom: 48px;
    background: linear-gradient(157deg, #F2F3F5 0%, #F2F3F5 55%, #C7D3E3 100%)
}

.bse .exp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.bse .exp-left {
    position: relative
}

.bse .exp-h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0 0 24px
}

.bse .exp-body p {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5c;
    margin: 0 0 16px
}

.bse .exp-body p:last-child {
    margin-bottom: 0
}

.bse .exp-aside {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    border-left: 2px solid #5A8DB8;
    border-top: 1px solid #C7D3E3;
    padding: 16px;
    margin-bottom: 24px;
    background: #5a8db80d;
    border-radius: 2px;
    font-style: italic
}

.bse .exp-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bse .phase-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 4px 0 #5a8db814;
    position: relative;
    transition: box-shadow .45s ease-in-out, transform .45s ease-in-out;
    cursor: default
}

.bse .phase-card:hover {
    box-shadow: 0 10px 44px 0 #5a8db81f;
    transform: translateY(-2px)
}

.bse .phase-card .overlay-reveal {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: #5a8db8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 24px
}

.bse .phase-card:hover .overlay-reveal {
    opacity: 1
}

.bse .overlay-reveal p {
    color: #fff;
    font-size: 16px;
    line-height: 1.65;
    text-align: center;
    margin: 0
}

.bse .phase-label {
    font-size: 16px;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0 0 8px;
    line-height: 1.45
}

.bse .phase-sub {
    font-size: 16px;
    line-height: 1.45;
    color: #5a6a7a;
    margin: 0
}

.bse .who-blk {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #fff
}

.bse .who-split {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: stretch
}

.bse .who-img-col {
    flex: 0 0 360px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid #C7D3E3;
    box-shadow: 0 6px 18px 0 #5a8db81a
}

.bse .who-img-col img {
    width: 360px;
    height: 100%;
    object-fit: cover;
    display: block
}

.bse .who-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center
}

.bse .who-h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0;
    text-align: center
}

.bse .who-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5c;
    margin: 0
}

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

.bse .fit-list li {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5c;
    padding-left: 16px;
    position: relative
}

.bse .fit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 24px;
    background: #5A8DB8
}

.bse .who-note {
    font-size: 16px;
    line-height: 1.45;
    color: #5a6a7a;
    font-style: italic;
    border-top: 1px solid #C7D3E3;
    border-bottom: 1px solid #C7D3E3;
    padding: 16px 0
}

.bse .avail-blk {
    padding-top: 48px;
    padding-bottom: 48px;
    background: linear-gradient(157deg, #1e2d3d 0%, #2a3d52 45%, #3a5068 100%);
    position: relative
}

.bse .dot-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.bse .dot-border svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .12
}

.bse .avail-h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    text-align: left
}

.bse .avail-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #C7D3E3;
    margin: 0 0 48px
}

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

.bse .course-card {
    background: #ffffff0f;
    border: 1px solid #c7d3e333;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background .5s cubic-bezier(0.16, 1, 0.3, 1), border-color .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .course-card:hover {
    background: #5a8db82e;
    border-color: #5a8db880
}

.bse .course-img-wrap {
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #c7d3e326
}

.bse .course-img-wrap img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .course-card:hover .course-img-wrap img {
    transform: scale(1.04)
}

.bse .course-tag {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    letter-spacing: .08em;
    text-transform: uppercase
}

.bse .course-name {
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.bse .course-desc {
    font-size: 16px;
    line-height: 1.65;
    color: #C7D3E3;
    margin: 0;
    flex: 1
}

.bse .course-link {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #5a8db899;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.45;
    color: #C7D3E3;
    background: transparent;
    text-decoration: none;
    align-self: flex-start;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .course-link:hover {
    background: #5A8DB8;
    color: #fff
}

.bse .course-link:active {
    transform: scale(0.97)
}

.bse .diff-blk {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #F2F3F5;
    position: relative
}

.bse .cross-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: linear-gradient(#C7D3E3 1px, transparent 1px), linear-gradient(90deg, #C7D3E3 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: center center;
    opacity: .18
}

.bse .diff-inner {
    position: relative;
    z-index: 1
}

.bse .diff-h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0 0 48px;
    text-align: center
}

.bse .diff-offset-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px
}

.bse .diff-main {
    grid-column: 1;
    grid-row: 1 / 3;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative
}

.bse .diff-side-a {
    grid-column: 2;
    grid-row: 1;
    background: #5A8DB8;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bse .diff-side-b {
    grid-column: 3;
    grid-row: 1;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 4px 0 #5a8db814;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bse .diff-side-c {
    grid-column: 2 / 4;
    grid-row: 2;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 4px 0 #5a8db814;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center
}

.bse .diff-label {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    color: #1e2d3d;
    margin: 0
}

.bse .diff-label.light {
    color: #fff
}

.bse .diff-p {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5c;
    margin: 0
}

.bse .diff-p.light {
    color: #ffffffd9
}

.bse .diff-side-c .diff-stat {
    font-size: 30px;
    font-weight: 800;
    color: #5A8DB8;
    line-height: 1.2;
    white-space: nowrap
}

.bse .diff-side-c .diff-stat-label {
    font-size: 16px;
    line-height: 1.45;
    color: #3a4a5c
}

.bse .invest-blk {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #fff
}

.bse .invest-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.bse .invest-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.bse .invest-h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;
    color: #1e2d3d;
    margin: 0
}

.bse .invest-aside {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    border-left: 2px solid #5A8DB8;
    border-top: 1px solid #C7D3E3;
    padding: 16px;
    background: #5a8db80d;
    border-radius: 2px;
    font-style: italic
}

.bse .invest-p {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5c;
    margin: 0
}

.bse .invest-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.bse .price-tier {
    border: 1px solid #C7D3E3;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 3px 4px 0 #5a8db814;
    transition: box-shadow .5s ease-in-out, border-color .5s ease-in-out
}

.bse .price-tier:hover {
    box-shadow: 0 10px 44px 0 #5a8db81f;
    border-color: #5A8DB8
}

.bse .price-tier.featured {
    border-color: #5A8DB8;
    background: linear-gradient(157deg, #5a8db80f 0%, #c7d3e31f 100%)
}

.bse .tier-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e2d3d;
    line-height: 1.45;
    margin: 0
}

.bse .tier-range {
    font-size: 30px;
    font-weight: 800;
    color: #5A8DB8;
    line-height: 1.2
}

.bse .tier-note {
    font-size: 16px;
    line-height: 1.45;
    color: #5a6a7a;
    margin: 0
}

.bse .tier-link {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    border: 1.5px solid #5A8DB8;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    background: transparent;
    text-decoration: none;
    align-self: flex-start;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.bse .tier-link:hover {
    background: #5A8DB8;
    color: #fff
}

.bse .tier-link:active {
    transform: scale(0.97)
}

@media (max-width: 1280px) {
    .bse .avail-grid {
        grid-template-columns: 1fr 1fr
    }

    .bse .diff-offset-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .bse .diff-main {
        grid-column: 1 / 3;
        grid-row: 1
    }

    .bse .diff-side-a {
        grid-column: 1;
        grid-row: 2
    }

    .bse .diff-side-b {
        grid-column: 2;
        grid-row: 2
    }

    .bse .diff-side-c {
        grid-column: 1 / 3;
        grid-row: 3
    }
}

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

    .bse .img-strip {
        flex: 0 0 200px;
        width: 100%
    }

    .bse .img-strip img {
        width: 100%;
        height: 200px
    }

    .bse .title-h1 {
        font-size: 30px
    }

    .bse .title-num-accent {
        font-size: 58px
    }

    .bse .exp-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .bse .who-split {
        flex-direction: column
    }

    .bse .who-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .bse .who-img-col img {
        width: 100%;
        height: 240px
    }

    .bse .avail-grid {
        grid-template-columns: 1fr
    }

    .bse .diff-offset-grid {
        grid-template-columns: 1fr
    }

    .bse .diff-main,
    .bse .diff-side-a,
    .bse .diff-side-b,
    .bse .diff-side-c {
        grid-column: 1;
        grid-row: auto
    }

    .bse .diff-side-c {
        flex-direction: column;
        gap: 16px
    }

    .bse .invest-split {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width: 480px) {
    .bse .pg-wrap {
        padding-left: 16px;
        padding-right: 16px
    }

    .bse .title-h1 {
        font-size: 30px
    }

    .bse .exp-h2,
    .bse .who-h2,
    .bse .avail-h2,
    .bse .diff-h2,
    .bse .invest-h2 {
        font-size: 30px
    }
}

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

.abt-us .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.abt-us .grad-div {
    height: 3px;
    background: linear-gradient(157deg, #5A8DB8 0%, #C7D3E3 60%, #F2F3F5 100%);
    border: none;
    margin: 0
}

.abt-us .title-blk {
    position: relative;
    padding: 48px 0 96px;
    background-color: #F2F3F5;
    overflow: hidden
}

.abt-us .title-blk .poly-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.abt-us .title-blk .poly-bg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .18
}

.abt-us .title-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.abt-us .title-blk .t-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5A8DB8;
    border: 1px solid #C7D3E3;
    border-radius: 6px;
    padding: 4px 16px;
    margin-bottom: 24px;
    background: #5a8db80f
}

.abt-us .title-blk .main-h {
    font-size: 58px;
    line-height: 1.2;
    color: #1e2d3d;
    margin: 0 0 8px;
    max-width: 700px
}

.abt-us .title-blk .main-h .acc-word {
    color: #5A8DB8
}

.abt-us .title-blk .wave-div {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none
}

.abt-us .title-blk .wave-div svg {
    display: block;
    width: 100%
}

.abt-us .title-blk .img-film {
    position: absolute;
    right: 48px;
    top: 48px;
    width: 320px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #5a8db840;
    box-shadow: 0 10px 44px 0 #5a8db81f;
    filter: sepia(0.35) contrast(1.08) brightness(0.94) saturate(0.82);
    animation: zoom-settle .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

@keyframes zoom-settle {
    from {
        transform: scale(1.12);
        opacity: .6
    }

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

.abt-us .title-blk .img-film img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.abt-us .title-blk .img-film::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(157deg, #5a8db82e 0%, transparent 60%);
    border-radius: 12px;
    pointer-events: none
}

.abt-us .story-sec {
    padding: 64px 0 48px;
    background: #fff
}

.abt-us .story-sec .story-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: start
}

.abt-us .story-sec .side-note {
    font-size: 16px;
    line-height: 1.65;
    color: #5A8DB8;
    border-right: 2px solid #C7D3E3;
    border-top: 1px solid #C7D3E3;
    padding: 16px 24px 16px 0;
    text-align: right
}

.abt-us .story-sec .side-note .sn-num {
    display: block;
    font-size: 30px;
    line-height: 1.2;
    color: #5A8DB8;
    font-weight: 700
}

.abt-us .story-sec .side-note .sn-unit {
    font-size: 16px;
    vertical-align: super;
    font-weight: 400
}

.abt-us .story-sec .body-col h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #1e2d3d;
    margin: 0 0 24px
}

.abt-us .story-sec .body-col h2 .acc-word {
    color: #5A8DB8
}

.abt-us .story-sec .body-col .para-micro {
    font-size: 16px;
    line-height: 1.65;
    color: #2c3e50;
    margin: 0 0 8px;
    font-weight: 600
}

.abt-us .story-sec .body-col .para-med {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f62;
    margin: 0 0 24px
}

.abt-us .story-sec .body-col .para-med:last-child {
    margin-bottom: 0
}

.abt-us .story-sec .img-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 48px
}

.abt-us .story-sec .img-row .img-fr {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #5a8db833;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    aspect-ratio: 4/3;
    position: relative
}

.abt-us .story-sec .img-row .img-fr img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt-us .story-sec .img-row .img-fr:hover img {
    transform: scale(1.04)
}

.abt-us .story-sec .img-row .img-fr .slide-lbl {
    position: absolute;
    left: -120px;
    bottom: 16px;
    background: #5A8DB8;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    padding: 4px 16px;
    border-radius: 0 6px 6px 0;
    transition: left .4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    white-space: nowrap
}

.abt-us .story-sec .img-row .img-fr:hover .slide-lbl {
    left: 0
}

.abt-us .model-sec {
    padding: 64px 0;
    background: linear-gradient(157deg, #F2F3F5 0%, #e8edf4 45%, #dde5f0 100%);
    position: relative
}

.abt-us .model-sec .radial-spot {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 55% at 50% 48%, #c7d3e38c 0%, transparent 72%);
    pointer-events: none
}

.abt-us .model-sec .sec-head {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
    z-index: 1
}

.abt-us .model-sec .sec-head h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #1e2d3d;
    margin: 0 0 8px
}

.abt-us .model-sec .sec-head h2 .acc-word {
    color: #5A8DB8
}

.abt-us .model-sec .sec-head p {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f62;
    max-width: 560px;
    margin: 0 auto
}

.abt-us .model-sec .four-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 16px;
    position: relative;
    z-index: 1
}

.abt-us .model-sec .col-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 4px 0 #5a8db814;
    border: 1px solid #5a8db81f;
    transition: box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1), transform .4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden
}

.abt-us .model-sec .col-card:hover {
    box-shadow: 0 10px 44px 0 #5a8db81f;
    transform: translateY(-4px)
}

.abt-us .model-sec .col-card .faded-num {
    position: absolute;
    top: -8px;
    right: 8px;
    font-size: 72px;
    line-height: 1.2;
    color: #5a8db814;
    font-weight: 700;
    pointer-events: none;
    user-select: none
}

.abt-us .model-sec .col-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #5a8db81a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.abt-us .model-sec .col-card .card-icon svg {
    width: 22px;
    height: 22px;
    stroke: #5A8DB8;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.abt-us .model-sec .col-card h4 {
    font-size: 16px;
    line-height: 1.45;
    color: #1e2d3d;
    margin: 0 0 8px;
    font-weight: 700
}

.abt-us .model-sec .col-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f62;
    margin: 0
}

.abt-us .model-sec .col-card.accent-right {
    background: linear-gradient(157deg, #5A8DB8 0%, #3d6e99 100%);
    border-color: transparent
}

.abt-us .model-sec .col-card.accent-right .faded-num {
    color: #ffffff1a
}

.abt-us .model-sec .col-card.accent-right .card-icon {
    background: #ffffff26
}

.abt-us .model-sec .col-card.accent-right .card-icon svg {
    stroke: #fff
}

.abt-us .model-sec .col-card.accent-right h4 {
    color: #fff
}

.abt-us .model-sec .col-card.accent-right p {
    color: #ffffffd9
}

.abt-us .model-sec .col-card.accent-right .card-img {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 16px;
    border: 1px solid #fff3
}

.abt-us .model-sec .col-card.accent-right .card-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block
}

.abt-us .model-sec .icon-net {
    margin-top: 48px;
    position: relative;
    z-index: 1
}

.abt-us .model-sec .icon-net h3 {
    font-size: 30px;
    line-height: 1.2;
    color: #1e2d3d;
    text-align: center;
    margin: 0 0 48px
}

.abt-us .model-sec .icon-net h3 .acc-word {
    color: #5A8DB8
}

.abt-us .model-sec .net-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative
}

.abt-us .model-sec .net-row::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(157deg, #5A8DB8 0%, #C7D3E3 60%, #F2F3F5 100%);
    pointer-events: none
}

.abt-us .model-sec .net-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative
}

.abt-us .model-sec .net-item .net-icon {
    width: 56px;
    height: 56px;
    border-radius: 24px;
    background: #fff;
    border: 2px solid #C7D3E3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 3px 4px 0 #5a8db814;
    transition: border-color .35s ease-in-out, box-shadow .35s ease-in-out;
    position: relative;
    z-index: 1
}

.abt-us .model-sec .net-item:hover .net-icon {
    border-color: #5A8DB8;
    box-shadow: 0 6px 18px 0 #5a8db81a
}

.abt-us .model-sec .net-item .net-icon svg {
    width: 26px;
    height: 26px;
    stroke: #5A8DB8;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.abt-us .model-sec .net-item h5 {
    font-size: 16px;
    line-height: 1.45;
    color: #1e2d3d;
    margin: 0 0 8px;
    font-weight: 700
}

.abt-us .model-sec .net-item p {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f62;
    margin: 0
}

.abt-us .model-sec .img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px
}

.abt-us .model-sec .img-pair .pair-fr {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #5a8db833;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    position: relative
}

.abt-us .model-sec .img-pair .pair-fr img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.abt-us .model-sec .img-pair .pair-fr .slide-lbl {
    position: absolute;
    right: -140px;
    top: 16px;
    background: #5a8db8e6;
    color: #fff;
    font-size: 16px;
    line-height: 1.45;
    padding: 4px 16px;
    border-radius: 6px 0 0 6px;
    transition: right .45s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    white-space: nowrap
}

.abt-us .model-sec .img-pair .pair-fr:hover .slide-lbl {
    right: 0
}

.abt-us .cta-strip {
    padding: 48px 0;
    background: #fff;
    text-align: center
}

.abt-us .cta-strip p {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f62;
    margin: 0 0 24px
}

.abt-us .cta-strip .btn-ghost {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    border: 2px solid #5A8DB8;
    border-radius: 6px;
    padding: 8px 24px;
    text-decoration: none;
    background: transparent;
    transition: background .4s cubic-bezier(0.16, 1, 0.3, 1), color .4s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt-us .cta-strip .btn-ghost:hover {
    background: #5A8DB8;
    color: #fff
}

.abt-us .cta-strip .btn-ghost:active {
    transform: scale(0.97)
}

@media (max-width: 1280px) {
    .abt-us .title-blk .img-film {
        width: 260px;
        height: 180px;
        right: 24px
    }

    .abt-us .model-sec .four-col {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .abt-us .title-blk .main-h {
        font-size: 30px
    }

    .abt-us .title-blk .img-film {
        display: none
    }

    .abt-us .story-sec .story-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abt-us .story-sec .side-note {
        border-right: none;
        border-bottom: 2px solid #C7D3E3;
        border-top: 1px solid #C7D3E3;
        text-align: left;
        padding: 16px 0
    }

    .abt-us .story-sec .img-row {
        grid-template-columns: 1fr
    }

    .abt-us .model-sec .four-col {
        grid-template-columns: 1fr
    }

    .abt-us .model-sec .net-row {
        flex-direction: column;
        align-items: center
    }

    .abt-us .model-sec .net-row::before {
        display: none
    }

    .abt-us .model-sec .net-item {
        padding: 16px 0
    }

    .abt-us .model-sec .img-pair {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .abt-us .title-blk {
        padding: 24px 0 72px
    }

    .abt-us .pg-wrap {
        padding: 0 16px
    }

    .abt-us .story-sec {
        padding: 48px 0 24px
    }

    .abt-us .model-sec {
        padding: 48px 0
    }
}

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

.intl-std .pg-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.intl-std .sk-spinner {
    display: none
}

.intl-std .lead-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 48px 0;
    position: relative
}

.intl-std .lead-split::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(circle, #5a8db81f 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    pointer-events: none;
    z-index: 0
}

.intl-std .lead-split::after {
    content: '';
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #5a8db814 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    pointer-events: none;
    z-index: 0
}

.intl-std .lead-text {
    padding: 48px 48px 48px 0;
    position: relative;
    z-index: 1
}

.intl-std .lead-text .eyebrow {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #5A8DB8;
    margin-bottom: 16px;
    display: block
}

.intl-std .lead-text h1 {
    font-size: 58px;
    line-height: 1.2;
    color: #1b2b3a;
    margin-bottom: 24px
}

.intl-std .lead-text h1 em {
    font-style: normal;
    color: #5A8DB8
}

.intl-std .lead-text .sub-para {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f5e;
    margin-bottom: 24px;
    max-width: 480px
}

.intl-std .lead-text .lead-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    border: 1.5px solid #5A8DB8;
    border-radius: 6px;
    padding: 8px 24px;
    text-decoration: none;
    background: transparent;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.intl-std .lead-text .lead-link:hover {
    background: #5A8DB8;
    color: #fff
}

.intl-std .lead-img-col {
    position: relative;
    z-index: 1
}

.intl-std .lead-img-col img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    opacity: .72;
    border: 1.5px solid #5a8db82e;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    display: block
}

@keyframes track-in {
    from {
        letter-spacing: .35em;
        opacity: 0
    }

    to {
        letter-spacing: normal;
        opacity: 1
    }
}

.intl-std .lead-text h1 {
    animation: track-in .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

.intl-std .div-band-1 {
    height: 4px;
    background: linear-gradient(157deg, #5A8DB8 0%, #C7D3E3 55%, transparent 100%);
    margin: 0
}

.intl-std .path-section {
    background: #F2F3F5;
    padding: 48px 0;
    position: relative
}

.intl-std .path-section .faded-bg-num {
    position: absolute;
    top: -16px;
    right: 24px;
    font-size: 160px;
    line-height: 1.2;
    color: #5a8db80d;
    pointer-events: none;
    user-select: none;
    font-weight: 700
}

.intl-std .path-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start
}

.intl-std .path-aside {
    font-size: 16px;
    line-height: 1.65;
    color: #5A8DB8;
    border-top: 2px solid #5A8DB8;
    border-left: 3px solid #C7D3E3;
    padding: 16px;
    border-radius: 2px;
    box-shadow: inset 0 3px 6px 0 #5a8db80f;
    background: #fff
}

.intl-std .path-aside strong {
    display: block;
    font-size: 16px;
    line-height: 1.45;
    color: #1b2b3a;
    margin-bottom: 8px
}

.intl-std .path-body {
    text-align: center
}

.intl-std .path-body h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #1b2b3a;
    margin-bottom: 16px
}

.intl-std .path-body h2 em {
    font-style: normal;
    color: #5A8DB8
}

.intl-std .path-body .intro-line {
    font-size: 16px;
    line-height: 1.45;
    color: #3d4f5e;
    margin-bottom: 24px
}

.intl-std .path-body .body-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f5e;
    margin-bottom: 16px;
    text-align: left
}

.intl-std .path-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px
}

.intl-std .step-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 4px 0 #5a8db814;
    text-align: left;
    border-top: 3px solid #C7D3E3;
    transition: box-shadow .4s cubic-bezier(0.16, 1, 0.3, 1), border-color .4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative
}

.intl-std .step-card:hover {
    box-shadow: 0 10px 44px 0 #5a8db81f;
    border-color: #5A8DB8
}

.intl-std .step-card .card-num {
    font-size: 58px;
    line-height: 1.2;
    color: #5a8db814;
    font-weight: 700;
    position: absolute;
    top: 8px;
    right: 16px;
    pointer-events: none;
    user-select: none
}

.intl-std .step-card h4 {
    font-size: 16px;
    line-height: 1.45;
    color: #1b2b3a;
    margin-bottom: 8px;
    font-weight: 600
}

.intl-std .step-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #4a5c6a
}

.intl-std .step-icon-wrap {
    width: 40px;
    height: 40px;
    border: 1.5px solid #5A8DB8;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.intl-std .step-icon-wrap svg {
    width: 20px;
    height: 20px;
    stroke: #5A8DB8;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.intl-std .div-band-2 {
    height: 4px;
    background: linear-gradient(157deg, transparent 0%, #C7D3E3 45%, #5A8DB8 100%)
}

.intl-std .detail-section {
    padding: 48px 0;
    background: #fff;
    position: relative
}

.intl-std .detail-section .diag-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 160px;
    height: 160px;
    overflow: hidden;
    pointer-events: none
}

.intl-std .detail-section .diag-lines::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg, transparent, transparent 10px, #5a8db80f 10px, #5a8db80f 11px)
}

.intl-std .detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.intl-std .detail-img-col {
    position: relative
}

.intl-std .detail-img-col img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    border: 1.5px solid #5a8db826;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    display: block
}

.intl-std .detail-img-col .img-badge {
    position: absolute;
    bottom: 24px;
    left: -16px;
    background: #fff;
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 6px 18px 0 #5a8db81a;
    border-left: 3px solid #5A8DB8;
    border-bottom: 1.5px solid #C7D3E3;
    max-width: 200px
}

.intl-std .detail-img-col .img-badge span {
    display: block;
    font-size: 16px;
    line-height: 1.45;
    color: #1b2b3a;
    font-weight: 600
}

.intl-std .detail-img-col .img-badge small {
    font-size: 16px;
    line-height: 1.65;
    color: #5A8DB8
}

.intl-std .detail-text {
    padding: 8px 0
}

.intl-std .detail-text .faded-num {
    font-size: 72px;
    line-height: 1.2;
    color: #5a8db80f;
    font-weight: 700;
    display: block;
    margin-bottom: -24px;
    user-select: none
}

.intl-std .detail-text h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #1b2b3a;
    margin-bottom: 16px;
    position: relative
}

.intl-std .detail-text h2 em {
    font-style: normal;
    color: #5A8DB8
}

.intl-std .detail-text .single-line {
    font-size: 16px;
    line-height: 1.45;
    color: #3d4f5e;
    margin-bottom: 24px
}

.intl-std .detail-text .body-para {
    font-size: 16px;
    line-height: 1.65;
    color: #4a5c6a;
    margin-bottom: 16px
}

.intl-std .detail-list {
    list-style: none;
    padding: 0;
    margin: 24px 0
}

.intl-std .detail-list li {
    font-size: 16px;
    line-height: 1.65;
    color: #3d4f5e;
    padding: 8px 0;
    padding-left: 16px;
    position: relative;
    border-bottom: 1px solid #c7d3e366
}

.intl-std .detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #5A8DB8
}

.intl-std .detail-text .cta-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap
}

.intl-std .detail-text .btn-primary {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    border: 1.5px solid #5A8DB8;
    border-radius: 6px;
    padding: 8px 24px;
    text-decoration: none;
    background: transparent;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.intl-std .detail-text .btn-primary:hover {
    background: #5A8DB8;
    color: #fff
}

.intl-std .detail-text .btn-primary:active {
    transform: scale(0.97)
}

.intl-std .detail-text .link-plain {
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    text-decoration: underline;
    text-underline-offset: 3px
}

@media (max-width: 1280px) {
    .intl-std .lead-text h1 {
        font-size: 48px
    }
}

@media (max-width: 768px) {
    .intl-std .lead-split {
        grid-template-columns: 1fr;
        padding: 24px 0
    }

    .intl-std .lead-text {
        padding: 24px 0
    }

    .intl-std .lead-text h1 {
        font-size: 30px
    }

    .intl-std .lead-img-col img {
        height: 280px
    }

    .intl-std .path-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .intl-std .path-steps {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .intl-std .detail-wrap {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .intl-std .detail-img-col .img-badge {
        left: 8px;
        bottom: 8px
    }

    .intl-std .path-body {
        text-align: left
    }
}

@media (max-width: 480px) {
    .intl-std .pg-wrap {
        padding: 0 16px
    }

    .intl-std .lead-text h1 {
        font-size: 30px
    }

    .intl-std .path-section,
    .intl-std .detail-section {
        padding: 24px 0
    }

    .intl-std .detail-text .cta-row {
        flex-direction: column;
        align-items: flex-start
    }
}

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

.success-pg .success-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 10px 44px 0 #5a8db81f;
    padding: 48px;
    max-width: 560px;
    width: 100%;
    text-align: center
}

.success-pg .success-card .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 40px;
    background: #C7D3E3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px
}

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

.success-pg .success-card .success-heading {
    font-size: 30px;
    line-height: 1.2;
    color: #1b2a3b;
    margin-bottom: 16px
}

.success-pg .success-card .success-heading span {
    color: #5A8DB8
}

.success-pg .success-card .success-body {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5c;
    margin-bottom: 8px
}

.success-pg .success-card .success-note {
    font-size: 16px;
    line-height: 1.45;
    color: #5a6a7a;
    margin-bottom: 48px
}

.success-pg .success-card .divider {
    height: 1px;
    background: #C7D3E3;
    border-radius: 2px;
    margin-bottom: 24px
}

.success-pg .success-card .back-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.45;
    color: #5A8DB8;
    text-decoration: none;
    border: 1.5px solid #5A8DB8;
    border-radius: 12px;
    padding: 8px 24px;
    background: transparent;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.success-pg .success-card .back-link:hover,
.success-pg .success-card .back-link:focus {
    background: #5A8DB8;
    color: #fff;
    outline: none
}

.success-pg .success-card .back-link:active {
    transform: scale(0.97)
}

@media (max-width: 480px) {
    .success-pg .success-card {
        padding: 24px 16px
    }

    .success-pg .success-card .success-heading {
        font-size: 30px
    }
}