html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh
}

.topbar {
    position: relative;
    z-index: 100;
    padding: 24px 48px;
    font-family: 'Roboto Mono', monospace
}

.topbar-plate {
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(135deg, #044956 0%, #056676 60%, #6C7980 100%);
    border-radius: 12px;
    padding: 0;
    box-shadow: 2px 9px 36px -1px #04495621;
    overflow: hidden
}

.topbar-upper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 48px 12px;
    border-bottom: 1px solid #e1eaec2e
}

.logopod {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    background: #e1eaec26;
    border-radius: 12px;
    border: 1px solid #e1eaec59;
    box-shadow: 2px 6px 18px -1px #04495617 inset 0 2px 4px #e1eaec1a;
    flex-shrink: 0
}

.logopod img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block
}

.brandlabel {
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.brandname {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: #E1EAEC
}

.brandtag {
    font-size: 14px;
    font-weight: 400;
    color: #e1eaeca6;
    line-height: 1.4;
    letter-spacing: .04em;
    font-style: italic
}

.topbar-lower {
    padding: 12px 48px 20px
}

.navdeck {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.navdeck li {
    display: flex
}

.navlink {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    font-weight: 400;
    color: #e1eaecd1;
    text-decoration: none;
    border-radius: 3px;
    border: 1px solid transparent;
    line-height: 1.4;
    transition: color .18s ease-out, background-color .15s ease-out, border-color .18s ease-out, transform .12s ease-out;
    white-space: nowrap
}

.navlink:hover {
    color: #E1EAEC;
    background: #e1eaec1f;
    border-color: #e1eaec40;
    transform: scale(0.97)
}

.navlink:focus {
    outline: none;
    background: #e1eaec2e;
    color: #E1EAEC
}

.navicon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: .75
}

@media (max-width: 1280px) {
    .topbar {
        padding: 16px 24px
    }

    .topbar-upper {
        padding: 20px 32px 12px
    }

    .topbar-lower {
        padding: 12px 32px 16px
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 12px
    }

    .topbar-upper {
        padding: 16px 20px 12px
    }

    .topbar-lower {
        padding: 8px 12px 16px
    }

    .navlink {
        padding: 8px 12px;
        font-size: 14px
    }

    .brandname {
        font-size: 18px
    }
}

@media (max-width: 390px) {
    .topbar {
        padding: 8px
    }

    .topbar-plate {
        border-radius: 8px
    }

    .topbar-upper {
        padding: 12px 12px 8px
    }

    .topbar-lower {
        padding: 8px 8px 12px
    }

    .navlink {
        padding: 8px;
        font-size: 14px
    }

    .logopod {
        width: 55px;
        height: 55px
    }

    .logopod img {
        width: 44px;
        height: 44px
    }

    .brandname {
        font-size: 18px
    }

    .brandtag {
        font-size: 14px
    }
}

.ftrmain {
    background: #044956;
    font-family: 'Roboto Mono', monospace;
    padding: 48px 48px 24px
}

.ftrdeck {
    max-width: 1440px;
    margin: 0 auto
}

.ftrtop {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: flex-start;
    padding-bottom: 48px
}

.ftrlogocell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 0 0 auto
}

.ftrlogopod {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #e1eaec1f;
    border-radius: 12px;
    border: 1px solid #e1eaec4d;
    box-shadow: 2px 6px 18px -1px #04495621
}

.ftrlogopod img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block
}

.ftrbrand {
    font-size: 18px;
    font-weight: 700;
    color: #E1EAEC;
    letter-spacing: -.02em;
    line-height: 1.15
}

.ftrfounded {
    font-size: 14px;
    color: #e1eaec80;
    line-height: 1.4
}

.ftrnav {
    flex: 1 1 200px
}

.ftrnavlabel {
    font-size: 14px;
    font-weight: 700;
    color: #e1eaec8c;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 16px
}

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

.ftrlinks a {
    font-size: 14px;
    color: #e1eaecbf;
    text-decoration: none;
    line-height: 1.6;
    border-bottom: 1px solid transparent;
    transition: color .15s ease-out, border-color .18s ease-out, transform .12s ease-out;
    display: inline-block
}

.ftrlinks a:hover {
    color: #E1EAEC;
    border-bottom-color: #e1eaec66;
    transform: scale(0.97)
}

.ftrlinks a:focus {
    outline: none;
    color: #E1EAEC;
    background: #e1eaec1a
}

.ftrcontact {
    flex: 1 1 220px
}

.ftrcontactlabel {
    font-size: 14px;
    font-weight: 700;
    color: #e1eaec8c;
    letter-spacing: .08em;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 16px
}

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

.ftrcontactitem {
    font-size: 14px;
    color: #e1eaecb8;
    line-height: 1.6
}

.ftrcontactitem a {
    color: #e1eaecd1;
    text-decoration: none;
    border-bottom: 1px solid #e1eaec33;
    transition: color .15s ease-out, border-color .15s ease-out
}

.ftrcontactitem a:hover {
    color: #E1EAEC;
    border-bottom-color: #e1eaec80
}

.ftrdivider {
    border: none;
    border-top: 1px solid #e1eaec24;
    margin: 0 0 24px
}

.ftrbottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px
}

.ftrcopy {
    font-size: 14px;
    color: #e1eaec73;
    line-height: 1.4
}

.ftrtrust {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap
}

.trustbadge {
    font-size: 14px;
    color: #e1eaec80;
    line-height: 1.4;
    padding: 4px 12px;
    border: 1px solid #e1eaec2e;
    border-radius: 3px
}

@media (max-width: 768px) {
    .ftrmain {
        padding: 48px 24px 24px
    }

    .ftrtop {
        gap: 32px
    }

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

@media (max-width: 390px) {
    .ftrmain {
        padding: 32px 12px 16px
    }

    .ftrtop {
        gap: 24px
    }
}

.consentbox {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 2000;
    width: 320px;
    max-width: calc(100vw - 48px);
    background: #E1EAEC;
    border: 2px solid #044956;
    border-radius: 12px;
    box-shadow: 2px 9px 36px -1px #04495621;
    font-family: 'Roboto Mono', monospace;
    display: none
}

.consentinner {
    padding: 24px
}

.consentdesc {
    font-size: 14px;
    color: #044956;
    line-height: 1.6;
    margin-bottom: 8px
}

.consentuses {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.6;
    margin-bottom: 16px;
    padding-left: 16px
}

.consenttitle {
    font-size: 16px;
    font-weight: 700;
    color: #044956;
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.consentbtns {
    display: flex;
    gap: 16px;
    justify-content: flex-end
}

.consentbtns a {
    font-size: 14px;
    font-weight: 700;
    color: #044956;
    text-decoration: underline;
    cursor: pointer;
    line-height: 1.4;
    padding: 4px 0;
    transition: color .15s ease-out;
    background: none;
    border: none;
    font-family: 'Roboto Mono', monospace
}

.consentbtns a:hover {
    color: #6C7980
}

.consentbtns a:focus {
    outline: 2px solid #044956;
    outline-offset: 2px;
    background: #0449560f
}

.policy-main {
    max-width: 860px;
    margin: 0 auto;
    padding: 96px 48px;
    color: #044956
}

.policy-main h1 {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -.03em;
    margin-bottom: 24px;
    margin-top: 0;
    color: #044956
}

.policy-main h2 {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-top: 96px;
    margin-bottom: 24px;
    color: #044956
}

.policy-main h3 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-top: 48px;
    margin-bottom: 12px;
    color: #044956
}

.policy-main h4 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-top: 48px;
    margin-bottom: 12px;
    color: #044956
}

.policy-main h5 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #6C7980
}

.policy-main h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 8px;
    color: #6C7980
}

.policy-main p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 24px;
    color: #044956
}

.policy-main strong,
.policy-main b {
    font-weight: 700;
    color: #044956
}

.policy-main em,
.policy-main i {
    font-style: italic;
    color: #6C7980
}

.policy-main a {
    color: #044956;
    text-decoration: underline;
    text-decoration-color: #6C7980;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s ease-out, text-decoration-color .14s ease-out
}

.policy-main a:hover {
    color: #6C7980;
    text-decoration-color: #044956
}

.policy-main hr {
    border: none;
    border-top: 1px solid #E1EAEC;
    margin-top: 48px;
    margin-bottom: 48px
}

.policy-main div {
    font-size: 16px;
    line-height: 1.6
}

@media (max-width: 768px) {
    .policy-main {
        padding: 48px 24px
    }

    .policy-main h1 {
        font-size: 36px
    }

    .policy-main h2 {
        font-size: 24px;
        margin-top: 48px
    }

    .policy-main h3 {
        font-size: 18px;
        margin-top: 24px
    }

    .policy-main h4 {
        font-size: 16px;
        margin-top: 24px
    }

    .policy-main h2 {
        margin-top: 48px
    }
}

@media (max-width: 390px) {
    .policy-main {
        padding: 48px 12px
    }

    .policy-main h1 {
        font-size: 24px
    }

    .policy-main h2 {
        font-size: 18px;
        margin-top: 48px
    }

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

    .policy-main h4,
    .policy-main h5,
    .policy-main h6 {
        font-size: 14px
    }

    .policy-main p,
    .policy-main div {
        font-size: 14px
    }
}

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

.evdet .bcrumb {
    padding: 12px 48px;
    background: #E1EAEC;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.evdet .bcrumb a {
    font-size: 14px;
    color: #044956;
    text-decoration: none;
    line-height: 1.4;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.evdet .bcrumb a:hover {
    color: #6C7980
}

.evdet .bcrumb .sep {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.4
}

.evdet .bcrumb .cur {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.4
}

.evdet .titblock {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    background: #044956
}

.evdet .titblock::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-48deg, #ffffff08 0px, #ffffff08 1px, transparent 1px, transparent 18px);
    pointer-events: none;
    z-index: 0
}

.evdet .tittext {
    position: relative;
    z-index: 1;
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center
}

.evdet .tittext h1 {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #fff;
    margin: 0
}

.evdet .tittext h1 .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #E1EAEC;
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -4px
}

.evdet .tittext .tagrow {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.evdet .tittext .tag {
    font-size: 14px;
    line-height: 1.4;
    color: #E1EAEC;
    border: 2px solid #e1eaec66;
    border-radius: 3px;
    padding: 4px 12px
}

.evdet .tittext .desc {
    font-size: 18px;
    line-height: 1.6;
    color: #e1eaecd9;
    margin: 0;
    max-width: 520px
}

.evdet .titimg {
    position: relative;
    overflow: hidden;
    min-height: 320px
}

.evdet .titimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.evdet .titimg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #044956 0%, transparent 60%);
    pointer-events: none
}

