* {
    box-sizing: border-box
}

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    font-family: 'Cabin', sans-serif
}

:focus-visible {
    outline: 2px solid #542198;
    outline-offset: 3px;
    box-shadow: 0 0 0 5px #5421982e
}

.hd_bar {
    background: linear-gradient(135deg, #542198 0%, #3a1570 55%, #1e0a3c 100%);
    width: 100%;
    position: relative;
    overflow: hidden
}

.hd_bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #f3f00a12 0%, transparent 60%, #aff6da0f 100%);
    pointer-events: none
}

.hd_inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.hd_utility {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #f3f00a2e;
    gap: 32px
}

.hd_brand_box {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 3px solid #F3F00A;
    padding-right: 16px
}

.hd_logo_wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff1f;
    border-radius: 8px;
    box-shadow: 0 0 0 2px #f3f00a59 -1px 3px 6px 0 #54219812;
    padding: 4px;
    min-width: 48px
}

.hd_logo_wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.hd_monogram {
    font-size: 22px;
    font-weight: 700;
    color: #F3F00A;
    line-height: 1.1;
    letter-spacing: 0
}

.hd_contact_row {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap
}

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

.hd_contact_label {
    font-size: 15px;
    color: #aff6dabf;
    line-height: 1.35
}

.hd_contact_val {
    font-size: 15px;
    color: #AFF6DA;
    font-weight: 700;
    line-height: 1.35;
    text-decoration: none;
    transition: color .18s ease-out
}

.hd_contact_val:hover {
    color: #F3F00A
}

.hd_contact_icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.hd_nav_row {
    padding: 8px 0
}

.hd_nav_list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.hd_nav_list li {
    display: flex
}

.hd_nav_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ffffffd1;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    line-height: 1.35;
    transition: color .16s ease-out, background .16s ease-out;
    position: relative;
    white-space: nowrap
}

.hd_nav_link::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: .5;
    transition: opacity .16s ease-out, transform .16s ease-out;
    flex-shrink: 0
}

.hd_nav_link:hover {
    color: #F3F00A;
    background: #f3f00a14
}

.hd_nav_link:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(2px, -2px)
}

.hd_nav_link.active {
    color: #F3F00A;
    background: #f3f00a1f
}

.hd_accent_strip {
    height: 4px;
    background: linear-gradient(90deg, #F3F00A 0%, #AFF6DA 50%, #542198 100%)
}

.ft_wrap {
    background: linear-gradient(180deg, #1e0a3c 0%, #542198 100%);
    padding: 64px 32px 32px;
    text-align: center
}

.ft_inner {
    max-width: 1140px;
    margin: 0 auto
}

.ft_logo_box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #ffffff1a;
    border-radius: 14px;
    box-shadow: 0 0 0 2px #f3f00a4d -1px 5px 22px 0 #54219814;
    padding: 6px;
    margin: 0 auto 16px
}

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

.ft_brand_name {
    font-size: 22px;
    font-weight: 700;
    color: #F3F00A;
    line-height: 1.35;
    margin: 0 0 8px
}

.ft_tagline {
    font-size: 15px;
    color: #aff6dacc;
    line-height: 1.55;
    margin: 0 0 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto
}

.ft_contact_link_box {
    margin-bottom: 32px
}

.ft_contact_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #AFF6DA;
    text-decoration: none;
    padding: 12px 32px;
    border: 2px solid #aff6da59;
    border-radius: 14px;
    transition: color .2s ease-out, border-color .2s ease-out, background .2s ease-out
}

.ft_contact_link:hover {
    color: #F3F00A;
    border-color: #F3F00A;
    background: #f3f00a12
}

.ft_contact_link::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg)
}

.ft_divider {
    width: 64px;
    height: 2px;
    background: linear-gradient(90deg, #F3F00A, #AFF6DA);
    margin: 32px auto;
    border-radius: 8px
}

.ft_policy_list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    list-style: none;
    margin: 0 0 32px;
    padding: 0
}

.ft_policy_list li {
    display: flex;
    align-items: center
}

.ft_policy_link {
    font-size: 15px;
    color: #aff6daa6;
    text-decoration: none;
    line-height: 1.55;
    transition: color .14s ease-out;
    padding: 8px
}

.ft_policy_link:hover {
    color: #F3F00A
}

.ft_sep {
    width: 3px;
    height: 3px;
    background: #aff6da4d;
    border-radius: 48px;
    display: inline-block
}

.ft_copy {
    font-size: 15px;
    color: #aff6da73;
    line-height: 1.55;
    margin: 0
}

@media (max-width: 768px) {
    .hd_utility {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .hd_contact_row {
        gap: 16px
    }

    .hd_nav_list {
        gap: 8px
    }

    .hd_nav_link {
        font-size: 15px;
        padding: 10px 12px
    }

    .ft_wrap {
        padding: 64px 16px 32px
    }
}

@media (max-width: 1280px) {
    .hd_inner {
        padding: 0 16px
    }
}

.policy-block {
    max-width: 1140px;
    margin: 0 auto;
    padding: 64px 32px
}

.policy-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #2a1a4e;
    margin-bottom: 16px
}

.policy-block strong,
.policy-block b {
    font-weight: 700;
    color: #542198
}

.policy-block em,
.policy-block i {
    font-style: italic;
    color: #3a1a6e
}

.policy-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
    font-size: 15px;
    line-height: 1.55;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 3px 6px 0 #54219812 -1px 5px 22px 0 #54219814
}

.policy-block thead {
    background: #542198
}

.policy-block thead th {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px;
    text-align: left;
    line-height: 1.35
}

.policy-block tbody tr {
    background: #fff;
    transition: background-color .18s ease-out
}

.policy-block tbody tr:nth-child(even) {
    background: #f5f0ff
}

.policy-block tbody tr:hover {
    background: #AFF6DA
}

.policy-block td {
    padding: 16px;
    color: #2a1a4e;
    font-size: 15px;
    line-height: 1.55;
    border-bottom: 1px solid #5421981a;
    vertical-align: top
}

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

.policy-block hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #F3F00A 0%, #AFF6DA 50%, #542198 100%);
    margin: 32px 0;
    border-radius: 8px;
    opacity: .6
}

@media (max-width: 768px) {
    .policy-block {
        padding: 32px 16px
    }

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

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

    .policy-block thead th,
    .policy-block td {
        padding: 8px;
        font-size: 15px
    }
}

.srv_det {
    background: #fff;
    overflow-x: clip
}

.srv_det .reveal {
    opacity: 0;
    transform: scale(0.97);
    animation: srv-reveal .18s cubic-bezier(0.4, 0, 0.6, 1) forwards
}

@keyframes srv-reveal {
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.srv_det .reveal:nth-child(1) {
    animation-delay: .04s
}

.srv_det .reveal:nth-child(2) {
    animation-delay: .09s
}

.srv_det .reveal:nth-child(3) {
    animation-delay: .14s
}

.srv_det .reveal:nth-child(4) {
    animation-delay: .18s
}

.srv_det .ttl_blk {
    text-align: center;
    padding: 96px 32px 64px;
    max-width: 1140px;
    margin: 0 auto
}

.srv_det .ttl_meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px
}

.srv_det .cat_badge {
    display: inline-block;
    background: #F3F00A;
    color: #1b0a3a;
    font-size: 15px;
    line-height: 1.35;
    padding: 4px 16px;
    border-radius: 22px;
    font-weight: 600;
    box-shadow: -1px 3px 6px 0 #f3f00a12
}

.srv_det .usr_badge {
    display: inline-block;
    border: 1.5px solid #542198;
    color: #542198;
    font-size: 15px;
    line-height: 1.35;
    padding: 4px 16px;
    border-radius: 22px;
    font-weight: 500
}

.srv_det .ttl_h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #1b0a3a;
    font-weight: 300;
    margin: 0 0 32px;
    letter-spacing: -.01em
}

.srv_det .ttl_desc {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a5e;
    max-width: 680px;
    margin: 0 auto 32px
}

.srv_det .ttl_date {
    font-size: 15px;
    color: #7a6a9a;
    line-height: 1.35
}

.srv_det .img_frame {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 8px 48px 0 #54219821
}

.srv_det .img_frame img {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    transition: opacity .18s ease-out
}

.srv_det .img_grain {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    mix-blend-mode: overlay
}

.srv_det .corner_br {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none
}

.srv_det .corner_br.tl {
    top: 12px;
    left: 12px;
    border-top: 2px solid #F3F00A;
    border-left: 2px solid #F3F00A;
    border-radius: 8px 0 0 0
}

.srv_det .corner_br.tr {
    top: 12px;
    right: 12px;
    border-top: 2px solid #F3F00A;
    border-right: 2px solid #F3F00A;
    border-radius: 0 8px 0 0
}

.srv_det .corner_br.bl {
    bottom: 12px;
    left: 12px;
    border-bottom: 2px solid #F3F00A;
    border-left: 2px solid #F3F00A;
    border-radius: 0 0 0 8px
}

.srv_det .corner_br.br {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid #F3F00A;
    border-right: 2px solid #F3F00A;
    border-radius: 0 0 8px 0
}

.srv_det .div_convex {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0
}

.srv_det .div_convex svg {
    display: block;
    width: 100%
}

.srv_det .prog_blk {
    background: linear-gradient(160deg, #f7f5ff 0%, #edfff6 100%);
    padding: 64px 32px;
    position: relative
}

.srv_det .prog_inner {
    max-width: 1140px;
    margin: 0 auto
}

.srv_det .prog_label {
    font-size: 15px;
    color: #542198;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block
}

.srv_det .prog_h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1b0a3a;
    font-weight: 300;
    margin: 0 0 32px
}

