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

html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden
}

.pg_head {
    background: linear-gradient(135deg, #501794 0%, #3a0f6e 60%, #2a0a52 100%);
    position: relative;
    overflow: hidden
}

.pg_head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #46ff1214 0%, transparent 50%);
    pointer-events: none
}

.head_top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 40px 0;
    display: flex;
    align-items: flex-end;
    gap: 40px;
    border-bottom: 2px solid #46ff1259;
    padding-bottom: 20px
}

.brand_wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0
}

.brand_img_box {
    background: #fff;
    border-radius: 5px;
    padding: 8px;
    box-shadow: 0 1px 5px 0 #50179412 0 5px 14px 0 #5017941c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px
}

.brand_img_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.brand_img_box img.loaded {
    opacity: 1
}

.brand_tagline {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    font-style: italic;
    line-height: 1.35;
    color: #ffecdad9;
    letter-spacing: .04em;
    max-width: 200px
}

.head_nav_row {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px
}

.primary_nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding: 12px 0
}

.primary_nav a {
    font-family: 'Cormorant', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #FFECDA;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 5px;
    letter-spacing: .03em;
    transition: background-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px
}

.primary_nav a:hover,
.primary_nav a:focus {
    background: #46ff1226;
    color: #46FF12;
    outline: none
}

.primary_nav a:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.primary_nav a[aria-current="page"] {
    background: #46ff1233;
    color: #46FF12
}

.head_accent_bar {
    height: 4px;
    background: linear-gradient(90deg, #46FF12 0%, #46ff1266 60%, transparent 100%)
}

.pg_foot {
    background: #1a0a35;
    border-top: 4px solid #46FF12;
    font-family: 'Cormorant', serif
}

.foot_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px 40px
}

.foot_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px
}

.foot_block_head {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #46FF12;
    margin: 0 0 20px;
    line-height: 1.35
}

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

.foot_nav_list li a {
    font-size: 17px;
    line-height: 1.6;
    color: #FFECDA;
    text-decoration: none;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.foot_nav_list li a:hover,
.foot_nav_list li a:focus {
    color: #46FF12;
    outline: none
}

.foot_nav_list li a:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.foot_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px
}

.foot_contact_item .ti {
    font-size: 20px;
    color: #46FF12;
    flex-shrink: 0;
    margin-top: 2px
}

.foot_contact_text {
    font-size: 17px;
    line-height: 1.6;
    color: #FFECDA
}

.foot_contact_text a {
    color: #FFECDA;
    text-decoration: none;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.foot_contact_text a:hover,
.foot_contact_text a:focus {
    color: #46FF12;
    outline: none
}

.foot_contact_text a:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.foot_logo_row {
    border-top: 2px solid #46ff1240;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px
}

.foot_logo_box {
    background: #fff;
    border-radius: 5px;
    padding: 8px;
    box-shadow: 0 1px 5px 0 #46ff1212 0 5px 14px 0 #46ff121c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 75px
}

.foot_logo_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.foot_logo_box img.loaded {
    opacity: 1
}

.foot_copy {
    font-size: 15px;
    line-height: 1.6;
    color: #ffecda99;
    letter-spacing: .03em
}

.foot_legal_links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px
}

.foot_legal_links a {
    font-size: 15px;
    line-height: 1.6;
    color: #ffecda99;
    text-decoration: none;
    letter-spacing: .02em;
    transition: color .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.foot_legal_links a:hover,
.foot_legal_links a:focus {
    color: #46FF12;
    outline: none
}

.foot_legal_links a:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.ck_bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 4000;
    background: #501794;
    border-bottom: 3px solid #46FF12;
    box-shadow: 0 9px 44px 0 #5017941a;
    font-family: 'Cormorant', serif;
    transform: translateY(-100%);
    transition: transform .42s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck_bar.ck_visible {
    transform: translateY(0)
}

.ck_bar_inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 20px 40px
}

.ck_top_row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap
}

.ck_icon_box {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #46ff1226;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center
}

.ck_icon_box .ti {
    font-size: 20px;
    color: #46FF12
}

.ck_text_block {
    flex: 1;
    min-width: 200px
}

.ck_choice_label {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    color: #FFECDA;
    margin: 0 0 4px
}

.ck_context {
    font-size: 15px;
    line-height: 1.6;
    color: #ffecdacc;
    margin: 0
}

.ck_context a {
    color: #46FF12;
    text-decoration: underline
}

.ck_btn_row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px
}

.ck_btn {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 12px 20px;
    border-radius: 5px;
    border: 2px solid #46FF12;
    cursor: pointer;
    min-height: 44px;
    min-width: 120px;
    text-align: center;
    transition: background-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.ck_btn_accept {
    background: #46FF12;
    color: #1a0a35
}

.ck_btn_accept:hover,
.ck_btn_accept:focus {
    background: #2ecc0a;
    outline: none
}

.ck_btn_accept:focus-visible {
    outline: 2px solid #FFECDA;
    outline-offset: 2px
}

.ck_btn_decline {
    background: transparent;
    color: #FFECDA
}

.ck_btn_decline:hover,
.ck_btn_decline:focus {
    background: #ffecda1a;
    outline: none
}

.ck_btn_decline:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.ck_btn_prefs {
    background: transparent;
    color: #ffecdab3;
    border-color: #ffecda4d
}

.ck_btn_prefs:hover,
.ck_btn_prefs:focus {
    background: #ffecda14;
    color: #FFECDA;
    border-color: #ffecda99;
    outline: none
}

.ck_btn_prefs:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.ck_panel {
    display: none;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #46ff1233
}

.ck_panel.ck_panel_open {
    display: block
}

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

.ck_toggle_label {
    font-size: 17px;
    line-height: 1.6;
    color: #FFECDA
}

.ck_toggle_label strong {
    display: block;
    font-weight: 700;
    color: #46FF12
}

.ck_switch_wrap {
    display: flex;
    align-items: center;
    gap: 8px
}

.ck_switch_wrap label {
    font-size: 15px;
    color: #ffecdab3;
    cursor: pointer
}

.ck_toggle_input {
    appearance: none;
    width: 44px;
    height: 24px;
    background: #ffecda33;
    border-radius: 24px;
    border: 2px solid #ffecda4d;
    cursor: pointer;
    position: relative;
    transition: background-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck_toggle_input::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    background: #FFECDA;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck_toggle_input:checked {
    background: #46FF12;
    border-color: #46FF12
}

.ck_toggle_input:checked::after {
    transform: translateX(20px);
    background: #1a0a35
}

.ck_toggle_input:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.ck_sale_notice {
    margin-top: 12px;
    padding: 12px;
    background: #46ff1214;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.6;
    color: #ffecdacc;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.ck_sale_notice .ti {
    color: #46FF12;
    font-size: 17px;
    flex-shrink: 0
}

.ck_sale_opt {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px
}

.ck_sale_opt label {
    font-size: 15px;
    color: #ffecdacc;
    cursor: pointer
}

.ck_sale_opt input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #ffecda66;
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ck_sale_opt input[type="checkbox"]:checked {
    background: #46FF12;
    border-color: #46FF12
}

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

.ck_sale_opt input[type="checkbox"]:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

@media (max-width: 992px) {
    .head_top {
        padding: 20px;
        gap: 20px
    }

    .head_nav_row {
        padding: 0 20px
    }

    .primary_nav a {
        font-size: 15px;
        padding: 12px
    }

    .foot_inner {
        padding: 40px 20px
    }

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

    .ck_bar_inner {
        padding: 20px
    }
}

@media (max-width: 576px) {
    .head_top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .primary_nav {
        gap: 4px
    }

    .primary_nav a {
        padding: 12px 8px;
        font-size: 15px
    }

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

    .foot_logo_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .foot_legal_links {
        gap: 12px
    }

    .ck_btn_row {
        gap: 8px
    }

    .ck_btn {
        min-width: 100px;
        padding: 12px
    }
}

.policy-view {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 40px
}

.policy-view h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #501794;
    margin-bottom: 40px;
    letter-spacing: -.5px
}

.policy-view h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #501794;
    margin-top: 80px;
    margin-bottom: 20px
}

.policy-view h3 {
    font-size: 26px;
    line-height: 1.35;
    color: #3a0f70;
    margin-top: 40px;
    margin-bottom: 20px
}

.policy-view h4 {
    font-size: 20px;
    line-height: 1.35;
    color: #3a0f70;
    margin-top: 40px;
    margin-bottom: 12px
}

.policy-view h5 {
    font-size: 17px;
    line-height: 1.6;
    color: #3a0f70;
    margin-top: 20px;
    margin-bottom: 8px;
    letter-spacing: .04em;
    text-transform: uppercase
}

.policy-view h6 {
    font-size: 15px;
    line-height: 1.6;
    color: #501794;
    margin-top: 20px;
    margin-bottom: 8px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.policy-view p {
    font-size: 17px;
    line-height: 1.8;
    color: #1e0a35;
    margin-bottom: 20px;
    max-width: 72ch
}

.policy-view strong,
.policy-view b {
    font-weight: 700;
    color: #2d0a5c
}

.policy-view hr {
    border: none;
    border-top: 2px solid #FFECDA;
    margin: 40px 0
}

.policy-view div {
    margin-bottom: 20px
}

.policy-view table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    line-height: 1.6;
    box-shadow: 0 1px 5px 0 #50179412;
    border-radius: 9px;
    overflow: hidden
}

.policy-view thead {
    background-color: #501794
}

.policy-view thead th {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 12px 20px;
    text-align: left
}