.evdet .metabar {
    display: flex;
    flex-direction: row;
    gap: 0;
    background: #fff;
    border-bottom: 2px dotted #044956
}

.evdet .metaitem {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid #E1EAEC
}

.evdet .metaitem:last-child {
    border-right: none
}

.evdet .metalabel {
    font-size: 14px;
    line-height: 1.4;
    color: #6C7980;
    letter-spacing: .04em;
    text-transform: uppercase
}

.evdet .metaval {
    font-size: 24px;
    line-height: 1.15;
    color: #044956;
    font-weight: 700
}

.evdet .metasub {
    font-size: 14px;
    line-height: 1.4;
    color: #6C7980
}

.evdet .seats .metaval {
    color: #044956
}

.evdet .bodygrid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    padding: 96px 48px;
    background: #fff;
    align-items: start
}

.evdet .descblock {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.evdet .sechead {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #044956;
    margin: 0;
    position: relative;
    display: inline-block
}

.evdet .sechead .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #044956;
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -3px
}

.evdet .descblock p {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3d42;
    margin: 0
}

.evdet .descblock p:nth-child(odd) {
    max-width: 100%
}

.evdet .descblock p:nth-child(even) {
    max-width: 80%
}

.evdet .descblock h2 {
    font-size: 24px;
    line-height: 1.4;
    color: #044956;
    margin: 0
}

.evdet .descblock h3 {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    margin: 0
}

.evdet .descblock ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.evdet .descblock ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3d42;
    background: #E1EAEC;
    border-radius: 3px;
    padding: 12px 16px;
    box-shadow: 2px 2px 3px -1px #0449560d
}

.evdet .descblock dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.evdet .descblock dt {
    font-size: 16px;
    line-height: 1.4;
    color: #044956;
    font-weight: 700
}

.evdet .descblock dd {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3d42;
    margin: 0 0 8px
}

.evdet .descblock blockquote {
    margin: 0;
    padding: 24px;
    background: #E1EAEC;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.6;
    color: #044956
}

.evdet .descblock cite {
    font-size: 14px;
    color: #6C7980;
    font-style: normal
}

.evdet .descblock figure {
    margin: 0
}

.evdet .descblock figcaption {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.4;
    margin-top: 8px
}

.evdet .descblock details {
    border: 2px solid #E1EAEC;
    border-radius: 3px;
    padding: 12px 16px
}

.evdet .descblock summary {
    font-size: 16px;
    color: #044956;
    cursor: pointer;
    line-height: 1.4
}

.evdet .sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px
}

.evdet .pricebox {
    background: #044956;
    border-radius: 12px;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 2px 9px 36px -1px #04495621
}

.evdet .pricelabel {
    font-size: 14px;
    color: #e1eaecb3;
    line-height: 1.4;
    letter-spacing: .04em;
    text-transform: uppercase
}

.evdet .pricenum {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.03em
}

.evdet .enrollbtn {
    display: block;
    text-align: center;
    font-size: 16px;
    line-height: 1.4;
    color: #044956;
    background: #E1EAEC;
    border: 3px solid #E1EAEC;
    border-radius: 3px;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: background .18s cubic-bezier(0.4, 0, 0.6, 1), color .15s cubic-bezier(0.4, 0, 0.6, 1), transform .12s ease-out;
    position: relative;
    overflow: hidden
}

.evdet .enrollbtn:hover {
    background: #fff;
    color: #044956;
    transform: scale(0.97)
}

.evdet .enrollbtn:active {
    transform: scale(0.96);
    box-shadow: inset 2px 2px 4px #04495626
}

.evdet .sideinfo {
    background: #fff;
    border: 2px solid #E1EAEC;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 2px 6px 18px -1px #04495617
}

.evdet .siderow {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dotted #E1EAEC
}

.evdet .siderow:last-child {
    border-bottom: none
}

.evdet .sidekey {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.4
}

.evdet .sideval {
    font-size: 14px;
    color: #044956;
    font-weight: 700;
    line-height: 1.4;
    text-align: right
}

.evdet .progblock {
    padding: 96px 48px;
    background: #E1EAEC;
    position: relative
}

.evdet .progblock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: repeating-linear-gradient(to right, #044956 0px, #044956 6px, transparent 6px, transparent 14px)
}

.evdet .proginner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.evdet .proghead {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #044956;
    margin: 0
}

.evdet .proghead .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #044956;
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -3px
}

.evdet .progcontent {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.evdet .progcontent p {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3d42;
    margin: 0
}

.evdet .progcontent p:nth-child(even) {
    max-width: 78%
}

.evdet .progcontent h2 {
    font-size: 24px;
    line-height: 1.4;
    color: #044956;
    margin: 0
}

.evdet .progcontent h3 {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    margin: 0
}

.evdet .progcontent em {
    color: #044956;
    font-style: normal;
    font-weight: 700
}

.evdet .progcontent abbr {
    text-decoration: underline dotted #6C7980;
    cursor: help
}

.evdet .progcontent ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.evdet .progcontent ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3d42;
    background: #fff;
    border-radius: 3px;
    padding: 12px 16px;
    box-shadow: 2px 2px 3px -1px #0449560d
}

.evdet .progcontent dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.evdet .progcontent dt {
    font-size: 16px;
    line-height: 1.4;
    color: #044956;
    font-weight: 700
}

.evdet .progcontent dd {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3d42;
    margin: 0 0 8px
}

.evdet .progcontent blockquote {
    margin: 0;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    font-size: 18px;
    line-height: 1.6;
    color: #044956
}

.evdet .progcontent cite {
    font-size: 14px;
    color: #6C7980;
    font-style: normal
}

.evdet .numstrip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #044956;
    border-top: 3px solid #e1eaec33
}

.evdet .numcell {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-right: 1px solid #e1eaec26;
    position: relative;
    overflow: hidden
}

.evdet .numcell:last-child {
    border-right: none
}

.evdet .numcell::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 96px;
    height: 96px;
    background: conic-gradient(from 45deg, #e1eaec14 0deg, #6c79800a 120deg, transparent 240deg);
    border-radius: 50%;
    pointer-events: none
}

.evdet .bignum {
    font-size: 70px;
    line-height: 1.15;
    color: #E1EAEC;
    font-weight: 700;
    letter-spacing: -.04em
}

.evdet .numdesc {
    font-size: 16px;
    line-height: 1.4;
    color: #e1eaeca6
}

.evdet .scrolltop {
    position: fixed;
    bottom: 48px;
    right: 48px;
    z-index: 10
}

.evdet .scrolltop a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #044956;
    border: 3px solid #E1EAEC;
    border-radius: 3px;
    text-decoration: none;
    box-shadow: 2px 6px 18px -1px #04495617;
    transition: transform .15s ease-out, background .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.evdet .scrolltop a:hover {
    transform: scale(0.97);
    background: #6C7980
}

.evdet .scrolltop a svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

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

    .evdet .bodygrid {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px
    }

    .evdet .numstrip {
        grid-template-columns: repeat(3, 1fr)
    }

    .evdet .numcell {
        padding: 48px 24px
    }

    .evdet .progblock {
        padding: 48px 24px
    }
}

@media (max-width: 768px) {
    .evdet .bcrumb {
        padding: 12px 24px
    }

    .evdet .titblock {
        grid-template-columns: 1fr
    }

    .evdet .tittext {
        padding: 48px 24px
    }

    .evdet .titimg {
        min-height: 240px;
        order: -1
    }

    .evdet .tittext h1 {
        font-size: 36px
    }

    .evdet .metabar {
        flex-wrap: wrap
    }

    .evdet .metaitem {
        flex: 1 1 48%;
        border-right: none;
        border-bottom: 1px solid #E1EAEC
    }

    .evdet .bodygrid {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 48px
    }

    .evdet .sidebar {
        position: static
    }

    .evdet .numstrip {
        grid-template-columns: 1fr
    }

    .evdet .numcell {
        border-right: none;
        border-bottom: 1px solid #e1eaec26;
        padding: 48px 24px
    }

    .evdet .scrolltop {
        bottom: 24px;
        right: 24px
    }

    .evdet .progblock {
        padding: 48px 24px
    }
}

@media (max-width: 390px) {
    .evdet .tittext h1 {
        font-size: 24px
    }

    .evdet .tittext .desc {
        font-size: 16px
    }

    .evdet .pricenum {
        font-size: 36px
    }

    .evdet .bignum {
        font-size: 52px
    }

    .evdet .metaitem {
        flex: 1 1 100%
    }

    .evdet .bcrumb {
        padding: 12px
    }

    .evdet .tittext {
        padding: 48px 12px
    }

    .evdet .bodygrid {
        padding: 48px 12px
    }

    .evdet .progblock {
        padding: 48px 12px
    }

    .evdet .numcell {
        padding: 48px 12px
    }
}

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

.evts .grain-bg {
    position: relative;
    padding: 96px 48px;
    background-color: #044956;
    overflow: hidden
}

.evts .grain-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#ffffff08 1px, transparent 1px), linear-gradient(90deg, #ffffff08 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.evts .grain-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.07'/%3E%3C/svg%3E");
    opacity: .4;
    pointer-events: none
}

.evts .titlerow {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto
}

.evts .titleleft {
    flex: 1 1 0
}

.evts .titleright {
    flex: 0 0 320px
}

.evts .pagelabel {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .08em;
    color: #E1EAEC;
    border: 2px solid #e1eaec4d;
    padding: 4px 12px;
    border-radius: 3px;
    margin-bottom: 24px;
    text-transform: uppercase
}

.evts .pagetitle {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 8px
}

.evts .pagetitle .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #E1EAEC;
    border-radius: 0;
    margin-left: 6px;
    vertical-align: middle;
    margin-bottom: 10px
}

.evts .pagesub {
    font-size: 18px;
    line-height: 1.6;
    color: #e1eaeccc;
    margin: 24px 0 0;
    max-width: 520px
}

.evts .titleimg {
    width: 100%;
    height: 200px;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621
}

.evts .titleimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1);
    filter: saturate(0.7)
}

.evts .titleimg:hover img {
    transform: scale(1.04) translateX(-8px);
    filter: saturate(1)
}

.evts .statstrip {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e1eaec26
}

.evts .statitem {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.evts .statnum {
    font-size: 36px;
    line-height: 1.15;
    color: #fff;
    letter-spacing: -.02em
}

.evts .statlbl {
    font-size: 14px;
    color: #e1eaec99;
    letter-spacing: .04em
}

.evts .cardgrid {
    padding: 96px 48px;
    background-color: #fff
}

.evts .cardgrid-inner {
    max-width: 1200px;
    margin: 0 auto
}

.evts .gridhead {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 24px;
    margin-bottom: 48px
}

.evts .gridtitle {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #044956;
    margin: 0
}

.evts .gridtitle .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #6C7980;
    border-radius: 0;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 7px
}