.srv_det .timeline_row {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: relative;
    margin-bottom: 32px;
    overflow: hidden
}

.srv_det .timeline_row::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #F3F00A 0%, #AFF6DA 60%, #542198 100%);
    border-radius: 2px
}

.srv_det .tl_item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.srv_det .tl_dot {
    width: 36px;
    height: 36px;
    border-radius: 48px;
    background: #542198;
    border: 3px solid #fff;
    box-shadow: -1px 5px 22px 0 #54219814;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: background .15s ease-out, transform .12s ease-out
}

.srv_det .tl_item:hover .tl_dot {
    background: #F3F00A;
    transform: scale(1.13)
}

.srv_det .tl_card {
    background: #fff;
    border-radius: 14px;
    padding: 16px;
    box-shadow: -1px 5px 22px 0 #54219814;
    width: 100%;
    font-size: 15px;
    line-height: 1.55;
    color: #2d1a5e;
    transition: box-shadow .18s ease-out
}

.srv_det .tl_item:hover .tl_card {
    box-shadow: -1px 8px 48px 0 #54219821
}

.srv_det .prog_body {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a5e
}

.srv_det .prog_body p {
    margin: 0 0 16px
}

.srv_det .prog_body h2 {
    font-size: 30px;
    line-height: 1.35;
    color: #1b0a3a;
    font-weight: 300;
    margin: 32px 0 16px
}

.srv_det .prog_body strong {
    color: #1b0a3a;
    font-weight: 600
}

.srv_det .prog_body ol {
    padding-left: 32px;
    margin: 0 0 16px
}

.srv_det .prog_body li {
    margin-bottom: 8px
}

.srv_det .prog_body abbr {
    border-bottom: 1px dotted #542198;
    cursor: help
}

.srv_det .prog_body figure {
    margin: 32px 0
}

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

.srv_det .desc_blk {
    padding: 96px 32px;
    background: #fff;
    position: relative
}

.srv_det .desc_inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.srv_det .desc_col_txt {
    flex: 1 1 60%
}

.srv_det .desc_col_side {
    flex: 0 0 280px
}

.srv_det .desc_h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #1b0a3a;
    font-weight: 300;
    margin: 0 0 32px
}

.srv_det .desc_body {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a5e;
    max-width: 620px
}

.srv_det .desc_body p {
    margin: 0 0 16px
}

.srv_det .desc_body h2 {
    font-size: 30px;
    line-height: 1.35;
    color: #1b0a3a;
    font-weight: 300;
    margin: 32px 0 16px
}

.srv_det .desc_body h3 {
    font-size: 22px;
    line-height: 1.35;
    color: #1b0a3a;
    font-weight: 500;
    margin: 24px 0 8px
}

.srv_det .desc_body strong {
    color: #1b0a3a;
    font-weight: 600
}

.srv_det .desc_body ul,
.srv_det .desc_body ol {
    padding-left: 32px;
    margin: 0 0 16px
}

.srv_det .desc_body li {
    margin-bottom: 8px
}

.srv_det .desc_body dl {
    margin: 0 0 16px
}

.srv_det .desc_body dt {
    font-weight: 600;
    color: #1b0a3a
}

.srv_det .desc_body dd {
    margin: 0 0 8px 16px;
    color: #2d1a5e
}

.srv_det .desc_body abbr {
    border-bottom: 1px dotted #542198;
    cursor: help
}

.srv_det .desc_body figure {
    margin: 32px 0
}

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

.srv_det .desc_body details {
    margin: 16px 0;
    border: 1px solid #e8e0f7;
    border-radius: 14px;
    padding: 16px
}

.srv_det .desc_body summary {
    cursor: pointer;
    font-weight: 600;
    color: #542198;
    font-size: 18px
}

.srv_det .desc_body a {
    color: #542198;
    text-decoration: underline;
    transition: text-shadow .15s ease-out
}

.srv_det .desc_body a:hover {
    text-shadow: 0 2px 12px #5421982e
}

.srv_det .price_card {
    background: linear-gradient(145deg, #542198 0%, #2d1a5e 100%);
    border-radius: 22px;
    padding: 32px;
    color: #fff;
    box-shadow: -1px 8px 48px 0 #54219821;
    position: sticky;
    top: 32px
}

.srv_det .price_lbl {
    font-size: 15px;
    color: #AFF6DA;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block
}

.srv_det .price_val {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #F3F00A;
    margin-bottom: 8px;
    display: block
}

.srv_det .price_note_txt {
    font-size: 15px;
    line-height: 1.55;
    color: #c4b8e8;
    margin-bottom: 32px
}

.srv_det .enroll_btn {
    display: block;
    width: 100%;
    background: #F3F00A;
    color: #1b0a3a;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background .15s ease-out, transform .12s ease-out;
    box-shadow: -1px 5px 22px 0 #f3f00a12
}

.srv_det .enroll_btn:hover {
    background: #e8e308
}

.srv_det .enroll_btn:active {
    transform: scale(0.97);
    box-shadow: inset 0 2px 6px 0 #54219821
}

.srv_det .enroll_btn:focus {
    outline: 2px solid #AFF6DA;
    outline-offset: 3px
}

.srv_det .enroll_arrow {
    display: inline-block;
    margin-left: 8px
}

.srv_det .cta_blk {
    position: relative;
    padding: 96px 32px;
    background: #1b0a3a;
    overflow: hidden
}

.srv_det .cta_bg_img {
    position: absolute;
    inset: 0;
    background-image: url(https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?w=1400&q=60);
    background-size: cover;
    background-position: center;
    opacity: .13;
    pointer-events: none
}

.srv_det .cta_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #542198d1 0%, #1b0a3aeb 100%);
    pointer-events: none
}

.srv_det .cta_inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px
}

.srv_det .cta_txt {
    flex: 1
}

.srv_det .cta_h2 {
    font-size: 42px;
    line-height: 1.1;
    color: #F3F00A;
    font-weight: 300;
    margin: 0 0 16px
}

.srv_det .cta_p {
    font-size: 18px;
    line-height: 1.55;
    color: #AFF6DA;
    margin: 0;
    max-width: 520px
}

.srv_det .cta_actions {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start
}

.srv_det .btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3F00A;
    color: #1b0a3a;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease-out, transform .12s ease-out;
    box-shadow: -1px 5px 22px 0 #f3f00a12;
    white-space: nowrap
}

.srv_det .btn_primary:hover {
    background: #e8e308
}

.srv_det .btn_primary:active {
    transform: scale(0.97);
    box-shadow: inset 0 2px 6px 0 #54219821
}

.srv_det .btn_primary:focus {
    outline: 2px solid #AFF6DA;
    outline-offset: 3px
}

.srv_det .btn_ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #AFF6DA;
    font-size: 18px;
    font-weight: 500;
    border: 1.5px solid #AFF6DA;
    border-radius: 14px;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    transition: background .18s ease-out, color .18s ease-out, transform .12s ease-out;
    white-space: nowrap
}

.srv_det .btn_ghost:hover {
    background: #aff6da1f
}

.srv_det .btn_ghost:active {
    transform: scale(0.97)
}

.srv_det .btn_ghost:focus {
    outline: 2px solid #F3F00A;
    outline-offset: 3px
}

.srv_det .deco_line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 64px auto 0;
    max-width: 1140px;
    padding: 0 32px
}

.srv_det .deco_line_seg {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8e0f7, transparent)
}

.srv_det .deco_line_center {
    width: 32px;
    height: 32px;
    border-radius: 48px;
    border: 2px solid #542198;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.srv_det .deco_line_diamond {
    width: 10px;
    height: 10px;
    background: #F3F00A;
    border-radius: 2px;
    transform: rotate(45deg)
}

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

    .srv_det .prog_h2 {
        font-size: 30px
    }

    .srv_det .desc_h2 {
        font-size: 30px
    }

    .srv_det .cta_h2 {
        font-size: 30px
    }

    .srv_det .desc_col_side {
        flex: 0 0 240px
    }
}

@media (max-width: 768px) {
    .srv_det .ttl_blk {
        padding: 64px 16px 32px
    }

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

    .srv_det .ttl_meta {
        flex-wrap: wrap
    }

    .srv_det .timeline_row {
        flex-direction: column;
        gap: 16px
    }

    .srv_det .timeline_row::before {
        display: none
    }

    .srv_det .tl_item {
        align-items: flex-start;
        flex-direction: row;
        gap: 16px
    }

    .srv_det .tl_dot {
        flex-shrink: 0
    }

    .srv_det .prog_blk {
        padding: 64px 16px
    }

    .srv_det .prog_h2 {
        font-size: 22px
    }

    .srv_det .desc_inner {
        flex-direction: column;
        gap: 32px
    }

    .srv_det .desc_col_side {
        flex: 1 1 auto;
        width: 100%
    }

    .srv_det .price_card {
        position: static
    }

    .srv_det .desc_blk {
        padding: 64px 16px
    }

    .srv_det .desc_h2 {
        font-size: 22px
    }

    .srv_det .cta_inner {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start
    }

    .srv_det .cta_blk {
        padding: 64px 16px
    }

    .srv_det .cta_h2 {
        font-size: 22px
    }
}

.lrn-prog {
    background: #fff;
    overflow-x: clip
}

.lrn-prog *,
.lrn-prog ::before,
.lrn-prog ::after {
    box-sizing: border-box
}

::selection {
    background: #F3F00A;
    color: #1b0a3a
}

.lrn-prog .pg-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.lrn-prog .tb {
    background: #542198;
    padding: 64px 0 96px;
    position: relative
}