.policy-view tbody tr {
    border-bottom: 1px solid #FFECDA;
    transition: background-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

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

.policy-view tbody tr:nth-child(even) {
    background-color: #ffecda59
}

.policy-view tbody tr:hover {
    background-color: #46ff1212
}

.policy-view td {
    padding: 12px 20px;
    color: #1e0a35;
    font-size: 15px;
    line-height: 1.6;
    vertical-align: top
}

.policy-view th {
    padding: 12px 20px
}

@media (max-width: 992px) {
    .policy-view {
        padding: 40px 20px
    }

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

    .policy-view h2 {
        font-size: 26px;
        margin-top: 40px
    }

    .policy-view h3 {
        font-size: 20px
    }

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

@media (max-width: 576px) {
    .policy-view {
        padding: 40px 12px
    }

    .policy-view h1 {
        font-size: 26px
    }

    .policy-view h2 {
        font-size: 20px
    }

    .policy-view h3 {
        font-size: 17px
    }

    .policy-view p {
        font-size: 15px
    }

    .policy-view td,
    .policy-view thead th {
        padding: 8px 12px
    }
}

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

.srv_det .pg_wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px
}

.srv_det .bc_trail {
    padding: 12px 0;
    background: #fff;
    border-bottom: 1px solid #5017941a
}

.srv_det .bc_trail .pg_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.srv_det .bc_link {
    font-size: 15px;
    line-height: 1.6;
    color: #501794;
    text-decoration: none;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv_det .bc_link:hover {
    color: #2a0a7a
}

.srv_det .bc_sep {
    font-size: 15px;
    color: #50179459;
    line-height: 1.6
}

.srv_det .bc_cur {
    font-size: 15px;
    line-height: 1.6;
    color: #2d2d2d
}

.srv_det .ttl_blk {
    background: #1a0a3a;
    padding: 40px 0;
    position: relative;
    overflow: hidden
}

.srv_det .ttl_blk .circ_a {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #46ff120a;
    top: -80px;
    right: -60px;
    pointer-events: none
}

.srv_det .ttl_blk .circ_b {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #5017942e;
    bottom: -40px;
    left: 40px;
    pointer-events: none
}

.srv_det .ttl_blk .circ_c {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #46ff1212;
    top: 20px;
    left: 220px;
    pointer-events: none
}

.srv_det .ttl_inner {
    position: relative;
    z-index: 1
}

.srv_det .cat_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .08em;
    color: #46FF12;
    background: #46ff121a;
    border: 1px solid #46ff1240;
    border-radius: 5px;
    padding: 4px 12px;
    margin-bottom: 20px
}

.srv_det .ttl_h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px;
    max-width: 700px
}

.srv_det .ttl_meta {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center
}

.srv_det .meta_pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffbf
}

.srv_det .meta_pill svg {
    flex-shrink: 0
}

.srv_det .reveal_clip {
    animation: clip_reveal .55s cubic-bezier(0.0, 0, 0.2, 1) both
}

@keyframes clip_reveal {
    from {
        clip-path: inset(0 0 100% 0);
        opacity: .4
    }

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

.srv_det .reveal_clip_b {
    animation: clip_reveal .65s .12s cubic-bezier(0.0, 0, 0.2, 1) both
}

.srv_det .wave_top {
    width: 100%;
    height: 18px;
    position: relative;
    overflow: hidden
}

.srv_det .wave_top svg {
    width: 100%;
    height: 100%
}

.srv_det .body_grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 40px 0 80px;
    align-items: start
}

.srv_det .img_frame {
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 5px 14px 0 #5017941c;
    position: relative
}

.srv_det .img_frame img {
    width: 100%;
    display: block;
    object-fit: cover;
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 9px
}

.srv_det .img_frame img.loaded {
    opacity: 1
}

.srv_det .desc_area {
    font-size: 17px;
    line-height: 1.8;
    color: #1e1230
}

.srv_det .desc_area p {
    margin: 0 0 20px
}

.srv_det .desc_area h2 {
    font-size: 26px;
    line-height: 1.35;
    color: #1e1230;
    margin: 40px 0 12px
}

.srv_det .desc_area abbr {
    text-decoration: underline dotted #50179480;
    cursor: help
}

.srv_det .desc_area ol {
    padding-left: 20px;
    margin: 0 0 20px
}

.srv_det .desc_area li {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.8;
    color: #1e1230
}

.srv_det .prog_area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px dashed #50179426
}

.srv_det .prog_area h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #1e1230;
    margin: 0 0 20px
}

.srv_det .prog_area h3 {
    font-size: 20px;
    line-height: 1.35;
    color: #501794;
    margin: 20px 0 8px
}

.srv_det .prog_area p {
    font-size: 17px;
    line-height: 1.8;
    color: #1e1230;
    margin: 0 0 12px
}

.srv_det .prog_area ul {
    padding-left: 20px;
    margin: 0 0 20px
}

.srv_det .prog_area li {
    font-size: 17px;
    line-height: 1.8;
    color: #1e1230;
    margin-bottom: 4px
}

.srv_det .prog_area dl {
    margin: 0 0 20px
}

.srv_det .prog_area dt {
    font-size: 17px;
    font-weight: 700;
    color: #1e1230;
    margin-top: 12px
}

.srv_det .prog_area dd {
    font-size: 17px;
    line-height: 1.8;
    color: #3a2a5a;
    margin: 4px 0 0 20px
}

.srv_det .prog_area mark {
    background: #46ff122e;
    color: #1e1230;
    border-radius: 2px;
    padding: 0 4px
}

.srv_det .prog_area details {
    border: 1px solid #50179426;
    border-radius: 9px;
    margin-bottom: 12px;
    overflow: hidden
}

.srv_det .prog_area summary {
    padding: 12px 20px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    color: #501794;
    background: #5017940a;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv_det .prog_area summary:hover {
    background: #50179417
}

.srv_det .prog_area figure {
    margin: 20px 0
}

.srv_det .prog_area figcaption {
    font-size: 15px;
    color: #7a6a9a;
    margin-top: 8px;
    font-style: italic
}

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

.srv_det .price_card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 9px 44px 0 #5017941a;
    border: 1px solid #50179414
}

.srv_det .price_num {
    font-size: 36px;
    line-height: 1.1;
    color: #1e1230;
    font-weight: 800;
    margin-bottom: 8px
}

.srv_det .price_des {
    font-size: 15px;
    line-height: 1.6;
    color: #5a4a7a;
    margin-bottom: 12px
}

.srv_det .price_note {
    font-size: 15px;
    line-height: 1.6;
    color: #7a6a9a;
    background: #ffecda99;
    border-radius: 5px;
    padding: 8px 12px;
    margin-bottom: 20px
}

.srv_det .seats_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #1e1230;
    margin-bottom: 20px
}

.srv_det .seats_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #46FF12;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px #46ff122e
}

.srv_det .btn_reg {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: #501794;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    border: none;
    border-radius: 9px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 14px 0 #5017941c;
    position: relative;
    overflow: hidden
}

.srv_det .btn_reg:hover {
    background: #3a0f6e;
    box-shadow: 0 9px 44px 0 #5017942e;
    color: #fff
}

.srv_det .btn_reg:active {
    background: #2a0a52
}

.srv_det .btn_reg:focus-visible {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.srv_det .btn_ripple {
    position: absolute;
    border-radius: 50%;
    background: #ffffff38;
    transform: scale(0);
    animation: ripple_go .45s cubic-bezier(0.0, 0, 0.2, 1) forwards;
    pointer-events: none;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px
}

@keyframes ripple_go {
    to {
        transform: scale(5);
        opacity: 0
    }
}

.srv_det .user_pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #46ff121a;
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 15px;
    color: #1e1230;
    margin-top: 12px
}

.srv_det .skill_card {
    background: #ffecda8c;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #ffb4642e
}

.srv_det .skill_card h5 {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .07em;
    color: #501794;
    margin: 0 0 20px;
    text-transform: uppercase
}

.srv_det .skill_row {
    margin-bottom: 12px
}

.srv_det .skill_lbl {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px
}

.srv_det .skill_name {
    font-size: 15px;
    line-height: 1.6;
    color: #1e1230
}

.srv_det .skill_pct {
    font-size: 15px;
    line-height: 1.6;
    color: #501794;
    font-weight: 700
}

.srv_det .skill_bar_bg {
    height: 8px;
    background: #5017941a;
    border-radius: 5px;
    overflow: hidden
}

.srv_det .skill_fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(95deg, #501794 0%, #8a3fd4 55%, #46FF12 100%);
    transition: width .55s cubic-bezier(0.0, 0, 0.2, 1)
}

.srv_det .poll_card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 5px 0 #50179412;
    border: 1px solid #50179414
}

.srv_det .poll_card h5 {
    font-size: 17px;
    line-height: 1.35;
    color: #1e1230;
    margin: 0 0 20px
}

.srv_det .poll_opt {
    display: block;
    margin-bottom: 12px;
    cursor: pointer
}

.srv_det .poll_opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.srv_det .poll_face {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border: 2px solid #50179426;
    border-radius: 9px;
    padding: 12px;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv_det .poll_opt input[type="radio"]:checked+.poll_face {
    border-color: #501794;
    background: #5017940f
}

.srv_det .poll_opt input[type="radio"]:focus-visible+.poll_face {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.srv_det .poll_dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #5017944d;
    flex-shrink: 0;
    position: relative;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv_det .poll_opt input[type="radio"]:checked+.poll_face .poll_dot {
    border-color: #501794;
    background: #501794
}

.srv_det .poll_opt input[type="radio"]:checked+.poll_face .poll_dot::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.srv_det .poll_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #1e1230
}

.srv_det .sec_prog {
    background: linear-gradient(112deg, #5017940a 0%, #46ff120d 60%, #ffecda59 100%);
    padding: 80px 0;
    position: relative
}

.srv_det .sec_prog::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #50179440 0px, #50179440 8px, transparent 8px, transparent 14px, #5017941f 14px, #5017941f 24px, transparent 24px, transparent 32px);
    position: absolute;
    top: 0;
    left: 0
}

.srv_det .sec_prog::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #50179440 0px, #50179440 8px, transparent 8px, transparent 14px, #5017941f 14px, #5017941f 24px, transparent 24px, transparent 32px);
    position: absolute;
    bottom: 0;
    left: 0
}