.evts .gridcount {
    font-size: 14px;
    color: #6C7980;
    letter-spacing: .04em
}

.evts .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.evts .card {
    background: #fff;
    border: 2px solid #E1EAEC;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 6px 18px -1px #04495617;
    transition: transform .16s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .16s cubic-bezier(0.4, 0, 0.6, 1);
    display: flex;
    flex-direction: column;
    position: relative
}

.evts .card:hover {
    transform: scale(0.97);
    box-shadow: 2px 2px 3px -1px #0449560d
}

.evts .card-imgwrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0
}

.evts .card-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.evts .card:hover .card-imgwrap img {
    transform: translateX(-12px) scale(1.05)
}

.evts .card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 auto
}

.evts .card-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center
}

.evts .badge {
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 3px;
    border: 1.5px solid #E1EAEC;
    color: #6C7980;
    background: transparent
}

.evts .badge.level {
    border-color: #044956;
    color: #044956
}

.evts .card-title {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -.01em;
    color: #044956;
    margin: 0
}

.evts .card-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    margin: 0
}

.evts .card-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px
}

.evts .detailitem {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #E1EAEC;
    border-radius: 3px;
    padding: 8px 12px
}

.evts .detailitem .dlbl {
    font-size: 14px;
    color: #6C7980;
    letter-spacing: .03em
}

.evts .detailitem .dval {
    font-size: 16px;
    color: #044956;
    line-height: 1.4
}

.evts .card-footer {
    padding: 12px 24px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto
}

.evts .price {
    font-size: 24px;
    line-height: 1.15;
    color: #044956;
    letter-spacing: -.01em
}

.evts .seats {
    font-size: 14px;
    color: #6C7980
}

.evts .seats span {
    color: #044956;
    font-size: 16px
}

.evts .cardbtn {
    display: inline-block;
    font-size: 16px;
    color: #044956;
    background: transparent;
    border: 2.5px solid #044956;
    border-radius: 3px;
    padding: 8px 24px;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .14s cubic-bezier(0.4, 0, 0.6, 1), color .14s cubic-bezier(0.4, 0, 0.6, 1), transform .12s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    overflow: hidden
}

.evts .cardbtn:hover {
    background: #044956;
    color: #fff;
    transform: scale(0.97)
}

.evts .cardbtn:active {
    transform: scale(0.95)
}

.evts .pullquote-sec {
    padding: 96px 48px;
    background: #E1EAEC;
    position: relative
}

.evts .pullquote-sec::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 48px;
    width: 3px;
    height: 60px;
    background: #04495626;
    border-radius: 0
}

.evts .pullquote-sec::after {
    content: '';
    position: absolute;
    top: 24px;
    right: 60px;
    width: 3px;
    height: 40px;
    background: #04495614;
    border-radius: 0
}

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

.evts .pq-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.evts .pq-right {
    flex: 1 1 0
}

.evts .pqlabel {
    font-size: 14px;
    letter-spacing: .08em;
    color: #6C7980;
    text-transform: uppercase
}

.evts .pqbig {
    font-size: 36px;
    line-height: 1.4;
    color: #044956;
    letter-spacing: -.015em;
    margin: 0;
    border-left: none;
    padding-left: 0
}

.evts .pqbig .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #044956;
    border-radius: 0;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 5px
}

.evts .pq-body {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.evts .pq-p {
    font-size: 18px;
    line-height: 1.6;
    color: #044956;
    margin: 0
}

.evts .pq-p.narrow {
    max-width: 480px;
    font-size: 16px;
    color: #6C7980
}

.evts .funnel-sec {
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.evts .funnel-sec::before {
    content: '';
    position: absolute;
    bottom: 48px;
    left: 48px;
    width: 2px;
    height: 80px;
    background: #6c798033;
    border-radius: 0
}

.evts .funnel-sec::after {
    content: '';
    position: absolute;
    bottom: 48px;
    left: 58px;
    width: 2px;
    height: 55px;
    background: #6c79801f;
    border-radius: 0
}

.evts .funnel-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start
}

.evts .funnel-left {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.evts .funneltitle {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #044956;
    margin: 0
}

.evts .funneltitle .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #6C7980;
    border-radius: 0;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 7px
}

.evts .funneldesc {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    margin: 0
}

.evts .funneldesc.wide {
    font-size: 18px;
    color: #044956
}

.evts .funnel-right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center
}

.evts .funnel-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%
}

.evts .fbar {
    height: 48px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    transition: transform .16s cubic-bezier(0.4, 0, 0.6, 1);
    flex-shrink: 0
}

.evts .fbar:hover {
    transform: scale(0.97)
}

.evts .fbar.f1 {
    width: 100%;
    background: #044956
}

.evts .fbar.f2 {
    width: 85%;
    background: #0a6478
}

.evts .fbar.f3 {
    width: 68%;
    background: #6C7980
}

.evts .fbar.f4 {
    width: 52%;
    background: #8a9ba3
}

.evts .fbar.f5 {
    width: 38%;
    background: #E1EAEC;
    border: 1.5px solid #6C7980
}

.evts .fbar-label {
    font-size: 14px;
    color: #fff;
    letter-spacing: .03em;
    white-space: nowrap
}

.evts .fbar.f5 .fbar-label {
    color: #044956
}

.evts .fbar-meta {
    font-size: 14px;
    color: #6C7980;
    white-space: nowrap;
    flex-shrink: 0
}

.evts .imgfeature-sec {
    padding: 96px 48px;
    background: #044956;
    position: relative
}

.evts .imgfeature-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: stretch
}

.evts .imgfeature-sidebar {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.evts .imgfeature-imgwrap {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621
}

.evts .imgfeature-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.evts .imgfeature-imgwrap:hover img {
    transform: translateX(-10px) scale(1.04)
}

.evts .imgfeature-stitle {
    font-size: 24px;
    line-height: 1.4;
    color: #E1EAEC;
    margin: 0
}

.evts .imgfeature-sdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #e1eaecb3;
    margin: 0
}

.evts .imgfeature-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.evts .ifsectitle {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #fff;
    margin: 0
}

.evts .ifsectitle .dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #E1EAEC;
    border-radius: 0;
    margin-left: 5px;
    vertical-align: middle;
    margin-bottom: 7px
}

.evts .ifcards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.evts .ifcard {
    background: #ffffff0f;
    border: 1.5px solid #e1eaec26;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1), transform .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.evts .ifcard:hover {
    background: #ffffff1a;
    transform: scale(0.97)
}

.evts .ifcard-num {
    font-size: 36px;
    line-height: 1.15;
    color: #E1EAEC;
    letter-spacing: -.02em
}

.evts .ifcard-lbl {
    font-size: 16px;
    line-height: 1.4;
    color: #e1eaeccc
}

.evts .ifcard-sub {
    font-size: 14px;
    color: #e1eaec80;
    line-height: 1.6
}

.evts .satcycle {
    animation: satcycle 7s ease-in-out infinite
}

@keyframes satcycle {
    0% {
        filter: saturate(1)
    }

    50% {
        filter: saturate(0.2)
    }

    100% {
        filter: saturate(1)
    }
}

@media (max-width: 1280px) {
    .evts .titleright {
        flex: 0 0 240px
    }

    .evts .funnel-inner {
        gap: 48px
    }

    .evts .imgfeature-sidebar {
        flex: 0 0 300px
    }
}

@media (max-width: 768px) {
    .evts .grain-bg {
        padding: 48px 24px
    }

    .evts .titlerow {
        flex-direction: column;
        gap: 24px
    }

    .evts .titleright {
        flex: none;
        width: 100%
    }

    .evts .statstrip {
        flex-wrap: wrap;
        gap: 24px
    }

    .evts .cardgrid {
        padding: 48px 24px
    }

    .evts .cards {
        grid-template-columns: 1fr
    }

    .evts .pullquote-sec {
        padding: 48px 24px
    }

    .evts .pq-inner {
        flex-direction: column;
        gap: 24px
    }

    .evts .pq-left {
        flex: none;
        width: 100%
    }

    .evts .funnel-sec {
        padding: 48px 24px
    }

    .evts .funnel-inner {
        flex-direction: column;
        gap: 48px
    }

    .evts .funnel-left {
        flex: none;
        width: 100%
    }

    .evts .fbar.f2 {
        width: 85%
    }

    .evts .fbar.f3 {
        width: 68%
    }

    .evts .fbar.f4 {
        width: 52%
    }

    .evts .fbar.f5 {
        width: 38%
    }

    .evts .imgfeature-sec {
        padding: 48px 24px
    }

    .evts .imgfeature-inner {
        flex-direction: column;
        gap: 48px
    }

    .evts .imgfeature-sidebar {
        flex: none;
        width: 100%
    }

    .evts .ifcards {
        grid-template-columns: 1fr
    }

    .evts .pagetitle {
        font-size: 36px
    }
}

@media (max-width: 390px) {
    .evts .grain-bg {
        padding: 48px 12px
    }

    .evts .cardgrid {
        padding: 48px 12px
    }

    .evts .pullquote-sec {
        padding: 48px 12px
    }

    .evts .funnel-sec {
        padding: 48px 12px
    }

    .evts .imgfeature-sec {
        padding: 48px 12px
    }

    .evts .pagetitle {
        font-size: 36px
    }

    .evts .card-details {
        grid-template-columns: 1fr
    }

    .evts .card-footer {
        flex-direction: column;
        align-items: flex-start
    }
}

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

.ctus .pg-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative
}

.ctus .pg-open::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 48px;
    background: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 100%, 0 0);
    z-index: 2
}

.ctus .open-img {
    position: relative;
    overflow: hidden
}

.ctus .open-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ctus .open-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0449568c;
    z-index: 1
}

.ctus .open-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#e1eaec14 1px, transparent 1px), linear-gradient(90deg, #e1eaec14 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 2
}

.ctus .open-txt {
    background: conic-gradient(from 210deg at 0% 100%, #044956 0deg, #0a6b80 60deg, #E1EAEC 140deg, #fff 200deg, #fff 360deg);
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.ctus .eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    color: #6C7980;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600
}

.ctus .open-h1 {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #044956;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.ctus .open-h1 .dot-acc {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #6C7980;
    margin-left: 6px;
    vertical-align: super;
    flex-shrink: 0
}

.ctus .open-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #044956;
    max-width: 360px
}

