html,
body {
    margin: 0;
    padding: 0
}

body {
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: 'Public Sans', sans-serif
}

.hd-plate {
    background: #FBFBFB;
    border-bottom: 2px solid #FEF876;
    box-shadow: 0 4px 14px -2px #fef87614;
    position: relative;
    z-index: 100
}

.hd-top-bar {
    background: #FEF876;
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto
}

.hd-contact-link {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1b1b1b;
    text-decoration: none;
    letter-spacing: .02em;
    line-height: 1.4;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background-color .12s ease-out, color .12s ease-out;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.hd-contact-link:focus {
    background-color: #fef87666;
    outline: 2px solid #EC3E33;
    outline-offset: 2px
}

.hd-contact-link:hover {
    background-color: #ec3e331a;
    color: #EC3E33
}

.hd-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.hd-contact-sep {
    width: 1px;
    height: 18px;
    background: #1b1b1b40;
    display: inline-block
}

.hd-mid-row {
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 40px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.hd-logo-anchor {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 28px;
    background: #fff;
    border: 1.5px solid #FEF876;
    box-shadow: 0 3px 6px -2px #fef8760f;
    transition: box-shadow .15s ease-out, border-color .15s ease-out
}

.hd-logo-anchor:hover {
    box-shadow: 0 4px 14px -2px #fef87614;
    border-color: #EC3E33
}

.hd-logo-anchor:focus {
    background-color: #fef8764d;
    outline: 2px solid #EC3E33;
    outline-offset: 3px
}

.hd-logo-img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block
}

.hd-brand-name {
    font-family: 'Public Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    text-align: center;
    position: relative
}

.hd-brand-name-accent {
    display: inline-block;
    position: relative
}

.hd-brand-name-accent::after {
    content: '';
    display: block;
    height: 4px;
    border-radius: 3px;
    background: #EC3E33;
    width: 100%;
    margin-top: 4px
}

.hd-nav-row {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px 24px;
    display: flex;
    justify-content: center
}

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

.hd-nav-item {
    display: flex;
    align-items: center
}

.hd-nav-link {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.4;
    color: #1b1b1b;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    position: relative;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: background-color .1s ease-out, color .1s ease-out
}

.hd-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 24px;
    right: 24px;
    height: 2px;
    border-radius: 3px;
    background: #EC3E33;
    width: 0;
    transition: width .25s ease-out
}

.hd-nav-link:hover::after {
    width: calc(100% - 48px)
}

.hd-nav-link:hover {
    background-color: #fef87659;
    color: #1b1b1b
}

.hd-nav-link:focus {
    background-color: #fef87680;
    outline: 2px solid #EC3E33;
    outline-offset: 2px
}

.hd-nav-link-active {
    background-color: #FEF876;
    color: #1b1b1b
}

.hd-nav-link-active::after {
    width: calc(100% - 48px)
}

.hd-nav-dot {
    width: 4px;
    height: 4px;
    border-radius: 0;
    background: #EC3E33;
    display: inline-block;
    margin: 0 4px;
    flex-shrink: 0;
    transform: rotate(45deg)
}

.ft-plate {
    background: #1b1b1b;
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden
}

.ft-plate-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px
}

.ft-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex-shrink: 0;
    min-width: 200px
}

.ft-logo-pod {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 28px;
    background: #FBFBFB;
    border: 1.5px solid #FEF876;
    box-shadow: 0 3px 6px -2px #fef8760f;
    width: fit-content;
    transition: box-shadow .15s ease-out
}

.ft-logo-pod:hover {
    box-shadow: 0 4px 14px -2px #fef87614
}

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

.ft-brand-label {
    font-family: 'Public Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FEF876
}

.ft-addr-block {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ft-addr-line {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #c8c8c8
}

.ft-contact-link {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #c8c8c8;
    text-decoration: none;
    transition: color .12s ease-out;
    display: inline-block
}

.ft-contact-link:hover {
    color: #FEF876
}

.ft-contact-link:focus {
    background-color: #fef87626;
    outline: 2px solid #FEF876;
    outline-offset: 2px;
    border-radius: 3px
}

.ft-right-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    flex: 1
}

.ft-big-type {
    font-family: 'Public Sans', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #2e2e2e;
    text-align: right;
    user-select: none;
    pointer-events: none
}

.ft-nav-deck {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px
}

.ft-nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0
}

.ft-nav-item {
    display: flex;
    align-items: center
}

.ft-nav-link {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.4;
    color: #FBFBFB;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 3px;
    min-height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color .1s ease-out, background-color .1s ease-out
}

.ft-nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    height: 1.5px;
    background: #FEF876;
    width: 0;
    border-radius: 3px;
    transition: width .28s ease-out
}

.ft-nav-link:hover::after {
    width: calc(100% - 24px)
}

.ft-nav-link:hover {
    color: #FEF876
}

.ft-nav-link:focus {
    background-color: #fef8761f;
    outline: 2px solid #FEF876;
    outline-offset: 2px
}

.ft-nav-divider {
    width: 1px;
    height: 14px;
    background: #3a3a3a;
    display: inline-block;
    margin: 0 4px
}

.ft-bottom-bar {
    max-width: 1500px;
    margin: 40px auto 0;
    padding-top: 24px;
    border-top: 1px solid #2e2e2e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.ft-copy {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #5a5a5a
}

.ft-copy-accent {
    color: #FEF876;
    font-weight: 700
}

.ft-legal-link {
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #5a5a5a;
    text-decoration: none;
    transition: color .12s ease-out
}

.ft-legal-link:hover {
    color: #FEF876
}

.ft-legal-link:focus {
    background-color: #fef8761f;
    outline: 2px solid #FEF876;
    outline-offset: 2px;
    border-radius: 3px
}

@media (max-width: 900px) {
    .hd-top-bar {
        padding: 8px 24px
    }

    .hd-mid-row {
        padding: 24px 24px 12px;
        flex-direction: column;
        align-items: center;
        gap: 12px
    }

    .hd-logo-anchor {
        position: static;
        transform: none
    }

    .hd-nav-row {
        padding: 0 24px 24px
    }

    .ft-plate {
        padding: 40px 24px 24px
    }

    .ft-plate-inner {
        flex-direction: column;
        gap: 40px
    }

    .ft-right-col {
        align-items: flex-start
    }

    .ft-big-type {
        font-size: 36px;
        text-align: left
    }

    .ft-nav-links {
        justify-content: flex-start
    }

    .ft-nav-deck {
        align-items: flex-start
    }

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

.legal-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px
}

.legal-wrapper h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin-bottom: 40px;
    margin-top: 0
}

.legal-wrapper h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin-top: 80px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #FEF876
}

.legal-wrapper h3 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #111;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 12px
}

.legal-wrapper h4 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #222;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 8px
}

.legal-wrapper h5 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #222;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 8px
}

.legal-wrapper h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #444;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 8px
}

.legal-wrapper p {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #222;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 72ch
}

.legal-wrapper ul {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none
}

.legal-wrapper ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter
}

.legal-wrapper ul li {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #222;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    max-width: 72ch
}

.legal-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    background-color: #EC3E33;
    border-radius: 0
}

.legal-wrapper ol li {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #222;
    margin-bottom: 8px;
    padding-left: 32px;
    position: relative;
    max-width: 72ch;
    counter-increment: policy-counter
}

.legal-wrapper ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
    font-weight: 700;
    color: #EC3E33;
    letter-spacing: .02em;
    line-height: 1.6;
    min-width: 24px
}

.legal-wrapper ul ul,
.legal-wrapper ol ol,
.legal-wrapper ul ol,
.legal-wrapper ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.legal-wrapper em,
.legal-wrapper i {
    font-style: italic;
    color: #333
}

.legal-wrapper hr {
    border: none;
    border-top: 1px solid #DDD;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 3px 6px -2px #fef8760f
}

@media (max-width: 768px) {
    .legal-wrapper {
        padding: 40px 24px
    }

    .legal-wrapper h1 {
        font-size: 36px;
        margin-bottom: 24px
    }

    .legal-wrapper h2 {
        font-size: 36px;
        margin-top: 40px
    }

    .legal-wrapper h3 {
        margin-top: 24px
    }

    .legal-wrapper p,
    .legal-wrapper ul li,
    .legal-wrapper ol li {
        font-size: 18px
    }
}