.srv_det .prog_two_col {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.srv_det .prog_num_head {
    position: relative;
    margin-bottom: 20px
}

.srv_det .prog_fade_num {
    font-size: 68px;
    line-height: 1.1;
    color: #50179412;
    font-weight: 900;
    position: absolute;
    top: -12px;
    left: -8px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.02em
}

.srv_det .prog_h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #1e1230;
    position: relative;
    z-index: 1;
    padding-top: 8px;
    margin: 0
}

.srv_det .prog_aside {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 14px 0 #5017941c
}

.srv_det .prog_aside h5 {
    font-size: 15px;
    line-height: 1.35;
    letter-spacing: .07em;
    color: #501794;
    text-transform: uppercase;
    margin: 0 0 12px
}

.srv_det .prog_aside p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a2a5a;
    margin: 0
}

.srv_det .halftone_bg {
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: 0;
    right: 0;
    pointer-events: none;
    opacity: .45;
    overflow: hidden;
    border-radius: 0 0 0 0
}

.srv_det .wave_bot {
    width: 100%;
    height: 18px;
    position: relative;
    overflow: hidden;
    margin-top: 40px
}

.srv_det .wave_bot svg {
    width: 100%;
    height: 100%
}

@media (max-width: 992px) {
    .srv_det .body_grid {
        grid-template-columns: 1fr
    }

    .srv_det .sidebar {
        position: static
    }

    .srv_det .prog_two_col {
        grid-template-columns: 1fr
    }

    .srv_det .ttl_h1 {
        font-size: 36px
    }
}

@media (max-width: 576px) {
    .srv_det .ttl_h1 {
        font-size: 26px
    }

    .srv_det .price_num {
        font-size: 26px
    }

    .srv_det .body_grid {
        padding: 20px 0 40px
    }

    .srv_det .sec_prog {
        padding: 40px 0
    }
}

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

.phil .pg_wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px
}

.phil .divider_thick {
    width: 64px;
    height: 4px;
    background: #46FF12;
    border-radius: 2px;
    margin: 20px 0
}

.phil .title_blk {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.phil .title_blk .pg_wrap {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: stretch
}

.phil .title_text_zone {
    padding: 40px 40px 40px 0;
    position: relative
}

.phil .title_text_zone::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -20px;
    right: 40px;
    bottom: 20px;
    border: 2px dashed #5017942e;
    border-radius: 16px;
    pointer-events: none
}

.phil .label_tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .12em;
    color: #501794;
    text-transform: uppercase;
    background: #50179414;
    padding: 4px 12px;
    border-radius: 5px;
    margin-bottom: 20px
}

.phil .t_h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1a0a2e;
    margin: 0 0 20px;
    font-weight: 800
}

.phil .t_h1 .accent_num {
    color: #46FF12;
    font-size: 68px;
    line-height: 1.1
}

.phil .t_desc {
    font-size: 20px;
    line-height: 1.6;
    color: #2d1a4a;
    max-width: 520px;
    margin: 0 0 40px
}

.phil .btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #501794;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 9px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 14px 0 #5017941c;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.phil .btn_primary:hover {
    background: #3d1070;
    box-shadow: 0 9px 44px 0 #5017941a
}

.phil .btn_primary:focus-visible {
    outline: 3px solid #46FF12 !important;
    outline-offset: 3px !important
}

.phil .btn_primary .ripple_el {
    position: absolute;
    border-radius: 50%;
    background: #ffffff40;
    transform: scale(0);
    animation: ripple_anim .5s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

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

.phil .img_strip {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 #5017941a
}

.phil .img_strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.phil .img_strip img.loaded {
    opacity: 1
}

.phil .img_strip .img_grad {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, #501794b8 0%, #50179400 100%);
    pointer-events: none
}

@keyframes zoom_settle {
    from {
        transform: scale(1.08)
    }

    to {
        transform: scale(1)
    }
}

.phil .title_blk .pg_wrap {
    animation: zoom_settle .45s cubic-bezier(0.4, 0, 0.2, 1) both
}

.phil .phil_detail {
    padding: 80px 0;
    background: #46ff120a
}

.phil .phil_detail .pg_wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.phil .detail_main {
    position: relative
}

.phil .faded_num {
    font-size: 68px;
    font-weight: 900;
    color: #5017940f;
    line-height: 1.1;
    position: absolute;
    top: -20px;
    left: -12px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px
}

.phil .detail_h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #1a0a2e;
    font-weight: 700;
    margin: 0 0 20px;
    padding-top: 20px;
    position: relative
}

.phil .detail_body {
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a;
    margin: 0 0 20px
}

.phil .detail_body .accent_num {
    color: #501794;
    font-weight: 700
}

.phil .detail_body_lg {
    font-size: 20px;
    line-height: 1.6;
    color: #1a0a2e;
    font-weight: 600;
    margin: 0 0 20px
}

.phil .side_col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.phil .side_card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 5px 0 #50179412;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.phil .side_card:hover {
    box-shadow: 0 5px 14px 0 #5017941c
}

.phil .side_card_icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #46ff121f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.phil .side_card_icon svg {
    width: 22px;
    height: 22px
}

.phil .side_card_h {
    font-size: 17px;
    font-weight: 700;
    color: #1a0a2e;
    margin: 0 0 8px
}

.phil .side_card_p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d2060;
    margin: 0
}

.phil .strip_reveal {
    display: flex;
    gap: 4px;
    margin: 40px 0 0;
    border-radius: 9px;
    overflow: hidden
}

.phil .strip_item {
    flex: 1;
    background: #50179414;
    padding: 20px 12px;
    text-align: center;
    border-radius: 5px;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), flex .22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default
}

.phil .strip_item:hover {
    background: #501794;
    flex: 2
}

.phil .strip_item:hover .strip_val {
    color: #46FF12
}

.phil .strip_item:hover .strip_lbl {
    color: #fff
}

.phil .strip_val {
    font-size: 26px;
    font-weight: 800;
    color: #501794;
    display: block;
    line-height: 1.1;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.phil .strip_lbl {
    font-size: 15px;
    color: #3d2060;
    display: block;
    margin-top: 4px;
    line-height: 1.35;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (max-width: 992px) {
    .phil .title_blk .pg_wrap {
        grid-template-columns: 1fr
    }

    .phil .img_strip {
        height: 320px
    }

    .phil .t_h1 {
        font-size: 50px
    }

    .phil .t_h1 .accent_num {
        font-size: 50px
    }

    .phil .title_text_zone {
        padding: 20px
    }

    .phil .title_text_zone::before {
        left: 0;
        right: 0
    }

    .phil .phil_detail .pg_wrap {
        grid-template-columns: 1fr
    }
}

@media (max-width: 576px) {
    .phil .t_h1 {
        font-size: 36px
    }

    .phil .t_h1 .accent_num {
        font-size: 36px
    }

    .phil .detail_h2 {
        font-size: 26px
    }

    .phil .strip_reveal {
        flex-direction: column
    }

    .phil .strip_item:hover {
        flex: 1
    }

    .phil .title_blk {
        padding: 40px 0
    }

    .phil .phil_detail {
        padding: 40px 0
    }
}

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

.cont_us .pg_wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px
}

.cont_us .strip_band {
    background: #fff;
    padding: 40px 0 20px;
    position: relative
}

.cont_us .strip_inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px
}

.cont_us .strip_text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 20px 0
}

.cont_us .strip_label {
    font-size: 15px;
    letter-spacing: .12em;
    color: #501794;
    text-transform: uppercase;
    font-weight: 600
}

.cont_us .strip_h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1a0033;
    font-weight: 800;
    margin: 0
}

.cont_us .strip_h1 .num_acc {
    color: #46FF12;
    font-size: 68px
}

.cont_us .strip_desc {
    font-size: 17px;
    line-height: 1.6;
    color: #3a2255;
    max-width: 480px;
    margin: 0
}

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

.cont_us .shp_a {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 2.5px solid #50179417;
    border-radius: 24px;
    top: -30px;
    left: -60px;
    transform: rotate(18deg)
}

.cont_us .shp_b {
    position: absolute;
    width: 90px;
    height: 90px;
    border: 2px solid #46ff122e;
    border-radius: 9px;
    bottom: 20px;
    left: 120px;
    transform: rotate(-12deg)
}

.cont_us .strip_img_col {
    width: 220px;
    min-width: 180px;
    flex-shrink: 0;
    display: flex;
    align-items: stretch
}

.cont_us .strip_img_wrap {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

.cont_us .strip_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
    filter: sepia(0.35) contrast(1.08) brightness(0.93) saturate(0.8)
}

.cont_us .strip_img_wrap img.loaded {
    opacity: 1
}

.cont_us .strip_img_wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #ffecda8c, transparent);
    pointer-events: none
}

.cont_us .math_bg {
    position: absolute;
    right: 260px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 220px;
    line-height: 1.1;
    color: #5017940a;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.05em
}

.cont_us .divider_dot {
    border: none;
    border-top: 2px dotted #50179426;
    margin: 0
}

.cont_us .form_seg {
    background: linear-gradient(162deg, #fff 0%, #f5eeff 55%, #FFECDA 100%);
    padding: 80px 0;
    position: relative
}

.cont_us .form_seg_inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.cont_us .form_card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 14px 0 #5017941c
}

.cont_us .form_eyebrow {
    font-size: 15px;
    letter-spacing: .1em;
    color: #501794;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 8px
}

.cont_us .form_h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #1a0033;
    font-weight: 800;
    margin: 0 0 20px
}