.ctus .open-meta {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.ctus .meta-icon {
    width: 36px;
    height: 36px;
    border-radius: 3px;
    border: 2px solid #044956;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: transparent
}

.ctus .meta-icon svg {
    width: 16px;
    height: 16px;
    stroke: #044956;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ctus .meta-lbl {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.15
}

.ctus .meta-val {
    font-size: 16px;
    color: #044956;
    line-height: 1.4;
    font-weight: 600
}

.ctus .meta-val a {
    color: #044956;
    text-decoration: none !important;
    transition: color .18s ease-out
}

.ctus .meta-val a:hover {
    color: #6C7980
}

.ctus .brace-dec {
    position: absolute;
    top: 48px;
    right: 24px;
    font-size: 120px;
    line-height: 1;
    color: #04495614;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
    font-family: monospace
}

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

.ctus .form-wrap {
    max-width: 860px;
    margin: 0 auto
}

.ctus .form-lead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start
}

.ctus .form-heading {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #044956;
    margin: 0 0 12px
}

.ctus .form-heading .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6C7980;
    margin-left: 5px;
    vertical-align: super
}

.ctus .form-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    margin: 0
}

.ctus .form-desc-narrow {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980;
    margin: 0;
    max-width: 280px
}

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

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

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

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

.ctus .fld label,
.ctus .fld-full label {
    font-size: 14px;
    color: #044956;
    font-weight: 600;
    letter-spacing: .04em
}

.ctus .fld input,
.ctus .fld-full input,
.ctus .fld-full textarea,
.ctus .fld-full select {
    border: 2px solid #E1EAEC;
    border-radius: 3px;
    padding: 12px;
    font-size: 16px;
    color: #044956;
    background: #fff;
    outline: none;
    transition: border-color .18s ease-out, box-shadow .18s ease-out;
    box-shadow: inset 2px 2px 4px #0449560d;
    width: 100%;
    box-sizing: border-box;
    appearance: none
}

.ctus .fld input::placeholder,
.ctus .fld-full input::placeholder,
.ctus .fld-full textarea::placeholder {
    color: #6C7980;
    opacity: 1;
    transition: opacity .22s ease-out
}

.ctus .fld input:focus::placeholder,
.ctus .fld-full input:focus::placeholder,
.ctus .fld-full textarea:focus::placeholder {
    opacity: 0
}

.ctus .fld input:focus,
.ctus .fld-full input:focus,
.ctus .fld-full textarea:focus,
.ctus .fld-full select:focus {
    border-color: #044956;
    box-shadow: inset 2px 2px 4px #04495614 2px 6px 18px -1px #04495617
}

.ctus .fld-full textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6
}

.ctus .fld-full select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23044956' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #e1eaec59;
    border-radius: 3px
}

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

.ctus .privacy-txt {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980
}

.ctus .privacy-txt a {
    color: #044956;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    transition: color .15s ease-out
}

.ctus .privacy-txt a:hover {
    color: #6C7980
}

.ctus .submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 24px
}

.ctus .btn-submit {
    position: relative;
    overflow: hidden;
    padding: 12px 48px;
    background: #044956;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .06em;
    border: 3px solid #044956;
    border-radius: 3px;
    cursor: pointer;
    transition: background .18s ease-out, color .18s ease-out, transform .12s ease-out, box-shadow .18s ease-out;
    box-shadow: 2px 6px 18px -1px #04495617
}

.ctus .btn-submit:hover {
    background: transparent;
    color: #044956;
    transform: scale(0.97);
    box-shadow: 2px 9px 36px -1px #04495621
}

.ctus .btn-submit:active {
    transform: scale(0.95);
    box-shadow: inset 2px 2px 4px #0449561f
}

.ctus .btn-submit:focus-visible {
    outline: 3px solid #6C7980;
    outline-offset: 3px
}

.ctus .ripple-circle {
    position: absolute;
    border-radius: 50%;
    background: #e1eaec73;
    transform: scale(0);
    animation: ripple-go .5s cubic-bezier(0.4, 0, 0.6, 1) forwards;
    pointer-events: none
}

@keyframes ripple-go {
    to {
        transform: scale(4);
        opacity: 0
    }
}

.ctus .form-note {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.4
}

.ctus .chevron-div {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
    background: #fff
}

.ctus .chevron-div svg {
    width: 48px;
    height: 24px;
    display: block
}

.ctus .reveal-clip {
    clip-path: inset(0 50% 0 50%);
    animation: clip-expand .55s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

.ctus .reveal-clip-d1 {
    animation-delay: .08s
}

.ctus .reveal-clip-d2 {
    animation-delay: .18s
}

.ctus .reveal-clip-d3 {
    animation-delay: .28s
}

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

.ctus .slide-up {
    opacity: 0;
    transform: translateY(28px);
    animation: slide-up-go .5s ease-out forwards
}

.ctus .slide-up-d1 {
    animation-delay: .1s
}

.ctus .slide-up-d2 {
    animation-delay: .2s
}

.ctus .slide-up-d3 {
    animation-delay: .3s
}

.ctus .slide-up-d4 {
    animation-delay: .4s
}

@keyframes slide-up-go {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 1280px) {
    .ctus .open-txt {
        padding: 48px 24px
    }

    .ctus .open-h1 {
        font-size: 36px
    }

    .ctus .form-area {
        padding: 48px 24px
    }

    .ctus .form-lead {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width: 768px) {
    .ctus .pg-open {
        grid-template-columns: 1fr
    }

    .ctus .open-img {
        height: 260px
    }

    .ctus .open-txt {
        padding: 48px 24px
    }

    .ctus .open-h1 {
        font-size: 36px
    }

    .ctus .field-row {
        grid-template-columns: 1fr
    }

    .ctus .form-lead {
        grid-template-columns: 1fr
    }

    .ctus .submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

@media (max-width: 390px) {
    .ctus .open-h1 {
        font-size: 24px
    }

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

    .ctus .form-area {
        padding: 48px 12px
    }

    .ctus .open-txt {
        padding: 48px 12px
    }
}

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

.abtu .reveal {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(0px);
    animation: revealIn .22s ease-out forwards
}

.abtu .reveal.d1 {
    animation-delay: .08s
}

.abtu .reveal.d2 {
    animation-delay: .16s;
    transform: translateY(12px);
    animation-duration: .18s
}

.abtu .reveal.d3 {
    animation-delay: .26s;
    transform: translateY(24px);
    animation-duration: .2s
}

.abtu .reveal.d4 {
    animation-delay: .36s;
    transform: translateY(38px);
    animation-duration: .22s
}

@keyframes revealIn {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0)
    }
}

.abtu .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #044956;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.abtu .dotgrp {
    position: absolute;
    pointer-events: none
}

.abtu .dotgrp span {
    display: block;
    border-radius: 50%;
    background: #044956;
    opacity: .13;
    position: absolute
}

.abtu .titlewrap {
    position: relative;
    background: #044956;
    padding: 96px 48px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    overflow: hidden
}

.abtu .titlewrap .curvedeco {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.abtu .titlewrap .curvedeco svg {
    position: absolute;
    top: -40px;
    left: -60px;
    opacity: .09;
    width: 700px;
    height: 500px
}

.abtu .titleleft {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1
}

.abtu .titlelabel {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .12em;
    color: #E1EAEC;
    border: 2px solid #e1eaec4d;
    border-radius: 3px;
    padding: 4px 12px;
    width: fit-content;
    text-transform: uppercase
}

.abtu .titleh1 {
    font-size: 52px;
    line-height: 1.15;
    color: #E1EAEC;
    letter-spacing: -.02em;
    margin: 0
}

.abtu .titledesc {
    font-size: 18px;
    line-height: 1.6;
    color: #e1eaecd1;
    max-width: 520px;
    margin: 0
}

.abtu .titleright {
    flex: 1 1 0;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621;
    min-height: 360px
}

.abtu .titleright img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px
}

.abtu .titleright .imgoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #044956b8 0%, #6c79802e 100%);
    border-radius: 12px
}

.abtu .storysec {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.abtu .storysec .edgestrip {
    position: absolute;
    right: 0;
    top: 48px;
    bottom: 48px;
    width: 4px;
    background: #044956;
    border-radius: 3px;
    opacity: .18
}

.abtu .storyimg {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abtu .storyimgbox {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 6px 18px -1px #04495617
}

.abtu .storyimgbox img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .18s ease-out
}

.abtu .storyimgbox:hover img {
    transform: scale(0.97)
}

.abtu .storyimgbox .caption {
    position: absolute;
    inset: 0;
    background: #044956d1;
    color: #E1EAEC;
    font-size: 14px;
    line-height: 1.6;
    padding: 24px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity .16s ease-out;
    display: flex;
    align-items: flex-end
}

.abtu .storyimgbox:hover .caption {
    opacity: 1
}

.abtu .storytext {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abtu .storytag {
    font-size: 14px;
    letter-spacing: .1em;
    color: #6C7980;
    text-transform: uppercase
}

.abtu .storyh2 {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    letter-spacing: -.015em;
    margin: 0
}

.abtu .storypara {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3b40;
    margin: 0
}

.abtu .storypara.narrow {
    max-width: 380px;
    font-size: 14px;
    color: #6C7980;
    line-height: 1.6
}

.abtu .storymetrics {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 8px
}

.abtu .metriccard {
    flex: 1 1 0;
    border: 2px solid #044956;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #fff;
    box-shadow: 2px 2px 3px -1px #0449560d;
    transition: box-shadow .16s ease-out, transform .14s ease-out
}

.abtu .metriccard:hover {
    transform: scale(0.97);
    box-shadow: 2px 6px 18px -1px #04495617
}

.abtu .metricnum {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    letter-spacing: -.02em
}

.abtu .metriclabel {
    font-size: 14px;
    color: #6C7980;
    line-height: 1.4
}

.abtu .teamsec {
    background: #E1EAEC;
    padding: 96px 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.abtu .teamsec .dotgrp {
    bottom: 24px;
    left: 48px
}

.abtu .teamhead {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px
}

.abtu .teamh2 {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    letter-spacing: -.015em;
    margin: 0;
    flex: 0 0 auto
}

.abtu .teamdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #2a3b40;
    max-width: 460px;
    margin: 0
}

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

.abtu .personcard {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 2px 3px -1px #0449560d;
    display: flex;
    flex-direction: column;
    transition: box-shadow .18s ease-out, transform .14s ease-out
}

.abtu .personcard:hover {
    transform: scale(0.97);
    box-shadow: 2px 9px 36px -1px #04495621
}

.abtu .personimgbox {
    position: relative;
    overflow: hidden
}

.abtu .personimgbox img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-out
}

.abtu .personcard:hover .personimgbox img {
    transform: scale(0.97)
}

.abtu .personimgbox .caption {
    position: absolute;
    inset: 0;
    background: #044956d6;
    color: #E1EAEC;
    font-size: 14px;
    line-height: 1.6;
    padding: 24px;
    opacity: 0;
    transition: opacity .16s ease-out;
    display: flex;
    align-items: flex-end
}

.abtu .personcard:hover .personimgbox .caption {
    opacity: 1
}

.abtu .personinfo {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abtu .personname {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    margin: 0
}

.abtu .personrole {
    font-size: 14px;
    color: #6C7980;
    margin: 0
}

.abtu .personbio {
    font-size: 14px;
    line-height: 1.6;
    color: #2a3b40;
    margin: 0
}

.abtu .milesec {
    padding: 96px 48px;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.abtu .milesec .edgestrip {
    position: absolute;
    left: 0;
    top: 48px;
    bottom: 48px;
    width: 4px;
    background: #044956;
    border-radius: 3px;
    opacity: .18
}

.abtu .milehead {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px
}

.abtu .mileh2 {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    letter-spacing: -.015em;
    margin: 0
}

.abtu .miledesc {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    margin: 0
}

.abtu .tl-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 48px
}

.abtu .tl-wrap::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: #E1EAEC;
    border-radius: 3px
}

.abtu .tlitem {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding-bottom: 48px;
    align-items: flex-start
}

.abtu .tlitem:last-child {
    padding-bottom: 0
}

.abtu .tlitem::before {
    content: '';
    position: absolute;
    left: -40px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #044956;
    box-shadow: 2px 2px 3px -1px #0449560d
}

.abtu .tldate {
    flex: 0 0 80px;
    font-size: 14px;
    color: #6C7980;
    line-height: 1.4;
    padding-top: 4px
}

.abtu .tlcard {
    flex: 1 1 0;
    border: 2px solid #E1EAEC;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    box-shadow: 2px 2px 3px -1px #0449560d;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .16s ease-out, box-shadow .18s ease-out, transform .14s ease-out
}

.abtu .tlcard:hover {
    border-color: #044956;
    transform: scale(0.97);
    box-shadow: 2px 6px 18px -1px #04495617
}

.abtu .tlcardh {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    margin: 0
}

.abtu .tlcardp {
    font-size: 14px;
    line-height: 1.6;
    color: #2a3b40;
    margin: 0
}

.abtu .mileimgrow {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch
}

.abtu .mileimgbox {
    flex: 1 1 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 6px 18px -1px #04495617
}

.abtu .mileimgbox img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform .18s ease-out
}