@media (max-width: 480px) {
    .legal-wrapper {
        padding: 24px 12px
    }

    .legal-wrapper h1 {
        font-size: 36px
    }

    .legal-wrapper h2 {
        font-size: 18px
    }
}

.lpd {
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: clip
}

.lpd .pg_strip {
    display: flex;
    flex-direction: row;
    min-height: 520px;
    position: relative
}

.lpd .pg_strip .img_col {
    width: 340px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden
}

.lpd .pg_strip .img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.lpd .pg_strip .img_col::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #fef87661 0%, transparent 60%);
    pointer-events: none
}

.lpd .pg_strip .img_col .img_skeleton {
    position: absolute;
    inset: 0;
    background: #d8d8d8;
    z-index: 1;
    transition: opacity .28s ease-out
}

.lpd .pg_strip .img_col img.loaded+.img_skeleton {
    opacity: 0;
    pointer-events: none
}

.lpd .pg_strip .txt_col {
    flex: 1;
    padding: 80px;
    background: #FBFBFB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.lpd .pg_strip .txt_col .deco_lines {
    position: absolute;
    top: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.lpd .pg_strip .txt_col .deco_lines span {
    display: block;
    width: 80px;
    height: 1px;
    background: #FEF876;
    opacity: .7
}

.lpd .pg_strip .txt_col .deco_lines span:nth-child(2) {
    width: 56px
}

.lpd .pg_strip .txt_col .deco_lines span:nth-child(3) {
    width: 36px
}

.lpd .pg_strip .txt_col .cat_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px
}

.lpd .pg_strip .txt_col .cat_badge {
    background: #EC3E33;
    color: #FBFBFB;
    font-size: 14px;
    letter-spacing: .02em;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600;
    line-height: 1.4
}

.lpd .pg_strip .txt_col .usr_badge {
    font-size: 14px;
    letter-spacing: .01em;
    color: #555;
    line-height: 1.4;
    border: 1px solid #d0d0d0;
    padding: 4px 12px;
    border-radius: 3px
}

.lpd .pg_strip .txt_col .pg_h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 800;
    margin: 0 0 24px;
    max-width: 700px;
    position: relative
}

.lpd .pg_strip .txt_col .pg_h1::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 3px;
    background: #FEF876;
    margin-right: 12px;
    vertical-align: middle;
    border-radius: 0;
    flex-shrink: 0
}

.lpd .pg_strip .txt_col .pg_sub {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #333;
    max-width: 560px;
    margin: 0 0 40px
}

.lpd .pg_strip .txt_col .meta_row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center
}

.lpd .pg_strip .txt_col .meta_item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lpd .pg_strip .txt_col .meta_lbl {
    font-size: 14px;
    letter-spacing: .02em;
    color: #888;
    line-height: 1.4;
    text-transform: uppercase
}

.lpd .pg_strip .txt_col .meta_val {
    font-size: 18px;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    line-height: 1.4
}

.lpd .pg_strip .txt_col .meta_sep {
    width: 1px;
    height: 36px;
    background: #d0d0d0;
    flex-shrink: 0
}

.lpd .detail_body {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    padding: 80px;
    background: #fff;
    align-items: start
}

.lpd .detail_body .body_left {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.lpd .detail_body .body_left .desc_block {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lpd .detail_body .body_left .desc_block .blk_head {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #111;
    position: relative
}

.lpd .detail_body .body_left .desc_block .blk_head::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #FEF876
}

.lpd .detail_body .body_left .desc_block .desc_txt {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #222
}

.lpd .detail_body .body_left .desc_block .desc_txt p {
    margin: 0 0 12px
}

.lpd .detail_body .body_left .desc_block .desc_txt p:last-child {
    margin-bottom: 0
}

.lpd .detail_body .body_left .desc_block .desc_txt h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    margin: 24px 0 12px
}

.lpd .detail_body .body_left .desc_block .desc_txt h3 {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    margin: 24px 0 8px
}

.lpd .detail_body .body_left .desc_block .desc_txt em {
    font-style: italic;
    color: #333
}

.lpd .detail_body .body_left .desc_block .desc_txt ul {
    padding-left: 24px;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lpd .detail_body .body_left .desc_block .desc_txt li {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #222
}

.lpd .detail_body .body_left .desc_block .desc_txt dl {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0
}

.lpd .detail_body .body_left .desc_block .desc_txt dt {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .01em;
    font-weight: 700;
    color: #111
}

.lpd .detail_body .body_left .desc_block .desc_txt dd {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #333;
    margin-left: 24px
}

.lpd .detail_body .body_left .prog_block {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lpd .detail_body .body_left .prog_block .blk_head {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #111;
    position: relative
}

.lpd .detail_body .body_left .prog_block .blk_head::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 2px;
    background: #EC3E33
}

.lpd .detail_body .body_left .prog_block .prog_txt {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #222
}

.lpd .detail_body .body_left .prog_block .prog_txt p {
    margin: 0 0 12px
}

.lpd .detail_body .body_left .prog_block .prog_txt p:last-child {
    margin-bottom: 0
}

.lpd .detail_body .body_left .prog_block .prog_txt h2 {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 700;
    color: #111;
    letter-spacing: .01em;
    margin: 24px 0 12px
}

.lpd .detail_body .body_left .prog_block .prog_txt em {
    font-style: italic;
    color: #333
}

.lpd .detail_body .body_left .prog_block .prog_txt ul {
    padding-left: 0;
    margin: 12px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none
}

.lpd .detail_body .body_left .prog_block .prog_txt li {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #222;
    padding-left: 24px;
    position: relative
}

.lpd .detail_body .body_left .prog_block .prog_txt li::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 2px;
    background: #EC3E33;
    border-radius: 0
}

.lpd .detail_body .body_left .prog_block .prog_txt dl {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0
}

.lpd .detail_body .body_left .prog_block .prog_txt dt {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
    letter-spacing: .01em
}

.lpd .detail_body .body_left .prog_block .prog_txt dd {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    letter-spacing: .01em;
    margin-left: 24px
}

.lpd .detail_body .body_left .prog_block .prog_txt details {
    border: 1px solid #e0e0e0;
    border-radius: 3px;
    padding: 12px 24px;
    margin: 8px 0
}

.lpd .detail_body .body_left .prog_block .prog_txt summary {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    letter-spacing: .01em;
    list-style: none
}

.lpd .detail_body .body_left .prog_block .prog_txt summary::-webkit-details-marker {
    display: none
}

.lpd .detail_body .body_left .prog_block .prog_txt details[open] summary {
    margin-bottom: 12px;
    color: #EC3E33
}

.lpd .detail_body .side_card {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 44px -2px #fef87624
}

.lpd .detail_body .side_card .card_top {
    background: #EC3E33;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative
}

.lpd .detail_body .side_card .card_top .scanline_bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0
}

.lpd .detail_body .side_card .card_top .scanline_bg::before {
    content: "";
    position: absolute;
    inset: -100% 0 0 0;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 5px, #ffffff0a 5px, #ffffff0a 6px);
    animation: scanline_drift 14s linear infinite
}

@keyframes scanline_drift {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(50%)
    }
}

.lpd .detail_body .side_card .card_top .price_lbl {
    font-size: 14px;
    letter-spacing: .02em;
    color: #fbfbfbbf;
    text-transform: uppercase;
    line-height: 1.4
}

.lpd .detail_body .side_card .card_top .price_val {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FEF876;
    font-weight: 800
}

.lpd .detail_body .side_card .card_top .price_note {
    font-size: 14px;
    letter-spacing: .01em;
    color: #fbfbfbd9;
    line-height: 1.4
}

.lpd .detail_body .side_card .card_top .price_desc {
    font-size: 14px;
    letter-spacing: .01em;
    color: #fbfbfbb3;
    line-height: 1.6;
    margin-top: 4px
}

.lpd .detail_body .side_card .card_mid {
    background: #FBFBFB;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lpd .detail_body .side_card .card_mid .spec_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e8e8e8
}