.lrn-prog .tb-curves {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.lrn-prog .tb-curves svg {
    position: absolute;
    top: -32px;
    right: -64px;
    width: 520px;
    height: 520px;
    opacity: .12;
    animation: tb-rotate 28s linear infinite
}

@keyframes tb-rotate {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.lrn-prog .tb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end
}

.lrn-prog .tb-left {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lrn-prog .tb-tag {
    display: inline-block;
    background: #F3F00A;
    color: #1b0a3a;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    letter-spacing: .04em;
    align-self: flex-start;
    opacity: 0;
    animation: fade-up .18s ease-out .08s forwards
}

.lrn-prog .tb-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #AFF6DA;
    margin: 0;
    opacity: 0;
    animation: fade-up .2s ease-out .18s forwards
}

.lrn-prog .tb-h1 {
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
    font-weight: 300;
    margin: 0;
    opacity: 0;
    animation: fade-up .2s ease-out .28s forwards
}

.lrn-prog .tb-meta {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up .18s ease-out .38s forwards
}

.lrn-prog .tb-stat {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog .tb-stat-val {
    font-size: 30px;
    font-weight: 700;
    color: #F3F00A;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 8px
}

.lrn-prog .arrow-up {
    display: inline-block;
    width: 18px;
    height: 18px
}

.lrn-prog .tb-stat-label {
    font-size: 15px;
    color: #AFF6DA;
    line-height: 1.35
}

.lrn-prog .tb-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1b0a3a;
    background: #F3F00A;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color .16s ease-out, transform .12s ease-out;
    box-shadow: -1px 5px 22px 0 #f3f00a2e;
    align-self: flex-start;
    opacity: 0;
    animation: fade-up .18s ease-out .46s forwards
}

.lrn-prog .tb-cta:hover {
    background: #AFF6DA
}

.lrn-prog .tb-cta:active {
    transform: scale(0.97);
    box-shadow: inset -1px 3px 6px 0 #54219824
}

.lrn-prog .tb-cta-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform .14s ease-out
}

.lrn-prog .tb-cta:hover .tb-cta-arrow {
    transform: translateX(4px)
}

.lrn-prog .tb-right {
    position: relative;
    opacity: 0;
    animation: fade-up .22s ease-out .22s forwards
}

.lrn-prog .tb-img-wrap {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: -1px 8px 48px 0 #54219838
}

.lrn-prog .tb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s cubic-bezier(0.4, 0, 0.6, 1)
}

.lrn-prog .tb-img-wrap:hover img {
    transform: scale(1.04)
}

.lrn-prog .tb-img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #542198 0%, #54219866 45%, transparent 70%);
    border-radius: 22px;
    pointer-events: none
}

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

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

.lrn-prog .div-chev {
    display: block;
    width: 100%;
    line-height: 0;
    background: #542198
}

.lrn-prog .div-chev svg {
    display: block;
    width: 100%
}

.lrn-prog .prog-struct {
    background: #fff;
    padding: 96px 0 64px;
    position: relative
}

.lrn-prog .prog-struct-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.lrn-prog .prog-struct-bg svg {
    position: absolute;
    bottom: -64px;
    left: -96px;
    width: 480px;
    height: 480px;
    opacity: .04;
    animation: tb-rotate 40s linear infinite reverse
}

.lrn-prog .ps-header {
    max-width: 680px;
    margin: 0 auto 64px;
    text-align: center
}

.lrn-prog .ps-tag {
    display: inline-block;
    background: #AFF6DA;
    color: #1b0a3a;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 16px
}

.lrn-prog .ps-h2 {
    font-size: 30px;
    line-height: 1.35;
    color: #1b0a3a;
    font-weight: 300;
    margin: 0 0 16px
}

.lrn-prog .ps-lead {
    font-size: 18px;
    line-height: 1.55;
    color: #3a2060;
    margin: 0
}

.lrn-prog .ps-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 860px;
    margin: 0 auto
}

.lrn-prog .ps-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px;
    border-radius: 22px;
    background: #fff;
    box-shadow: -1px 5px 22px 0 #54219814;
    border: 1.5px solid #e8e0f5;
    transition: box-shadow .16s ease-out, border-color .14s ease-out;
    opacity: 0;
    animation: fade-up .2s ease-out forwards
}

.lrn-prog .ps-step:nth-child(1) {
    animation-delay: .1s
}

.lrn-prog .ps-step:nth-child(2) {
    animation-delay: .2s
}

.lrn-prog .ps-step:nth-child(3) {
    animation-delay: .3s
}

.lrn-prog .ps-step:nth-child(4) {
    animation-delay: .4s
}

.lrn-prog .ps-step:hover {
    box-shadow: -1px 8px 48px 0 #54219821;
    border-color: #AFF6DA
}

.lrn-prog .ps-num {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #542198;
    color: #F3F00A;
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1.1
}

.lrn-prog .ps-step-body {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog .ps-step-h {
    font-size: 22px;
    font-weight: 600;
    color: #1b0a3a;
    margin: 0;
    line-height: 1.35
}

.lrn-prog .ps-step-p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2060;
    margin: 0
}

.lrn-prog .ps-step-tags {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px
}

.lrn-prog .ps-badge {
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #f5f0ff;
    color: #542198;
    font-weight: 500
}

.lrn-prog .div-chev2 {
    display: block;
    width: 100%;
    line-height: 0;
    background: #fff
}

.lrn-prog .div-chev2 svg {
    display: block;
    width: 100%
}

.lrn-prog .prog-detail {
    background: #542198;
    padding: 64px 0 96px;
    position: relative
}

.lrn-prog .pd-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.lrn-prog .pd-bg svg {
    position: absolute;
    top: 32px;
    right: -32px;
    width: 340px;
    height: 340px;
    opacity: .06;
    animation: tb-rotate 34s linear infinite
}