.abtu .mileimgbox:hover img {
    transform: scale(0.97)
}

.abtu .mileimgbox .caption {
    position: absolute;
    inset: 0;
    background: #044956d1;
    color: #E1EAEC;
    font-size: 14px;
    line-height: 1.6;
    padding: 24px;
    border-radius: 12px;
    opacity: 0;
    transition: opacity .16s ease-out;
    display: flex;
    align-items: flex-end
}

.abtu .mileimgbox:hover .caption {
    opacity: 1
}

@media (max-width: 1280px) {
    .abtu .teamgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .abtu .titlewrap {
        flex-direction: column;
        padding: 48px 24px
    }

    .abtu .titleh1 {
        font-size: 36px
    }

    .abtu .titleright {
        min-height: 240px
    }

    .abtu .titleright img {
        height: 240px
    }

    .abtu .storysec {
        flex-direction: column;
        padding: 48px 24px
    }

    .abtu .storyimg {
        flex: none
    }

    .abtu .storyimgbox img {
        width: 100%;
        height: 280px
    }

    .abtu .storymetrics {
        flex-direction: column
    }

    .abtu .teamsec {
        padding: 48px 24px
    }

    .abtu .teamhead {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .abtu .teamgrid {
        grid-template-columns: 1fr
    }

    .abtu .milesec {
        padding: 48px 24px
    }

    .abtu .mileimgrow {
        flex-direction: column
    }

    .abtu .tl-wrap {
        padding-left: 32px
    }
}

@media (max-width: 390px) {
    .abtu .titleh1 {
        font-size: 24px
    }

    .abtu .storyh2,
    .abtu .teamh2,
    .abtu .mileh2 {
        font-size: 24px
    }

    .abtu .titlewrap {
        padding: 48px 12px
    }

    .abtu .storysec,
    .abtu .teamsec,
    .abtu .milesec {
        padding: 48px 12px
    }
}

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

.lrnprog .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #044956;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.lrnprog .fadein {
    opacity: 0;
    animation: fadeReveal .18s ease-out forwards
}

.lrnprog .fadein-d1 {
    animation-delay: .08s
}

.lrnprog .fadein-d2 {
    animation-delay: .16s
}

.lrnprog .fadein-d3 {
    animation-delay: .22s
}

.lrnprog .fadein-d4 {
    animation-delay: .3s
}

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

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

.lrnprog .ripple-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer
}

.lrnprog .ripple-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: #0449562e;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width .22s cubic-bezier(0.4, 0, 0.6, 1), height .22s cubic-bezier(0.4, 0, 0.6, 1), opacity .18s ease-out;
    opacity: 0
}

.lrnprog .ripple-btn:active::after {
    width: 280px;
    height: 280px;
    opacity: 1
}

.lrnprog .titleblock {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 580px;
    position: relative
}

@media (max-width: 768px) {
    .lrnprog .titleblock {
        grid-template-columns: 1fr
    }
}

.lrnprog .tbLeft {
    background: #044956;
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.lrnprog .tbLeft::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 225deg at 0% 100%, #044956f2 0deg, #6c798080 90deg, #044956d9 200deg, #e1eaec26 360deg);
    pointer-events: none
}

.lrnprog .tbShapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.lrnprog .tbShapes svg {
    position: absolute;
    bottom: -24px;
    right: -24px;
    opacity: .08;
    width: 260px;
    height: 260px
}

.lrnprog .tbShapeCircle {
    position: absolute;
    top: 48px;
    left: 24px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid #e1eaec26;
    pointer-events: none
}

.lrnprog .tbShapeRect {
    position: absolute;
    bottom: 96px;
    left: 48px;
    width: 60px;
    height: 60px;
    border: 2px solid #e1eaec1a;
    border-radius: 3px;
    transform: rotate(18deg);
    pointer-events: none
}

.lrnprog .tbLabel {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #E1EAEC;
    opacity: .7;
    margin-bottom: 24px;
    position: relative;
    z-index: 1
}

.lrnprog .tbHeading {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    position: relative;
    z-index: 1
}

.lrnprog .tbDesc {
    font-size: 18px;
    line-height: 1.6;
    color: #e1eaecd9;
    position: relative;
    z-index: 1;
    max-width: 340px
}

.lrnprog .tbRight {
    position: relative;
    overflow: hidden
}

.lrnprog .tbImgWrap {
    position: absolute;
    inset: 0
}

.lrnprog .tbImgWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.lrnprog .tbImgOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0449568c 0%, #6c79804d 60%, #04495626 100%);
    pointer-events: none
}

.lrnprog .tbVignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 40%, #04495673 100%);
    pointer-events: none
}

.lrnprog .tbMathSymbol {
    position: absolute;
    font-size: 220px;
    line-height: 1;
    color: #e1eaec0f;
    font-weight: 700;
    bottom: -24px;
    right: 24px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.05em
}

.lrnprog .tbStats {
    position: absolute;
    bottom: 48px;
    left: 48px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    z-index: 2
}

.lrnprog .tbStat {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lrnprog .tbStatNum {
    font-size: 36px;
    line-height: 1.15;
    color: #fff;
    font-weight: 700
}

.lrnprog .tbStatLabel {
    font-size: 14px;
    color: #e1eaecb3;
    line-height: 1.4
}

@media (max-width: 768px) {
    .lrnprog .tbLeft {
        padding: 48px 24px
    }

    .lrnprog .tbHeading {
        font-size: 36px
    }

    .lrnprog .tbRight {
        min-height: 320px
    }

    .lrnprog .tbStats {
        gap: 24px;
        left: 24px;
        bottom: 24px
    }
}

@media (max-width: 390px) {
    .lrnprog .tbHeading {
        font-size: 36px
    }

    .lrnprog .tbStats {
        flex-direction: column;
        gap: 12px
    }
}

.lrnprog .modules {
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.lrnprog .modulesMathBg {
    position: absolute;
    top: 48px;
    right: 48px;
    font-size: 180px;
    line-height: 1;
    color: #0449560a;
    font-weight: 700;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.04em
}

.lrnprog .modulesTop {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start
}

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

    .lrnprog .modules {
        padding: 48px 24px
    }
}

.lrnprog .modulesHeading {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    font-weight: 700;
    letter-spacing: -.02em
}

.lrnprog .modulesIntro {
    font-size: 18px;
    line-height: 1.6;
    color: #6C7980
}

.lrnprog .modulesIntroNarrow {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    max-width: 360px
}

.lrnprog .modulesGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1
}