.cont_us .form_h2 .num_acc {
    color: #46FF12
}

.cont_us .field_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px
}

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

.cont_us .field_grp.full {
    grid-column: 1 / -1
}

.cont_us .f_label {
    font-size: 15px;
    color: #3a2255;
    font-weight: 600;
    letter-spacing: .02em
}

.cont_us .f_input {
    border: 1.5px solid #50179433;
    border-radius: 9px;
    padding: 12px 12px 12px 40px;
    font-size: 15px;
    color: #1a0033;
    background: #fdf9ff;
    outline: none;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    box-sizing: border-box;
    position: relative
}

.cont_us .f_input:focus {
    border-color: #501794;
    box-shadow: 0 1px 5px 0 #50179412
}

.cont_us .f_input::placeholder {
    color: #50179461
}

.cont_us .inp_wrap {
    position: relative;
    display: flex;
    align-items: center
}

.cont_us .inp_wrap .ti {
    position: absolute;
    left: 12px;
    color: #50179466;
    font-size: 17px;
    pointer-events: none;
    z-index: 1
}

.cont_us .chk_group {
    margin-bottom: 20px
}

.cont_us .chk_title {
    font-size: 15px;
    color: #3a2255;
    font-weight: 600;
    margin-bottom: 12px
}

.cont_us .chk_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px
}

.cont_us .chk_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 12px;
    border: 1.5px solid #50179426;
    border-radius: 9px;
    cursor: pointer;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdf9ff
}

.cont_us .chk_item:hover {
    border-color: #501794;
    background: #f5eeff
}

.cont_us .chk_item input[type="checkbox"] {
    accent-color: #501794;
    width: 17px;
    height: 17px;
    cursor: pointer;
    flex-shrink: 0
}

.cont_us .chk_item .chk_lbl {
    font-size: 15px;
    color: #3a2255;
    line-height: 1.35;
    cursor: pointer
}

.cont_us .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding: 12px;
    background: #ffecda73;
    border-radius: 9px
}

.cont_us .privacy_row input[type="checkbox"] {
    accent-color: #501794;
    width: 17px;
    height: 17px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer
}

.cont_us .privacy_txt {
    font-size: 15px;
    color: #3a2255;
    line-height: 1.6
}

.cont_us .privacy_txt a {
    color: #501794;
    text-decoration: underline;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.cont_us .privacy_txt a:hover {
    color: #46FF12
}

.cont_us .btn_submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #501794;
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 12px 40px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .22s cubic-bezier(0.0, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: 0 5px 14px 0 #5017941c;
    type: submit
}

.cont_us .btn_submit:hover {
    background: #3d1175;
    box-shadow: 0 9px 44px 0 #5017941a
}

.cont_us .btn_submit:active {
    background: #2d0c57
}

.cont_us .btn_submit .ripple_el {
    position: absolute;
    border-radius: 50%;
    background: #ffffff47;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple_anim .55s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

@keyframes ripple_anim {
    from {
        width: 0;
        height: 0;
        opacity: .7
    }

    to {
        width: 300px;
        height: 300px;
        opacity: 0
    }
}

.cont_us .side_info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.cont_us .info_card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 1px 5px 0 #50179412
}

.cont_us .info_card_title {
    font-size: 17px;
    font-weight: 700;
    color: #1a0033;
    margin-bottom: 12px;
    line-height: 1.35
}

.cont_us .info_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px
}

.cont_us .info_row:last-child {
    margin-bottom: 0
}

.cont_us .info_icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #50179414;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cont_us .info_icon .ti {
    font-size: 17px;
    color: #501794
}

.cont_us .info_detail {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cont_us .info_lbl {
    font-size: 15px;
    color: #5017948c;
    letter-spacing: .06em;
    font-weight: 600
}

.cont_us .info_val {
    font-size: 15px;
    color: #1a0033;
    line-height: 1.35
}

.cont_us .info_val a {
    color: #501794;
    text-decoration: none;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.cont_us .info_val a:hover {
    color: #3d1175
}

.cont_us .quote_block {
    background: linear-gradient(135deg, #501794 0%, #3d1175 100%);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden
}

.cont_us .quote_block::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #46ff121f;
    pointer-events: none
}

.cont_us .quote_text {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffffeb;
    margin-bottom: 12px
}

.cont_us .quote_key {
    color: #46FF12;
    font-weight: 700
}

.cont_us .quote_attr {
    font-size: 15px;
    color: #ffffff8c;
    letter-spacing: .04em
}

.cont_us .form_seg_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden
}

.cont_us .form_seg_bg .math_sym {
    position: absolute;
    font-size: 320px;
    line-height: 1;
    color: #50179408;
    font-weight: 900;
    bottom: -40px;
    right: 40px;
    pointer-events: none;
    user-select: none
}

@media (max-width: 992px) {
    .cont_us .strip_h1 {
        font-size: 50px
    }

    .cont_us .strip_h1 .num_acc {
        font-size: 50px
    }

    .cont_us .strip_img_col {
        width: 160px;
        min-width: 140px
    }

    .cont_us .math_bg {
        font-size: 160px;
        right: 180px
    }

    .cont_us .form_seg_inner {
        grid-template-columns: 1fr
    }

    .cont_us .side_info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }
}

@media (max-width: 576px) {
    .cont_us .strip_inner {
        flex-direction: column;
        gap: 20px
    }

    .cont_us .strip_img_col {
        width: 100%;
        min-width: unset;
        height: 180px
    }

    .cont_us .strip_h1 {
        font-size: 36px
    }

    .cont_us .strip_h1 .num_acc {
        font-size: 36px
    }

    .cont_us .math_bg {
        display: none
    }

    .cont_us .field_row {
        grid-template-columns: 1fr
    }

    .cont_us .chk_grid {
        grid-template-columns: 1fr
    }

    .cont_us .form_card {
        padding: 20px
    }

    .cont_us .side_info {
        grid-template-columns: 1fr
    }

    .cont_us .form_seg {
        padding: 40px 0
    }
}

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

.lp_prog .pg_wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px
}

.lp_prog .split_top {
    display: grid;
    grid-template-columns: 1fr 1fr
}

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

.lp_prog .split_right {
    background: #FFECDA;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.lp_prog .split_deco {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #46FF12;
    opacity: .08;
    pointer-events: none
}

.lp_prog .split_deco_sm {
    position: absolute;
    bottom: 40px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #46FF12;
    opacity: .1;
    pointer-events: none
}

.lp_prog .prog_label {
    font-size: 15px;
    letter-spacing: .12em;
    color: #46FF12;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.lp_prog .prog_label_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #46FF12;
    flex-shrink: 0
}

.lp_prog .prog_h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 20px
}

.lp_prog .prog_h1 .num_accent {
    color: #46FF12
}

.lp_prog .prog_desc {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffffd1;
    margin: 0 0 40px;
    max-width: 420px
}

.lp_prog .btn_row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.lp_prog .btn_prim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #46FF12;
    color: #1b0040;
    font-size: 15px;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 9px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp_prog .btn_prim:hover {
    background: #2edf00;
    color: #1b0040
}

.lp_prog .btn_sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 9px;
    border: 2px solid #ffffff59;
    text-decoration: none;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp_prog .btn_sec:hover {
    border-color: #46FF12;
    background: #46ff1212;
    color: #fff
}

.lp_prog .img_box {
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
    border-radius: 2px
}

.lp_prog .img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0;
    transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    will-change: transform
}

.lp_prog .img_box img.loaded {
    opacity: 1
}

.lp_prog .detail_sec {
    padding: 80px 0;
    background: #fff
}

.lp_prog .detail_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.lp_prog .detail_main {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.lp_prog .faded_num {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: #501794;
    opacity: .07;
    position: absolute;
    top: -12px;
    left: 0;
    pointer-events: none;
    user-select: none
}

.lp_prog .block_head {
    position: relative;
    padding-top: 20px;
    padding-left: 4px
}

.lp_prog .block_h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #1b0040;
    margin: 0 0 12px;
    position: relative;
    z-index: 1
}

.lp_prog .block_sub {
    font-size: 17px;
    line-height: 1.6;
    color: #3d3d5c;
    margin: 0
}

.lp_prog .module_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0
}

.lp_prog .module_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f9f4ff;
    border-radius: 9px;
    box-shadow: 0 1px 5px 0 #50179412;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
    animation: card_flip .35s cubic-bezier(0.0, 0, 0.2, 1) both
}

.lp_prog .module_item:nth-child(1) {
    animation-delay: .05s
}

.lp_prog .module_item:nth-child(2) {
    animation-delay: .13s
}

.lp_prog .module_item:nth-child(3) {
    animation-delay: .21s
}

.lp_prog .module_item:nth-child(4) {
    animation-delay: .29s
}

.lp_prog .module_item:nth-child(5) {
    animation-delay: .37s
}

@keyframes card_flip {
    from {
        opacity: 0;
        transform: rotateY(12deg) translateY(8px)
    }

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

.lp_prog .module_item:hover {
    box-shadow: 0 5px 14px 0 #5017941c;
    transform: translateY(-2px)
}

.lp_prog .mod_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #46FF12;
    flex-shrink: 0;
    margin-top: 6px
}

.lp_prog .mod_txt {
    flex: 1
}

.lp_prog .mod_name {
    font-size: 17px;
    font-weight: 700;
    color: #1b0040;
    margin: 0 0 4px;
    line-height: 1.35
}

.lp_prog .mod_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #3d3d5c;
    margin: 0
}

.lp_prog .mod_num {
    font-size: 26px;
    font-weight: 900;
    color: #501794;
    opacity: .18;
    line-height: 1.1;
    flex-shrink: 0;
    align-self: flex-start
}

.lp_prog .ratio_block {
    margin-top: 20px;
    padding: 20px;
    background: #f9f4ff;
    border-radius: 9px
}