.lrn-prog .pd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.lrn-prog .pd-left {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.lrn-prog .pd-h3 {
    font-size: 30px;
    font-weight: 300;
    color: #fff;
    margin: 0;
    line-height: 1.35;
    opacity: 0;
    animation: fade-up .2s ease-out .1s forwards
}

.lrn-prog .pd-desc {
    font-size: 18px;
    line-height: 1.55;
    color: #AFF6DA;
    margin: 0;
    opacity: 0;
    animation: fade-up .18s ease-out .2s forwards
}

.lrn-prog .checklist-wrap {
    background: #ffffff12;
    border-radius: 22px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border: 1.5px solid #aff6da33;
    opacity: 0;
    animation: fade-up .2s ease-out .28s forwards
}

.lrn-prog .cl-progress-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.lrn-prog .cl-progress-label {
    font-size: 15px;
    color: #AFF6DA;
    font-weight: 600
}

.lrn-prog .cl-progress-count {
    font-size: 15px;
    color: #F3F00A;
    font-weight: 700
}

.lrn-prog .cl-bar-bg {
    height: 8px;
    background: #ffffff1f;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px
}

.lrn-prog .cl-bar-fill {
    height: 100%;
    width: 71%;
    background: linear-gradient(90deg, #AFF6DA 0%, #F3F00A 100%);
    border-radius: 8px;
    transition: width .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.lrn-prog .cl-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #fff
}

.lrn-prog .cl-check {
    width: 22px;
    height: 22px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn-prog .cl-check.done {
    background: #AFF6DA
}

.lrn-prog .cl-check.pending {
    background: #ffffff1f;
    border: 1.5px solid #aff6da4d
}

.lrn-prog .cl-check.done svg {
    display: block
}

.lrn-prog .cl-check.pending svg {
    display: none
}

.lrn-prog .pd-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
    opacity: 0;
    animation: fade-up .2s ease-out .32s forwards
}

.lrn-prog .pd-info-card {
    background: #ffffff12;
    border-radius: 22px;
    padding: 32px;
    border: 1.5px solid #aff6da26;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog .pd-info-h {
    font-size: 22px;
    font-weight: 600;
    color: #F3F00A;
    margin: 0;
    line-height: 1.35
}

.lrn-prog .pd-info-p {
    font-size: 15px;
    line-height: 1.55;
    color: #AFF6DA;
    margin: 0
}

.lrn-prog .pd-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.lrn-prog .pd-hl {
    background: #f3f00a14;
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1.5px solid #f3f00a26;
    transition: background-color .16s ease-out, border-color .14s ease-out
}

.lrn-prog .pd-hl:hover {
    background: #f3f00a24;
    border-color: #f3f00a4d
}

.lrn-prog .pd-hl-val {
    font-size: 30px;
    font-weight: 700;
    color: #F3F00A;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 8px
}

.lrn-prog .pd-hl-label {
    font-size: 15px;
    color: #AFF6DA;
    line-height: 1.35
}

.lrn-prog .pd-enroll {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #1b0a3a;
    background: #F3F00A;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    transition: background-color .16s ease-out, transform .12s ease-out;
    box-shadow: -1px 5px 22px 0 #f3f00a33;
    align-self: flex-start
}

.lrn-prog .pd-enroll:hover {
    background: #AFF6DA
}

.lrn-prog .pd-enroll:active {
    transform: scale(0.97);
    box-shadow: inset -1px 3px 6px 0 #54219824
}

.lrn-prog .pd-enroll-arrow {
    display: inline-block;
    width: 20px;
    height: 20px;
    transition: transform .14s ease-out
}

.lrn-prog .pd-enroll:hover .pd-enroll-arrow {
    transform: translateX(4px)
}

.lrn-prog .ps-step-p a,
.lrn-prog .pd-info-p a {
    color: #AFF6DA;
    text-decoration: underline;
    transition: text-shadow .16s ease-out
}

.lrn-prog .ps-step-p a:hover,
.lrn-prog .pd-info-p a:hover {
    text-shadow: 0 2px 12px #aff6da80
}

.lrn-prog a:focus-visible,
.lrn-prog button:focus-visible {
    outline: 3px solid #F3F00A !important;
    outline-offset: 3px !important
}

@media (max-width: 1280px) {
    .lrn-prog .tb-h1 {
        font-size: 30px
    }

    .lrn-prog .tb-grid {
        gap: 32px
    }
}

@media (max-width: 768px) {

    .lrn-prog .tb-grid,
    .lrn-prog .pd-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .lrn-prog .tb {
        padding: 32px 0 64px
    }

    .lrn-prog .tb-h1 {
        font-size: 30px
    }

    .lrn-prog .tb-right {
        order: -1
    }

    .lrn-prog .prog-struct {
        padding: 64px 0 32px
    }

    .lrn-prog .prog-detail {
        padding: 32px 0 64px
    }

    .lrn-prog .ps-step {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .lrn-prog .pd-highlights {
        grid-template-columns: 1fr 1fr
    }

    .lrn-prog .tb-curves svg {
        width: 280px;
        height: 280px
    }
}

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

.cont_us .pg_wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.cont_us .reach_block {
    background: #1a0a2e;
    padding: 96px 32px 128px;
    position: relative
}

.cont_us .reach_block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(167deg, #542198 0%, #1a0a2e 55%, #0d0618 100%);
    z-index: 0
}

.cont_us .reach_inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cont_us .reach_tag {
    display: inline-block;
    background: #f3f00a1f;
    border: 1px solid #f3f00a4d;
    color: #F3F00A;
    font-size: 15px;
    line-height: 1.35;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 32px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.cont_us .reach_head {
    color: #fff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 300;
    margin: 0 0 16px;
    max-width: 640px
}

.cont_us .reach_head span {
    color: #F3F00A;
    font-weight: 700
}

.cont_us .reach_sub {
    color: #aff6dab3;
    font-size: 18px;
    line-height: 1.55;
    margin: 0 0 64px;
    max-width: 480px;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-top: 1px solid #aff6da33;
    padding-top: 16px
}

.cont_us .reach_cols {
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.cont_us .reach_info {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 32px
}

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

.cont_us .info_label {
    font-size: 15px;
    line-height: 1.35;
    color: #aff6da99;
    letter-spacing: .1em;
    text-transform: uppercase
}

.cont_us .info_val {
    font-size: 18px;
    line-height: 1.55;
    color: #fff
}

.cont_us .info_val a {
    color: #AFF6DA;
    text-decoration: none;
    transition: color .18s ease-out
}

.cont_us .info_val a:hover {
    color: #F3F00A;
    text-shadow: 0 0 12px #f3f00a66
}

.cont_us .reach_deco {
    width: 48px;
    height: 48px;
    background: #f3f00a14;
    border: 1px solid #f3f00a33;
    border-radius: 8px;
    transform: rotate(45deg);
    position: absolute;
    right: 0;
    top: 0
}

.cont_us .reach_deco_wrap {
    position: relative;
    flex: 1
}

.cont_us .divider_edge {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 64px
}

.cont_us .divider_edge::before,
.cont_us .divider_edge::after {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: #aff6da40
}

.cont_us .form_block {
    background: linear-gradient(148deg, #f7f5ff 0%, #edf9f4 100%);
    padding: 96px 32px;
    position: relative
}

.cont_us .form_block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #542198 0%, #F3F00A 50%, #AFF6DA 100%)
}

.cont_us .form_inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 64px;
    align-items: flex-start
}

.cont_us .form_aside {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 32px
}

.cont_us .form_aside_head {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1a0a2e;
    margin: 0
}

.cont_us .form_aside_head strong {
    font-weight: 700;
    color: #542198
}

.cont_us .form_aside_txt {
    font-size: 18px;
    line-height: 1.55;
    color: #3d2060;
    margin: 0
}

.cont_us .form_aside_txt+.form_aside_txt {
    color: #555;
    font-size: 15px;
    line-height: 1.8
}

.cont_us .code_block {
    background: #1a0a2e;
    border-radius: 14px;
    padding: 16px;
    box-shadow: -1px 5px 22px 0 #54219821
}

.cont_us .code_bar {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-bottom: 16px;
    align-items: center
}

.cont_us .code_dot {
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #aff6da4d
}

.cont_us .code_dot.active {
    background: #F3F00A
}

.cont_us .code_txt {
    font-size: 15px;
    line-height: 1.8;
    color: #AFF6DA;
    margin: 0;
    font-family: monospace
}

.cont_us .code_txt .c_key {
    color: #F3F00A
}

.cont_us .code_txt .c_str {
    color: #aff6da99
}

.cont_us .form_main {
    flex: 1
}

.cont_us .contact_form {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.cont_us .field_row {
    display: flex;
    flex-direction: row;
    gap: 16px
}

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

.cont_us .field_grp.full {
    flex: none;
    width: 100%
}

.cont_us .f_label {
    font-size: 15px;
    line-height: 1.35;
    color: #3d2060;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase
}

.cont_us .f_input {
    background: #fff;
    border: 1.5px solid #54219833;
    border-radius: 14px;
    padding: 16px;
    font-size: 18px;
    line-height: 1.35;
    color: #1a0a2e;
    width: 100%;
    box-sizing: border-box;
    box-shadow: -1px 3px 6px 0 #54219812;
    transition: border-color .18s ease-out, box-shadow .22s ease-out;
    outline: none;
    appearance: none
}

.cont_us .f_input::placeholder {
    color: #54219859;
    font-size: 15px
}

.cont_us .f_input:focus {
    border-color: #542198;
    box-shadow: -1px 5px 22px 0 #54219821 0 0 0 3px #5421981a
}

.cont_us .f_select {
    background: #fff;
    border: 1.5px solid #54219833;
    border-radius: 14px;
    padding: 16px;
    font-size: 18px;
    line-height: 1.35;
    color: #1a0a2e;
    width: 100%;
    box-sizing: border-box;
    box-shadow: -1px 3px 6px 0 #54219812;
    transition: border-color .18s ease-out, box-shadow .22s ease-out;
    outline: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23542198' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer
}

.cont_us .f_select:focus {
    border-color: #542198;
    box-shadow: -1px 5px 22px 0 #54219821 0 0 0 3px #5421981a
}

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

.cont_us .priv_check {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid #54219866;
    border-radius: 8px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #542198;
    box-shadow: inset 0 1px 3px #5421981a;
    transition: border-color .15s ease-out
}

.cont_us .priv_check:checked {
    box-shadow: inset 0 2px 4px #54219840
}

.cont_us .priv_txt {
    font-size: 15px;
    line-height: 1.8;
    color: #3d2060;
    margin: 0
}

.cont_us .priv_txt a {
    color: #542198;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .15s ease-out
}

.cont_us .priv_txt a:hover {
    color: #F3F00A;
    text-shadow: 0 1px 4px #f3f00a80
}

.cont_us .submit_btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #542198;
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: 16px 32px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    cursor: pointer;
    box-shadow: -1px 5px 22px 0 #54219821;
    transition: background .18s ease-out, box-shadow .22s ease-out, transform .12s ease-out;
    align-self: flex-start
}

.cont_us .submit_btn:hover {
    background: #3d1870;
    box-shadow: -1px 8px 48px 0 #54219833 0 0 0 4px #5421981f
}

.cont_us .submit_btn:active {
    transform: scale(0.97);
    box-shadow: inset 0 2px 6px #5421984d
}

.cont_us .submit_btn:focus-visible {
    outline: 3px solid #F3F00A;
    outline-offset: 3px
}

.cont_us .btn_arrow {
    display: inline-block;
    width: 18px;
    height: 18px
}

.cont_us .btn_arrow svg {
    width: 18px;
    height: 18px
}

.cont_us .grid_anim {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0;
    z-index: 0
}

.cont_us .grid_anim svg {
    width: 100%;
    height: 100%;
    opacity: .07
}

.cont_us .grid_line_h {
    animation: grid_pulse_h 4s cubic-bezier(0.4, 0, 0.6, 1) infinite
}

.cont_us .grid_line_v {
    animation: grid_pulse_v 5s cubic-bezier(0.4, 0, 0.6, 1) infinite
}

@keyframes grid_pulse_h {

    0%,
    100% {
        opacity: .3
    }

    50% {
        opacity: 1
    }
}

@keyframes grid_pulse_v {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@media (max-width: 1280px) {
    .cont_us .reach_head {
        font-size: 42px
    }

    .cont_us .reach_cols {
        gap: 32px
    }

    .cont_us .form_inner {
        gap: 32px
    }

    .cont_us .form_aside {
        flex: 0 0 260px
    }
}

@media (max-width: 768px) {
    .cont_us .reach_block {
        padding: 64px 16px 96px
    }

    .cont_us .reach_head {
        font-size: 30px
    }

    .cont_us .reach_cols {
        flex-direction: column;
        gap: 32px
    }

    .cont_us .reach_info {
        flex: none;
        width: 100%
    }

    .cont_us .form_block {
        padding: 64px 16px
    }

    .cont_us .form_inner {
        flex-direction: column;
        gap: 32px
    }

    .cont_us .form_aside {
        flex: none;
        width: 100%;
        position: static
    }

    .cont_us .form_aside_head {
        font-size: 30px
    }

    .cont_us .field_row {
        flex-direction: column;
        gap: 16px
    }
}

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

.anltcs .pg_inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.anltcs .tag_badge {
    display: inline-block;
    padding: 8px 16px;
    background: #F3F00A;
    color: #2a0060;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    line-height: 1.35
}

.anltcs .diamond_sep {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #542198;
    transform: rotate(45deg);
    margin: 0 16px;
    vertical-align: middle
}

.anltcs .title_blk {
    padding: 96px 0 64px;
    background: #fff;
    position: relative
}

.anltcs .title_blk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #542198 40%, #F3F00A 60%, transparent)
}

.anltcs .title_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.anltcs .title_text_zone {
    padding: 32px 0
}

.anltcs .title_text_zone .tag_badge {
    margin-bottom: 32px
}

.anltcs .title_h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 300;
    color: #1a0040;
    margin: 0 0 32px;
    letter-spacing: -.5px
}

.anltcs .title_h1 strong {
    font-weight: 700;
    color: #542198
}

.anltcs .title_sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3d3d;
    margin: 0 0 32px;
    max-width: 420px
}

.anltcs .title_detail {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 420px;
    margin: 0;
    border-top: 1px dashed #542198;
    padding-top: 32px
}

.anltcs .title_img_zone {
    position: relative;
    padding: 16px 0 16px 32px
}

.anltcs .img_wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
    box-shadow: -1px 8px 48px 0 #54219821;
    transition: box-shadow .18s ease-out
}

.anltcs .img_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, #f3f00a59 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 22px 0 0 0
}