@media (max-width: 768px) {
    .lrnprog .modulesGrid {
        grid-template-columns: 1fr
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .lrnprog .modulesGrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

.lrnprog .modCard {
    border: 2px solid #044956;
    border-radius: 12px;
    padding: 24px;
    background: #fff;
    position: relative;
    box-shadow: 6px 6px 0 0 #04495621;
    transition: transform .15s ease-out, box-shadow .15s ease-out
}

.lrnprog .modCard:hover {
    transform: scale(0.97);
    box-shadow: 2px 2px 3px -1px #0449560d
}

.lrnprog .modNum {
    font-size: 52px;
    line-height: 1.15;
    font-weight: 700;
    color: #04495614;
    position: absolute;
    top: 8px;
    right: 16px;
    pointer-events: none;
    user-select: none
}

.lrnprog .modTag {
    display: inline-block;
    font-size: 14px;
    color: #044956;
    background: #E1EAEC;
    border-radius: 3px;
    padding: 4px 8px;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: .04em
}

.lrnprog .modTitle {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    font-weight: 700;
    margin-bottom: 8px
}

.lrnprog .modDesc {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980
}

.lrnprog .modDuration {
    margin-top: 12px;
    font-size: 14px;
    color: #044956;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px
}

.lrnprog .modDuration svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.lrnprog .deepblock {
    background: #E1EAEC;
    padding: 96px 48px;
    position: relative
}

@media (max-width: 768px) {
    .lrnprog .deepblock {
        padding: 48px 24px
    }
}

.lrnprog .deepblockInner {
    max-width: 1200px;
    margin: 0 auto
}

.lrnprog .deepHeading {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 8px;
    text-align: center
}

.lrnprog .deepSub {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    text-align: center;
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.lrnprog .compareWrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px
}

@media (max-width: 768px) {
    .lrnprog .compareWrap {
        grid-template-columns: 1fr
    }
}

.lrnprog .compareCard {
    border-radius: 12px;
    padding: 48px 24px;
    position: relative
}

.lrnprog .compareCard.standard {
    background: #fff;
    border: 2px solid #6c79804d;
    box-shadow: 2px 6px 18px -1px #6c798017
}

.lrnprog .compareCard.advanced {
    background: #044956;
    border: 2px solid #044956;
    box-shadow: 2px 9px 36px -1px #04495621
}

.lrnprog .compareLabel {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 12px
}

.lrnprog .compareCard.standard .compareLabel {
    color: #6C7980
}

.lrnprog .compareCard.advanced .compareLabel {
    color: #e1eaecb3
}

.lrnprog .compareTitle {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 24px
}

.lrnprog .compareCard.standard .compareTitle {
    color: #044956
}

.lrnprog .compareCard.advanced .compareTitle {
    color: #fff
}

.lrnprog .compareItems {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lrnprog .compareItem {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 3px
}

.lrnprog .compareCard.standard .compareItem {
    background: #E1EAEC
}

.lrnprog .compareCard.advanced .compareItem {
    background: #e1eaec1a
}

.lrnprog .ciMark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrnprog .compareCard.standard .ciMark {
    background: #6c798033
}

.lrnprog .compareCard.advanced .ciMark {
    background: #e1eaec33
}

.lrnprog .ciMark svg {
    width: 12px;
    height: 12px
}

.lrnprog .compareCard.standard .ciText {
    font-size: 14px;
    line-height: 1.4;
    color: #6C7980
}

.lrnprog .compareCard.advanced .ciText {
    font-size: 14px;
    line-height: 1.4;
    color: #e1eaece6
}

.lrnprog .compareBadge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #6C7980;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: uppercase
}

.lrnprog .timelineHead {
    font-size: 24px;
    line-height: 1.4;
    color: #044956;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center
}

.lrnprog .tlWrap {
    position: relative;
    max-width: 700px;
    margin: 0 auto
}

.lrnprog .tlLine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #0449562e;
    transform: translateX(-50%)
}

@media (max-width: 768px) {
    .lrnprog .tlLine {
        left: 20px
    }
}

.lrnprog .tlItems {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrnprog .tlItem {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    align-items: start;
    gap: 0
}

@media (max-width: 768px) {
    .lrnprog .tlItem {
        grid-template-columns: 48px 1fr
    }

    .lrnprog .tlItemLeft {
        display: none
    }
}

.lrnprog .tlItemLeft {
    text-align: right;
    padding-right: 24px;
    padding-top: 8px
}

.lrnprog .tlItemRight {
    padding-left: 24px;
    padding-top: 8px
}

@media (max-width: 768px) {
    .lrnprog .tlItemRight {
        padding-left: 16px
    }
}

.lrnprog .tlDot {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px
}

.lrnprog .tlDotInner {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #044956;
    border: 3px solid #E1EAEC;
    box-shadow: 0 0 0 2px #044956;
    flex-shrink: 0
}

.lrnprog .tlWeek {
    font-size: 14px;
    font-weight: 700;
    color: #044956;
    line-height: 1.4
}

.lrnprog .tlDesc {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980;
    margin-top: 4px
}

.lrnprog .tlTitle {
    font-size: 16px;
    font-weight: 700;
    color: #044956;
    line-height: 1.4
}

.lrnprog .tlDescRight {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980;
    margin-top: 4px
}

.lrnprog .deepCta {
    margin-top: 48px;
    text-align: center
}

.lrnprog .btnPrimary {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #044956;
    background: transparent;
    border: 3px solid #044956;
    border-radius: 3px;
    padding: 12px 48px;
    cursor: pointer;
    letter-spacing: .04em;
    transition: background .15s ease-out, color .15s ease-out, transform .12s ease-out;
    text-decoration: none
}

.lrnprog .btnPrimary:hover {
    background: #044956;
    color: #fff;
    transform: scale(0.97)
}

.lrnprog .btnPrimary:focus {
    outline: 3px solid #6C7980;
    outline-offset: 3px
}

.lrnprog .charHover {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0
}

.lrnprog .charHover span {
    display: inline-block;
    transition: color .12s ease-out;
    transition-delay: 0s
}

.lrnprog .charHover:hover span:nth-child(1) {
    color: #044956;
    transition-delay: 0s
}

.lrnprog .charHover:hover span:nth-child(2) {
    color: #044956;
    transition-delay: .02s
}

.lrnprog .charHover:hover span:nth-child(3) {
    color: #6C7980;
    transition-delay: .04s
}

.lrnprog .charHover:hover span:nth-child(4) {
    color: #044956;
    transition-delay: .06s
}

.lrnprog .charHover:hover span:nth-child(5) {
    color: #6C7980;
    transition-delay: .08s
}

.lrnprog .charHover:hover span:nth-child(6) {
    color: #044956;
    transition-delay: .1s
}

.lrnprog .charHover:hover span:nth-child(7) {
    color: #6C7980;
    transition-delay: .12s
}

.lrnprog .charHover:hover span:nth-child(8) {
    color: #044956;
    transition-delay: .14s
}

.lrnprog .charHover:hover span:nth-child(9) {
    color: #6C7980;
    transition-delay: .16s
}

.lrnprog .charHover:hover span:nth-child(10) {
    color: #044956;
    transition-delay: .18s
}

.lrnprog .charHover:hover span:nth-child(11) {
    color: #6C7980;
    transition-delay: .2s
}

.lrnprog .charHover:hover span:nth-child(12) {
    color: #044956;
    transition-delay: .22s
}

.lrnprog .charHover span {
    color: #044956
}

.lrnprog .deepImgWrap {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 48px;
    position: relative;
    box-shadow: 2px 9px 36px -1px #04495621
}

.lrnprog .deepImgWrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block
}

.lrnprog .deepImgVignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 35%, #04495680 100%);
    pointer-events: none
}

@media (max-width: 390px) {
    .lrnprog .modules {
        padding: 48px 12px
    }

    .lrnprog .deepblock {
        padding: 48px 12px
    }

    .lrnprog .tbLeft {
        padding: 48px 12px
    }

    .lrnprog .modulesGrid {
        grid-template-columns: 1fr
    }

    .lrnprog .compareWrap {
        grid-template-columns: 1fr
    }
}

.lrnprog .sectionCurveTop {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: -2px
}

.lrnprog .sectionCurveBottom {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px
}

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

.spt .accdot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #044956;
    border-radius: 50%;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.spt .thinline {
    border: none;
    height: 1px;
    background: linear-gradient(to right, #E1EAEC 0%, #044956 60%, #044956 100%);
    border-bottom: 3px solid #044956;
    margin: 0
}

.spt .thickline {
    border: none;
    height: 2px;
    background: linear-gradient(to right, #E1EAEC 0%, #6C7980 40%, #044956 100%);
    border-bottom: 4px solid #044956;
    margin: 0
}

.spt .tblock {
    padding: 96px 48px 48px;
    position: relative;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.spt .tblock::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-48deg, transparent, transparent 18px, #0449560a 18px, #0449560a 20px);
    pointer-events: none;
    z-index: 0
}

.spt .tblock .tleft {
    position: relative;
    z-index: 1
}

.spt .tblock .tleft .bigmark {
    font-size: 70px;
    line-height: 1.15;
    color: #E1EAEC;
    font-weight: 900;
    letter-spacing: -.04em;
    user-select: none;
    margin-bottom: 8px
}

.spt .tblock .tleft h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #044956;
    letter-spacing: -.03em;
    margin-bottom: 24px
}

.spt .tblock .tleft .lead {
    font-size: 18px;
    line-height: 1.6;
    color: #044956;
    max-width: 480px;
    margin-bottom: 12px
}

.spt .tblock .tleft .sub {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    max-width: 420px
}

.spt .tblock .tright {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 48px
}

.spt .tblock .tright .imgframe {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621
}

.spt .tblock .tright .imgframe img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    filter: brightness(0.92) saturate(0.85);
    transition: filter .18s ease-out
}

.spt .tblock .tright .imgframe:hover img {
    filter: brightness(0.98) saturate(1)
}

.spt .tblock .tright .imgframe .imgoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #0449562e 0%, #6c798014 100%);
    border-radius: 12px;
    pointer-events: none
}

.spt .tblock .tright .chlist {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.spt .tblock .tright .chitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 2px solid #044956;
    border-radius: 3px;
    background: #fff;
    box-shadow: 2px 2px 3px -1px #0449560d;
    text-decoration: none !important;
    transition: transform .15s ease-out, box-shadow .15s ease-out
}

.spt .tblock .tright .chitem:hover {
    transform: scale(0.97);
    box-shadow: 2px 6px 18px -1px #04495617
}

.spt .tblock .tright .chitem .chiconbox {
    width: 36px;
    height: 36px;
    border: 2px solid #044956;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.spt .tblock .tright .chitem .chiconbox svg {
    width: 18px;
    height: 18px;
    stroke: #044956;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.spt .tblock .tright .chitem .chtext {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.spt .tblock .tright .chitem .chtext .chlabel {
    font-size: 14px;
    line-height: 1.4;
    color: #6C7980;
    letter-spacing: .04em;
    text-transform: uppercase
}

.spt .tblock .tright .chitem .chtext .chval {
    font-size: 16px;
    line-height: 1.4;
    color: #044956;
    font-weight: 700;
    position: relative;
    display: inline-block
}

.spt .tblock .tright .chitem .chtext .chval::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #044956;
    transition: left .18s ease-out, right .18s ease-out
}

.spt .tblock .tright .chitem:hover .chtext .chval::after {
    left: 0;
    right: 0
}

.spt .faqblock {
    padding: 96px 48px;
    background: #E1EAEC;
    position: relative
}

.spt .faqblock .faqinner {
    max-width: 1440px
}

.spt .faqblock .faqtop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: end
}

.spt .faqblock .faqtop .faqheadcol h2 {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    letter-spacing: -.02em;
    margin-bottom: 12px
}

.spt .faqblock .faqtop .faqheadcol .faqsub {
    font-size: 16px;
    line-height: 1.6;
    color: #044956;
    max-width: 400px
}