.lp_prog .ratio_label {
    font-size: 15px;
    color: #501794;
    font-weight: 600;
    margin: 0 0 8px
}

.lp_prog .ratio_bar_wrap {
    width: 100%;
    height: 12px;
    background: #5017941f;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px
}

.lp_prog .ratio_bar_fill {
    height: 100%;
    background: linear-gradient(135deg, #46FF12 0%, #501794 140deg);
    border-radius: 5px;
    width: 68%;
    transition: width .5s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp_prog .ratio_legend {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 15px;
    color: #3d3d5c
}

.lp_prog .ratio_a {
    color: #501794;
    font-weight: 700
}

.lp_prog .ratio_b {
    color: #3d3d5c
}

.lp_prog .side_col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lp_prog .info_card {
    background: #501794;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 9px 44px 0 #5017941a;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lp_prog .info_card_head {
    font-size: 15px;
    letter-spacing: .08em;
    color: #fff9;
    text-transform: uppercase;
    margin: 0
}

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

.lp_prog .stat_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #46FF12;
    flex-shrink: 0
}

.lp_prog .stat_val {
    font-size: 26px;
    font-weight: 900;
    color: #46FF12;
    line-height: 1.1
}

.lp_prog .stat_lbl {
    font-size: 15px;
    color: #ffffffbf;
    line-height: 1.35
}

.lp_prog .philan_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #501794;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 9px;
    background: #FFECDA;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp_prog .philan_link:hover {
    background: #501794;
    color: #fff
}

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

.lp_prog .spec_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    color: #ffffffd1;
    line-height: 1.6
}

.lp_prog .spec_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #46FF12;
    flex-shrink: 0;
    margin-top: 6px
}

.lp_prog .hline_deco {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 40px 0
}

.lp_prog .hline_seg {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #50179433 50deg, transparent 100%)
}

.lp_prog .hline_center {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #FFECDA;
    border: 2px solid #50179440;
    display: flex;
    align-items: center;
    justify-content: center
}

.lp_prog .hline_inner {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #501794;
    opacity: .5
}

.lp_prog .letter_hover span {
    display: inline-block;
    transition: color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp_prog .letter_hover:hover span:nth-child(odd) {
    color: #46FF12
}

.lp_prog .letter_hover:hover span:nth-child(even) {
    color: #501794
}

@media (max-width: 992px) {
    .lp_prog .split_top {
        grid-template-columns: 1fr
    }

    .lp_prog .split_right {
        padding: 40px 20px;
        min-height: 320px
    }

    .lp_prog .split_left {
        padding: 40px 20px
    }

    .lp_prog .prog_h1 {
        font-size: 36px
    }

    .lp_prog .detail_grid {
        grid-template-columns: 1fr
    }

    .lp_prog .side_col {
        flex-direction: row;
        flex-wrap: wrap
    }

    .lp_prog .info_card {
        flex: 1 1 240px
    }
}

@media (max-width: 576px) {
    .lp_prog .prog_h1 {
        font-size: 26px
    }

    .lp_prog .split_left,
    .lp_prog .split_right {
        padding: 40px 20px
    }

    .lp_prog .btn_row {
        flex-direction: column
    }

    .lp_prog .detail_sec {
        padding: 40px 0
    }

    .lp_prog .img_box {
        min-height: 220px
    }

    .lp_prog .block_h2 {
        font-size: 26px
    }

    .lp_prog .side_col {
        flex-direction: column
    }
}

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

.abt .pg_wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px
}

.abt ::selection {
    background: #46ff122e;
    color: #1a0a2e
}

.abt img {
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt img.loaded {
    opacity: 1
}

.abt .top_band {
    padding: 40px 0 20px;
    position: relative
}

.abt .top_band .pg_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.abt .top_band_left {
    flex: 0 0 58%;
    position: relative;
    padding: 40px 0 40px 40px
}

.abt .top_band_curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    border-radius: 16px
}

.abt .top_band_curve svg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 340px;
    height: 220px;
    opacity: .13
}

.abt .top_band_tag {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #501794;
    background: #50179414;
    border-radius: 5px;
    padding: 4px 12px;
    margin-bottom: 20px
}

.abt .top_band_h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1a0a2e;
    margin: 0 0 8px;
    font-weight: 800
}

.abt .top_band_h1 .outlined_word {
    -webkit-text-stroke: 2px #501794;
    color: transparent
}

.abt .top_band_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative
}

.abt .top_img_wrap {
    width: 280px;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 9px 44px 0 #5017941a
}

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

.abt .top_img_duotone {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #46ff1247 0%, #5017946b 100%);
    mix-blend-mode: multiply;
    border-radius: 16px
}

.abt .who_sec {
    padding: 80px 0;
    background: linear-gradient(170deg, #fff 0%, #ffecda73 100%);
    position: relative
}

.abt .who_sec_divider_top {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 40px
}

.abt .who_sec_divider_top svg {
    display: block;
    width: 100%
}

.abt .who_grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 80px;
    align-items: start
}

.abt .who_text_col {
    position: relative
}

.abt .who_faded_num {
    font-size: 68px;
    font-weight: 900;
    color: #50179412;
    line-height: 1.1;
    position: absolute;
    top: -20px;
    left: -12px;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px
}

.abt .who_h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #1a0a2e;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    padding-top: 12px
}

.abt .who_body {
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a;
    margin: 0 0 20px
}

.abt .who_body .accent_num {
    color: #501794;
    font-weight: 700
}

.abt .who_side_col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px
}

.abt .who_stat {
    background: #fff;
    border-radius: 9px;
    padding: 20px;
    box-shadow: 0 5px 14px 0 #46ff121c;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt .who_stat:hover {
    box-shadow: 0 9px 44px 0 #46ff122e;
    transform: translateY(-2px)
}

.abt .who_stat_num {
    font-size: 36px;
    font-weight: 800;
    color: #46FF12;
    line-height: 1.1;
    text-shadow: 0 1px 5px #46ff122e
}

.abt .who_stat_label {
    font-size: 15px;
    color: #501794;
    line-height: 1.35;
    margin-top: 4px
}

.abt .who_img2 {
    width: 100%;
    height: 200px;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 5px 14px 0 #5017941c
}

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

.abt .approach_sec {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.abt .approach_sec_inner {
    position: relative
}

.abt .approach_curve_deco {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 280px;
    height: 180px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 2px
}

.abt .approach_curve_deco svg {
    width: 100%;
    height: 100%;
    opacity: .09
}

.abt .approach_top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px
}

.abt .approach_h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #1a0a2e;
    margin: 0;
    flex: 1
}

.abt .approach_h2 .outlined_word {
    -webkit-text-stroke: 2px #46FF12;
    color: transparent
}

.abt .approach_intro {
    flex: 0 0 38%;
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a;
    margin: 0
}

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

.abt .ap_card {
    background: linear-gradient(155deg, #ffecda99 0%, #5017940d 100%);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 5px 0 #50179412;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .17s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt .ap_card:hover {
    box-shadow: 0 9px 44px 0 #5017941a;
    transform: translateY(-3px) scale(1.01)
}

.abt .ap_card_num {
    font-size: 68px;
    font-weight: 900;
    color: #46ff121f;
    line-height: 1.1;
    position: absolute;
    top: -8px;
    right: 12px;
    pointer-events: none;
    user-select: none
}

.abt .ap_card_icon {
    width: 40px;
    height: 40px;
    background: #5017941a;
    border-radius: 9px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.abt .ap_card_icon i {
    font-size: 20px;
    color: #501794
}

.abt .ap_card_h {
    font-size: 20px;
    font-weight: 700;
    color: #1a0a2e;
    margin: 0 0 8px;
    line-height: 1.35
}

.abt .ap_card_p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d2060;
    margin: 0
}

.abt .ap_card:nth-child(1) {
    animation: card_scale_in .28s cubic-bezier(0.4, 0, 0.2, 1) .05s both
}

.abt .ap_card:nth-child(2) {
    animation: card_scale_in .28s cubic-bezier(0.4, 0, 0.2, 1) .13s both
}

.abt .ap_card:nth-child(3) {
    animation: card_scale_in .28s cubic-bezier(0.4, 0, 0.2, 1) .21s both
}

@keyframes card_scale_in {
    from {
        opacity: 0;
        transform: scale(0.93)
    }

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

.abt .team_sec {
    padding: 80px 0;
    background: linear-gradient(160deg, #5017940f 0%, #46ff120d 100%);
    position: relative
}

.abt .team_sec_divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 40px
}

.abt .team_sec_divider svg {
    display: block;
    width: 100%
}

.abt .team_layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: start
}

.abt .team_left {
    position: relative
}

.abt .team_faded_num {
    font-size: 68px;
    font-weight: 900;
    color: #46ff121a;
    line-height: 1.1;
    position: absolute;
    top: -16px;
    left: -8px;
    pointer-events: none;
    user-select: none
}

.abt .team_h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #1a0a2e;
    margin: 0 0 20px;
    position: relative;
    z-index: 1;
    padding-top: 12px
}

.abt .team_desc {
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a;
    margin: 0 0 20px
}

.abt .team_contact_block {
    background: #501794;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 9px 44px 0 #5017941a
}

.abt .team_contact_label {
    font-size: 15px;
    letter-spacing: .1em;
    color: #ffecdab3;
    margin-bottom: 12px;
    display: block
}

.abt .team_contact_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.abt .team_contact_item:last-child {
    margin-bottom: 0
}

.abt .team_contact_item i {
    font-size: 20px;
    color: #46FF12;
    flex-shrink: 0
}