.lpd .detail_body .side_card .card_mid .spec_row:last-of-type {
    border-bottom: none
}

.lpd .detail_body .side_card .card_mid .spec_k {
    font-size: 14px;
    letter-spacing: .02em;
    color: #777;
    text-transform: uppercase;
    line-height: 1.4
}

.lpd .detail_body .side_card .card_mid .spec_v {
    font-size: 14px;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    line-height: 1.4
}

.lpd .detail_body .side_card .card_mid .seats_v {
    color: #EC3E33
}

.lpd .detail_body .side_card .card_bot {
    background: #FBFBFB;
    padding: 0 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lpd .detail_body .side_card .card_bot .enroll_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #111;
    color: #FEF876;
    font-size: 18px;
    letter-spacing: .02em;
    font-weight: 700;
    padding: 24px 40px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.4;
    transition: background-color .25s ease-out, color .18s ease-out;
    box-shadow: 0 4px 14px -2px #fef87614
}

.lpd .detail_body .side_card .card_bot .enroll_btn:hover {
    background: #FEF876;
    color: #111
}

.lpd .detail_body .side_card .card_bot .enroll_btn:focus {
    outline: 3px solid #EC3E33;
    outline-offset: 2px
}

.lpd .detail_body .side_card .card_bot .enroll_btn .btn_arr {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform .22s ease-out
}

.lpd .detail_body .side_card .card_bot .enroll_btn:hover .btn_arr {
    transform: translateX(4px)
}

.lpd .detail_body .side_card .card_bot .contact_lnk {
    font-size: 14px;
    letter-spacing: .01em;
    color: #555;
    text-align: center;
    line-height: 1.6
}

.lpd .detail_body .side_card .card_bot .contact_lnk a {
    color: #EC3E33;
    text-decoration: none;
    position: relative;
    transition: color .18s ease-out
}

.lpd .detail_body .side_card .card_bot .contact_lnk a::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #EC3E33;
    transition: width .28s ease-out
}

.lpd .detail_body .side_card .card_bot .contact_lnk a:hover::after {
    width: 100%
}

.lpd .detail_body .side_card .card_bot .contact_lnk a:hover {
    color: #c02a20
}

.lpd .dbl_divider {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 80px
}

.lpd .dbl_divider span {
    display: block;
    height: 1px;
    background: #d0d0d0
}

@media (max-width: 1100px) {
    .lpd .pg_strip .img_col {
        width: 240px
    }

    .lpd .pg_strip .txt_col {
        padding: 80px 40px
    }

    .lpd .pg_strip .txt_col .pg_h1 {
        font-size: 36px
    }

    .lpd .detail_body {
        grid-template-columns: 1fr 320px;
        padding: 80px 40px;
        gap: 40px
    }
}

@media (max-width: 800px) {
    .lpd .pg_strip {
        flex-direction: column
    }

    .lpd .pg_strip .img_col {
        width: 100%;
        height: 280px
    }

    .lpd .pg_strip .txt_col {
        padding: 40px 24px
    }

    .lpd .pg_strip .txt_col .pg_h1 {
        font-size: 36px
    }

    .lpd .detail_body {
        grid-template-columns: 1fr;
        padding: 40px 24px;
        gap: 40px
    }

    .lpd .detail_body .side_card {
        position: static
    }

    .lpd .dbl_divider {
        padding: 0 24px
    }
}

.bys-pg {
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: clip
}

.bys-pg .split-frame {
    display: grid;
    grid-template-columns: 30% 70%;
    min-height: 92vh;
    position: relative
}

.bys-pg .split-left {
    background: #FEF876;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 40px;
    position: relative
}

.bys-pg .split-left::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: #EC3E33
}

.bys-pg .split-left::after {
    content: "";
    position: absolute;
    bottom: 40px;
    left: 24px;
    right: 24px;
    height: 1px;
    background: #ec3e334d
}

.bys-pg .left-line-v {
    position: absolute;
    top: 40px;
    bottom: 40px;
    right: 24px;
    width: 1px;
    background: #ec3e3333
}

.bys-pg .left-stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px
}

.bys-pg .left-stat-num {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #EC3E33;
    font-weight: 900
}

.bys-pg .left-stat-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #222;
    text-transform: uppercase;
    max-width: 160px
}

.bys-pg .left-tag {
    font-size: 14px;
    letter-spacing: .02em;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px
}

.bys-pg .split-right {
    display: grid;
    grid-template-columns: 1fr 220px;
    background: #FBFBFB;
    position: relative
}

.bys-pg .right-text-col {
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.bys-pg .page-kicker {
    font-size: 14px;
    letter-spacing: .02em;
    color: #EC3E33;
    text-transform: uppercase;
    margin-bottom: 24px;
    line-height: 1.4
}

.bys-pg .page-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 900;
    margin-bottom: 24px;
    max-width: 560px
}

.bys-pg .page-h1 span {
    display: inline;
    background: conic-gradient(from 200deg at 80% 60%, #FEF876 0deg, #EC3E33 120deg, #FEF876 240deg, #EC3E33 360deg);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.bys-pg .page-desc {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #333;
    max-width: 480px;
    margin-bottom: 40px
}

.bys-pg .pg-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    letter-spacing: .02em;
    color: #111;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #FEF876;
    padding-bottom: 4px;
    width: fit-content;
    transition: border-color .25s ease-out, color .18s ease-out
}

.bys-pg .pg-btn:hover {
    border-color: #EC3E33;
    color: #EC3E33
}

.bys-pg .pg-btn-arrow {
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    display: inline-block
}

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

.bys-pg .right-img-strip {
    position: relative;
    overflow: hidden
}

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

.bys-pg .strip-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 40%, #1111118c 100%);
    pointer-events: none
}

.bys-pg .shape-circ {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid #fef87680;
    top: 80px;
    left: -40px;
    pointer-events: none
}

.bys-pg .shape-sq {
    position: absolute;
    width: 32px;
    height: 32px;
    border-radius: 3px;
    background: #EC3E33;
    opacity: .18;
    bottom: 120px;
    left: 24px;
    pointer-events: none
}

.bys-pg .slide-in {
    opacity: 0;
    transform: translateX(-40px);
    animation: bys-slide .38s ease-out forwards
}

.bys-pg .slide-in.d1 {
    animation-delay: .05s
}

.bys-pg .slide-in.d2 {
    animation-delay: .15s
}

.bys-pg .slide-in.d3 {
    animation-delay: .25s
}

.bys-pg .slide-in.d4 {
    animation-delay: .35s
}

@keyframes bys-slide {
    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.bys-pg .detail-band {
    background: #111;
    padding: 80px 0;
    position: relative
}

.bys-pg .detail-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: conic-gradient(from 90deg at 50% 0%, #FEF876 0deg, #EC3E33 180deg, #FEF876 360deg)
}

.bys-pg .detail-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.bys-pg .det-left {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.bys-pg .det-h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FBFBFB;
    font-weight: 800;
    position: relative;
    display: inline-block
}

.bys-pg .det-h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #FEF876;
    margin-top: 8px;
    animation: bys-underline .5s .4s ease-out forwards
}

@keyframes bys-underline {
    to {
        width: 100%
    }
}

.bys-pg .det-body {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ccc;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.bys-pg .det-body p {
    margin: 0
}

.bys-pg .det-body strong {
    color: #FEF876;
    font-weight: 700
}

.bys-pg .det-right {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.bys-pg .heatmap-label {
    font-size: 14px;
    letter-spacing: .02em;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 12px
}

.bys-pg .heatmap-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px
}

.bys-pg .hm-cell {
    aspect-ratio: 1;
    border-radius: 3px;
    transition: transform .18s ease-out;
    cursor: default
}

.bys-pg .hm-cell:hover {
    transform: scale(1.15)
}

.bys-pg .hm-0 {
    background: #fef87614
}

.bys-pg .hm-1 {
    background: #fef87638
}

.bys-pg .hm-2 {
    background: #fef8766b
}

.bys-pg .hm-3 {
    background: #fef876a6
}

.bys-pg .hm-4 {
    background: #FEF876
}

.bys-pg .hm-r2 {
    background: #ec3e3373
}

.bys-pg .hm-r3 {
    background: #ec3e33bf
}

.bys-pg .hm-r4 {
    background: #EC3E33
}

.bys-pg .heatmap-legend {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px
}

.bys-pg .hm-leg-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    color: #777;
    letter-spacing: .01em
}