.spt .faqblock .faqtop .faqstatcol {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.spt .faqblock .faqtop .faqstatcol .statrow {
    display: flex;
    flex-direction: row;
    gap: 24px
}

.spt .faqblock .faqtop .faqstatcol .statcard {
    padding: 24px;
    background: #fff;
    border-radius: 3px;
    border: 2px solid #044956;
    box-shadow: 2px 6px 18px -1px #04495617;
    min-width: 140px;
    text-align: center
}

.spt .faqblock .faqtop .faqstatcol .statcard .statnum {
    font-size: 36px;
    line-height: 1.15;
    color: #044956;
    font-weight: 900;
    letter-spacing: -.03em
}

.spt .faqblock .faqtop .faqstatcol .statcard .statlabel {
    font-size: 14px;
    line-height: 1.4;
    color: #6C7980;
    margin-top: 4px
}

.spt .faqblock .faqgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.spt .faqblock .faqgrid .faqrow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.spt .faqblock .faqgrid .faqrow.offset {
    margin-top: 48px
}

.spt .faqblock .faqcard {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid transparent;
    box-shadow: 2px 2px 3px -1px #0449560d;
    transition: transform .14s ease-out, box-shadow .14s ease-out, border-color .14s ease-out;
    cursor: default
}

.spt .faqblock .faqcard:hover {
    transform: scale(0.97);
    box-shadow: 2px 9px 36px -1px #04495621;
    border-color: #044956
}

.spt .faqblock .faqcard h4 {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    letter-spacing: -.01em;
    margin-bottom: 12px
}

.spt .faqblock .faqcard p {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980
}

.spt .faqblock .faqcard p.narrow {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980;
    max-width: 340px
}

.spt .faqblock .faqcard .cardtag {
    display: inline-block;
    padding: 4px 8px;
    border: 2px solid #6C7980;
    border-radius: 3px;
    font-size: 14px;
    line-height: 1.4;
    color: #6C7980;
    margin-bottom: 12px;
    letter-spacing: .03em
}

.spt .faqblock .imgcard {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 9px 36px -1px #04495621;
    min-height: 220px
}

.spt .faqblock .imgcard img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.78) saturate(0.7);
    transition: filter .2s ease-out
}

.spt .faqblock .imgcard:hover img {
    filter: brightness(0.9) saturate(0.9)
}

.spt .faqblock .imgcard .imgcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, #044956d1 0%, transparent 100%)
}

.spt .faqblock .imgcard .imgcaption p {
    font-size: 16px;
    line-height: 1.4;
    color: #fff
}

.spt .faqblock .faqbottom {
    margin-top: 48px;
    padding: 24px;
    border-radius: 3px;
    border: 2px solid #044956;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    box-shadow: 2px 6px 18px -1px #04495617
}

.spt .faqblock .faqbottom .fbtext {
    flex: 1
}

.spt .faqblock .faqbottom .fbtext h5 {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    margin-bottom: 8px
}

.spt .faqblock .faqbottom .fbtext p {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980
}

.spt .faqblock .faqbottom .fbbtn {
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid #044956;
    border-radius: 3px;
    background: #044956;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    text-decoration: none !important;
    cursor: pointer;
    white-space: nowrap;
    transition: transform .15s ease-out, background .15s ease-out;
    position: relative;
    overflow: hidden
}

.spt .faqblock .faqbottom .fbbtn:hover {
    transform: scale(0.97);
    background: #033740
}

.spt .faqblock .faqbottom .fbbtn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff1f;
    opacity: 0;
    transition: opacity .12s ease-out;
    border-radius: 3px;
    pointer-events: none
}

.spt .faqblock .faqbottom .fbbtn:active::after {
    opacity: 1
}

@keyframes diagslide {
    from {
        opacity: 0;
        transform: translate(-24px, -16px)
    }

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

.spt .tblock .tleft {
    animation: diagslide .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

.spt .tblock .tright {
    animation: diagslide .2s .08s cubic-bezier(0.4, 0, 0.6, 1) both
}

.spt .faqblock .faqtop {
    animation: diagslide .2s .04s cubic-bezier(0.4, 0, 0.6, 1) both
}

@media (max-width: 1280px) {
    .spt .tblock {
        padding: 96px 48px 48px;
        gap: 48px
    }

    .spt .faqblock {
        padding: 96px 48px
    }
}

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

    .spt .tblock .tleft h1 {
        font-size: 36px
    }

    .spt .tblock .tleft .bigmark {
        font-size: 52px
    }

    .spt .faqblock {
        padding: 48px 24px
    }

    .spt .faqblock .faqtop {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .spt .faqblock .faqtop .faqstatcol {
        align-items: flex-start
    }

    .spt .faqblock .faqgrid {
        grid-template-columns: 1fr
    }

    .spt .faqblock .faqgrid .faqrow.offset {
        margin-top: 0
    }

    .spt .faqblock .faqbottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

@media (max-width: 390px) {
    .spt .tblock {
        padding: 48px 12px
    }

    .spt .tblock .tleft h1 {
        font-size: 24px
    }

    .spt .tblock .tleft .bigmark {
        font-size: 36px
    }

    .spt .faqblock {
        padding: 48px 12px
    }

    .spt .faqblock .faqtop .faqstatcol .statrow {
        flex-direction: column;
        gap: 12px
    }

    .spt .faqblock .faqtop h2 {
        font-size: 24px
    }
}

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

.opn .dotrow {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center
}

.opn .dotrow span {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #044956;
    display: block
}

.opn .dotrow span:nth-child(2) {
    background: #6C7980;
    opacity: .6
}

.opn .dotrow span:nth-child(3) {
    background: #044956;
    opacity: .3
}

.opn .accentdot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #044956;
    margin-left: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.opn .zigdiv {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.opn .zigdiv svg {
    display: block;
    width: 100%
}

.opn .zigdiv2 {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.opn .zigdiv2 svg {
    display: block;
    width: 100%
}

.opn .titlesec {
    position: relative;
    padding: 48px 48px 96px;
    background: #fff;
    border-top: 3px solid #044956;
    border-bottom: 3px solid #E1EAEC;
    overflow: hidden
}

.opn .titlesec::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.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0
}

.opn .titlesec::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 340px;
    height: 340px;
    background: conic-gradient(from 210deg at 80% 20%, #E1EAEC 0deg, #fff 90deg, #E1EAEC 180deg, #fff 270deg, #E1EAEC 360deg);
    border-radius: 0;
    opacity: .5;
    pointer-events: none;
    z-index: 0
}

.opn .titleinner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    max-width: 1200px
}

.opn .titleimgcol {
    position: relative
}

.opn .titleimgwrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621;
    position: relative
}

.opn .titleimgwrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, #ffffff59 0%, transparent 60%);
    pointer-events: none
}

.opn .titleimgwrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block
}

.opn .titletextcol {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.opn .titlelabel {
    font-size: 14px;
    letter-spacing: .12em;
    color: #6C7980;
    text-transform: uppercase;
    line-height: 1.4
}

.opn .titleh1 {
    font-size: 52px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #044956;
    margin: 0
}

.opn .titleh1 .uline {
    text-decoration: underline;
    text-decoration-color: #6C7980;
    text-underline-offset: 6px
}

.opn .titledesc {
    font-size: 18px;
    line-height: 1.6;
    color: #2a4a50;
    max-width: 520px
}

.opn .titlebtn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border: 3px solid #044956;
    border-radius: 3px;
    background: transparent;
    color: #044956;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease-out, color .15s ease-out, transform .14s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    overflow: hidden;
    align-self: flex-start
}

.opn .titlebtn:hover {
    background: #044956;
    color: #fff;
    transform: scale(0.97)
}

.opn .titlebtn:active {
    transform: scale(0.95)
}

.opn .titlebtn .ripple {
    position: absolute;
    border-radius: 0;
    background: #ffffff40;
    transform: scale(0);
    animation: ripout .45s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none
}

@keyframes ripout {
    to {
        transform: scale(4);
        opacity: 0
    }
}

.opn .titleinner {
    animation: maskreveal .55s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes maskreveal {
    from {
        clip-path: inset(40% 40% 40% 40%);
        opacity: 0
    }

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

.opn .whosec {
    padding: 96px 48px 48px;
    background: #E1EAEC;
    border-top: 3px solid #E1EAEC;
    border-bottom: 3px solid #044956
}

.opn .whohead {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #044956;
    margin: 0 0 8px
}

.opn .whosub {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    max-width: 560px;
    margin: 0 0 48px
}

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

.opn .whocard {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 2px 6px 18px -1px #04495617;
    transition: transform .16s ease-out, box-shadow .16s ease-out;
    border-top: 3px solid #044956
}

.opn .whocard:hover {
    transform: scale(0.97);
    box-shadow: 2px 2px 3px -1px #0449560d
}

.opn .whocard h4 {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    margin: 0 0 12px;
    letter-spacing: -.01em
}

.opn .whocard p {
    font-size: 14px;
    line-height: 1.6;
    color: #2a4a50;
    margin: 0
}

.opn .whoimgcol {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    align-items: center
}

.opn .whoimgwrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621
}

.opn .whoimgwrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block
}

.opn .whotext {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.opn .whotext p {
    font-size: 16px;
    line-height: 1.6;
    color: #044956;
    margin: 0
}

.opn .whotext p.narrow {
    font-size: 14px;
    color: #6C7980;
    max-width: 280px
}

.opn .peopsec {
    padding: 48px 48px 96px;
    background: #044956;
    border-top: 3px solid #044956;
    border-bottom: 3px solid #E1EAEC
}

.opn .peophead {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #E1EAEC;
    margin: 0 0 8px
}

.opn .peopsub {
    font-size: 16px;
    line-height: 1.6;
    color: #e1eaecb3;
    margin: 0 0 48px
}

.opn .peopgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.opn .peopcard {
    background: #ffffff0f;
    border-radius: 12px;
    padding: 24px;
    border-top: 3px solid #e1eaec4d;
    transition: background .18s ease-out, transform .14s cubic-bezier(0.4, 0, 0.6, 1)
}

.opn .peopcard:hover {
    background: #ffffff1a;
    transform: scale(0.97)
}

.opn .pullquote {
    font-size: 18px;
    line-height: 1.6;
    color: #E1EAEC;
    font-style: italic;
    margin: 0 0 16px;
    padding: 0 0 0 16px;
    border-left: 0;
    position: relative
}

.opn .pullquote::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: calc(100% - 8px);
    background: #6C7980;
    border-radius: 3px
}

.opn .peopname {
    font-size: 14px;
    color: #e1eaec99;
    line-height: 1.4;
    margin: 0
}

.opn .bigquote {
    margin-top: 48px;
    background: #ffffff0a;
    border-radius: 12px;
    padding: 48px;
    border-top: 3px solid #6C7980;
    position: relative
}

.opn .bigquote svg {
    position: absolute;
    top: 24px;
    left: 24px;
    opacity: .15
}

.opn .bigquotetext {
    font-size: 24px;
    line-height: 1.6;
    color: #E1EAEC;
    font-style: italic;
    margin: 0 0 24px;
    padding-left: 48px
}