.abt .team_contact_item a {
    font-size: 15px;
    color: #FFECDA;
    text-decoration: none;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt .team_contact_item a:hover {
    color: #46FF12
}

.abt .team_right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.abt .tm_card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 14px 0 #5017941c;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .19s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt .tm_card:hover {
    box-shadow: 0 9px 44px 0 #50179426;
    transform: translateY(-3px)
}

.abt .tm_card_img {
    width: 100%;
    height: 180px;
    overflow: hidden
}

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

.abt .tm_card_body {
    padding: 12px 20px 20px
}

.abt .tm_name {
    font-size: 17px;
    font-weight: 700;
    color: #1a0a2e;
    margin: 0 0 4px;
    line-height: 1.35
}

.abt .tm_role {
    font-size: 15px;
    color: #501794;
    line-height: 1.35;
    margin: 0
}

.abt .team_contact_block {
    animation: gentle_shake 4s cubic-bezier(0.4, 0, 0.2, 1) 2s infinite
}

@keyframes gentle_shake {

    0%,
    88%,
    100% {
        transform: translateX(0)
    }

    91% {
        transform: translateX(-4px)
    }

    94% {
        transform: translateX(4px)
    }

    97% {
        transform: translateX(-2px)
    }
}

.abt .btn_primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #501794;
    color: #fff;
    border: none !important;
    border-radius: 9px;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 14px 0 #5017941c;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none
}

.abt .btn_primary:hover {
    background: #3d1070;
    box-shadow: 0 9px 44px 0 #5017942e;
    color: #fff
}

.abt .btn_primary:focus {
    outline: 3px solid #46FF12;
    outline-offset: 2px
}

.abt .btn_primary .ripple_el {
    position: absolute;
    border-radius: 50%;
    background: #ffffff47;
    transform: scale(0);
    animation: ripple_anim .5s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

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

@media (max-width: 992px) {
    .abt .top_band_h1 {
        font-size: 50px
    }

    .abt .top_band .pg_wrap {
        flex-direction: column;
        gap: 20px
    }

    .abt .top_band_left {
        flex: none;
        width: 100%;
        padding: 20px
    }

    .abt .top_band_right {
        align-items: flex-start
    }

    .abt .top_img_wrap {
        width: 100%;
        height: 220px
    }

    .abt .who_grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .abt .approach_top {
        flex-direction: column;
        gap: 20px
    }

    .abt .approach_h2 {
        font-size: 36px
    }

    .abt .approach_intro {
        flex: none
    }

    .abt .approach_cards {
        grid-template-columns: 1fr 1fr
    }

    .abt .team_layout {
        grid-template-columns: 1fr
    }

    .abt .team_right {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 576px) {
    .abt .top_band_h1 {
        font-size: 36px
    }

    .abt .approach_cards {
        grid-template-columns: 1fr
    }

    .abt .team_right {
        grid-template-columns: 1fr
    }

    .abt .who_stat_num {
        font-size: 26px
    }

    .abt .approach_h2 {
        font-size: 26px
    }
}

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

.entry_pg .pg_wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px
}

.entry_pg .divider_grad {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #501794 30%, #46FF12 70%, transparent 100%);
    opacity: .25;
    margin: 0
}

.entry_pg .title_blk {
    position: relative;
    padding: 80px 0 120px;
    background-color: #f5f0fa;
    overflow: hidden
}

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

.entry_pg .title_blk .shape_a {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #50179412;
    pointer-events: none;
    z-index: 0
}

.entry_pg .title_blk .shape_b {
    position: absolute;
    bottom: 20px;
    left: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #46ff120f;
    pointer-events: none;
    z-index: 0
}

.entry_pg .title_blk .shape_c {
    position: absolute;
    top: 40px;
    left: 38%;
    width: 140px;
    height: 140px;
    border-radius: 24px;
    border: 1.5px solid #5017941f;
    transform: rotate(22deg);
    pointer-events: none;
    z-index: 0
}

.entry_pg .title_blk .tb_grid {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.entry_pg .title_blk .tb_text {
    flex: 1 1 0;
    min-width: 0
}

.entry_pg .title_blk .tb_label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #501794;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 4px 12px;
    border-radius: 5px;
    background: #50179414
}

.entry_pg .title_blk .tb_h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1e0a36;
    margin: 0 0 20px;
    font-weight: 900;
    letter-spacing: -.02em
}

.entry_pg .title_blk .tb_h1 .accent_num {
    color: #46FF12;
    font-size: 68px
}

.entry_pg .title_blk .tb_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #3a2455;
    max-width: 480px;
    margin: 0 0 40px
}

.entry_pg .title_blk .tb_actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.entry_pg .tb_btn_primary {
    display: inline-block;
    padding: 12px 40px;
    background: #501794;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    border-radius: 9px;
    text-decoration: none;
    border: 2px solid #501794;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.entry_pg .tb_btn_primary:hover {
    background: #3a0f6e;
    border-color: #3a0f6e;
    color: #fff
}

.entry_pg .tb_btn_secondary {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #501794;
    font-size: 17px;
    font-weight: 700;
    border-radius: 9px;
    text-decoration: none;
    border: 2px solid #501794;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .tb_btn_secondary:hover {
    background: #50179414;
    color: #3a0f6e
}

.entry_pg .title_blk .tb_img_col {
    flex: 0 0 420px;
    position: relative
}

.entry_pg .title_blk .tb_img_frame {
    width: 420px;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 9px 44px 0 #5017941a;
    position: relative
}

.entry_pg .title_blk .tb_img_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .title_blk .tb_img_frame img.loaded {
    opacity: 1
}

.entry_pg .title_blk .tb_img_frame .blur_overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, #50179438 100%);
    pointer-events: none
}

.entry_pg .metrics_blk {
    padding: 80px 0;
    background: #fff
}

.entry_pg .metrics_blk .met_top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px
}

.entry_pg .metrics_blk .met_heading {
    flex: 1 1 0
}

.entry_pg .metrics_blk .met_heading h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #1e0a36;
    font-weight: 800;
    margin: 0
}

.entry_pg .metrics_blk .met_note {
    flex: 0 0 320px;
    font-size: 17px;
    line-height: 1.6;
    color: #4a3460
}

.entry_pg .metrics_blk .met_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.entry_pg .met_card {
    background: linear-gradient(155deg, #f5f0fa 0%, #fff 100%);
    border-radius: 16px;
    padding: 40px 20px 20px;
    box-shadow: 0 1px 5px 0 #50179412;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .met_card:hover {
    box-shadow: 0 5px 14px 0 #5017941c
}

.entry_pg .met_card .mc_bg_num {
    position: absolute;
    top: -12px;
    right: 8px;
    font-size: 68px;
    font-weight: 900;
    color: #5017940d;
    line-height: 1.1;
    pointer-events: none;
    user-select: none
}

.entry_pg .met_card .mc_val {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    color: #501794;
    display: block;
    margin-bottom: 8px
}

.entry_pg .met_card .mc_val .mc_unit {
    font-size: 26px;
    font-weight: 700;
    color: #46FF12
}

.entry_pg .met_card .mc_label {
    font-size: 15px;
    line-height: 1.6;
    color: #4a3460;
    font-weight: 500
}

.entry_pg .gap_blk {
    padding: 80px 0;
    background: linear-gradient(160deg, #f5f0fa 0%, #FFECDA 100%)
}

.entry_pg .gap_blk .gap_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center
}

.entry_pg .gap_blk .gap_text h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #1e0a36;
    font-weight: 900;
    margin: 0 0 20px
}

.entry_pg .gap_blk .gap_text .gap_para {
    font-size: 17px;
    line-height: 1.6;
    color: #3a2455;
    margin-bottom: 20px
}

.entry_pg .gap_blk .gap_text .gap_para:last-child {
    margin-bottom: 0
}

.entry_pg .gap_blk .gap_side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.entry_pg .gap_blk .gap_img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 14px 0 #5017941c
}

.entry_pg .gap_blk .gap_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .gap_blk .gap_img img.loaded {
    opacity: 1
}

.entry_pg .gap_blk .gap_tag {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #ffffffb3;
    border-radius: 9px;
    font-size: 15px;
    color: #1e0a36;
    font-weight: 600;
    box-shadow: 0 1px 5px 0 #50179412
}

.entry_pg .gap_blk .gap_tag .gt_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #46FF12;
    flex-shrink: 0
}

.entry_pg .who_blk {
    padding: 80px 0;
    background: #1e0a36
}

.entry_pg .who_blk .who_head {
    text-align: center;
    margin-bottom: 40px
}

.entry_pg .who_blk .who_head h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #fff;
    font-weight: 800;
    margin: 0 0 12px
}

.entry_pg .who_blk .who_head p {
    font-size: 17px;
    line-height: 1.6;
    color: #ffecdabf;
    max-width: 560px;
    margin: 0 auto
}

.entry_pg .who_blk .who_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.entry_pg .who_blk .who_col_in {
    background: #ffffff0d;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #ffecda1a
}

.entry_pg .who_blk .who_col_in .wc_label {
    font-size: 15px;
    letter-spacing: .1em;
    color: #46FF12;
    font-weight: 700;
    margin-bottom: 20px;
    display: block
}

.entry_pg .who_blk .who_col_in .wc_label.neg {
    color: #ffecda80
}

.entry_pg .who_blk .who_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.entry_pg .who_blk .who_list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 17px;
    line-height: 1.6;
    color: #ffffffe0
}

.entry_pg .who_blk .who_list li .wi_icon {
    flex-shrink: 0;
    margin-top: 4px;
    width: 18px;
    height: 18px
}

.entry_pg .who_blk .who_col_in.col_no .who_list li {
    color: #ffecda8c
}

.entry_pg .who_blk .who_img_row {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    position: relative
}

.entry_pg .who_blk .who_img_row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .who_blk .who_img_row img.loaded {
    opacity: 1
}

.entry_pg .who_blk .who_img_row .wir_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #1e0a36b3 0%, transparent 60%);
    pointer-events: none
}