.anltcs .img_wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 22px;
    transition: border .15s ease-out;
    outline: 2px solid transparent
}

.anltcs .img_wrap:hover img {
    outline: 2px solid #542198
}

.anltcs .dots_path {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(5, 8px);
    gap: 8px;
    padding: 16px
}

.anltcs .dot_item {
    width: 6px;
    height: 6px;
    border-radius: 8px;
    background: #AFF6DA;
    opacity: .7
}

.anltcs .dot_item:nth-child(3n) {
    background: #F3F00A;
    opacity: .9
}

.anltcs .dot_item:nth-child(5n) {
    background: #542198;
    opacity: .4
}

.anltcs .divider_curve {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.anltcs .divider_curve svg {
    display: block;
    width: 100%
}

.anltcs .metrics_blk {
    padding: 64px 0;
    background: linear-gradient(160deg, #542198 0%, #2a0060 100%);
    position: relative;
    overflow: hidden
}

.anltcs .spotlight_bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    animation: spot_drift 8s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
    background: radial-gradient(ellipse 400px 300px at 20% 40%, #f3f00a1f 0%, transparent 70%)
}

@keyframes spot_drift {
    0% {
        background-position-x: 20%
    }

    100% {
        background: radial-gradient(ellipse 400px 300px at 80% 60%, #aff6da1a 0%, transparent 70%)
    }
}

.anltcs .metrics_blk .pg_inner {
    position: relative;
    z-index: 1
}

.anltcs .metrics_top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 64px
}

.anltcs .metrics_label {
    font-size: 15px;
    color: #AFF6DA;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.anltcs .metrics_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #fff;
    margin: 0;
    max-width: 400px
}

.anltcs .metrics_desc {
    font-size: 18px;
    line-height: 1.55;
    color: #ffffffbf;
    max-width: 380px;
    margin: 0;
    align-self: flex-end
}

.anltcs .metrics_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.anltcs .metric_card {
    background: #ffffff12;
    border: 1px solid #aff6da33;
    border-radius: 14px;
    padding: 32px 16px;
    text-align: center;
    transition: background .18s ease-out, border-color .15s ease-out
}

.anltcs .metric_card:hover {
    background: #f3f00a1a;
    border-color: #f3f00a80
}

.anltcs .metric_num {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    color: #F3F00A;
    display: block;
    margin-bottom: 8px
}

.anltcs .metric_lbl {
    font-size: 15px;
    line-height: 1.55;
    color: #fffc
}

.anltcs .metric_bar_row {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.anltcs .bar_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.anltcs .bar_lbl {
    font-size: 15px;
    color: #ffffffbf;
    min-width: 220px;
    text-align: right
}

.anltcs .bar_track {
    flex: 1;
    height: 8px;
    background: #ffffff1f;
    border-radius: 8px;
    overflow: hidden
}

.anltcs .bar_fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #AFF6DA, #F3F00A);
    transition: width .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.anltcs .bar_val {
    font-size: 15px;
    color: #F3F00A;
    font-weight: 600;
    min-width: 40px
}

.anltcs .divider_flat {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.anltcs .analysis_blk {
    padding: 96px 0 64px;
    background: linear-gradient(180deg, #fff 0%, #f5f0ff 100%);
    position: relative
}

.anltcs .analysis_blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #aff6da14;
    pointer-events: none
}

.anltcs .analysis_top {
    margin-bottom: 64px;
    text-align: center
}

.anltcs .analysis_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1a0040;
    margin: 16px 0 0
}

.anltcs .analysis_layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    align-items: start
}

.anltcs .analysis_intro {
    position: sticky;
    top: 32px
}

.anltcs .analysis_intro_text {
    font-size: 22px;
    line-height: 1.55;
    color: #542198;
    font-weight: 300;
    margin: 0 0 32px;
    padding-bottom: 32px;
    border-bottom: 1px dashed #542198
}

.anltcs .analysis_meta {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0
}

.anltcs .analysis_detail {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.anltcs .detail_item {
    padding: 32px;
    border-radius: 14px;
    background: #fff;
    box-shadow: -1px 5px 22px 0 #54219814;
    transition: box-shadow .18s ease-out, transform .15s ease-out
}

.anltcs .detail_item:hover {
    box-shadow: -1px 8px 48px 0 #54219821;
    transform: translateY(-2px)
}

.anltcs .detail_h4 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #1a0040;
    margin: 0 0 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.anltcs .detail_h4 .tri_sep {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 7px solid #F3F00A;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent
}

.anltcs .detail_p {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0
}

.anltcs .dashed_connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 16px 0
}

.anltcs .dashed_connector .dash_line {
    width: 1px;
    height: 48px;
    border-left: 2px dashed #AFF6DA
}

.anltcs .findings_blk {
    padding: 64px 0 96px;
    position: relative
}

.anltcs .findings_blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #f5f0ff;
    z-index: 0
}

.anltcs .findings_blk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: #fff;
    z-index: 0
}

.anltcs .findings_blk .pg_inner {
    position: relative;
    z-index: 1
}

.anltcs .findings_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1a0040;
    margin: 0 0 16px;
    text-align: center
}

.anltcs .findings_sub {
    font-size: 18px;
    line-height: 1.55;
    color: #555;
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px
}

.anltcs .findings_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.anltcs .finding_card {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 3px 6px 0 #54219812;
    border-top: 3px solid #AFF6DA;
    transition: border-color .12s ease-out, box-shadow .18s ease-out;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.anltcs .finding_card:hover {
    border-color: #542198;
    box-shadow: -1px 8px 48px 0 #54219821
}

.anltcs .finding_card.accent_card {
    background: #542198;
    border-top-color: #F3F00A
}

.anltcs .finding_card.accent_card .find_h5 {
    color: #fff !important
}

.anltcs .finding_card.accent_card .find_p {
    color: #fffc
}

.anltcs .find_icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #AFF6DA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.anltcs .find_icon svg {
    display: block
}

.anltcs .accent_card .find_icon {
    background: #f3f00a33
}

.anltcs .find_h5 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #1a0040;
    margin: 0
}

.anltcs .find_p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0
}