.bys-pg .hm-leg-dot {
    width: 12px;
    height: 12px;
    border-radius: 3px
}

.bys-pg .ring-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap
}

.bys-pg .ring-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.bys-pg .ring-svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg)
}

.bys-pg .ring-track {
    fill: none;
    stroke: #ffffff14;
    stroke-width: 6
}

.bys-pg .ring-fill-y {
    fill: none;
    stroke: #FEF876;
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset .38s ease-out
}

.bys-pg .ring-fill-r {
    fill: none;
    stroke: #EC3E33;
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset .38s ease-out
}

.bys-pg .ring-val {
    font-size: 14px;
    letter-spacing: .01em;
    color: #FBFBFB;
    font-weight: 700;
    text-align: center;
    line-height: 1.4
}

.bys-pg .ring-desc {
    font-size: 14px;
    letter-spacing: .01em;
    color: #888;
    text-align: center;
    line-height: 1.4;
    max-width: 80px
}

.bys-pg .expert-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #fef8760f;
    border-radius: 8px;
    border: 1px solid #fef87626;
    box-shadow: 0 4px 14px -2px #fef87614
}

.bys-pg .expert-port {
    width: 72px;
    height: 108px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0
}

.bys-pg .expert-port img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.8) brightness(0.95)
}

.bys-pg .expert-info {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.bys-pg .expert-name {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #FBFBFB;
    font-weight: 700
}

.bys-pg .expert-role {
    font-size: 14px;
    letter-spacing: .02em;
    color: #FEF876;
    text-transform: uppercase;
    line-height: 1.4
}

.bys-pg .expert-quote {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #aaa
}

.bys-pg .img-block-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 44px -2px #fef87624
}

.bys-pg .img-block-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.75) brightness(0.9)
}

.bys-pg .img-overlay-cap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, #111111d9 0%, transparent 100%);
    font-size: 14px;
    letter-spacing: .02em;
    color: #FEF876;
    text-transform: uppercase;
    line-height: 1.4
}

@media (max-width: 1100px) {
    .bys-pg .split-frame {
        grid-template-columns: 1fr
    }

    .bys-pg .split-left {
        padding: 40px 24px;
        min-height: auto
    }

    .bys-pg .split-right {
        grid-template-columns: 1fr
    }

    .bys-pg .right-img-strip {
        height: 280px
    }

    .bys-pg .right-text-col {
        padding: 40px 24px
    }

    .bys-pg .page-h1 {
        font-size: 36px
    }

    .bys-pg .detail-inner {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px
    }
}

@media (max-width: 700px) {
    .bys-pg .ring-row {
        gap: 12px
    }

    .bys-pg .heatmap-grid {
        grid-template-columns: repeat(7, 1fr)
    }

    .bys-pg .expert-strip {
        flex-direction: column;
        align-items: flex-start
    }
}

.lrn-prog {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden
}

.lrn-prog .pg-band {
    width: 100%;
    height: 4px;
    background: #FEF876;
    position: relative
}

.lrn-prog .pg-band::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 120px;
    height: 4px;
    background: #EC3E33
}

.lrn-prog .title-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    margin: 40px 24px;
    position: relative
}

.lrn-prog .title-bento::before {
    content: '';
    position: absolute;
    top: 40px;
    right: -12px;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, #FEF876, transparent);
    opacity: .6
}

.lrn-prog .bento-txt {
    grid-column: 1;
    grid-row: 1 / 3;
    background: #FBFBFB;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    border-radius: 8px 0 0 8px;
    position: relative
}

.lrn-prog .bento-txt::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: conic-gradient(from 180deg at 0% 50%, #FEF876, #EC3E33, #FEF876);
    border-radius: 8px 0 0 8px
}

.lrn-prog .bento-accent {
    display: inline-block;
    background: #FEF876;
    padding: 4px 12px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #111;
    width: fit-content
}

.lrn-prog .bento-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin: 0;
    font-weight: 800
}

.lrn-prog .bento-h1 span {
    display: block;
    font-size: 36px;
    color: #EC3E33;
    font-weight: 400;
    line-height: 1.4
}

.lrn-prog .bento-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    letter-spacing: .01em;
    margin: 0;
    max-width: 520px
}

.lrn-prog .bento-img {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    overflow: hidden;
    border-radius: 0 8px 0 0;
    min-height: 340px
}

.lrn-prog .bento-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
    filter: brightness(0.88);
    transition: filter .28s ease-out
}

.lrn-prog .bento-img:hover img {
    filter: brightness(1)
}

.lrn-prog .bento-stat {
    grid-column: 2;
    grid-row: 2;
    background: #111;
    padding: 24px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    border-radius: 0 0 8px 0
}

.lrn-prog .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lrn-prog .stat-num {
    font-size: 36px;
    font-weight: 800;
    color: #FEF876;
    line-height: 1.1;
    letter-spacing: .01em
}

.lrn-prog .stat-lbl {
    font-size: 14px;
    color: #aaa;
    letter-spacing: .02em;
    line-height: 1.4
}

.lrn-prog .stat-div {
    width: 1px;
    height: 40px;
    background: #fef87633
}

.lrn-prog .divider-diamond {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    margin: 40px 0
}

.lrn-prog .divider-diamond .d-line {
    flex: 1;
    height: 1px;
    background: #ddd
}

.lrn-prog .divider-diamond .d-shape {
    width: 10px;
    height: 10px;
    background: #EC3E33;
    transform: rotate(45deg);
    border-radius: 0;
    flex-shrink: 0
}

.lrn-prog .cards-area {
    padding: 0 24px 40px
}

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

.lrn-prog .prog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 6px -2px #fef8760f 0 4px 14px -2px #fef87614;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .25s ease-out;
    border: 1px solid #eee
}

.lrn-prog .prog-card:hover {
    box-shadow: 0 8px 44px -2px #fef87624
}

.lrn-prog .card-img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    background: #ddd
}

.lrn-prog .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.85);
    transition: filter .32s ease-out
}

.lrn-prog .card-img-wrap:hover img {
    filter: brightness(1)
}

.lrn-prog .card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FEF876;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: .02em
}

.lrn-prog .card-user-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #111;
    color: #FEF876;
    font-size: 14px;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: .01em
}

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

.lrn-prog .card-ttl {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
    letter-spacing: .01em;
    margin: 0;
    position: relative;
    display: inline-block
}

.lrn-prog .card-ttl::after {
    content: '';
    display: block;
    height: 2px;
    background: #FEF876;
    width: 0;
    transition: width .35s ease-out;
    margin-top: 4px
}

.lrn-prog .prog-card:hover .card-ttl::after {
    width: 100%
}

.lrn-prog .card-short {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    letter-spacing: .01em
}

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

.lrn-prog .meta-item {
    font-size: 14px;
    color: #777;
    letter-spacing: .01em;
    display: flex;
    align-items: center;
    gap: 4px
}

.lrn-prog .meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ccc;
    flex-shrink: 0
}

.lrn-prog .card-foot {
    padding: 12px 24px 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #f0f0f0;
    margin-top: auto
}

.lrn-prog .price-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lrn-prog .price-val {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    line-height: 1.1;
    letter-spacing: .01em
}

.lrn-prog .price-des {
    font-size: 14px;
    color: #777;
    letter-spacing: .01em
}

.lrn-prog .price-note {
    font-size: 14px;
    color: #EC3E33;
    letter-spacing: .01em;
    font-weight: 600
}

.lrn-prog .seats-chip {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px
}

.lrn-prog .seats-num {
    font-size: 18px;
    font-weight: 700;
    color: #EC3E33;
    line-height: 1.1
}

.lrn-prog .seats-lbl {
    font-size: 14px;
    color: #999;
    letter-spacing: .01em
}