.entry_pg .who_blk .who_img_row .wir_text {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    max-width: 340px
}

.entry_pg .outcome_blk {
    padding: 80px 0;
    background: #fff
}

.entry_pg .outcome_blk .out_layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

.entry_pg .outcome_blk .out_left {
    position: relative
}

.entry_pg .outcome_blk .out_left h2 {
    font-size: 36px;
    line-height: 1.35;
    color: #1e0a36;
    font-weight: 800;
    margin: 0 0 20px
}

.entry_pg .outcome_blk .out_left p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a3460
}

.entry_pg .outcome_blk .out_img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 16px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 5px 14px 0 #5017941c
}

.entry_pg .outcome_blk .out_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .outcome_blk .out_img img.loaded {
    opacity: 1
}

.entry_pg .outcome_blk .out_right {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.entry_pg .outcome_blk .out_right .out_head_sm {
    font-size: 15px;
    letter-spacing: .1em;
    color: #501794;
    font-weight: 700;
    margin-bottom: 20px
}

.entry_pg .metric_bar_list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.entry_pg .metric_bar_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px
}

.entry_pg .metric_bar_item .mbi_label {
    flex: 0 0 220px;
    font-size: 15px;
    line-height: 1.6;
    color: #1e0a36;
    font-weight: 600
}

.entry_pg .metric_bar_item .mbi_track {
    flex: 1 1 0;
    height: 8px;
    background: #5017941a;
    border-radius: 5px;
    overflow: hidden
}

.entry_pg .metric_bar_item .mbi_fill {
    height: 100%;
    border-radius: 5px;
    background: linear-gradient(90deg, #501794 0%, #46FF12 100%);
    transition: width .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.entry_pg .metric_bar_item .mbi_val {
    flex: 0 0 48px;
    text-align: right;
    font-size: 17px;
    font-weight: 800;
    color: #501794
}

.entry_pg .outcome_blk .out_cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px
}

.entry_pg .out_card {
    background: linear-gradient(145deg, #f5f0fa 0%, #fff 100%);
    border-radius: 9px;
    padding: 20px;
    box-shadow: 0 1px 5px 0 #50179412
}

.entry_pg .out_card .oc_num {
    font-size: 36px;
    font-weight: 900;
    color: #46FF12;
    line-height: 1.1;
    display: block;
    margin-bottom: 4px
}

.entry_pg .out_card .oc_text {
    font-size: 15px;
    line-height: 1.6;
    color: #3a2455
}

.entry_pg .diff_blk {
    padding: 80px 0;
    background: linear-gradient(160deg, #FFECDA 0%, #f5f0fa 100%)
}

.entry_pg .diff_blk .diff_top {
    margin-bottom: 40px
}

.entry_pg .diff_blk .diff_top h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #1e0a36;
    font-weight: 900;
    margin: 0 0 12px
}

.entry_pg .diff_blk .diff_top p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a3460;
    max-width: 560px
}

.entry_pg .diff_blk .diff_layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.entry_pg .diff_item {
    background: #fff;
    border-radius: 16px;
    padding: 40px 20px 20px;
    box-shadow: 0 1px 5px 0 #50179412;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .diff_item:hover {
    box-shadow: 0 5px 14px 0 #5017941c
}

.entry_pg .diff_item .di_num {
    position: absolute;
    top: -8px;
    right: 12px;
    font-size: 68px;
    font-weight: 900;
    color: #5017940d;
    line-height: 1.1;
    pointer-events: none;
    user-select: none
}

.entry_pg .diff_item .di_icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #5017941a;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .diff_item:hover .di_icon {
    background: #5017942e
}

.entry_pg .diff_item .di_icon i {
    font-size: 20px;
    color: #501794;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.entry_pg .diff_item:hover .di_icon i {
    transform: rotate(360deg)
}

.entry_pg .diff_item h4 {
    font-size: 20px;
    line-height: 1.35;
    color: #1e0a36;
    font-weight: 700;
    margin: 0 0 8px
}

.entry_pg .diff_item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a3460;
    margin: 0
}

@media (max-width: 992px) {
    .entry_pg .title_blk .tb_grid {
        flex-direction: column
    }

    .entry_pg .title_blk .tb_img_col {
        flex: 0 0 auto;
        width: 100%
    }

    .entry_pg .title_blk .tb_img_frame {
        width: 100%;
        height: 280px
    }

    .entry_pg .title_blk .tb_h1 {
        font-size: 50px
    }

    .entry_pg .metrics_blk .met_top {
        flex-direction: column;
        align-items: flex-start
    }

    .entry_pg .metrics_blk .met_note {
        flex: 0 0 auto
    }

    .entry_pg .metrics_blk .met_grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .entry_pg .gap_blk .gap_grid {
        grid-template-columns: 1fr
    }

    .entry_pg .who_blk .who_cols {
        grid-template-columns: 1fr
    }

    .entry_pg .outcome_blk .out_layout {
        grid-template-columns: 1fr
    }

    .entry_pg .diff_blk .diff_layout {
        grid-template-columns: 1fr 1fr
    }

    .entry_pg .metric_bar_item .mbi_label {
        flex: 0 0 160px
    }
}

@media (max-width: 576px) {
    .entry_pg .title_blk {
        padding: 40px 0 80px
    }

    .entry_pg .title_blk .tb_h1 {
        font-size: 36px
    }

    .entry_pg .title_blk .tb_h1 .accent_num {
        font-size: 36px
    }

    .entry_pg .metrics_blk .met_grid {
        grid-template-columns: 1fr
    }

    .entry_pg .who_blk .who_col_in {
        padding: 20px
    }

    .entry_pg .outcome_blk .out_cards {
        grid-template-columns: 1fr
    }

    .entry_pg .diff_blk .diff_layout {
        grid-template-columns: 1fr
    }

    .entry_pg .diff_blk .diff_top h2 {
        font-size: 36px
    }

    .entry_pg .gap_blk .gap_text h2 {
        font-size: 36px
    }

    .entry_pg .metric_bar_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .entry_pg .metric_bar_item .mbi_label {
        flex: 0 0 auto
    }

    .entry_pg .metric_bar_item .mbi_track {
        width: 100%
    }

    .entry_pg .metrics_blk,
    .entry_pg .gap_blk,
    .entry_pg .who_blk,
    .entry_pg .outcome_blk,
    .entry_pg .diff_blk {
        padding: 40px 0
    }
}

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

.srv .ed_col {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px
}

.srv .band_strip {
    height: 4px;
    background: linear-gradient(97deg, #46FF12 0%, #501794 60%, #FFECDA 100%);
    width: 100%
}

.srv .pg_top {
    padding-top: 80px;
    padding-bottom: 80px;
    background: radial-gradient(circle at 38% 60%, #50179421 0%, #46ff1212 55%, #ffecda2e 100%);
    position: relative
}

.srv .pg_top_col {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.srv .pg_top_txt {
    flex: 2
}

.srv .pg_top_img {
    flex: 1;
    position: relative
}

.srv .pg_top_img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(1) sepia(0.3);
    box-shadow: 0 9px 44px 0 #5017941a
}

.srv .pg_top_img img.loaded {
    opacity: 1
}

.srv .pg_top_img::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(160deg, #50179438 0%, #46ff1217 100%);
    pointer-events: none
}

.srv .pg_lbl {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .18em;
    color: #501794;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600
}

.srv .pg_h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1a0a2e;
    margin-bottom: 20px;
    font-weight: 800
}

.srv .pg_h1 span {
    color: #501794
}

.srv .pg_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #2d1a4a;
    max-width: 520px;
    margin-bottom: 0
}

.srv .pg_sub strong {
    color: #46FF12;
    background: #501794;
    border-radius: 2px;
    padding-left: 4px;
    padding-right: 4px
}

.srv .band_strip {
    margin: 0
}

.srv .cards_area {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff
}

.srv .cards_head {
    margin-bottom: 40px
}

.srv .cards_head h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #1a0a2e;
    margin-bottom: 8px
}

.srv .cards_head .sub_cap {
    font-size: 15px;
    letter-spacing: .13em;
    color: #501794;
    text-transform: uppercase;
    display: block;
    border-top: 2px solid #46FF12;
    padding-top: 8px;
    width: fit-content
}

.srv .cards_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

.srv .svc_card {
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 5px 14px 0 #5017941c;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv .svc_card:hover {
    box-shadow: 0 9px 44px 0 #50179429
}

.srv .card_img_wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden
}

.srv .card_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.7) sepia(0.15)
}

.srv .card_img_wrap img.loaded {
    opacity: 1
}

.srv .card_img_wrap::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #50179414 0%, #ffecda2e 100%);
    pointer-events: none
}

.srv .card_tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #501794;
    color: #fff;
    font-size: 15px;
    border-radius: 5px;
    padding: 4px 12px;
    letter-spacing: .08em;
    z-index: 1
}

.srv .card_body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srv .card_title {
    font-size: 26px;
    line-height: 1.35;
    color: #1a0a2e;
    margin: 0
}

.srv .card_desc {
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a;
    margin: 0
}