.anltcs .findings_note {
    margin-top: 64px;
    padding: 32px;
    border-radius: 14px;
    background: linear-gradient(135deg, #f5f0ff 0%, #fff 100%);
    border: 1px solid #54219826;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px
}

.anltcs .note_badge {
    flex-shrink: 0;
    background: #542198;
    color: #F3F00A;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    line-height: 1.35
}

.anltcs .note_text {
    font-size: 15px;
    line-height: 1.8;
    color: #3d3d3d;
    margin: 0
}

.anltcs .grad_anim {
    animation: grad_rotate 12s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate
}

@keyframes grad_rotate {
    0% {
        background: linear-gradient(120deg, #AFF6DA 0%, #f5f0ff 100%)
    }

    100% {
        background: linear-gradient(240deg, #f5f0ff 0%, #AFF6DA 100%)
    }
}

@media (max-width: 1280px) {
    .anltcs .title_h1 {
        font-size: 42px
    }

    .anltcs .metrics_row {
        grid-template-columns: repeat(2, 1fr)
    }

    .anltcs .bar_lbl {
        min-width: 160px
    }
}

@media (max-width: 768px) {
    .anltcs .title_grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .anltcs .title_img_zone {
        padding: 0
    }

    .anltcs .title_h1 {
        font-size: 30px
    }

    .anltcs .metrics_top {
        flex-direction: column;
        gap: 16px
    }

    .anltcs .metrics_row {
        grid-template-columns: 1fr 1fr
    }

    .anltcs .analysis_layout {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .anltcs .analysis_intro {
        position: static
    }

    .anltcs .findings_grid {
        grid-template-columns: 1fr
    }

    .anltcs .findings_note {
        flex-direction: column;
        gap: 16px
    }

    .anltcs .bar_item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .anltcs .bar_lbl {
        min-width: unset;
        text-align: left
    }

    .anltcs .metrics_h2 {
        font-size: 30px
    }
}

.srvs {
    background: #fff;
    overflow-x: clip
}

.srvs .pg_load {
    animation: srvs_grow .18s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes srvs_grow {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

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

.srvs .pg_wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.srvs .dot_grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 480px;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(circle, #542198 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: .07;
    overflow: hidden
}

.srvs .title_area {
    position: relative;
    padding: 96px 32px 64px;
    background: linear-gradient(160deg, #f5f3ff 0%, #fff 60%, #fffff0 100%);
    border-right: 2px solid #F3F00A
}

.srvs .title_area .pg_wrap {
    position: relative;
    z-index: 1
}

.srvs .t_badge {
    display: inline-block;
    background: #F3F00A;
    color: #1b0a3f;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 32px;
    line-height: 1.35
}

.srvs .t_head {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b0a3f;
    max-width: 640px;
    margin: 0 0 32px;
    letter-spacing: -.5px
}

.srvs .t_sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a2070;
    max-width: 520px;
    margin: 0
}

.srvs .cards_band {
    padding: 64px 32px;
    background: #fff;
    position: relative
}

.srvs .cards_band::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #AFF6DA 0%, transparent 100%)
}

.srvs .card_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1140px;
    margin: 0 auto
}

.srvs .svc_card {
    background: #fff;
    border-radius: 22px;
    box-shadow: -1px 5px 22px 0 #54219814;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1), transform .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs .svc_card:hover {
    box-shadow: -1px 8px 48px 0 #54219821;
    transform: translateY(-2px)
}

.srvs .card_img_box {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative
}

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

.srvs .svc_card:hover .card_img_box img {
    transform: scale(1.03)
}

.srvs .card_img_box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, #1b0a3f47 0%, transparent 100%);
    pointer-events: none
}

.srvs .card_body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1
}

.srvs .card_tags {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.srvs .cat_tag {
    font-size: 15px;
    font-weight: 600;
    color: #542198;
    background: #f0eaff;
    border-radius: 8px;
    padding: 8px 16px;
    line-height: 1.35
}

.srvs .usr_tag {
    font-size: 15px;
    color: #1b0a3f;
    background: #AFF6DA;
    border-radius: 8px;
    padding: 8px 16px;
    line-height: 1.35
}

.srvs .card_title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    color: #1b0a3f;
    margin: 0
}

.srvs .card_desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2070;
    margin: 0
}

.srvs .card_foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #f0eaff;
    gap: 16px
}

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

.srvs .price_val {
    font-size: 22px;
    font-weight: 700;
    color: #542198;
    line-height: 1.1
}

.srvs .price_note {
    font-size: 15px;
    color: #3a2070;
    line-height: 1.35
}

.srvs .card_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1b0a3f;
    text-decoration: none;
    background: #F3F00A;
    border-radius: 14px;
    padding: 8px 16px;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1), transform .12s cubic-bezier(0.4, 0, 0.6, 1);
    white-space: nowrap
}

.srvs .card_link:hover {
    background: #e6e400
}

.srvs .card_link:active {
    transform: scale(0.97);
    box-shadow: inset -1px 3px 6px 0 #54219812
}

.srvs .card_link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.srvs .pub_date {
    font-size: 15px;
    color: #7a6a9a;
    line-height: 1.35
}

.srvs .approach_band {
    padding: 96px 32px;
    background: linear-gradient(135deg, #f5f3ff 0%, #fffff0 100%);
    position: relative;
    border-right: 2px solid #AFF6DA
}

.srvs .approach_band .inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start
}

.srvs .approach_lbl {
    font-size: 15px;
    font-weight: 600;
    color: #542198;
    letter-spacing: .04em;
    margin-bottom: 16px;
    display: block
}

.srvs .approach_h {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    color: #1b0a3f;
    margin: 0 0 32px
}

.srvs .approach_p {
    font-size: 18px;
    line-height: 1.55;
    color: #3a2070;
    margin: 0 0 16px;
    max-width: 560px
}

.srvs .step_list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvs .step_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 14px;
    box-shadow: -1px 3px 6px 0 #54219812
}

.srvs .step_num {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #542198;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    line-height: 1.1
}

.srvs .step_text {
    font-size: 15px;
    line-height: 1.55;
    color: #1b0a3f;
    margin: 0;
    padding-top: 8px
}

.srvs .side_img_box {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 8px 48px 0 #54219821;
    position: sticky;
    top: 32px
}

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

.srvs .metrics_band {
    padding: 64px 32px;
    background: #542198;
    position: relative;
    overflow: hidden
}

.srvs .metrics_band::before {
    content: '';
    position: absolute;
    right: -64px;
    bottom: -32px;
    width: 300px;
    height: 300px;
    border-radius: 48px;
    background: #f3f00a14;
    pointer-events: none
}

.srvs .metrics_band .pg_wrap {
    position: relative;
    z-index: 1
}

.srvs .metrics_h {
    font-size: 30px;
    font-weight: 300;
    line-height: 1.35;
    color: #AFF6DA;
    margin: 0 0 64px;
    max-width: 600px
}

.srvs .metrics_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

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

.srvs .metric_val {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    color: #F3F00A
}

.srvs .metric_desc {
    font-size: 15px;
    line-height: 1.55;
    color: #d4c8f5
}

.srvs .metric_bar {
    height: 4px;
    border-radius: 8px;
    background: #f3f00a33;
    margin-top: 8px;
    overflow: hidden
}

.srvs .metric_fill {
    height: 100%;
    border-radius: 8px;
    background: #F3F00A;
    animation: bar_grow .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes bar_grow {
    from {
        width: 0
    }
}

.srvs .faq_band {
    padding: 96px 32px;
    background: #fff;
    border-right: 2px solid #F3F00A
}

.srvs .faq_band .pg_wrap {
    max-width: 780px
}

.srvs .faq_lbl {
    font-size: 15px;
    font-weight: 600;
    color: #542198;
    display: block;
    margin-bottom: 16px
}

.srvs .faq_h {
    font-size: 42px;
    font-weight: 300;
    line-height: 1.1;
    color: #1b0a3f;
    margin: 0 0 64px
}

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

.srvs .faq_item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 3px 6px 0 #54219812
}

.srvs .faq_item summary {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 32px;
    background: #f5f3ff;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1b0a3f;
    line-height: 1.35;
    list-style: none;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1);
    gap: 16px
}

.srvs .faq_item summary::-webkit-details-marker {
    display: none
}

.srvs .faq_item summary:hover {
    background: #ede8ff
}

.srvs .faq_item[open] summary {
    background: #542198;
    color: #fff
}

.srvs .faq_icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.srvs .faq_body {
    padding: 32px;
    background: #fff;
    font-size: 15px;
    line-height: 1.8;
    color: #3a2070
}

.srvs .cta_strip {
    padding: 64px 32px;
    background: linear-gradient(160deg, #AFF6DA 0%, #f5f3ff 100%);
    border-right: 2px solid #542198
}

.srvs .cta_strip .pg_wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px
}

.srvs .cta_txt h3 {
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35;
    color: #1b0a3f;
    margin: 0 0 8px
}

.srvs .cta_txt p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2070;
    margin: 0
}

.srvs .cta_btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1b0a3f;
    text-decoration: none;
    background: #F3F00A;
    border-radius: 14px;
    padding: 16px 32px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1), transform .12s cubic-bezier(0.4, 0, 0.6, 1);
    box-shadow: -1px 5px 22px 0 #f3f00a2e
}

.srvs .cta_btn:hover {
    background: #e6e400
}

.srvs .cta_btn:active {
    transform: scale(0.97);
    box-shadow: inset -1px 3px 6px 0 #54219812
}

@media (max-width: 1280px) {
    .srvs .t_head {
        font-size: 42px
    }

    .srvs .approach_band .inner {
        grid-template-columns: 1fr 300px;
        gap: 32px
    }
}

@media (max-width: 768px) {
    .srvs .t_head {
        font-size: 30px
    }

    .srvs .card_grid {
        grid-template-columns: 1fr
    }

    .srvs .approach_band .inner {
        grid-template-columns: 1fr
    }

    .srvs .side_img_box {
        position: static
    }

    .srvs .metrics_row {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .srvs .metric_val {
        font-size: 42px
    }

    .srvs .cta_strip .pg_wrap {
        flex-direction: column;
        align-items: flex-start
    }

    .srvs .faq_item summary {
        font-size: 15px;
        padding: 16px
    }

    .srvs .faq_body {
        padding: 16px
    }

    .srvs .title_area {
        padding: 64px 32px
    }

    .srvs .approach_band {
        padding: 64px 32px
    }

    .srvs .faq_band {
        padding: 64px 32px
    }
}

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

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

.abt-us .tag-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 34px;
    font-size: 15px;
    line-height: 1.35;
    background: #F3F00A;
    color: #1b0a3a;
    font-weight: 600;
    margin-bottom: 16px
}