.lrn-prog .card-cta {
    display: block;
    background: #111;
    color: #FEF876;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 12px 24px;
    margin: 0 24px 24px;
    border-radius: 3px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: color .25s ease-out
}

.lrn-prog .card-cta::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: #FEF876;
    transition: width .32s ease-out;
    z-index: 0
}

.lrn-prog .card-cta:hover::before {
    width: 100%
}

.lrn-prog .card-cta:hover {
    color: #111
}

.lrn-prog .card-cta span {
    position: relative;
    z-index: 1
}

.lrn-prog .card-dur {
    font-size: 14px;
    color: #555;
    letter-spacing: .01em;
    padding: 0 24px 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.lrn-prog .dur-circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FEF876;
    border: 2px solid #111;
    flex-shrink: 0
}

.lrn-prog .info-strip {
    background: #EC3E33;
    margin: 0 24px;
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    overflow: hidden
}

.lrn-prog .info-strip::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: #fef8761f;
    pointer-events: none
}

.lrn-prog .strip-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .strip-h2 {
    font-size: 36px;
    font-weight: 800;
    color: #FEF876;
    line-height: 1.1;
    letter-spacing: .01em;
    margin: 0
}

.lrn-prog .strip-p {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin: 0;
    letter-spacing: .01em;
    opacity: .92
}

.lrn-prog .strip-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center
}

.lrn-prog .feat-stack {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lrn-prog .feat-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.lrn-prog .feat-row.alt {
    flex-direction: row-reverse
}

.lrn-prog .feat-ico {
    width: 32px;
    height: 32px;
    background: #FEF876;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn-prog .feat-ico svg {
    width: 16px;
    height: 16px
}

.lrn-prog .feat-txt {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    letter-spacing: .01em
}

.lrn-prog .divider-diamond.inv .d-line {
    background: #fff3
}

.lrn-prog .testimonials-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 40px 24px
}

.lrn-prog .testi-card {
    background: #FBFBFB;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 3px 6px -2px #ec3e330f
}

.lrn-prog .testi-quote {
    font-size: 18px;
    color: #222;
    line-height: 1.6;
    letter-spacing: .01em;
    margin: 0;
    flex: 1
}

.lrn-prog .testi-person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.lrn-prog .testi-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0
}

.lrn-prog .testi-avatar img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.9);
    transition: filter .28s ease-out
}

.lrn-prog .testi-avatar:hover img {
    filter: brightness(1)
}

.lrn-prog .testi-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    letter-spacing: .02em;
    display: block
}

.lrn-prog .testi-role {
    font-size: 14px;
    color: #777;
    letter-spacing: .01em;
    display: block;
    margin-top: 4px
}

.lrn-prog .testi-accent {
    width: 40px;
    height: 3px;
    background: #FEF876;
    border-radius: 0
}

.lrn-prog .analysis-sec {
    margin: 0 24px 40px;
    background: #111;
    border-radius: 8px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative
}

.lrn-prog .analysis-sec::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, #fef8764d, transparent)
}

.lrn-prog .anlys-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .anlys-tag {
    font-size: 14px;
    color: #FEF876;
    letter-spacing: .02em;
    font-weight: 700;
    text-transform: uppercase
}

.lrn-prog .anlys-h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: .01em;
    margin: 0
}

.lrn-prog .anlys-p {
    font-size: 18px;
    color: #bbb;
    line-height: 1.6;
    letter-spacing: .01em;
    margin: 0
}

.lrn-prog .anlys-img {
    border-radius: 8px;
    overflow: hidden;
    position: relative
}

.lrn-prog .anlys-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.8);
    transition: filter .35s ease-out
}

.lrn-prog .anlys-img:hover img {
    filter: brightness(1)
}

.lrn-prog .steps-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px
}

.lrn-prog .step-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start
}

.lrn-prog .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FEF876;
    color: #111;
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0
}

.lrn-prog .step-txt {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
    letter-spacing: .01em;
    padding-top: 4px
}

.lrn-prog .diag-deco {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: .08
}

.lrn-prog .diag-deco line {
    stroke: #FEF876;
    stroke-width: 1
}

@media (max-width: 1100px) {
    .lrn-prog .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 900px) {
    .lrn-prog .title-bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto
    }

    .lrn-prog .bento-txt {
        grid-column: 1;
        grid-row: 1;
        border-radius: 8px 8px 0 0
    }

    .lrn-prog .bento-img {
        grid-column: 1;
        grid-row: 2;
        min-height: 240px;
        border-radius: 0
    }

    .lrn-prog .bento-img img {
        clip-path: none
    }

    .lrn-prog .bento-stat {
        grid-column: 1;
        grid-row: 3;
        border-radius: 0 0 8px 8px
    }

    .lrn-prog .bento-h1 {
        font-size: 36px
    }

    .lrn-prog .info-strip {
        grid-template-columns: 1fr
    }

    .lrn-prog .testimonials-row {
        grid-template-columns: 1fr
    }

    .lrn-prog .analysis-sec {
        grid-template-columns: 1fr
    }

    .lrn-prog .anlys-img {
        min-height: 200px
    }
}

@media (max-width: 640px) {
    .lrn-prog .cards-grid {
        grid-template-columns: 1fr
    }

    .lrn-prog .bento-txt {
        padding: 24px
    }

    .lrn-prog .bento-h1 {
        font-size: 36px
    }

    .lrn-prog .info-strip {
        padding: 24px;
        margin: 0 12px
    }

    .lrn-prog .analysis-sec {
        margin: 0 12px 40px;
        padding: 24px
    }

    .lrn-prog .cards-area {
        padding: 0 12px 40px
    }

    .lrn-prog .title-bento {
        margin: 24px 12px
    }

    .lrn-prog .testimonials-row {
        padding: 40px 12px
    }

    .lrn-prog .bento-stat {
        flex-wrap: wrap;
        gap: 24px
    }
}

.ctus {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.ctus .bento_grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 4px;
    padding: 80px 40px 40px;
    background: #FBFBFB
}

.ctus .bento_img_cell {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    min-height: 480px
}

.ctus .bento_img_cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform-origin: center center;
    animation: slow_zoom 14s ease-in-out infinite alternate;
    filter: sepia(0.22) saturate(1.3) brightness(0.88)
}

@keyframes slow_zoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.07)
    }
}

.ctus .bento_top_cell {
    grid-column: 2;
    grid-row: 1;
    background: #FEF876;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px
}

.ctus .bento_bottom_cell {
    grid-column: 2;
    grid-row: 2;
    background: #222;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .pg_eyebrow {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #444;
    font-weight: 600
}

.ctus .pg_h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #111;
    font-weight: 800;
    margin: 0
}

.ctus .pg_sub {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    max-width: 380px
}

.ctus .arrow_deco {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    align-self: flex-end
}

.ctus .contact_label {
    font-size: 14px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #FEF876;
    font-weight: 600
}

.ctus .contact_item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus .contact_item_val {
    font-size: 18px;
    line-height: 1.4;
    color: #FBFBFB;
    font-weight: 500;
    text-decoration: none;
    transition: color .28s ease-out
}

.ctus .contact_item_val:hover {
    color: #FEF876
}

.ctus .contact_item_desc {
    font-size: 14px;
    color: #999;
    line-height: 1.4
}

.ctus .divider_dash {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 40px 40px 0;
    background: #FBFBFB
}

.ctus .divider_dash span {
    display: block;
    height: 2px;
    background: #EC3E33;
    border-radius: 3px
}

.ctus .divider_dash span:nth-child(odd) {
    width: 24px
}

.ctus .divider_dash span:nth-child(even) {
    width: 8px
}

.ctus .form_block {
    padding: 40px 40px 80px;
    background: #FBFBFB;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 80px;
    align-items: start
}

.ctus .form_col {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.ctus .form_heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block
}

.ctus .form_heading::after {
    content: '';
    display: block;
    height: 3px;
    background: #EC3E33;
    border-radius: 3px;
    width: 0;
    margin-top: 8px;
    animation: underline_in .38s .5s ease-out forwards
}

@keyframes underline_in {
    to {
        width: 100%
    }
}

.ctus .form_desc {
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin: 0
}

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

.ctus .field_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

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