.srv .card_meta {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.srv .card_badge {
    background: #46ff1221;
    color: #1a0a2e;
    border-radius: 5px;
    font-size: 15px;
    padding: 4px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.srv .card_badge i {
    font-size: 15px;
    color: #501794
}

.srv .card_seats {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #501794
}

.srv .card_seats i {
    font-size: 15px
}

.srv .card_footer {
    padding: 20px;
    padding-top: 0;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap
}

.srv .card_price_block {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.srv .card_price {
    font-size: 36px;
    line-height: 1.1;
    color: #501794;
    font-weight: 800
}

.srv .card_price_des {
    font-size: 15px;
    color: #2d1a4a;
    line-height: 1.35
}

.srv .card_price_note {
    font-size: 15px;
    color: #501794;
    font-style: italic
}

.srv .card_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #501794;
    color: #fff;
    font-size: 17px;
    border-radius: 9px;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 600;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer
}

.srv .card_btn:hover {
    background: #3a0f70;
    color: #46FF12
}

.srv .card_btn:focus {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

.srv .card_btn::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: #46ff1221;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s cubic-bezier(0.0, 0, 0.2, 1);
    border-radius: 9px
}

.srv .card_btn:hover::before {
    transform: scaleX(1)
}

.srv .div_accent {
    height: 2px;
    background: linear-gradient(97deg, #FFECDA 0%, #501794 50%, #46FF12 100%);
    margin: 0
}

.srv .legend_area {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #ffecda59
}

.srv .legend_inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.srv .legend_left {
    flex: 1
}

.srv .legend_right {
    flex: 2
}

.srv .legend_h {
    font-size: 36px;
    line-height: 1.1;
    color: #1a0a2e;
    margin-bottom: 8px
}

.srv .legend_cap {
    font-size: 15px;
    letter-spacing: .15em;
    color: #501794;
    text-transform: uppercase;
    border-top: 2px solid #46FF12;
    padding-top: 8px;
    display: block;
    margin-bottom: 20px
}

.srv .legend_p {
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a;
    margin-bottom: 0
}

.srv .icon_leg_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0
}

.srv .icon_leg_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 9px;
    padding: 20px;
    box-shadow: 0 1px 5px 0 #50179412;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv .icon_leg_item:hover {
    box-shadow: 0 5px 14px 0 #5017941c
}

.srv .icon_dot {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srv .icon_dot.green {
    background: #46ff122e;
    color: #1a6400
}

.srv .icon_dot.purple {
    background: #50179421;
    color: #501794
}

.srv .icon_dot.warm {
    background: #ffecdae6;
    color: #7a3a00
}

.srv .icon_dot.mixed {
    background: linear-gradient(135deg, #50179426 0%, #46ff1226 100%);
    color: #501794
}

.srv .icon_dot i {
    font-size: 20px
}

.srv .leg_item_txt h6 {
    font-size: 17px;
    line-height: 1.35;
    color: #1a0a2e;
    margin-bottom: 4px;
    font-weight: 700
}

.srv .leg_item_txt p {
    font-size: 15px;
    line-height: 1.6;
    color: #2d1a4a;
    margin: 0
}

.srv .feat_area {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff
}

.srv .feat_inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch
}

.srv .feat_list_col {
    flex: 1;
    background: #5017940d;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative
}

.srv .feat_num_bg {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 120px;
    line-height: 1.1;
    color: #5017940f;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px
}

.srv .feat_h {
    font-size: 26px;
    line-height: 1.35;
    color: #1a0a2e;
    margin-bottom: 0;
    position: relative;
    z-index: 1
}

.srv .feat_item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    position: relative;
    z-index: 1
}

.srv .feat_icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #501794;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srv .feat_icon i {
    font-size: 17px
}

.srv .feat_item_txt h5 {
    font-size: 17px;
    line-height: 1.35;
    color: #1a0a2e;
    margin-bottom: 4px;
    font-weight: 700
}

.srv .feat_item_txt p {
    font-size: 15px;
    line-height: 1.6;
    color: #2d1a4a;
    margin: 0
}

.srv .feat_preview_col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.srv .feat_img_wrap {
    border-radius: 16px;
    overflow: hidden;
    flex: 1;
    position: relative;
    min-height: 260px
}

.srv .feat_img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity .28s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.5) sepia(0.2)
}

.srv .feat_img_wrap img.loaded {
    opacity: 1
}

.srv .feat_img_wrap::after {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #46ff1214 0%, #5017942e 100%);
    pointer-events: none
}

.srv .feat_stat_row {
    display: flex;
    flex-direction: row;
    gap: 20px
}

.srv .feat_stat {
    flex: 1;
    background: #501794;
    border-radius: 9px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.srv .feat_stat_num {
    font-size: 36px;
    line-height: 1.1;
    color: #46FF12;
    font-weight: 800
}

.srv .feat_stat_lbl {
    font-size: 15px;
    color: #ffecdae6;
    line-height: 1.35
}

.srv .faq_area {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #5017940d
}

.srv .faq_inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

.srv .faq_left {
    flex: 1;
    position: sticky;
    top: 20px
}

.srv .faq_h {
    font-size: 36px;
    line-height: 1.1;
    color: #1a0a2e;
    margin-bottom: 8px
}

.srv .faq_cap {
    font-size: 15px;
    letter-spacing: .15em;
    color: #501794;
    text-transform: uppercase;
    border-top: 2px solid #46FF12;
    padding-top: 8px;
    display: block;
    margin-bottom: 20px
}

.srv .faq_p {
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a
}

.srv .faq_right {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srv .faq_item {
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 1px 5px 0 #50179412;
    overflow: hidden
}

.srv .faq_q {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    gap: 12px;
    list-style: none
}

.srv .faq_q::-webkit-details-marker {
    display: none
}

.srv .faq_q_txt {
    font-size: 17px;
    line-height: 1.35;
    color: #1a0a2e;
    font-weight: 600
}

.srv .faq_icon {
    width: 28px;
    height: 28px;
    border-radius: 5px;
    background: #5017941a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv .faq_icon i {
    font-size: 17px;
    color: #501794;
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv details[open] .faq_icon {
    background: #501794
}

.srv details[open] .faq_icon i {
    color: #46FF12;
    transform: rotate(45deg)
}

.srv .faq_ans {
    padding: 0 20px 20px;
    font-size: 17px;
    line-height: 1.6;
    color: #2d1a4a
}

.srv .cta_band {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #501794;
    position: relative
}

.srv .cta_inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.srv .cta_txt h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 12px
}

.srv .cta_txt h2 span {
    color: #46FF12
}

.srv .cta_txt p {
    font-size: 20px;
    line-height: 1.6;
    color: #ffecdae6;
    max-width: 480px;
    margin: 0
}

.srv .cta_actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start
}

.srv .btn_prim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #46FF12;
    color: #1a0a2e;
    font-size: 17px;
    font-weight: 700;
    border-radius: 9px;
    padding: 12px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv .btn_prim:hover {
    background: #2ecc0a
}

.srv .btn_prim:focus {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.srv .btn_sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-size: 17px;
    border-radius: 9px;
    padding: 12px 20px;
    text-decoration: none;
    border: 2px solid #fff6;
    cursor: pointer;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv .btn_sec:hover {
    border-color: #46FF12;
    color: #46FF12
}

.srv .btn_sec:focus {
    outline: 2px solid #46FF12;
    outline-offset: 2px
}

@media (max-width: 992px) {
    .srv .pg_top_col {
        flex-direction: column
    }

    .srv .pg_h1 {
        font-size: 50px
    }

    .srv .cards_grid {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .srv .legend_inner {
        flex-direction: column
    }

    .srv .feat_inner {
        flex-direction: column
    }

    .srv .faq_inner {
        flex-direction: column
    }

    .srv .faq_left {
        position: static
    }

    .srv .cta_inner {
        flex-direction: column
    }

    .srv .cta_txt h2 {
        font-size: 36px
    }

    .srv .icon_leg_list {
        grid-template-columns: 1fr
    }
}

@media (max-width: 576px) {
    .srv .pg_h1 {
        font-size: 36px
    }

    .srv .pg_top {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .srv .cards_area {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .srv .legend_area {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .srv .feat_area {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .srv .faq_area {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .srv .cta_band {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .srv .feat_stat_row {
        flex-direction: column
    }

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

    .srv .feat_list_col {
        padding: 20px
    }
}

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

.success_page .success_wrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.success_page .success_icon_ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f3fff0;
    border: 2px solid #46FF12;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 0 5px 14px 0 #46ff121c
}

.success_page .success_icon_ring svg {
    display: block
}

.success_page .success_heading {
    font-size: 36px;
    line-height: 1.1;
    color: #1a0a2e;
    margin-bottom: 20px;
    letter-spacing: -.5px
}

.success_page .success_heading span {
    color: #501794
}

.success_page .success_text {
    font-size: 17px;
    line-height: 1.6;
    color: #3a2a50;
    margin-bottom: 40px
}

.success_page .success_divider {
    width: 48px;
    height: 2px;
    background: #46FF12;
    border-radius: 2px;
    margin: 0 auto 40px
}

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

.success_page .btn_primary {
    display: inline-block;
    padding: 12px 20px;
    background: #501794;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
    border-radius: 9px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 14px 0 #5017941c;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.success_page .btn_primary:hover {
    background: #3d1170;
    box-shadow: 0 9px 44px 0 #5017941a
}

.success_page .btn_primary:focus {
    outline: 2px solid #501794;
    outline-offset: 3px
}

.success_page .btn_secondary {
    display: inline-block;
    padding: 12px 20px;
    background: #FFECDA;
    color: #501794;
    font-size: 15px;
    line-height: 1.35;
    border-radius: 9px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 1px 5px 0 #50179412;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.success_page .btn_secondary:hover {
    background: #ffdfc0;
    box-shadow: 0 5px 14px 0 #5017941c
}

.success_page .btn_secondary:focus {
    outline: 2px solid #501794;
    outline-offset: 3px
}

.success_page .success_note {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.6;
    color: #6a5580;
    background: #FFECDA;
    border-radius: 9px;
    padding: 12px 20px;
    box-shadow: 0 1px 5px 0 #50179412
}

@media (max-width: 576px) {
    .success_page {
        padding: 40px 20px
    }

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

    .success_page .success_actions {
        flex-direction: column;
        align-items: stretch
    }

    .success_page .btn_primary,
    .success_page .btn_secondary {
        text-align: center
    }
}