.abt-us .ident-block {
    padding: 96px 32px 64px;
    background: linear-gradient(170deg, #f0eeff 0%, #fff 60%);
    position: relative;
    text-align: center
}

.abt-us .ident-block .bg-num {
    position: absolute;
    font-size: 72px;
    font-weight: 900;
    color: #542198;
    opacity: .05;
    line-height: 1.1;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.abt-us .ident-block .corner-deco {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 0 0 220px
}

.abt-us .ident-block .corner-deco svg {
    position: absolute;
    top: -20px;
    right: -20px
}

.abt-us .ident-inner {
    position: relative;
    z-index: 1;
    max-width: 1140px;
    margin: 0 auto
}

.abt-us .ident-img-wrap {
    width: 320px;
    height: 320px;
    border-radius: 22px;
    overflow: hidden;
    margin: 0 auto 32px;
    box-shadow: -1px 8px 48px 0 #54219821
}

.abt-us .ident-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    animation: reveal-rotate .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes reveal-rotate {
    from {
        opacity: 0;
        transform: rotate(-4deg) scale(0.97)
    }

    to {
        opacity: 1;
        transform: rotate(0deg) scale(1)
    }
}

.abt-us .ident-h1 {
    font-size: 42px;
    line-height: 1.1;
    color: #1b0a3a;
    font-weight: 700;
    margin: 0 auto 16px;
    max-width: 680px
}

.abt-us .ident-lead {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a5a;
    max-width: 560px;
    margin: 0 auto 32px
}

.abt-us .ident-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #3a2566;
    max-width: 520px;
    margin: 0 auto 32px
}

.abt-us .stat-shapes {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px
}

.abt-us .stat-hex {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 14px;
    border: 2.5px solid #542198;
    background: #fff;
    box-shadow: -1px 5px 22px 0 #54219814;
    transition: background .18s ease-out, border-color .15s ease-out;
    cursor: default
}

.abt-us .stat-hex:active {
    background: #F3F00A;
    border-color: #1b0a3a;
    box-shadow: inset 0 2px 6px #54219821
}

.abt-us .stat-hex .stat-val {
    font-size: 30px;
    line-height: 1.1;
    font-weight: 800;
    color: #542198
}

.abt-us .stat-hex .stat-lbl {
    font-size: 15px;
    line-height: 1.35;
    color: #3a2566;
    text-align: center;
    padding: 0 8px
}

.abt-us .div-curve {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0
}

.abt-us .div-curve svg {
    display: block;
    width: 100%
}

.abt-us .detail-block {
    padding: 64px 32px 96px;
    background: linear-gradient(180deg, #f7f5ff 0%, #fff 100%);
    position: relative
}

.abt-us .detail-block .corner-deco-b {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
    overflow: hidden
}

.abt-us .detail-block .corner-deco-b svg {
    position: absolute;
    bottom: -20px;
    left: -20px
}

.abt-us .detail-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.abt-us .detail-left {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt-us .detail-h2 {
    font-size: 30px;
    line-height: 1.35;
    color: #1b0a3a;
    font-weight: 700;
    margin: 0
}

.abt-us .detail-p {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a5a;
    margin: 0
}

.abt-us .detail-p-sm {
    font-size: 15px;
    line-height: 1.8;
    color: #3a2566;
    margin: 0
}

.abt-us .pyramid-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 16px
}

.abt-us .pyr-layer {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 600;
    color: #1b0a3a;
    padding: 16px 8px;
    text-align: center;
    transition: box-shadow .18s ease-out, transform .15s ease-out;
    cursor: default
}

.abt-us .pyr-layer:hover {
    transform: scaleX(1.02);
    box-shadow: -1px 5px 22px 0 #54219814
}

.abt-us .pyr-layer:active {
    box-shadow: inset 0 2px 8px #54219821
}

.abt-us .pyr-layer.l1 {
    width: 96%;
    background: #542198;
    color: #fff
}

.abt-us .pyr-layer.l2 {
    width: 80%;
    background: #7a3fc0;
    color: #fff
}

.abt-us .pyr-layer.l3 {
    width: 64%;
    background: #AFF6DA;
    color: #1b0a3a
}

.abt-us .pyr-layer.l4 {
    width: 48%;
    background: #F3F00A;
    color: #1b0a3a
}

.abt-us .pyr-layer.l5 {
    width: 32%;
    background: #1b0a3a;
    color: #F3F00A
}

.abt-us .detail-right {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.abt-us .img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.abt-us .img-frame {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 5px 22px 0 #54219814
}

.abt-us .img-frame img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: opacity .18s ease-out
}

.abt-us .img-frame.tall img {
    height: 260px
}

.abt-us .team-list {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-us .team-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #fff;
    border: 1.5px solid #e8e0f7;
    box-shadow: -1px 3px 6px 0 #54219812;
    transition: border-color .18s ease-out, box-shadow .18s ease-out
}

.abt-us .team-card:hover {
    border-color: #542198;
    box-shadow: -1px 5px 22px 0 #54219814
}

.abt-us .team-avatar {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background: linear-gradient(135deg, #AFF6DA 0%, #F3F00A 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-us .team-avatar svg {
    display: block
}

.abt-us .team-name {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0a3a;
    margin: 0 0 4px
}

.abt-us .team-role {
    font-size: 15px;
    line-height: 1.35;
    color: #542198;
    margin: 0 0 4px
}

.abt-us .team-note {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2566;
    margin: 0
}

.abt-us .contact-strip {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px
}

.abt-us .contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 22px;
    background: #f0eeff;
    font-size: 15px;
    line-height: 1.35;
    color: #1b0a3a;
    text-decoration: none !important;
    transition: background .15s ease-out, color .15s ease-out
}

.abt-us .contact-item:hover {
    background: #542198;
    color: #fff
}

.abt-us .contact-item svg {
    flex-shrink: 0
}

@media (max-width: 1280px) {
    .abt-us .detail-inner {
        gap: 32px
    }
}

@media (max-width: 768px) {
    .abt-us .ident-block {
        padding: 64px 16px 32px
    }

    .abt-us .ident-img-wrap {
        width: 240px;
        height: 240px
    }

    .abt-us .ident-h1 {
        font-size: 30px
    }

    .abt-us .stat-shapes {
        gap: 16px
    }

    .abt-us .stat-hex {
        width: 100px;
        height: 100px
    }

    .abt-us .stat-hex .stat-val {
        font-size: 22px
    }

    .abt-us .detail-block {
        padding: 32px 16px 64px
    }

    .abt-us .detail-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

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

    .abt-us .img-frame.tall img {
        height: 200px
    }
}

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

.frnt .pg_wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 32px
}

.frnt .diag_reveal {
    animation: diagIn .18s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes diagIn {
    from {
        opacity: 0;
        transform: translate(-18px, -18px)
    }

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

.frnt .ttl_block {
    background: #fff;
    padding: 96px 0 64px
}

.frnt .ttl_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.frnt .ttl_text_col {
    padding: 32px 32px 32px 0;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.frnt .ttl_badge {
    display: inline-block;
    background: #AFF6DA;
    color: #1b0a3a;
    font-size: 15px;
    line-height: 1.35;
    padding: 8px 16px;
    border-radius: 22px;
    font-weight: 600;
    letter-spacing: .04em
}

.frnt .ttl_h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b0a3a;
    margin: 0
}

.frnt .ttl_h1 .grad_word {
    background: linear-gradient(113deg, #542198 30%, #F3F00A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700
}

.frnt .ttl_sub {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a4a;
    margin: 0
}

.frnt .ttl_cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1.35;
    color: #542198;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #F3F00A;
    padding-bottom: 4px;
    transition: color .16s ease-out, border-color .14s ease-out;
    width: fit-content
}

.frnt .ttl_cta:hover {
    color: #1b0a3a;
    border-color: #542198
}

.frnt .ttl_cta:active {
    transform: scale(0.97)
}

.frnt .ttl_cta .arr {
    display: inline-block;
    width: 18px;
    height: 18px;
    transition: transform .12s ease-out
}

.frnt .ttl_cta:hover .arr {
    transform: translateX(4px)
}

.frnt .ttl_img_col {
    padding: 0 0 0 16px;
    position: relative
}

.frnt .ttl_img_wrap {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 8px 48px 0 #54219821
}

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

.frnt .ttl_img_wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    border-radius: 14px;
    pointer-events: none;
    opacity: .45
}

.frnt .ttl_blur1 {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 48px;
    background: #F3F00A;
    opacity: .18;
    filter: blur(54px);
    top: -32px;
    right: -32px;
    pointer-events: none
}

.frnt .ttl_blur2 {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 48px;
    background: #AFF6DA;
    opacity: .22;
    filter: blur(40px);
    bottom: -16px;
    left: -16px;
    pointer-events: none
}

.frnt .div_fade {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #542198 30%, #AFF6DA 70%, transparent 100%);
    opacity: .18;
    margin: 0;
    border: none
}

.frnt .team_sec {
    background: linear-gradient(160deg, #f7f4ff 0%, #fff 60%, #f0fdf7 100%);
    padding: 96px 0 64px
}

.frnt .sec_label {
    font-size: 15px;
    line-height: 1.35;
    color: #542198;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block
}

.frnt .team_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b0a3a;
    margin: 0 0 32px
}

.frnt .team_layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.frnt .team_img_wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: -1px 5px 22px 0 #54219814;
    position: relative
}

.frnt .team_img_wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: filter .18s ease-out
}

.frnt .team_img_wrap:hover img {
    filter: brightness(0.88) contrast(1.06)
}

.frnt .team_img_wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, #54219838 0%, transparent 65%), radial-gradient(ellipse at 80% 10%, #aff6da2e 0%, transparent 55%);
    pointer-events: none;
    opacity: 0;
    transition: opacity .18s ease-out;
    border-radius: 14px;
    z-index: 1
}

.frnt .team_img_wrap:hover::before {
    opacity: 1
}

.frnt .team_cards {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.frnt .tm_card {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 3px 6px 0 #54219812;
    border-right: 3px solid #AFF6DA;
    position: relative
}

.frnt .tm_card .corner_acc {
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    background: #F3F00A;
    border-radius: 0 14px 0 22px
}

.frnt .tm_name {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0a3a;
    margin: 0 0 8px
}

.frnt .tm_role {
    font-size: 15px;
    line-height: 1.35;
    color: #542198;
    font-weight: 600;
    margin: 0 0 8px
}

.frnt .tm_desc {
    font-size: 15px;
    line-height: 1.55;
    color: #2d1a4a;
    margin: 0
}

.frnt .after_sec {
    background: #fff;
    padding: 64px 0 96px
}

.frnt .after_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b0a3a;
    margin: 0 0 8px
}