.ctus .field_lbl {
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #555;
    font-weight: 600
}

.ctus .field_inp {
    border: 2px solid #ddd;
    border-radius: 3px;
    padding: 12px;
    font-size: 18px;
    line-height: 1.4;
    color: #111;
    background: #fff;
    outline: none;
    transition: border-color .18s ease-out, box-shadow .22s ease-out;
    width: 100%;
    box-sizing: border-box
}

.ctus .field_inp::placeholder {
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: .04em;
    color: #aaa
}

.ctus .field_inp:focus {
    border-color: #EC3E33;
    box-shadow: 0 4px 14px -2px #ec3e3314
}

.ctus .field_inp:focus:valid {
    border-color: #333
}

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

.ctus .topic_lbl_head {
    font-size: 14px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #555;
    font-weight: 600
}

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

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

.ctus .topic_opt input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #EC3E33;
    cursor: pointer;
    flex-shrink: 0
}

.ctus .topic_opt_lbl {
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    cursor: pointer
}

.ctus .cond_wrap {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ctus .cond_trigger {
    display: none
}

.ctus .cond_trigger:checked~.cond_field_area {
    display: flex
}

.ctus .cond_field_area {
    display: none;
    flex-direction: column;
    gap: 8px;
    animation: fade_in_field .22s ease-out
}

@keyframes fade_in_field {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }

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

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

.ctus .cond_opt_inp {
    width: 20px;
    height: 20px;
    accent-color: #EC3E33;
    cursor: pointer
}

.ctus .cond_opt_lbl {
    font-size: 18px;
    color: #333;
    cursor: pointer
}

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

.ctus .privacy_chk {
    width: 20px;
    height: 20px;
    accent-color: #EC3E33;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px
}

.ctus .privacy_txt {
    font-size: 14px;
    line-height: 1.6;
    color: #555
}

.ctus .privacy_txt a {
    color: #EC3E33;
    text-decoration: underline;
    transition: color .18s ease-out
}

.ctus .privacy_txt a:hover {
    color: #111
}

.ctus .submit_btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #EC3E33;
    color: #fff;
    border: none;
    border-radius: 3px;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    transition: background .25s ease-out, box-shadow .2s ease-out;
    box-shadow: 0 3px 6px -2px #ec3e330f;
    align-self: flex-start;
    type: submit
}

.ctus .submit_btn:hover {
    background: #c72e24;
    box-shadow: 0 8px 44px -2px #ec3e3324
}

.ctus .submit_btn:focus {
    outline: 3px solid #FEF876;
    outline-offset: 2px
}

.ctus .submit_btn:active {
    background: #a8261d
}

.ctus .submit_arrow {
    display: block;
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.ctus .side_col {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.ctus .side_stat_block {
    background: #FEF876;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 14px -2px #fef87614
}

.ctus .stat_num {
    font-size: 70px;
    line-height: 1.1;
    font-weight: 800;
    color: #111;
    letter-spacing: -.02em
}

.ctus .stat_desc {
    font-size: 18px;
    line-height: 1.6;
    color: #333
}

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

.ctus .side_info_item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 3px 6px -2px #fef8760f
}

.ctus .side_info_lbl {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #EC3E33;
    font-weight: 700
}

.ctus .side_info_val {
    font-size: 18px;
    line-height: 1.4;
    color: #111;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease-out
}

.ctus .side_info_val:hover {
    color: #EC3E33
}

.ctus .corner_bracket {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none
}

.ctus .corner_bracket.tl {
    top: 12px;
    left: 12px;
    border-top: 3px solid #FEF876;
    border-left: 3px solid #FEF876;
    border-radius: 3px 0 0 0
}

.ctus .corner_bracket.br {
    bottom: 12px;
    right: 12px;
    border-bottom: 3px solid #FEF876;
    border-right: 3px solid #FEF876;
    border-radius: 0 0 3px 0
}

.ctus .reveal_1 {
    opacity: 0;
    transform: translateY(18px);
    animation: rev_up .38s .12s ease-out forwards
}

.ctus .reveal_2 {
    opacity: 0;
    transform: translateY(28px);
    animation: rev_up .38s .28s ease-out forwards
}

.ctus .reveal_3 {
    opacity: 0;
    transform: translateY(40px);
    animation: rev_up .4s .44s ease-out forwards
}

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

@media (max-width: 1024px) {
    .ctus .bento_grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding: 40px 24px 24px;
        gap: 8px
    }

    .ctus .bento_img_cell {
        grid-column: 1;
        grid-row: 1;
        min-height: 280px
    }

    .ctus .bento_top_cell {
        grid-column: 1;
        grid-row: 2
    }

    .ctus .bento_bottom_cell {
        grid-column: 1;
        grid-row: 3
    }

    .ctus .pg_h1 {
        font-size: 36px
    }

    .ctus .form_block {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 24px 24px 40px
    }

    .ctus .divider_dash {
        padding: 24px 24px 0
    }
}

@media (max-width: 600px) {
    .ctus .field_row {
        grid-template-columns: 1fr
    }

    .ctus .topic_options {
        flex-direction: column
    }

    .ctus .bento_grid {
        padding: 24px 12px 12px
    }

    .ctus .form_block {
        padding: 12px 12px 40px
    }

    .ctus .bento_top_cell,
    .ctus .bento_bottom_cell {
        padding: 24px
    }

    .ctus .side_stat_block {
        padding: 24px
    }

    .ctus .stat_num {
        font-size: 36px
    }
}

.prm {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.prm .split_title {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    min-height: 480px;
    position: relative
}

.prm .split_left {
    background: #FEF876;
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.prm .split_left::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    width: 1px;
    height: 100%;
    background: #EC3E33
}

.prm .frame_deco {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border: 1px solid #ec3e3340;
    pointer-events: none
}

.prm .frame_deco::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #ec3e331f
}

.prm .split_left_label {
    font-size: 14px;
    letter-spacing: .02em;
    color: #EC3E33;
    margin-bottom: 24px;
    line-height: 1.4;
    font-weight: 600
}

.prm .split_h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin: 0 0 24px;
    font-weight: 800
}

.prm .split_sub {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    letter-spacing: .01em;
    margin: 0
}

.prm .split_right {
    position: relative;
    overflow: hidden
}

.prm .split_img_wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

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

.prm .split_img_wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0000008c 0%, transparent 55%, #0006 100%)
}

.prm .split_right_text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2
}

.prm .split_right_text p {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    letter-spacing: .01em;
    margin: 0
}

.prm .gap_sec {
    display: grid;
    grid-template-columns: 5fr 7fr;
    background: #FBFBFB;
    padding: 80px;
    gap: 80px;
    align-items: start
}

.prm .gap_left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .gap_eyebrow {
    font-size: 14px;
    letter-spacing: .02em;
    color: #EC3E33;
    font-weight: 600;
    line-height: 1.4
}

.prm .gap_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin: 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 24px
}

.prm .gap_h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FEF876;
    transition: width .35s ease-out
}

.prm .gap_left:hover .gap_h2::after {
    width: 100%
}

.prm .gap_stat_row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 8px
}

.prm .gap_stat {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.prm .gap_stat_num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #EC3E33;
    letter-spacing: .01em
}

.prm .gap_stat_lbl {
    font-size: 14px;
    line-height: 1.4;
    color: #444;
    letter-spacing: .01em
}

.prm .gap_right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .gap_img_wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 44px -2px #fef87624
}

.prm .gap_img_wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block
}

.prm .gap_body {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    letter-spacing: .01em;
    margin: 0
}

.prm .support_sec {
    padding: 80px;
    position: relative;
    background: #111
}

.prm .support_bg_spot {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: conic-gradient(from 45deg, #fef87614, #ec3e330f, #fef8760a, #ec3e3305, #fef87614);
    transform: translate(-50%, -50%);
    animation: spot_breathe 6s ease-in-out infinite;
    pointer-events: none
}

@keyframes spot_breathe {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .7
    }

    50% {
        transform: translate(-50%, -50%) scale(1.18);
        opacity: 1
    }
}

.prm .support_inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px
}

.prm .support_head_col {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px
}