.opn .bigquoteattr {
    font-size: 14px;
    color: #e1eaec99;
    padding-left: 48px;
    display: block
}

.opn .peopsecimg {
    margin-top: 48px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621
}

.opn .peopsecimg img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

.opn .invsec {
    padding: 96px 48px 48px;
    background: #fff;
    border-top: 3px solid #E1EAEC;
    border-bottom: 3px solid #E1EAEC
}

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

.opn .invleft {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.opn .invhead {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #044956;
    margin: 0
}

.opn .invp {
    font-size: 16px;
    line-height: 1.6;
    color: #2a4a50;
    margin: 0
}

.opn .invp.narrow {
    font-size: 14px;
    color: #6C7980;
    max-width: 320px
}

.opn .invimgwrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 6px 18px -1px #04495617
}

.opn .invimgwrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block
}

.opn .invright {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.opn .invitem {
    background: #E1EAEC;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 2px 2px 3px -1px #0449560d;
    transition: transform .15s ease-out;
    border-top: 3px solid #6C7980
}

.opn .invitem:hover {
    transform: scale(0.97)
}

.opn .invitem h5 {
    font-size: 16px;
    line-height: 1.4;
    color: #044956;
    margin: 0 0 8px;
    font-weight: 700
}

.opn .invitem p {
    font-size: 14px;
    line-height: 1.6;
    color: #2a4a50;
    margin: 0
}

.opn .invnum {
    font-size: 36px;
    font-weight: 700;
    color: #044956;
    line-height: 1.15;
    letter-spacing: -.02em
}

.opn .expsec {
    padding: 48px 48px 96px;
    background: #E1EAEC;
    border-top: 3px solid #044956;
    border-bottom: 3px solid #E1EAEC
}

.opn .exphead {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #044956;
    margin: 0 0 8px
}

.opn .expsub {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    max-width: 540px;
    margin: 0 0 48px
}

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

.opn .exptimeline {
    display: flex;
    flex-direction: column;
    gap: 0
}

.opn .expstep {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    position: relative
}

.opn .expstep:not(:last-child) .expline {
    position: absolute;
    left: 22px;
    top: 40px;
    width: 3px;
    height: calc(100% + 0px);
    background: linear-gradient(to bottom, #044956, #E1EAEC)
}

.opn .expnum {
    width: 44px;
    height: 44px;
    border-radius: 3px;
    background: #044956;
    color: #E1EAEC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 1;
    position: relative
}

.opn .expcontent {
    padding: 0 0 48px
}

.opn .expcontent h5 {
    font-size: 16px;
    line-height: 1.4;
    color: #044956;
    margin: 0 0 8px;
    font-weight: 700;
    padding-top: 12px
}

.opn .expcontent p {
    font-size: 14px;
    line-height: 1.6;
    color: #2a4a50;
    margin: 0
}

.opn .expimgcol {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.opn .expimgwrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621
}

.opn .expimgwrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.opn .expcaption {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980;
    margin: 0
}

.opn .shakeme {
    animation: gentleshake 5s 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    display: inline-block
}

@keyframes gentleshake {

    0%,
    88%,
    100% {
        transform: rotate(0deg)
    }

    90% {
        transform: rotate(-2deg)
    }

    92% {
        transform: rotate(2deg)
    }

    94% {
        transform: rotate(-1.5deg)
    }

    96% {
        transform: rotate(1.5deg)
    }

    98% {
        transform: rotate(-0.5deg)
    }
}

.opn .appsec {
    padding: 96px 48px;
    background: #fff;
    border-top: 3px solid #044956;
    border-bottom: 3px solid #044956
}

.opn .apphead {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.015em;
    color: #044956;
    margin: 0 0 8px;
    max-width: 700px
}

.opn .appsub {
    font-size: 16px;
    line-height: 1.6;
    color: #6C7980;
    max-width: 540px;
    margin: 0 0 48px
}

.opn .appgrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 24px
}

.opn .appcard {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 2px 6px 18px -1px #04495617;
    border-top: 3px solid #E1EAEC;
    transition: transform .16s ease-out, box-shadow .18s ease-out
}

.opn .appcard:hover {
    transform: scale(0.97);
    box-shadow: 2px 2px 3px -1px #0449560d
}

.opn .appcard.offset {
    margin-top: 24px
}

.opn .appcard h5 {
    font-size: 18px;
    line-height: 1.4;
    color: #044956;
    margin: 0 0 12px;
    font-weight: 700;
    letter-spacing: -.01em
}

.opn .appcard p {
    font-size: 14px;
    line-height: 1.6;
    color: #2a4a50;
    margin: 0
}

.opn .appcard p.wide {
    font-size: 16px
}

.opn .appbottom {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    background: #E1EAEC;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 2px 6px 18px -1px #04495617
}

.opn .appbottomtext {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.opn .appbottomtext h4 {
    font-size: 24px;
    line-height: 1.4;
    color: #044956;
    margin: 0;
    letter-spacing: -.01em
}

.opn .appbottomtext p {
    font-size: 16px;
    line-height: 1.6;
    color: #2a4a50;
    margin: 0
}

.opn .appbottomtext p.narrow {
    font-size: 14px;
    color: #6C7980
}

.opn .applink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 3px solid #044956;
    border-radius: 3px;
    background: transparent;
    color: #044956;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease-out, color .15s ease-out, transform .14s cubic-bezier(0.4, 0, 0.6, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden
}

.opn .applink:hover {
    background: #044956;
    color: #fff;
    transform: scale(0.97)
}

.opn .appimgwrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 2px 9px 36px -1px #04495621
}

.opn .appimgwrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

@media (max-width: 1280px) {
    .opn .titleinner {
        grid-template-columns: 1fr 1.5fr;
        gap: 24px
    }

    .opn .whogrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .opn .appgrid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .opn .titlesec {
        padding: 24px 24px 48px
    }

    .opn .titleinner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .opn .titleh1 {
        font-size: 36px
    }

    .opn .whosec {
        padding: 48px 24px 24px
    }

    .opn .whogrid {
        grid-template-columns: 1fr
    }

    .opn .whoimgcol {
        grid-template-columns: 1fr
    }

    .opn .peopsec {
        padding: 24px 24px 48px
    }

    .opn .peopgrid {
        grid-template-columns: 1fr
    }

    .opn .bigquotetext {
        font-size: 18px;
        padding-left: 24px
    }

    .opn .bigquoteattr {
        padding-left: 24px
    }

    .opn .invsec {
        padding: 48px 24px 24px
    }

    .opn .invlayout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .opn .expsec {
        padding: 24px 24px 48px
    }

    .opn .explayout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .opn .appsec {
        padding: 48px 24px
    }

    .opn .appgrid {
        grid-template-columns: 1fr
    }

    .opn .appcard.offset {
        margin-top: 0
    }

    .opn .appbottom {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px
    }
}

@media (max-width: 390px) {
    .opn .titleh1 {
        font-size: 24px
    }

    .opn .titledesc {
        font-size: 16px
    }

    .opn .peophead,
    .opn .whohead,
    .opn .invhead,
    .opn .exphead,
    .opn .apphead {
        font-size: 24px
    }

    .opn .bigquotetext {
        font-size: 16px
    }

    .opn .titlesec,
    .opn .whosec,
    .opn .peopsec,
    .opn .invsec,
    .opn .expsec,
    .opn .appsec {
        padding-left: 12px;
        padding-right: 12px
    }
}

.successPage {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 24px;
    background: #fff;
    max-width: 1440px;
    margin: 0 auto
}

.successPage .successWrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.successPage .iconBox {
    width: 72px;
    height: 72px;
    margin: 0 auto 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #044956;
    border-radius: 12px;
    box-shadow: 2px 6px 18px -1px #04495617
}

.successPage .iconBox svg {
    display: block
}

.successPage .successTitle {
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #044956;
    margin: 0 0 8px;
    position: relative;
    display: inline-block
}

.successPage .successTitle::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6C7980;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -4px
}

.successPage .successSub {
    font-size: 18px;
    line-height: 1.6;
    color: #6C7980;
    margin: 0 0 48px;
    padding: 0 12px
}

.successPage .dividerLine {
    width: 48px;
    height: 3px;
    background: conic-gradient(from 120deg, #044956, #6C7980, #E1EAEC, #044956);
    border-radius: 3px;
    margin: 0 auto 48px
}

.successPage .infoCard {
    background: #E1EAEC;
    border-radius: 12px;
    padding: 24px;
    margin: 0 0 48px;
    text-align: left;
    box-shadow: 2px 2px 3px -1px #0449560d
}

.successPage .infoCard .cardLabel {
    font-size: 14px;
    line-height: 1.4;
    color: #6C7980;
    margin: 0 0 8px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.successPage .infoCard .cardText {
    font-size: 16px;
    line-height: 1.6;
    color: #044956;
    margin: 0
}

.successPage .actionRow {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.successPage .btnPrimary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.4;
    color: #044956;
    background: transparent;
    border: 3px solid #044956;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 2px 6px 18px -1px #04495617;
    transition: transform .18s ease-out, box-shadow .15s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    overflow: hidden
}

.successPage .btnPrimary:hover {
    transform: scale(0.97);
    box-shadow: 2px 2px 3px -1px #0449560d
}

.successPage .btnPrimary:focus {
    outline: 3px solid #044956;
    outline-offset: 3px
}

.successPage .btnSecondary {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.4;
    color: #6C7980;
    background: transparent;
    border: 3px solid #6C7980;
    border-radius: 3px;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s ease-out, box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.successPage .btnSecondary:hover {
    transform: scale(0.97);
    box-shadow: 2px 2px 3px -1px #6c798017
}

.successPage .btnSecondary:focus {
    outline: 3px solid #6C7980;
    outline-offset: 3px
}

.successPage .footNote {
    font-size: 14px;
    line-height: 1.6;
    color: #6C7980;
    margin: 48px 0 0
}

.successPage .footNote a {
    color: #044956;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .12s ease-out
}

.successPage .footNote a:hover {
    opacity: .75
}

@media (max-width: 768px) {
    .successPage {
        padding: 48px 24px
    }

    .successPage .successTitle {
        font-size: 24px
    }

    .successPage .successSub {
        font-size: 16px
    }

    .successPage .actionRow {
        flex-direction: column;
        align-items: stretch
    }

    .successPage .btnPrimary,
    .successPage .btnSecondary {
        text-align: center
    }
}

@media (max-width: 390px) {
    .successPage {
        padding: 48px 12px
    }

    .successPage .iconBox {
        margin-bottom: 24px
    }

    .successPage .successTitle {
        font-size: 24px
    }
}