.frnt .after_intro {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a4a;
    max-width: 560px;
    margin: 0 0 64px
}

.frnt .after_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.frnt .aft_item {
    background: #fff;
    border-radius: 22px;
    padding: 32px;
    box-shadow: -1px 5px 22px 0 #54219814;
    position: relative;
    overflow: hidden
}

.frnt .aft_item::before {
    content: '';
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #AFF6DA;
    margin-bottom: 16px
}

.frnt .aft_item.yel::before {
    background: #F3F00A
}

.frnt .aft_item.pur::before {
    background: linear-gradient(135deg, #542198 0%, #AFF6DA 100%)
}

.frnt .aft_h4 {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0a3a;
    margin: 0 0 8px
}

.frnt .aft_p {
    font-size: 15px;
    line-height: 1.55;
    color: #2d1a4a;
    margin: 0
}

.frnt .who_sec {
    padding: 96px 0;
    background: linear-gradient(170deg, #1b0a3a 0%, #2d1a4a 100%);
    position: relative
}

.frnt .who_sec .pg_wrap {
    position: relative;
    z-index: 2
}

.frnt .who_rings {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0
}

.frnt .who_rings svg {
    position: absolute;
    bottom: -60px;
    right: -60px;
    opacity: .07;
    width: 420px;
    height: 420px
}

.frnt .who_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #fff;
    margin: 0 0 32px
}

.frnt .who_h2 span {
    color: #F3F00A
}

.frnt .who_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.frnt .who_col {
    background: #ffffff0f;
    border-radius: 22px;
    padding: 32px;
    border-right: 3px solid #aff6da4d
}

.frnt .who_col.no_side {
    border-right: 3px solid #f3f00a40
}

.frnt .who_col_h {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: #AFF6DA;
    margin: 0 0 16px
}

.frnt .who_col.no_side .who_col_h {
    color: #F3F00A
}

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

.frnt .who_list li {
    font-size: 15px;
    line-height: 1.55;
    color: #ffffffd9;
    padding-left: 16px;
    position: relative
}

.frnt .who_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 8px;
    background: #AFF6DA
}

.frnt .who_col.no_side .who_list li::before {
    background: #F3F00A
}

.frnt .ltv_sec {
    background: #fff;
    padding: 96px 0 64px
}

.frnt .ltv_grid {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 64px;
    align-items: center
}

.frnt .ltv_text {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.frnt .ltv_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b0a3a;
    margin: 0
}

.frnt .ltv_p {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a4a;
    margin: 0;
    max-width: 520px
}

.frnt .ltv_p2 {
    font-size: 15px;
    line-height: 1.8;
    color: #2d1a4a;
    margin: 0;
    max-width: 520px
}

.frnt .ltv_vis {
    display: flex;
    flex-direction: column;
    gap: 16px
}

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

.frnt .ltv_bar_label {
    font-size: 15px;
    line-height: 1.35;
    color: #542198;
    font-weight: 600
}

.frnt .ltv_bar_track {
    height: 10px;
    background: #f0ecff;
    border-radius: 8px;
    overflow: hidden
}

.frnt .ltv_bar_fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, #542198 0%, #AFF6DA 100%);
    animation: barGrow .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes barGrow {
    from {
        width: 0
    }
}

.frnt .avail_sec {
    background: linear-gradient(155deg, #f5fff9 0%, #fdfcff 60%, #fffef0 100%);
    padding: 64px 0 96px
}

.frnt .avail_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b0a3a;
    margin: 0 0 8px
}

.frnt .avail_sub {
    font-size: 18px;
    line-height: 1.55;
    color: #2d1a4a;
    margin: 0 0 64px
}

.frnt .avail_compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px
}

.frnt .cmp_card {
    border-radius: 22px;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.frnt .cmp_card.opt_a {
    background: #1b0a3a;
    box-shadow: -1px 8px 48px 0 #54219821
}

.frnt .cmp_card.opt_b {
    background: #fff;
    box-shadow: -1px 5px 22px 0 #54219814;
    border: 2px solid #AFF6DA
}

.frnt .cmp_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 22px;
    margin-bottom: 16px
}

.frnt .cmp_card.opt_a .cmp_tag {
    background: #F3F00A;
    color: #1b0a3a
}

.frnt .cmp_card.opt_b .cmp_tag {
    background: #AFF6DA;
    color: #1b0a3a
}

.frnt .cmp_h3 {
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    margin: 0 0 16px
}

.frnt .cmp_card.opt_a .cmp_h3 {
    color: #fff
}

.frnt .cmp_card.opt_b .cmp_h3 {
    color: #1b0a3a
}

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

.frnt .cmp_list li {
    font-size: 15px;
    line-height: 1.55;
    padding-left: 16px;
    position: relative
}

.frnt .cmp_card.opt_a .cmp_list li {
    color: #ffffffd1
}

.frnt .cmp_card.opt_b .cmp_list li {
    color: #2d1a4a
}

.frnt .cmp_list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 8px
}

.frnt .cmp_card.opt_a .cmp_list li::before {
    background: #F3F00A
}

.frnt .cmp_card.opt_b .cmp_list li::before {
    background: #542198
}

.frnt .avail_more {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.frnt .avail_item {
    background: #fff;
    border-radius: 14px;
    padding: 32px;
    box-shadow: -1px 3px 6px 0 #54219812
}

.frnt .avail_item_h {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #1b0a3a;
    margin: 0 0 8px
}

.frnt .avail_item_p {
    font-size: 15px;
    line-height: 1.55;
    color: #2d1a4a;
    margin: 0
}

.frnt .hesit_sec {
    background: #fff;
    padding: 96px 0
}

.frnt .hesit_inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center
}

.frnt .hesit_h2 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b0a3a;
    margin: 0
}

.frnt .hesit_p {
    font-size: 18px;
    line-height: 1.8;
    color: #2d1a4a;
    margin: 0;
    max-width: 640px
}

.frnt .hesit_p2 {
    font-size: 15px;
    line-height: 1.8;
    color: #2d1a4a;
    margin: 0;
    max-width: 600px
}

.frnt .hesit_pill {
    display: inline-block;
    background: linear-gradient(113deg, #F3F00A 0%, #AFF6DA 100%);
    color: #1b0a3a;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    padding: 8px 32px;
    border-radius: 34px;
    letter-spacing: .04em
}

.frnt .hesit_link {
    font-size: 18px;
    line-height: 1.35;
    color: #542198;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #F3F00A;
    padding-bottom: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .14s ease-out, border-color .16s ease-out
}

.frnt .hesit_link:hover {
    color: #1b0a3a;
    border-color: #542198
}

.frnt .hesit_link:active {
    transform: scale(0.97)
}

@media (max-width: 1280px) {
    .frnt .ttl_h1 {
        font-size: 42px
    }

    .frnt .after_grid {
        grid-template-columns: 1fr 1fr
    }

    .frnt .avail_more {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {

    .frnt .ttl_grid,
    .frnt .team_layout,
    .frnt .ltv_grid,
    .frnt .who_cols,
    .frnt .avail_compare {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .frnt .after_grid,
    .frnt .avail_more {
        grid-template-columns: 1fr
    }

    .frnt .ttl_h1 {
        font-size: 30px
    }

    .frnt .team_h2,
    .frnt .after_h2,
    .frnt .who_h2,
    .frnt .ltv_h2,
    .frnt .avail_h2,
    .frnt .hesit_h2 {
        font-size: 30px
    }

    .frnt .ttl_text_col {
        padding: 0
    }

    .frnt .ttl_img_col {
        padding: 0
    }

    .frnt .pg_wrap {
        padding: 0 16px
    }

    .frnt .ttl_block {
        padding: 64px 0 32px
    }

    .frnt .team_sec,
    .frnt .who_sec,
    .frnt .ltv_sec,
    .frnt .hesit_sec {
        padding: 64px 0
    }
}

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

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

.success_page .icon_wrap {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: #AFF6DA;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 5px 22px 0 #54219814;
    flex-shrink: 0
}

.success_page .icon_wrap svg {
    width: 36px;
    height: 36px
}

.success_page .success_heading {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 300;
    color: #1b1035;
    text-align: center;
    margin: 0;
    letter-spacing: -.01em
}

.success_page .success_sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a2460;
    text-align: center;
    max-width: 520px;
    margin: 0
}

.success_page .divider_line {
    width: 64px;
    height: 3px;
    border-radius: 8px;
    background: #F3F00A;
    border: none;
    margin: 0
}

.success_page .detail_note {
    font-size: 15px;
    line-height: 1.8;
    color: #542198;
    text-align: center;
    max-width: 420px;
    margin: 0;
    padding: 16px 32px;
    border-radius: 14px;
    background: #f7f4ff;
    box-shadow: -1px 3px 6px 0 #54219812
}

.success_page .back_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.35;
    color: #542198;
    text-decoration: none;
    padding: 8px 0;
    transition: color .18s ease-out, gap .14s cubic-bezier(0.4, 0, 0.6, 1)
}

.success_page .back_link:hover {
    color: #1b1035;
    gap: 16px
}

.success_page .back_link:focus-visible {
    outline: 2px solid #542198;
    outline-offset: 4px;
    border-radius: 8px
}

.success_page .back_link .arrow_icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

@media (max-width: 768px) {
    .success_page {
        padding: 64px 16px
    }

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

    .success_page .success_sub {
        font-size: 15px
    }
}