.prm .support_eyebrow {
    font-size: 14px;
    letter-spacing: .02em;
    color: #FEF876;
    font-weight: 600;
    line-height: 1.4
}

.prm .support_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0;
    font-weight: 700
}

.prm .support_card {
    background: #ffffff0d;
    border: 1px solid #fef87626;
    border-radius: 8px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: border-color .25s ease-out, background .28s ease-out
}

.prm .support_card:hover {
    border-color: #fef87673;
    background: #fef8760f
}

.prm .support_card_icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center
}

.prm .support_card_icon svg {
    width: 28px;
    height: 28px;
    stroke: #FEF876;
    fill: none;
    stroke-width: 1.5
}

.prm .support_card_h {
    font-size: 18px;
    line-height: 1.4;
    color: #FEF876;
    margin: 0;
    font-weight: 600;
    letter-spacing: .01em
}

.prm .support_card_p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffbf;
    margin: 0;
    letter-spacing: .01em
}

.prm .rep_sec {
    position: relative;
    overflow: hidden
}

.prm .rep_diag {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #FEF876 0%, #FEF876 48%, #FBFBFB 48%, #FBFBFB 100%);
    z-index: 0
}

.prm .rep_zigzag {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: .07
}

.prm .rep_zigzag svg {
    width: 100%;
    height: 100%
}

.prm .rep_inner {
    position: relative;
    z-index: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.prm .rep_top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start
}

.prm .rep_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin: 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 24px
}

.prm .rep_h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #EC3E33;
    transition: width .32s ease-out
}

.prm .rep_top:hover .rep_h2::after {
    width: 100%
}

.prm .rep_trust_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.prm .rep_trust_card {
    background: #fff;
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 4px 14px -2px #ec3e3314;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .28s ease-out
}

.prm .rep_trust_card:hover {
    box-shadow: 0 8px 44px -2px #ec3e3324
}

.prm .rep_trust_name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    letter-spacing: .01em;
    line-height: 1.4
}

.prm .rep_trust_role {
    font-size: 14px;
    color: #EC3E33;
    letter-spacing: .01em;
    line-height: 1.4
}

.prm .rep_trust_q {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    letter-spacing: .01em
}

.prm .rep_portraits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 8px
}

.prm .rep_portrait_item {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.prm .rep_portrait_wrap {
    width: 100%;
    aspect-ratio: 7 / 9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px -2px #fef87614
}

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

.prm .rep_portrait_name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    letter-spacing: .01em;
    line-height: 1.4
}

.prm .rep_portrait_role {
    font-size: 14px;
    color: #555;
    letter-spacing: .01em;
    line-height: 1.4
}

.prm .exp_sec {
    padding: 80px;
    background: #FBFBFB;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.prm .exp_top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.prm .exp_head {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.prm .exp_eyebrow {
    font-size: 14px;
    letter-spacing: .02em;
    color: #EC3E33;
    font-weight: 600;
    line-height: 1.4
}

.prm .exp_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin: 0;
    font-weight: 700
}

.prm .exp_intro {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    letter-spacing: .01em;
    margin: 0;
    flex: 1
}

.prm .exp_phases {
    display: grid;
    grid-template-columns: 3fr 4fr 5fr;
    gap: 24px
}

.prm .exp_phase {
    background: #fff;
    border-radius: 8px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 3px 6px -2px #fef8760f;
    border-top: 3px solid transparent;
    transition: border-color .25s ease-out, box-shadow .28s ease-out
}

.prm .exp_phase:hover {
    border-color: #FEF876;
    box-shadow: 0 8px 44px -2px #fef87624
}

.prm .exp_phase_num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #FEF876;
    letter-spacing: .01em;
    -webkit-text-stroke: 1px #EC3E33
}

.prm .exp_phase_h {
    font-size: 18px;
    line-height: 1.4;
    color: #111;
    margin: 0;
    font-weight: 600;
    letter-spacing: .01em
}

.prm .exp_phase_p {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
    letter-spacing: .01em
}

.prm .exp_img_row {
    width: 100%;
    border-radius: 8px;
    overflow: hidden
}

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

.prm .invest_sec {
    padding: 80px;
    background: #fff;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: start
}

.prm .invest_left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .invest_eyebrow {
    font-size: 14px;
    letter-spacing: .02em;
    color: #EC3E33;
    font-weight: 600;
    line-height: 1.4
}

.prm .invest_h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin: 0;
    font-weight: 700;
    position: relative;
    padding-bottom: 24px
}

.prm .invest_h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FEF876;
    transition: width .3s ease-out
}

.prm .invest_left:hover .invest_h2::after {
    width: 100%
}

.prm .invest_body {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    letter-spacing: .01em;
    margin: 0
}

.prm .invest_details {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.prm .invest_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #00000014
}

.prm .invest_row:last-child {
    border-bottom: none
}

.prm .invest_row_label {
    font-size: 14px;
    color: #555;
    letter-spacing: .01em;
    line-height: 1.4
}

.prm .invest_row_val {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    letter-spacing: .01em;
    line-height: 1.4;
    text-align: right
}

.prm .invest_right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .invest_price_box {
    background: #111;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 8px 44px -2px #ec3e3324;
    position: relative;
    overflow: hidden
}

.prm .invest_price_box::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(from 120deg, #fef87626, #ec3e3314, #fef8760d);
    pointer-events: none
}

.prm .invest_price_label {
    font-size: 14px;
    color: #fff9;
    letter-spacing: .02em;
    line-height: 1.4
}

.prm .invest_price_val {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #FEF876;
    letter-spacing: .01em
}

.prm .invest_price_note {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffb3;
    letter-spacing: .01em;
    margin: 0
}

.prm .invest_cta_link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.4;
    border-bottom: 2px solid #FEF876;
    padding-bottom: 4px;
    transition: color .22s ease-out, border-color .22s ease-out
}

.prm .invest_cta_link:hover {
    color: #EC3E33;
    border-color: #EC3E33
}

.prm .invest_cta_link svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform .22s ease-out
}

.prm .invest_cta_link:hover svg {
    transform: translateX(4px)
}

.prm .concentric_deco {
    position: absolute;
    pointer-events: none
}

.prm .concentric_deco span {
    position: absolute;
    border: 1px solid #ec3e331f;
    border-radius: 3px
}

@keyframes emerge_blur {
    0% {
        filter: blur(8px);
        opacity: 0
    }

    100% {
        filter: blur(0);
        opacity: 1
    }
}

.prm .split_title,
.prm .gap_sec {
    animation: emerge_blur .55s ease-out both
}

@media (max-width: 1100px) {
    .prm .split_title {
        grid-template-columns: 1fr 1fr
    }

    .prm .split_h1 {
        font-size: 36px
    }

    .prm .split_left {
        padding: 40px
    }

    .prm .gap_sec {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px
    }

    .prm .support_sec {
        padding: 40px
    }

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

    .prm .rep_inner {
        padding: 40px
    }

    .prm .rep_top {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .prm .exp_sec {
        padding: 40px
    }

    .prm .exp_top {
        flex-direction: column;
        gap: 24px
    }

    .prm .exp_head {
        flex: none
    }

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

    .prm .invest_sec {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px
    }
}

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

    .prm .split_right {
        min-height: 260px;
        position: relative
    }

    .prm .split_img_wrap {
        position: absolute;
        top: 0;
        left: 0
    }

    .prm .split_left {
        padding: 40px 24px
    }

    .prm .split_h1 {
        font-size: 36px
    }

    .prm .gap_sec {
        padding: 40px 24px
    }

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

    .prm .rep_inner {
        padding: 40px 24px
    }

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

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

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

    .prm .invest_sec {
        padding: 40px 24px
    }

    .prm .gap_stat_row {
        flex-direction: column;
        gap: 24px
    }
}

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

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

.abt-us .strip-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative
}

.abt-us .strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 8s linear
}

.abt-us .strip-img:hover img {
    transform: scale(1.06)
}

.abt-us .dots-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    padding: 12px 0
}

.abt-us .dot-item {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FEF876;
    border: 1px solid #EC3E33;
    flex-shrink: 0
}

.abt-us .dot-item.lg {
    width: 10px;
    height: 10px;
    background: #EC3E33
}

.abt-us .dot-item.sm {
    width: 4px;
    height: 4px;
    opacity: .5
}

.abt-us .title-zone {
    padding: 80px 0;
    background: #FBFBFB
}

.abt-us .title-zone .pg-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.abt-us .t-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #EC3E33;
    text-transform: uppercase;
    margin-bottom: 24px;
    font-weight: 600
}

.abt-us .t-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 800;
    margin-bottom: 24px
}

.abt-us .t-h1 .num-acc {
    color: #EC3E33;
    font-size: 70px
}

.abt-us .t-h1 .num-sup {
    font-size: 36px;
    vertical-align: super;
    color: #FEF876;
    background: #EC3E33;
    padding: 0 4px;
    border-radius: 3px;
    line-height: 1
}

.abt-us .t-desc {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #333;
    max-width: 480px
}

.abt-us .t-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .stat-pair {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.abt-us .stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-us .stat-num {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    font-weight: 800;
    color: #111
}

.abt-us .stat-num sup {
    font-size: 18px;
    color: #EC3E33;
    vertical-align: super
}

.abt-us .stat-lbl {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #555;
    text-transform: uppercase
}

.abt-us .divider-brush {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.abt-us .divider-brush svg {
    display: block;
    width: 100%
}

.abt-us .story-sec {
    padding: 80px 0;
    background: #111;
    position: relative
}

.abt-us .story-sec .pg-wrap {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    align-items: start
}

.abt-us .story-img-wrap {
    position: relative
}

.abt-us .story-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 44px -2px #fef87624
}

.abt-us .corner-curve {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    pointer-events: none
}

.abt-us .story-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .s-h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FEF876;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px
}

.abt-us .s-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EC3E33;
    transition: width .35s ease-out
}

.abt-us .story-sec:hover .s-h2::after {
    width: 100%
}

.abt-us .s-para {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ccc
}

.abt-us .s-para strong {
    color: #FEF876;
    font-weight: 600
}

.abt-us .tag-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.abt-us .tag-chip {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #111;
    background: #FEF876;
    padding: 4px 12px;
    border-radius: 3px;
    font-weight: 600
}

.abt-us .divider-space {
    height: 2px;
    background: linear-gradient(90deg, transparent, #FEF876 40%, #EC3E33 60%, transparent)
}

.abt-us .method-sec {
    padding: 80px 0;
    background: #FBFBFB
}

.abt-us .method-sec .pg-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.abt-us .method-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end
}

.abt-us .m-h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px
}

.abt-us .m-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FEF876;
    transition: width .28s ease-out
}

.abt-us .method-sec:hover .m-h2::after {
    width: 100%
}

.abt-us .m-sub {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #444
}

.abt-us .method-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px
}

.abt-us .method-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 6s linear
}

.abt-us .method-img-wrap:hover img {
    transform: scale(1.05)
}

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

.abt-us .step-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px 24px;
    box-shadow: 0 4px 14px -2px #ec3e3314;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 3px solid #FEF876;
    transition: box-shadow .25s ease-out, transform .25s ease-out
}

.abt-us .step-card:hover {
    box-shadow: 0 8px 44px -2px #ec3e3324;
    transform: translateY(-4px)
}

.abt-us .step-num {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 800;
    color: #EC3E33;
    letter-spacing: .01em
}

.abt-us .step-num sup {
    font-size: 14px;
    color: #888;
    vertical-align: super
}

.abt-us .step-ttl {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700
}

.abt-us .step-desc {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #555
}

.abt-us .divider-conic {
    height: 4px;
    background: conic-gradient(from 120deg, #FEF876, #EC3E33, #FEF876, #111, #FEF876)
}

.abt-us .team-sec {
    padding: 80px 0;
    background: #111
}

.abt-us .team-sec .pg-wrap {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 80px;
    align-items: center
}

.abt-us .team-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .tm-h2 {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FBFBFB;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 12px
}

.abt-us .tm-h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FEF876;
    transition: width .32s ease-out
}

.abt-us .team-sec:hover .tm-h2::after {
    width: 100%
}

.abt-us .tm-para {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #bbb
}

.abt-us .tm-para strong {
    color: #FEF876
}

.abt-us .expert-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 44px -2px #fef87624
}

.abt-us .expert-photo {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden
}

.abt-us .expert-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0
}

.abt-us .expert-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #1d1d1d
}

.abt-us .expert-name {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #FBFBFB;
    font-weight: 700
}

.abt-us .expert-role {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #FEF876;
    text-transform: uppercase;
    font-weight: 600
}

.abt-us .expert-bio {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #999
}

.abt-us .link-arrow {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #FEF876;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: color .18s ease-out
}

.abt-us .link-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #FEF876;
    transition: width .22s ease-out
}

.abt-us .link-arrow:hover::after {
    width: 100%
}

.abt-us .link-arrow .arr {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.abt-us .link-arrow .arr svg {
    width: 100%;
    height: 100%
}

@media (max-width: 1024px) {
    .abt-us .title-zone .pg-wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .abt-us .t-h1 {
        font-size: 36px
    }

    .abt-us .t-h1 .num-acc {
        font-size: 36px
    }

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

    .abt-us .story-img-wrap img {
        height: 320px
    }

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

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

    .abt-us .team-sec .pg-wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media (max-width: 640px) {
    .abt-us .title-zone {
        padding: 40px 0
    }

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

    .abt-us .method-sec {
        padding: 40px 0
    }

    .abt-us .team-sec {
        padding: 40px 0
    }

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

    .abt-us .stat-pair {
        flex-direction: column;
        gap: 24px
    }

    .abt-us .strip-img {
        height: 140px
    }

    .abt-us .t-h1 {
        font-size: 36px
    }
}

.success_page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background-color: #FBFBFB
}

.success_page .success_wrap {
    max-width: 1500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.success_page .success_icon_ring {
    width: 88px;
    height: 88px;
    border-radius: 28px;
    background: #FEF876;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 44px -2px #fef87624;
    flex-shrink: 0
}

.success_page .success_icon_ring svg {
    display: block
}

.success_page .success_body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 560px
}

.success_page .success_label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #EC3E33;
    text-transform: uppercase;
    font-weight: 600
}

.success_page .success_heading {
    font-size: 36px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    font-weight: 700;
    margin: 0
}

.success_page .success_desc {
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #333;
    margin: 0
}

.success_page .success_divider {
    width: 48px;
    height: 3px;
    border-radius: 3px;
    background: conic-gradient(from 120deg at 20% 80%, #FEF876 0deg, #EC3E33 180deg, #FEF876 360deg)
}

.success_page .success_actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.success_page .btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #FEF876;
    color: #111;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    font-weight: 700;
    border: 2px solid #111;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .25s ease-out, box-shadow .28s ease-out;
    box-shadow: 0 3px 6px -2px #fef8760f
}

.success_page .btn_primary:hover {
    background: #f5ef60;
    box-shadow: 0 4px 14px -2px #fef87614
}

.success_page .btn_primary:focus-visible {
    outline: 3px solid #EC3E33;
    outline-offset: 3px
}

.success_page .btn_primary .btn_arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.success_page .btn_secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: #111;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .02em;
    font-weight: 600;
    border: 2px solid #111;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .22s ease-out, color .22s ease-out
}

.success_page .btn_secondary:hover {
    background: #111;
    color: #FEF876
}

.success_page .btn_secondary:focus-visible {
    outline: 3px solid #EC3E33;
    outline-offset: 3px
}

.success_page .success_note {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #555;
    border-radius: 8px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    padding: 24px;
    max-width: 480px;
    width: 100%;
    box-shadow: 0 3px 6px -2px #fef8760f;
    text-align: center
}

.success_page .success_note strong {
    color: #111;
    font-weight: 700
}

@media (max-width: 600px) {
    .success_page {
        padding: 80px 12px
    }

    .success_page .success_heading {
        font-size: 36px
    }

    .success_page .success_actions {
        flex-direction: column;
        gap: 12px;
        width: 100%
    }

    .success_page .btn_primary,
    .success_page .btn_secondary {
        width: 100%;
        justify-content: center
    }
}