html {
    box-sizing: border-box
}

body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    font-family: "Arimo", sans-serif
}

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

.brand_pod {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    flex-shrink: 0
}

.logo_card {
    width: 90px;
    height: 90px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 3px -2px #ff7a0514 0 6px 22px -2px #ff7a0517;
    border: 2px solid #ff7a052e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.logo_card img {
    width: 74px;
    height: 74px;
    object-fit: contain;
    display: block
}

.brand_name_text {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: .01em
}

.brand_name_text span {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #ffffffc7;
    line-height: 1.6;
    letter-spacing: normal
}

.site_header {
    position: relative;
    background: linear-gradient(135deg, #0585D4 0%, #0567a8 45%, #FF7A05 100%);
    overflow: hidden
}

.site_header::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 320px;
    height: 320px;
    background: #ff02b51a;
    border-radius: 50%;
    pointer-events: none
}

.site_header::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 200px;
    height: 200px;
    background: #ff7a051f;
    border-radius: 50%;
    pointer-events: none
}

.hdr_top_band {
    background: #0000002e;
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px
}

.hdr_contact_link {
    font-size: 15px;
    color: #ffffffe0;
    text-decoration: none;
    line-height: 1.6;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.hdr_contact_link:hover {
    color: #fff
}

.hdr_contact_link:focus {
    outline: 2px solid #fff;
    outline-offset: 3px;
    border-radius: 5px
}

.hdr_main_row {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

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

.nav_item_pod {
    position: relative
}

.nav_link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid transparent;
    line-height: 1.6;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    white-space: nowrap;
    min-height: 44px
}

.nav_link:hover,
.nav_link:focus {
    background: #ffffff26;
    border-color: #ffffff59;
    outline: none
}

.nav_link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px
}

.nav_link_arrow {
    width: 10px;
    height: 10px;
    display: inline-block;
    flex-shrink: 0
}

.nav_link_arrow svg {
    display: block;
    width: 10px;
    height: 10px
}

.nav_item_pod:hover .sub_nav_deck,
.nav_item_pod:focus-within .sub_nav_deck {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.sub_nav_deck {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 22px -2px #0585d417 0 10px 60px -2px #0585d421;
    border: 2px solid #ff7a051f;
    padding: 8px;
    min-width: 220px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100
}

.sub_nav_deck::before {
    content: "";
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
    background: transparent
}

.sub_link {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #1a3a5c;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    line-height: 1.6;
    white-space: nowrap;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 44px;
    display: flex;
    align-items: center
}

.sub_link:hover {
    background: #ff7a0517;
    color: #FF7A05
}

.sub_link:focus-visible {
    outline: 2px solid #0585D4;
    outline-offset: 2px;
    border-radius: 8px
}

.site_footer {
    background: linear-gradient(180deg, #0567a8 0%, #034a7a 100%);
    padding: 72px 40px 40px;
    text-align: center
}

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

.ftr_brand_cell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px
}

.ftr_logo_card {
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 1px 3px -2px #ff7a0514 0 6px 22px -2px #ff7a0517;
    border: 2px solid #ff7a0533;
    display: flex;
    align-items: center;
    justify-content: center
}

.ftr_logo_card img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block
}

.ftr_brand_label {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.ftr_divider {
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, #FF7A05, #FF02B5);
    border-radius: 5px;
    margin: 0 auto 40px
}

.ftr_links_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px
}

.ftr_link {
    font-size: 15px;
    color: #fffc;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    line-height: 1.6;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.ftr_link:hover {
    color: #fff;
    background: #ffffff1a
}

.ftr_link:focus-visible {
    outline: 2px solid #FF7A05;
    outline-offset: 3px;
    border-radius: 8px
}

.ftr_sep {
    width: 4px;
    height: 4px;
    background: #ff7a058c;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0
}

.ftr_contact_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px
}

.ftr_contact_item {
    font-size: 15px;
    color: #ffffffb3;
    line-height: 1.6
}

.ftr_contact_item a {
    color: #ffffffd9;
    text-decoration: none;
    transition: color .5s ease
}

.ftr_contact_item a:hover {
    color: #FF7A05
}

.ftr_contact_item a:focus-visible {
    outline: 2px solid #FF7A05;
    outline-offset: 2px;
    border-radius: 5px
}

.ftr_copy {
    font-size: 15px;
    color: #ffffff80;
    line-height: 1.6
}

.ck_bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 2px solid #ff7a0533;
    box-shadow: 0 -6px 22px -2px #0585d417;
    z-index: 2000;
    padding: 16px 40px
}

.ck_bar_inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.ck_text {
    font-size: 15px;
    color: #1a3a5c;
    line-height: 1.6;
    flex: 1;
    min-width: 200px;
    font-family: "Arimo", sans-serif
}

.ck_text a {
    color: #0585D4;
    text-decoration: underline;
    transition: color .5s ease
}

.ck_text a:hover {
    color: #FF7A05
}

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

.ck_btn {
    font-size: 15px;
    font-family: "Arimo", sans-serif;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 8px;
    cursor: pointer;
    min-height: 44px;
    border: 2px solid #0585D4;
    background: transparent;
    color: #0585D4;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    line-height: 1.6
}

.ck_btn:hover {
    background: #0585D4;
    color: #fff
}

.ck_btn:focus-visible {
    outline: 2px solid #0585D4;
    outline-offset: 3px
}

.ck_btn.accept {
    border-color: #FF7A05;
    color: #FF7A05
}

.ck_btn.accept:hover {
    background: #FF7A05;
    color: #fff
}

.ck_btn.accept:focus-visible {
    outline-color: #FF7A05
}

.ck_settings_panel {
    width: 100%;
    padding-top: 16px;
    border-top: 1px solid #0585d426;
    margin-top: 8px;
    display: none
}

.ck_toggle_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
    flex-wrap: wrap
}

.ck_toggle_label {
    font-size: 15px;
    color: #1a3a5c;
    line-height: 1.6;
    font-family: "Arimo", sans-serif
}

.ck_switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0
}

.ck_switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute
}

.ck_slider {
    position: absolute;
    inset: 0;
    background: #0585d433;
    border-radius: 38px;
    cursor: pointer;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ck_slider::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 3px -2px #ff7a0514
}

.ck_switch input:checked+.ck_slider {
    background: #0585D4
}

.ck_switch input:checked+.ck_slider::after {
    transform: translateX(20px)
}

.ck_switch input:focus-visible+.ck_slider {
    outline: 2px solid #0585D4;
    outline-offset: 2px
}

.policy-region {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 40px
}

.policy-region p {
    font-size: 15px;
    line-height: 1.9;
    color: #2d2d2d;
    margin-bottom: 24px
}

.policy-region ul,
.policy-region ol {
    padding-left: 40px;
    margin-bottom: 24px
}

.policy-region li {
    font-size: 15px;
    line-height: 1.9;
    color: #2d2d2d;
    margin-bottom: 8px
}

.policy-region ul li {
    list-style-type: disc
}

.policy-region ol li {
    list-style-type: decimal
}

.policy-region strong,
.policy-region b {
    font-weight: 700;
    color: #1e1e1e
}

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

.policy-region a {
    color: #0585D4;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity .5s ease
}

.policy-region a:hover {
    color: #FF7A05;
    opacity: .88
}

.policy-region table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 15px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 22px -2px #0585d417
}

.policy-region thead {
    background-color: #0585D4
}

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

.policy-region tbody tr {
    border-bottom: 1px solid #ddeef8;
    transition: background-color .5s ease
}

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

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

.policy-region tbody tr:hover {
    background-color: #e0f0fa
}

.policy-region td {
    font-size: 15px;
    line-height: 1.9;
    color: #2d2d2d;
    padding: 16px 24px;
    vertical-align: top
}

.policy-region th {
    font-size: 15px;
    line-height: 1.6
}

.policy-region div {
    margin-bottom: 24px
}

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

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

    .policy-region ul,
    .policy-region ol {
        padding-left: 24px
    }
}

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

    .policy-region p,
    .policy-region li,
    .policy-region td {
        font-size: 15px
    }
}

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

.stor_det .stripe_bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.stor_det .stripe_bg::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: repeating-linear-gradient(118deg, transparent, transparent 48px, #ff7a050a 48px, #ff7a050a 50px);
    animation: stripes_move 18s linear infinite
}

@keyframes stripes_move {
    0% {
        transform: translateX(0) translateY(0)
    }

    100% {
        transform: translateX(80px) translateY(80px)
    }
}

.stor_det .pub_head {
    background: #1a1200;
    background: linear-gradient(158deg, #1b1000 0%, #0d1f38 100%);
    padding: 72px;
    position: relative
}

.stor_det .pub_head .dec_rect_group {
    position: absolute;
    top: 24px;
    right: 40px;
    pointer-events: none;
    overflow: hidden
}

.stor_det .pub_head .dec_rect_group span {
    display: block;
    border: 1.5px solid #ff7a052e;
    border-radius: 5px;
    position: absolute
}

.stor_det .pub_head .dec_rect_group span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 0;
    right: 0
}

.stor_det .pub_head .dec_rect_group span:nth-child(2) {
    width: 112px;
    height: 112px;
    top: -16px;
    right: -16px;
    border-color: #0585d424
}

.stor_det .pub_head .dec_rect_group span:nth-child(3) {
    width: 144px;
    height: 144px;
    top: -32px;
    right: -32px;
    border-color: #ff02b51a
}

.stor_det .pub_head .dec_rect_group span:nth-child(4) {
    width: 176px;
    height: 176px;
    top: -48px;
    right: -48px;
    border-color: #ff7a0512
}

.stor_det .pub_head_inner {
    max-width: 860px;
    position: relative;
    z-index: 1
}

.stor_det .pub_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    color: #FF7A05;
    border: 2px solid #FF7A05;
    border-radius: 5px;
    padding: 8px 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative
}

.stor_det .pub_tag .tag_outline {
    position: absolute;
    inset: -1px;
    border-radius: 5px;
    border: 1.5px solid #FF7A05;
    opacity: 0;
    animation: tag_trace 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

@keyframes tag_trace {
    0% {
        opacity: 0;
        transform: scale(1.18)
    }

    60% {
        opacity: 1;
        transform: scale(1.03)
    }

    100% {
        opacity: .6;
        transform: scale(1)
    }
}

.stor_det .pub_h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.stor_det .pub_h1::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #FF7A05, #0585D4);
    border-radius: 5px;
    width: 0;
    animation: underline_draw .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s forwards
}

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

.stor_det .pub_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffffb8;
    margin: 0 0 40px
}

.stor_det .pub_meta_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.stor_det .pub_author_name {
    font-size: 15px;
    line-height: 1.2;
    color: #fff9
}

.stor_det .pub_author_name strong {
    color: #fff;
    font-size: 15px
}

.stor_det .pub_date {
    font-size: 15px;
    line-height: 1.2;
    color: #ffffff73
}

.stor_det .pub_date_dot {
    width: 4px;
    height: 4px;
    border-radius: 38px;
    background: #ffffff4d;
    display: inline-block;
    vertical-align: middle
}

.stor_det .curve_div {
    position: relative;
    height: 48px;
    overflow: hidden;
    background: #f5f0ea
}

.stor_det .curve_div svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%
}

.stor_det .curve_div_bot {
    background: linear-gradient(158deg, #1b1000 0%, #0d1f38 100%)
}

.stor_det .article_layout {
    background: #f5f0ea;
    padding: 72px 72px 40px;
    position: relative
}

.stor_det .article_layout .tex_bg {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF7A05' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0
}

.stor_det .art_grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: start
}

.stor_det .art_main {
    min-width: 0
}

.stor_det .art_img_wrap {
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 6px 22px -2px #ff7a0517
}

.stor_det .art_img_wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    filter: blur(0);
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_det .art_img_wrap:hover img {
    transform: scale(1.04)
}

.stor_det .art_body {
    font-size: 20px;
    line-height: 1.9;
    color: #1c1008
}

.stor_det .art_body p {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.9;
    color: #1c1008
}

.stor_det .art_body h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1c1008;
    margin: 40px 0 16px;
    position: relative;
    display: inline-block
}

.stor_det .art_body h2::after {
    content: '';
    display: block;
    height: 2px;
    background: #FF7A05;
    border-radius: 5px;
    width: 0;
    transition: width .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_det .art_body h2:hover::after {
    width: 100%
}

.stor_det .art_body h4 {
    font-size: 26px;
    line-height: 1.6;
    color: #0585D4;
    margin: 24px 0 16px
}

.stor_det .art_body mark {
    background: linear-gradient(90deg, #ff7a052e, #0585d41f);
    color: inherit;
    border-radius: 5px;
    padding: 0 8px
}

.stor_det .art_body small {
    font-size: 15px;
    line-height: 1.6;
    color: #6a5a40;
    display: block;
    margin-bottom: 16px
}

.stor_det .art_body details {
    border: 2px solid #ff7a0538;
    border-radius: 14px;
    padding: 16px 24px;
    margin-bottom: 24px;
    background: #ffffffb3
}

.stor_det .art_body summary {
    font-size: 20px;
    line-height: 1.6;
    color: #FF7A05;
    cursor: pointer;
    font-weight: 600;
    list-style: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.stor_det .art_body summary::-webkit-details-marker {
    display: none
}

.stor_det .art_body summary::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #FF7A05;
    border-bottom: 2px solid #FF7A05;
    transform: rotate(-45deg);
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0
}

.stor_det .art_body details[open] summary::before {
    transform: rotate(45deg)
}

.stor_det .art_sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.stor_det .sidebar_card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 1px 3px -2px #ff7a0514;
    position: relative
}

.stor_det .sidebar_card .dec_corner {
    position: absolute;
    top: 16px;
    right: 16px;
    pointer-events: none;
    overflow: hidden;
    width: 60px;
    height: 60px
}

.stor_det .sidebar_card .dec_corner span {
    display: block;
    border: 1px solid #0585d426;
    border-radius: 5px;
    position: absolute
}

.stor_det .sidebar_card .dec_corner span:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 0;
    right: 0
}

.stor_det .sidebar_card .dec_corner span:nth-child(2) {
    width: 36px;
    height: 36px;
    top: -8px;
    right: -8px;
    border-color: #ff7a051f
}

.stor_det .sidebar_card .dec_corner span:nth-child(3) {
    width: 52px;
    height: 52px;
    top: -16px;
    right: -16px;
    border-color: #ff02b514
}

.stor_det .sidebar_card_h {
    font-size: 20px;
    line-height: 1.2;
    color: #1c1008;
    margin: 0 0 16px;
    text-align: center
}

.stor_det .steps_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0
}

.stor_det .step_item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    position: relative
}

.stor_det .step_item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, #FF7A05 0%, #0585d44d 100%);
    border-radius: 5px
}

.stor_det .step_num {
    width: 32px;
    height: 32px;
    border-radius: 38px;
    border: 2.5px solid #FF7A05;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.2;
    color: #FF7A05;
    font-weight: 700;
    flex-shrink: 0;
    background: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: 16px
}

.stor_det .step_txt {
    padding-top: 8px;
    padding-bottom: 16px
}

.stor_det .step_txt strong {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #1c1008;
    margin-bottom: 8px
}

.stor_det .step_txt span {
    font-size: 15px;
    line-height: 1.6;
    color: #6a5a40
}

.stor_det .contact_card {
    background: linear-gradient(158deg, #FF7A05 0%, #0585D4 100%);
    border-radius: 22px;
    padding: 24px
}

.stor_det .contact_card_h {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 16px;
    text-align: center
}

.stor_det .contact_link {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffe6;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #fff3;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.stor_det .contact_link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_det .contact_link:hover::after {
    width: 100%;
    left: 0
}

.stor_det .contact_link:hover {
    color: #fff
}

.stor_det .contact_link:last-child {
    border-bottom: none
}

.stor_det .about_btn {
    display: inline-block;
    margin-top: 16px;
    width: 100%;
    text-align: center;
    font-size: 15px;
    line-height: 1.2;
    color: #fff;
    border: 2.5px solid #fff;
    border-radius: 8px;
    padding: 8px 24px;
    text-decoration: none;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_det .about_btn:hover {
    background: #fff;
    color: #FF7A05
}

.stor_det .curve_div2 {
    position: relative;
    height: 48px;
    overflow: hidden;
    background: #1b2a3a
}

.stor_det .curve_div2 svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.stor_det .bottom_strip {
    background: #1b2a3a;
    padding: 40px 72px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    position: relative
}

.stor_det .bottom_strip .stripe_bg2 {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.stor_det .bottom_strip .stripe_bg2::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: repeating-linear-gradient(118deg, transparent, transparent 48px, #0585d40a 48px, #0585d40a 50px);
    animation: stripes_move 24s linear infinite reverse
}

.stor_det .bottom_strip_txt {
    font-size: 26px;
    line-height: 1.2;
    color: #fff;
    position: relative;
    z-index: 1
}

.stor_det .bottom_strip_txt span {
    color: #FF7A05;
    letter-spacing: .08em;
    text-transform: uppercase
}

.stor_det .home_btn {
    display: inline-block;
    font-size: 20px;
    line-height: 1.2;
    color: #FF7A05;
    border: 3px solid #FF7A05;
    border-radius: 14px;
    padding: 16px 40px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_det .home_btn:hover {
    background: #FF7A05;
    color: #fff;
    transform: scale(1.04)
}

.stor_det .scroll_top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    background: #FF7A05;
    border-radius: 14px;
    box-shadow: 0 6px 22px -2px #ff7a0517;
    z-index: 100;
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_det .scroll_top:hover {
    background: #0585D4;
    transform: scale(1.06)
}

.stor_det .scroll_top svg {
    display: block
}

@media (max-width: 1024px) {
    .stor_det .pub_head {
        padding: 40px
    }

    .stor_det .pub_h1 {
        font-size: 50px
    }

    .stor_det .article_layout {
        padding: 40px
    }

    .stor_det .art_grid {
        grid-template-columns: 1fr
    }

    .stor_det .bottom_strip {
        padding: 40px
    }
}

@media (max-width: 640px) {
    .stor_det .pub_head {
        padding: 40px 16px
    }

    .stor_det .pub_h1 {
        font-size: 36px
    }

    .stor_det .pub_sub {
        font-size: 15px
    }

    .stor_det .article_layout {
        padding: 24px 16px
    }

    .stor_det .art_body {
        font-size: 15px
    }

    .stor_det .art_body p {
        font-size: 15px
    }

    .stor_det .bottom_strip {
        padding: 24px 16px;
        flex-direction: column;
        align-items: flex-start
    }

    .stor_det .bottom_strip_txt {
        font-size: 20px
    }
}

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

.stor_pg .pg_lead {
    padding: 72px 72px 40px;
    background: radial-gradient(ellipse at 0% 0%, #fff8f0 0%, #f0f7ff 60%, #fff 100%);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.stor_pg .pg_lead .qt_mark {
    position: absolute;
    top: 16px;
    left: 40px;
    font-size: 260px;
    line-height: 1.2;
    color: #FF7A05;
    opacity: .07;
    pointer-events: none;
    user-select: none;
    font-style: normal;
    z-index: 0
}

.stor_pg .pg_lead .lead_txt {
    position: relative;
    z-index: 1
}

.stor_pg .pg_lead .lead_txt h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #1a1a00;
    color: #2a1800;
    margin: 0 0 24px;
    text-align: center
}

.stor_pg .pg_lead .lead_txt h1 span {
    color: #FF7A05;
    display: inline-block;
    letter-spacing: .04em;
    text-transform: uppercase
}

.stor_pg .pg_lead .lead_txt .sub_desc {
    font-size: 20px;
    line-height: 1.9;
    color: #3a3a3a;
    max-width: 520px
}

.stor_pg .pg_lead .lead_img_wrap {
    position: relative;
    z-index: 1;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px #ff7a0521
}

.stor_pg .pg_lead .lead_img_wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 30%;
    opacity: .82;
    display: block;
    border-radius: 22px;
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_pg .pg_lead .lead_img_wrap:hover img {
    opacity: 1
}

.stor_pg .divider_a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 72px;
    margin: 8px 0
}

.stor_pg .divider_a span {
    display: block;
    width: 80px;
    height: 2px;
    background: #FF7A05;
    border-radius: 5px
}

.stor_pg .cards_strip {
    padding: 40px 72px 72px;
    background: #fff
}

.stor_pg .cards_strip .strip_lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #0585D4;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 24px
}

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

.stor_pg .post_card {
    border-radius: 14px;
    border: 2.5px solid #ffe0c0;
    background: #fff;
    box-shadow: 0 6px 22px -2px #ff7a0517;
    display: flex;
    flex-direction: column;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s ease;
    overflow: hidden
}

.stor_pg .post_card:hover {
    transform: scale(1.03) rotate(0.6deg);
    box-shadow: 0 10px 60px -2px #ff7a0521;
    border-color: #FF7A05
}

.stor_pg .post_card .card_img_box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f5ede0
}

.stor_pg .post_card .card_img_box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_pg .post_card:hover .card_img_box img {
    transform: scale(1.07)
}

.stor_pg .post_card .card_body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 16px
}

.stor_pg .post_card .card_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    color: #FF7A05;
    border: 2px solid #FF7A05;
    border-radius: 38px;
    padding: 0 16px;
    font-weight: 600;
    background: transparent;
    align-self: flex-start;
    transition: background .5s ease, color .5s ease
}

.stor_pg .post_card:hover .card_tag {
    background: #FF7A05;
    color: #fff
}

.stor_pg .post_card .card_ttl {
    font-size: 20px;
    line-height: 1.6;
    color: #1c2a00;
    color: #2a2000;
    margin: 0
}

.stor_pg .post_card .card_desc {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0;
    flex: 1
}

.stor_pg .post_card .card_meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #888
}

.stor_pg .post_card .card_meta .auth_nm {
    color: #0585D4;
    font-weight: 600
}

.stor_pg .post_card .card_lnk {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    color: #FF7A05;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color .5s ease, color .5s ease;
    align-self: flex-start;
    position: relative
}

.stor_pg .post_card .card_lnk::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #FF7A05;
    transition: left .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), right .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_pg .post_card .card_lnk:hover::after {
    left: 0;
    right: 0
}

.stor_pg .divider_b {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 72px;
    margin: 8px 0
}

.stor_pg .divider_b span {
    display: block;
    width: 60px;
    height: 3px;
    background: #0585D4;
    border-radius: 5px
}

.stor_pg .metrics_band {
    padding: 72px 72px 40px;
    background: linear-gradient(0deg, #fff 0%, #e8f4fd 50%, #c8e8f8 100%);
    position: relative
}

.stor_pg .metrics_band .halftone_bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background-image: radial-gradient(circle, #0585D4 1.5px, transparent 1.5px);
    background-size: 18px 18px;
    opacity: .08;
    pointer-events: none;
    border-radius: 0 0 0 22px;
    mask-image: radial-gradient(ellipse at top right, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at top right, black 30%, transparent 75%)
}

.stor_pg .metrics_band .band_head {
    font-size: 36px;
    line-height: 1.2;
    color: #0a1f2e;
    text-align: center;
    margin: 0 0 8px;
    position: relative
}

.stor_pg .metrics_band .band_head::after {
    content: "";
    display: block;
    width: 0;
    height: 3px;
    background: #0585D4;
    margin: 8px auto 0;
    border-radius: 5px;
    transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_pg .metrics_band:hover .band_head::after {
    width: 120px
}

.stor_pg .metrics_band .band_sub {
    font-size: 15px;
    line-height: 1.9;
    color: #3a5a6a;
    max-width: 560px;
    margin: 0 0 40px
}

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

.stor_pg .metric_item {
    background: #fff;
    border-radius: 14px;
    border: 2.5px solid #c5e3f5;
    padding: 24px;
    text-align: center;
    box-shadow: 0 6px 22px -2px #0585d417;
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s ease
}

.stor_pg .metric_item:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 10px 60px -2px #0585d421
}

.stor_pg .metric_item .met_val {
    font-size: 50px;
    line-height: 1.2;
    color: #0585D4;
    font-weight: 800;
    display: block
}

.stor_pg .metric_item .met_lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #3a5a6a;
    margin-top: 8px;
    display: block
}

.stor_pg .divider_c {
    height: 2px;
    margin: 8px 72px;
    background: linear-gradient(90deg, transparent, #FF02B5 50%, transparent);
    border-radius: 5px
}

.stor_pg .team_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px
}

.stor_pg .team_split .split_rich {
    background: linear-gradient(135deg, #FF7A05 0%, #FF02B5 100%);
    padding: 72px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    position: relative
}

.stor_pg .team_split .split_rich .big_num {
    font-size: 68px;
    line-height: 1.2;
    color: #ffffff26;
    font-weight: 900;
    position: absolute;
    bottom: 16px;
    right: 24px;
    pointer-events: none;
    user-select: none
}

.stor_pg .team_split .split_rich h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #fff;
    margin: 0
}

.stor_pg .team_split .split_rich h2 span {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #ffffffbf;
    margin-bottom: 8px
}

.stor_pg .team_split .split_rich .rich_desc {
    font-size: 20px;
    line-height: 1.9;
    color: #ffffffe6;
    margin: 0
}

.stor_pg .team_split .split_rich .feat_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.stor_pg .team_split .split_rich .feat_list li {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    background: #ffffff26;
    border-radius: 8px;
    padding: 8px 16px;
    border: 1.5px solid #ffffff40
}

.stor_pg .team_split .split_neutral {
    background: #fff;
    padding: 72px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.stor_pg .team_split .split_neutral h3 {
    font-size: 26px;
    line-height: 1.2;
    color: #2a1800;
    margin: 0
}

.stor_pg .team_split .split_neutral .neutral_body {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0
}

.stor_pg .team_split .split_neutral .contact_strip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px
}

.stor_pg .team_split .split_neutral .contact_strip a {
    font-size: 15px;
    line-height: 1.6;
    color: #FF7A05;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    align-self: flex-start;
    transition: border-color .6s ease
}

.stor_pg .team_split .split_neutral .contact_strip a:hover {
    border-color: #FF7A05
}

.stor_pg .team_split .split_neutral .cta_btn {
    display: inline-block;
    font-size: 20px;
    line-height: 1.6;
    color: #FF7A05;
    background: transparent;
    border: 3px solid #FF7A05;
    border-radius: 8px;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s ease, transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_pg .team_split .split_neutral .cta_btn:hover {
    background: #FF7A05;
    color: #fff;
    transform: scale(1.04)
}

.stor_pg .divider_d {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 72px;
    margin: 8px 0
}

.stor_pg .divider_d span {
    display: block;
    width: 100px;
    height: 2px;
    background: #FF02B5;
    border-radius: 5px
}

.stor_pg .form_band {
    padding: 72px;
    background: #fff8f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.stor_pg .form_band .form_info h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #2a1800;
    margin: 0 0 16px
}

.stor_pg .form_band .form_info .fi_desc {
    font-size: 15px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0
}

.stor_pg .form_band .form_info .fi_img {
    margin-top: 24px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 1px 3px -2px #ff7a0514
}

.stor_pg .form_band .form_info .fi_img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    border-radius: 14px;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.stor_pg .form_band .form_info .fi_img:hover img {
    transform: scale(1.04)
}

.stor_pg .form_band .form_area {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.stor_pg .form_band .form_area .f_row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.stor_pg .form_band .form_area label {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1800;
    font-weight: 600
}

.stor_pg .form_band .form_area input,
.stor_pg .form_band .form_area textarea {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1800;
    background: #fff;
    border: 2.5px solid #ffd0a0;
    border-radius: 8px;
    padding: 16px;
    outline: none;
    transition: border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease;
    width: 100%;
    box-sizing: border-box
}

.stor_pg .form_band .form_area input::placeholder,
.stor_pg .form_band .form_area textarea::placeholder {
    color: #bbb;
    transition: opacity .6s ease
}

.stor_pg .form_band .form_area input:focus::placeholder,
.stor_pg .form_band .form_area textarea:focus::placeholder {
    opacity: 0
}

.stor_pg .form_band .form_area input:focus,
.stor_pg .form_band .form_area textarea:focus {
    border-color: #FF7A05;
    box-shadow: 0 6px 22px -2px #ff7a0517
}

.stor_pg .form_band .form_area textarea {
    resize: vertical;
    min-height: 120px
}

.stor_pg .form_band .form_area .submit_btn {
    font-size: 20px;
    line-height: 1.6;
    color: #FF7A05;
    background: transparent;
    border: 3px solid #FF7A05;
    border-radius: 8px;
    padding: 16px 40px;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s ease, transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.stor_pg .form_band .form_area .submit_btn:hover {
    background: #FF7A05;
    color: #fff !important;
    transform: scale(1.04)
}

.stor_pg .form_band .form_area .submit_btn:focus {
    outline: 3px solid #0585D4;
    outline-offset: 3px
}

@media (max-width: 1100px) {
    .stor_pg .pg_lead {
        grid-template-columns: 1fr;
        padding: 40px 40px 24px
    }

    .stor_pg .cards_strip {
        padding: 24px 40px 40px
    }

    .stor_pg .cards_grid {
        grid-template-columns: 1fr 1fr
    }

    .stor_pg .metrics_band {
        padding: 40px 40px 24px
    }

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

    .stor_pg .team_split {
        grid-template-columns: 1fr
    }

    .stor_pg .form_band {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px
    }

    .stor_pg .divider_a,
    .stor_pg .divider_b,
    .stor_pg .divider_d {
        padding: 0 40px
    }

    .stor_pg .divider_c {
        margin: 8px 40px
    }
}

@media (max-width: 700px) {
    .stor_pg .pg_lead {
        padding: 24px 16px 16px
    }

    .stor_pg .pg_lead .lead_txt h1 {
        font-size: 36px
    }

    .stor_pg .cards_strip {
        padding: 16px 16px 24px
    }

    .stor_pg .cards_grid {
        grid-template-columns: 1fr
    }

    .stor_pg .metrics_band {
        padding: 24px 16px
    }

    .stor_pg .metrics_row {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .stor_pg .team_split .split_rich,
    .stor_pg .team_split .split_neutral {
        padding: 40px 16px
    }

    .stor_pg .form_band {
        padding: 24px 16px;
        gap: 24px
    }

    .stor_pg .divider_a,
    .stor_pg .divider_b,
    .stor_pg .divider_d {
        padding: 0 16px
    }

    .stor_pg .divider_c {
        margin: 8px 16px
    }
}

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

.srv_pg ::selection {
    background: #0585D4;
    color: #fff
}

.srv_pg * {
    box-sizing: border-box
}

.srv_pg .top_area {
    padding: 72px 40px;
    background: linear-gradient(158deg, #fff9f2 0%, #f0f7ff 100%);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.srv_pg .top_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(135deg, #ff7a050d 0px, #ff7a050d 1px, transparent 1px, transparent 18px);
    pointer-events: none;
    animation: bg_drift 14s linear infinite
}

@keyframes bg_drift {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 72px 72px
    }
}

.srv_pg .corner_line_tl {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 48px;
    height: 48px;
    pointer-events: none
}

.srv_pg .corner_line_br {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    pointer-events: none
}

.srv_pg .top_img_left {
    flex: 0 0 220px;
    position: relative
}

.srv_pg .top_img_left img {
    width: 220px;
    height: 320px;
    object-fit: cover;
    display: block;
    clip-path: polygon(0 12%, 100% 0%, 100% 88%, 0% 100%);
    box-shadow: 0 6px 22px -2px #ff7a0517
}

.srv_pg .top_img_right {
    flex: 0 0 200px;
    position: relative
}

.srv_pg .top_img_right img {
    width: 200px;
    height: 290px;
    object-fit: cover;
    display: block;
    clip-path: polygon(0 0%, 100% 12%, 100% 100%, 0% 88%);
    box-shadow: 0 6px 22px -2px #0585d417
}

.srv_pg .top_text {
    flex: 1 1 auto;
    text-align: center;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.srv_pg .top_label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    color: #0585D4;
    text-transform: uppercase;
    letter-spacing: .18em;
    border: 2.5px solid #0585D4;
    border-radius: 5px;
    padding: 8px 16px;
    margin-bottom: 24px
}

.srv_pg .top_h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #1a1200;
    margin: 0 0 16px;
    position: relative;
    display: inline-block
}

.srv_pg .top_h1 span.accent_word {
    color: #FF7A05;
    letter-spacing: .04em
}

.srv_pg .top_h1::after {
    content: "";
    display: block;
    height: 4px;
    background: linear-gradient(90deg, #FF7A05, #FF02B5);
    border-radius: 5px;
    width: 0;
    margin: 8px auto 0;
    animation: underline_draw .8s cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards
}

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

.srv_pg .top_counter_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 24px 0
}

.srv_pg .counter_item {
    display: flex;
    flex-direction: column;
    align-items: center
}

.srv_pg .counter_num {
    font-size: 50px;
    line-height: 1.2;
    color: #FF7A05;
    font-weight: 700
}

.srv_pg .counter_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #444
}

.srv_pg .top_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    max-width: 540px;
    margin: 0 auto;
    text-align: left
}

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

.srv_pg .divider_tri svg {
    display: block;
    width: 100%
}

.srv_pg .svc_area {
    padding: 72px 40px;
    background: #fff;
    position: relative
}

.srv_pg .svc_area::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: repeating-linear-gradient(180deg, #FF7A05 0px, #FF7A05 10px, transparent 10px, transparent 22px);
    pointer-events: none
}

.srv_pg .svc_split {
    display: grid;
    grid-template-columns: 2fr 5fr;
    gap: 72px;
    align-items: start;
    max-width: 1360px;
    margin: 0 auto
}

.srv_pg .svc_intro {
    position: sticky;
    top: 40px
}

.srv_pg .svc_intro_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1a1200;
    margin: 0 0 16px;
    position: relative;
    display: inline-block
}

.srv_pg .svc_intro_h2::after {
    content: "";
    display: block;
    height: 3px;
    background: #FF7A05;
    border-radius: 5px;
    width: 0;
    margin-top: 6px;
    animation: underline_draw .7s cubic-bezier(0.34, 1.56, 0.64, 1) .6s forwards
}

.srv_pg .svc_intro p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin: 0 0 24px
}

.srv_pg .svc_badge {
    display: inline-block;
    background: linear-gradient(135deg, #fff3e6 0%, #e8f4ff 100%);
    border: 2px solid #FF7A05;
    border-radius: 14px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #333
}

.srv_pg .svc_badge strong {
    color: #FF7A05;
    display: block;
    font-size: 20px
}

.srv_pg .svc_list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srv_pg .svc_card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    background: linear-gradient(158deg, #fff9f2 0%, #f5fbff 100%);
    border-radius: 22px;
    padding: 40px;
    border: 2.5px solid transparent;
    box-shadow: 0 1px 3px -2px #ff7a0514;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s ease, transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden
}

.srv_pg .svc_card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF7A05, #FF02B5);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    border-radius: 0 22px 0 0
}

.srv_pg .svc_card:hover {
    box-shadow: 0 10px 60px -2px #ff7a0521;
    border-color: #FF7A05;
    transform: scale(1.02)
}

.srv_pg .svc_card.alt_card {
    background: linear-gradient(158deg, #f0f7ff 0%, #fff5fe 100%)
}

.srv_pg .svc_card.alt_card::before {
    background: linear-gradient(135deg, #0585D4, #FF02B5)
}

.srv_pg .svc_card.alt_card:hover {
    border-color: #0585D4;
    box-shadow: 0 10px 60px -2px #0585d421
}

.srv_pg .card_col_a {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srv_pg .card_col_b {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srv_pg .card_icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0
}

.srv_pg .card_h3 {
    font-size: 26px;
    line-height: 1.2;
    color: #1a1200;
    margin: 0
}

.srv_pg .card_body {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin: 0
}

.srv_pg .card_feat_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 16px
}

.srv_pg .card_feat_list li {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    padding-left: 16px;
    position: relative
}

.srv_pg .card_feat_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 38px;
    background: #FF7A05
}

.srv_pg .alt_card .card_feat_list li::before {
    background: #0585D4
}

.srv_pg .card_tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    border-radius: 8px;
    padding: 8px 16px;
    border: 2px solid currentColor;
    align-self: flex-start;
    transition: background .5s ease, color .5s ease
}

.srv_pg .card_tag.orange {
    color: #FF7A05
}

.srv_pg .card_tag.orange:hover {
    background: #FF7A05;
    color: #fff
}

.srv_pg .card_tag.blue {
    color: #0585D4
}

.srv_pg .card_tag.blue:hover {
    background: #0585D4;
    color: #fff
}

.srv_pg .faq_area {
    margin-top: 72px;
    max-width: 1360px;
    margin-left: auto;
    margin-right: auto
}

.srv_pg .faq_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1a1200;
    margin: 0 0 40px;
    text-align: center
}

.srv_pg .faq_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.srv_pg .faq_item {
    background: linear-gradient(158deg, #fff9f2 0%, #f0f7ff 100%);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 1px 3px -2px #ff7a0514;
    border: 2px solid transparent;
    transition: border-color .6s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.srv_pg .faq_item:hover {
    border-color: #FF7A05;
    box-shadow: 0 6px 22px -2px #ff7a0517
}

.srv_pg .faq_q {
    font-size: 20px;
    line-height: 1.6;
    color: #1a1200;
    margin: 0 0 8px
}

.srv_pg .faq_a {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin: 0
}

.srv_pg .top_label:hover .ch1 {
    color: #FF7A05;
    transition: color .5s ease
}

.srv_pg .top_label:hover .ch2 {
    color: #FF02B5;
    transition: color .6s ease .05s
}

.srv_pg .top_label:hover .ch3 {
    color: #0585D4;
    transition: color .7s ease .1s
}

@media (max-width: 1024px) {
    .srv_pg .top_area {
        flex-direction: column;
        padding: 40px 24px
    }

    .srv_pg .top_img_left,
    .srv_pg .top_img_right {
        display: none
    }

    .srv_pg .top_h1 {
        font-size: 50px
    }

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

    .srv_pg .svc_intro {
        position: static
    }

    .srv_pg .svc_card {
        grid-template-columns: 1fr
    }

    .srv_pg .faq_grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 640px) {
    .srv_pg .top_h1 {
        font-size: 36px
    }

    .srv_pg .top_counter_row {
        gap: 24px
    }

    .srv_pg .counter_num {
        font-size: 36px
    }

    .srv_pg .svc_area {
        padding: 40px 16px
    }

    .srv_pg .svc_card {
        padding: 24px
    }

    .srv_pg .card_feat_list {
        grid-template-columns: 1fr
    }
}

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

.strt .pg_reveal {
    animation: pgReveal .7s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

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

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

.strt .reveal_up {
    animation: revUp .65s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

@keyframes revUp {
    from {
        opacity: 0;
        transform: translateY(32px) scale(0.95)
    }

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

.strt .reveal_up.d1 {
    animation-delay: .1s
}

.strt .reveal_up.d2 {
    animation-delay: .22s
}

.strt .reveal_up.d3 {
    animation-delay: .34s
}

.strt .reveal_up.d4 {
    animation-delay: .46s
}

.strt .div_diamond {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0
}

.strt .div_diamond span {
    display: block;
    height: 2px;
    width: 72px;
    background: #FF7A05
}

.strt .div_diamond em {
    display: block;
    width: 10px;
    height: 10px;
    background: #FF7A05;
    transform: rotate(45deg);
    border-radius: 2px;
    flex-shrink: 0
}

.strt .titl_blk {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 72px;
    background: #fff8f2;
    border-radius: 22px;
    margin: 40px 40px 0;
    overflow: hidden
}

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

.strt .titl_left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1
}

.strt .titl_tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF7A05;
    border: 3px solid #FF7A05;
    border-radius: 8px;
    padding: 8px 16px;
    width: fit-content
}

.strt .titl_h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #1a1500;
    font-weight: 900;
    margin: 0
}

.strt .titl_h1 strong {
    color: #FF7A05
}

.strt .titl_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #3a2e00;
    margin: 0;
    max-width: 460px
}

.strt .titl_cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center
}

.strt .btn_prim {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #FF7A05;
    background: transparent;
    border: 3px solid #FF7A05;
    border-radius: 14px;
    padding: 16px 40px;
    cursor: pointer;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: inline-block
}

.strt .btn_prim:hover {
    background: #FF7A05;
    color: #fff;
    transform: scale(1.05)
}

.strt .btn_prim:focus {
    outline: 3px solid #0585D4;
    outline-offset: 3px
}

.strt .btn_sec {
    font-size: 15px;
    font-weight: 700;
    color: #0585D4;
    background: transparent;
    border: 3px solid #0585D4;
    border-radius: 14px;
    padding: 16px 40px;
    cursor: pointer;
    transition: background .6s ease, color .6s ease, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    display: inline-block
}

.strt .btn_sec:hover {
    background: #0585D4;
    color: #fff;
    transform: scale(1.05)
}

.strt .btn_sec:focus {
    outline: 3px solid #FF7A05;
    outline-offset: 3px
}

.strt .titl_right {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center
}

.strt .titl_img_wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px #ff7a0521
}

.strt .titl_img_wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #ffffff2e 0%, #ff7a0512 100%);
    pointer-events: none
}

.strt .titl_img_wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 22px
}

.strt .titl_dbl_border {
    position: absolute;
    inset: -8px;
    border: 2px solid #ff7a0538;
    border-radius: 28px;
    pointer-events: none
}

.strt .titl_dbl_border::after {
    content: "";
    position: absolute;
    inset: 5px;
    border: 1px solid #ff7a051f;
    border-radius: 24px
}

.strt .gap_blk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 72px;
    margin: 0 40px;
    background: #fff;
    position: relative
}

.strt .gap_blk::after {
    content: "";
    position: absolute;
    left: 72px;
    right: 72px;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FF7A05 40%, #0585D4 60%, transparent)
}

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

.strt .gap_h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #1a1500;
    font-weight: 800;
    margin: 0;
    text-align: center;
    position: relative;
    display: inline-block
}

.strt .gap_h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #FF7A05;
    border-radius: 5px;
    margin-top: 8px;
    animation: lineIn .7s .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

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

.strt .gap_desc {
    font-size: 20px;
    line-height: 1.6;
    color: #2e2400;
    margin: 0
}

.strt .gap_right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.strt .gap_item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 14px;
    border: 2px solid transparent;
    background: #fff8f2;
    box-shadow: 0 1px 3px -2px #ff7a0514;
    transition: border-color .55s ease, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .55s ease
}

.strt .gap_item:hover {
    border-color: #FF7A05;
    transform: scale(1.03);
    box-shadow: 0 6px 22px -2px #ff7a0517
}

.strt .gap_dot {
    width: 12px;
    height: 12px;
    border-radius: 5px;
    background: #FF7A05;
    flex-shrink: 0;
    margin-top: 5px;
    transform: rotate(45deg)
}

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

.strt .gap_item_txt h4 {
    font-size: 20px;
    line-height: 1.2;
    color: #1a1500;
    font-weight: 700;
    margin: 0
}

.strt .gap_item_txt p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a2e00;
    margin: 0
}

.strt .appr_blk {
    padding: 72px;
    margin: 0 40px;
    background: linear-gradient(155deg, #f0f7ff 0%, #fff4ee 100%);
    border-radius: 22px;
    position: relative
}

.strt .appr_blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, #0585d40f 0%, transparent 70%);
    border-radius: 22px;
    pointer-events: none
}

.strt .appr_head {
    text-align: center;
    margin-bottom: 40px;
    position: relative
}

.strt .appr_h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #001a2e;
    font-weight: 800;
    margin: 0 0 16px;
    text-align: center;
    display: inline-block;
    position: relative
}

.strt .appr_h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #0585D4;
    border-radius: 5px;
    margin: 8px auto 0;
    animation: lineIn .7s .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.strt .appr_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #002040;
    margin: 0;
    text-align: left;
    max-width: 600px
}

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

.strt .appr_step {
    background: #fff;
    border-radius: 22px;
    padding: 40px 24px;
    border: 3px solid transparent;
    box-shadow: 0 6px 22px -2px #0585d417;
    transition: border-color .6s ease, transform .55s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden
}

.strt .appr_step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0585D4, #FF7A05);
    border-radius: 22px 22px 0 0
}

.strt .appr_step:hover {
    border-color: #0585D4;
    transform: scale(1.04)
}

.strt .appr_step_num {
    font-size: 50px;
    font-weight: 900;
    color: #0585d41f;
    line-height: 1.2;
    margin-bottom: 8px
}

.strt .appr_step h5 {
    font-size: 20px;
    line-height: 1.2;
    color: #001a2e;
    font-weight: 700;
    margin: 0 0 16px
}

.strt .appr_step p {
    font-size: 15px;
    line-height: 1.6;
    color: #002040;
    margin: 0
}

.strt .appr_step.featured {
    background: linear-gradient(145deg, #001a2e 0%, #0585D4 100%);
    border-color: #0585D4
}

.strt .appr_step.featured::before {
    background: linear-gradient(90deg, #FF7A05, #FF02B5)
}

.strt .appr_step.featured .appr_step_num {
    color: #ffffff26
}

.strt .appr_step.featured h5 {
    color: #fff
}

.strt .appr_step.featured p {
    color: #ffffffd9
}

.strt .rep_blk {
    padding: 72px;
    margin: 0 40px;
    background: #fff;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 72px;
    align-items: center
}

.strt .rep_img_col {
    position: relative
}

.strt .rep_img_wrap {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 60px -2px #ff7a0521
}

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

.strt .rep_dbl {
    position: absolute;
    inset: -10px;
    border: 2px solid #ff7a0533;
    border-radius: 28px;
    pointer-events: none
}

.strt .rep_dbl::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid #ff7a051a;
    border-radius: 24px
}

.strt .rep_txt_col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.strt .rep_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1a1500;
    font-weight: 800;
    margin: 0;
    text-align: center;
    display: inline-block;
    position: relative
}

.strt .rep_h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #FF02B5;
    border-radius: 5px;
    margin: 8px auto 0;
    animation: lineIn .7s .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.strt .rep_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2400;
    margin: 0
}

.strt .rep_refs {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.strt .rep_ref {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 24px;
    border-radius: 14px;
    background: #fff8f2;
    border: 2px solid #ff7a0526;
    transition: border-color .6s ease, transform .55s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .rep_ref:hover {
    border-color: #FF7A05;
    transform: scale(1.02)
}

.strt .rep_ref_ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #FF7A05;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.strt .rep_ref_ico svg {
    width: 18px;
    height: 18px;
    fill: #fff
}

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

.strt .rep_ref_txt strong {
    font-size: 15px;
    font-weight: 700;
    color: #1a1500;
    line-height: 1.2
}

.strt .rep_ref_txt span {
    font-size: 15px;
    color: #3a2e00;
    line-height: 1.6
}

.strt .nums_blk {
    padding: 72px;
    margin: 0 40px;
    background: linear-gradient(155deg, #001a2e 0%, #0585D4 100%);
    border-radius: 22px;
    position: relative;
    overflow: hidden
}

.strt .nums_blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 55% 45% at 50% 50%, #ff7a051a 0%, transparent 70%);
    pointer-events: none
}

.strt .nums_head {
    text-align: center;
    margin-bottom: 40px;
    position: relative
}

.strt .nums_h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #fff;
    font-weight: 800;
    margin: 0 0 16px;
    display: inline-block;
    position: relative
}

.strt .nums_h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #FF7A05;
    border-radius: 5px;
    margin: 8px auto 0;
    animation: lineIn .7s .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.strt .nums_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #fffc;
    margin: 0;
    text-align: left
}

.strt .nums_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative
}

.strt .num_card {
    background: #ffffff14;
    border: 2px solid #ffffff2e;
    border-radius: 22px;
    padding: 40px 24px;
    text-align: center;
    transition: background .6s ease, transform .55s cubic-bezier(0.34, 1.56, 0.64, 1), border-color .6s ease
}

.strt .num_card:hover {
    background: #ffffff24;
    border-color: #FF7A05;
    transform: scale(1.05)
}

.strt .num_val {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.2;
    color: #FF7A05;
    display: block
}

.strt .num_lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffd9;
    display: block;
    margin-top: 8px
}

.strt .ltv_blk {
    padding: 72px;
    margin: 0 40px;
    background: #fff;
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 72px;
    align-items: center
}

.strt .ltv_txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.strt .ltv_h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #1a1500;
    font-weight: 800;
    margin: 0;
    text-align: center;
    display: inline-block;
    position: relative
}

.strt .ltv_h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #0585D4;
    border-radius: 5px;
    margin: 8px auto 0;
    animation: lineIn .7s .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.strt .ltv_desc {
    font-size: 20px;
    line-height: 1.6;
    color: #2e2400;
    margin: 0
}

.strt .ltv_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    list-style: none;
    padding: 0 !important;
    margin: 0
}

.strt .ltv_list li {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2400;
    padding: 16px;
    background: #f0f7ff;
    border-radius: 14px;
    border: 2px solid transparent;
    transition: border-color .55s ease, transform .5s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start
}

.strt .ltv_list li:hover {
    border-color: #0585D4;
    transform: scale(1.03)
}

.strt .ltv_list li::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    background: #0585D4;
    border-radius: 5px;
    flex-shrink: 0;
    margin-top: 5px;
    transform: rotate(45deg)
}

.strt .ltv_img_col {
    position: relative
}

.strt .ltv_img_wrap {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 60px -2px #0585d421;
    position: relative
}

.strt .ltv_img_wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.strt .ltv_dbl {
    position: absolute;
    inset: -10px;
    border: 2px solid #0585d433;
    border-radius: 28px;
    pointer-events: none
}

.strt .ltv_dbl::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid #0585d41a;
    border-radius: 24px
}

.strt .cond_blk {
    padding: 72px;
    margin: 0 40px 40px;
    background: linear-gradient(155deg, #fff4ee 0%, #f0f7ff 100%);
    border-radius: 22px;
    position: relative
}

.strt .cond_blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, #ff7a050f 0%, transparent 70%);
    border-radius: 22px;
    pointer-events: none
}

.strt .cond_head {
    text-align: center;
    margin-bottom: 40px
}

.strt .cond_h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #1a1500;
    font-weight: 800;
    margin: 0 0 16px;
    display: inline-block;
    position: relative
}

.strt .cond_h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: #FF02B5;
    border-radius: 5px;
    margin: 8px auto 0;
    animation: lineIn .7s .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.strt .cond_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #2e2400;
    margin: 0;
    text-align: left
}

.strt .cond_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.strt .cond_col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.strt .cond_col_h {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0
}

.strt .cond_col_h.fits {
    color: #0585D4
}

.strt .cond_col_h.notfits {
    color: #FF02B5
}

.strt .cond_item {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 24px;
    border-radius: 14px;
    background: #fff;
    border: 2px solid transparent;
    box-shadow: 0 1px 3px -2px #ff7a0514;
    transition: border-color .6s ease, transform .55s cubic-bezier(0.34, 1.56, 0.64, 1)
}

.strt .cond_item:hover {
    transform: scale(1.03)
}

.strt .cond_item.fits_item:hover {
    border-color: #0585D4
}

.strt .cond_item.notfits_item:hover {
    border-color: #FF02B5
}

.strt .cond_dot_yes {
    width: 12px;
    height: 12px;
    border-radius: 5px;
    background: #0585D4;
    flex-shrink: 0;
    margin-top: 4px
}

.strt .cond_dot_no {
    width: 12px;
    height: 12px;
    border-radius: 5px;
    background: #FF02B5;
    flex-shrink: 0;
    margin-top: 4px;
    transform: rotate(45deg)
}

.strt .cond_item p {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2400;
    margin: 0
}

@media (max-width: 1100px) {

    .strt .titl_blk,
    .strt .gap_blk,
    .strt .appr_blk,
    .strt .rep_blk,
    .strt .nums_blk,
    .strt .ltv_blk,
    .strt .cond_blk {
        padding: 40px;
        margin: 0 16px
    }

    .strt .titl_blk {
        margin: 16px 16px 0
    }

    .strt .cond_blk {
        margin: 0 16px 16px
    }

    .strt .appr_steps {
        grid-template-columns: 1fr 1fr
    }

    .strt .nums_grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 800px) {
    .strt .titl_blk {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }

    .strt .titl_h1 {
        font-size: 50px
    }

    .strt .titl_right {
        justify-content: center
    }

    .strt .gap_blk {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }

    .strt .appr_steps {
        grid-template-columns: 1fr
    }

    .strt .rep_blk {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }

    .strt .nums_grid {
        grid-template-columns: 1fr 1fr
    }

    .strt .ltv_blk {
        grid-template-columns: 1fr;
        padding: 40px 24px
    }

    .strt .cond_cols {
        grid-template-columns: 1fr
    }

    .strt .cond_blk {
        padding: 40px 24px
    }

    .strt .nums_blk {
        padding: 40px 24px
    }

    .strt .num_val {
        font-size: 50px
    }

    .strt .gap_h2,
    .strt .appr_h2,
    .strt .nums_h2,
    .strt .ltv_h2,
    .strt .cond_h2 {
        font-size: 36px
    }

    .strt .ltv_list {
        grid-template-columns: 1fr
    }
}

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

.cont_us .pg_open {
    padding: 72px;
    background: linear-gradient(157deg, #fff8f2 0%, #f0f7ff 60%, #fff0fb 100%);
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px
}

.cont_us .pg_open .bg_circle {
    position: absolute;
    border-radius: 38px;
    opacity: .07;
    pointer-events: none
}

.cont_us .pg_open .bg_circle.lg {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #FF7A05;
    top: -80px;
    right: 120px
}

.cont_us .pg_open .bg_circle.sm {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #0585D4;
    bottom: 40px;
    left: 60px
}

.cont_us .pg_open .bg_circle.md {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #FF02B5;
    top: 60px;
    left: 280px;
    opacity: .04
}

.cont_us .pg_open .open_text {
    flex: 1 1 0;
    z-index: 1
}

.cont_us .pg_open .open_text .tag_line {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FF7A05;
    border: 2.5px solid #FF7A05;
    border-radius: 5px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-weight: 600
}

.cont_us .pg_open .open_text h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #111820;
    margin: 0 0 24px;
    font-weight: 800
}

.cont_us .pg_open .open_text h1 .acc_word {
    display: inline-block;
    position: relative;
    color: #FF7A05
}

.cont_us .pg_open .open_text h1 .acc_word::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FF7A05, #FF02B5);
    border-radius: 5px;
    transform-origin: left center;
    animation: underline_in .8s cubic-bezier(0.34, 1.56, 0.64, 1) .4s both
}

@keyframes underline_in {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.cont_us .pg_open .open_text .open_desc {
    font-size: 20px;
    line-height: 1.6;
    color: #2d3a47;
    margin: 0 0 40px;
    max-width: 480px
}

.cont_us .pg_open .open_text .quick_contacts {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont_us .pg_open .open_text .q_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.cont_us .pg_open .open_text .q_icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 3px -2px #ff7a0514 0 6px 22px -2px #ff7a0517;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cont_us .pg_open .open_text .q_label {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6472
}

.cont_us .pg_open .open_text .q_val {
    font-size: 15px;
    line-height: 1.6;
    color: #111820;
    font-weight: 600;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cont_us .pg_open .open_text .q_val:hover {
    color: #FF7A05
}

.cont_us .pg_open .open_img_col {
    flex: 0 0 420px;
    z-index: 1;
    position: relative
}

.cont_us .pg_open .open_img_col .img_frame {
    border-radius: 22px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 60px -2px #ff7a0521
}

.cont_us .pg_open .open_img_col .img_frame img {
    width: 420px;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 22px
}

.cont_us .pg_open .open_img_col .img_frame .vignette {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #11182073 100%);
    pointer-events: none
}

.cont_us .pg_open .open_img_col .abs_badge {
    position: absolute;
    bottom: -16px;
    left: -24px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 24px;
    box-shadow: 0 6px 22px -2px #ff7a0517;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cont_us .pg_open .open_img_col .abs_badge .badge_num {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 800;
    color: #FF7A05
}

.cont_us .pg_open .open_img_col .abs_badge .badge_lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6472
}

.cont_us .divider_pencil {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.cont_us .divider_pencil svg {
    display: block;
    width: 100%
}

.cont_us .form_area {
    padding: 72px;
    background: #fff;
    position: relative
}

.cont_us .form_area .bg_geo {
    position: absolute;
    border-radius: 50%;
    opacity: .05;
    pointer-events: none
}

.cont_us .form_area .bg_geo.g1 {
    width: 320px;
    height: 320px;
    background: #0585D4;
    top: -60px;
    right: -60px
}

.cont_us .form_area .bg_geo.g2 {
    width: 200px;
    height: 200px;
    background: #FF02B5;
    bottom: 40px;
    left: -40px
}

.cont_us .form_area .form_layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 72px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cont_us .form_area .form_aside {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.cont_us .form_area .form_aside .aside_head {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont_us .form_area .form_aside .aside_head h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #111820;
    font-weight: 800;
    margin: 0
}

.cont_us .form_area .form_aside .aside_head h2 .und_word {
    display: inline-block;
    position: relative
}

.cont_us .form_area .form_aside .aside_head h2 .und_word::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #0585D4;
    border-radius: 5px;
    transform: translateX(-50%);
    transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cont_us .form_area .form_aside .aside_head h2:hover .und_word::after {
    width: 100%
}

.cont_us .form_area .form_aside .aside_head .aside_sub {
    font-size: 15px;
    line-height: 1.9;
    color: #3d4a58;
    margin: 0
}

.cont_us .form_area .form_aside .activity_feed {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cont_us .form_area .form_aside .activity_feed h4 {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6472;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 8px
}

.cont_us .form_area .form_aside .feed_item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 14px;
    background: #f5f8fb;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cont_us .form_area .form_aside .feed_item:hover {
    background: #eef4ff
}

.cont_us .form_area .form_aside .feed_item .feed_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FF7A05;
    margin-top: 5px;
    flex-shrink: 0
}

.cont_us .form_area .form_aside .feed_item .feed_dot.blue {
    background: #0585D4
}

.cont_us .form_area .form_aside .feed_item .feed_dot.pink {
    background: #FF02B5
}

.cont_us .form_area .form_aside .feed_item .feed_body {
    flex: 1 1 0
}

.cont_us .form_area .form_aside .feed_item .feed_time {
    font-size: 15px;
    line-height: 1.6;
    color: #8a95a3;
    display: block;
    margin-bottom: 8px
}

.cont_us .form_area .form_aside .feed_item .feed_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2d3a47;
    margin: 0
}

.cont_us .form_area .form_box {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 1px 3px -2px #ff7a0514 0 6px 22px -2px #ff7a0517 0 10px 60px -2px #ff7a0521
}

.cont_us .form_area .form_box .form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px
}

.cont_us .form_area .form_box .field_grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px
}

.cont_us .form_area .form_box .field_grp.no_mb {
    margin-bottom: 0
}

.cont_us .form_area .form_box .field_grp label {
    font-size: 15px;
    line-height: 1.6;
    color: #2d3a47;
    font-weight: 600
}

.cont_us .form_area .form_box .field_grp input,
.cont_us .form_area .form_box .field_grp select,
.cont_us .form_area .form_box .field_grp textarea {
    padding: 16px;
    border: 2.5px solid #d8e2ed;
    border-radius: 14px;
    font-size: 15px;
    line-height: 1.6;
    color: #111820;
    background: #f9fbfd;
    outline: none;
    transition: border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none
}

.cont_us .form_area .form_box .field_grp select {
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8 9L15 1' stroke='%23FF7A05' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer
}

.cont_us .form_area .form_box .field_grp input::placeholder,
.cont_us .form_area .form_box .field_grp textarea::placeholder {
    color: #a0aab4;
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cont_us .form_area .form_box .field_grp input:focus::placeholder,
.cont_us .form_area .form_box .field_grp textarea:focus::placeholder {
    opacity: 0
}

.cont_us .form_area .form_box .field_grp input:focus,
.cont_us .form_area .form_box .field_grp select:focus,
.cont_us .form_area .form_box .field_grp textarea:focus {
    border-color: #FF7A05;
    background: #fff;
    box-shadow: 0 0 0 3px #ff7a051a
}

.cont_us .form_area .form_box .field_grp textarea {
    resize: vertical;
    min-height: 120px
}

.cont_us .form_area .form_box .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 16px;
    background: #f5f8fb;
    border-radius: 14px
}

.cont_us .form_area .form_box .privacy_row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2.5px solid #d8e2ed;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 2px;
    accent-color: #FF7A05
}

.cont_us .form_area .form_box .privacy_row .priv_text {
    font-size: 15px;
    line-height: 1.6;
    color: #3d4a58;
    margin: 0
}

.cont_us .form_area .form_box .privacy_row .priv_text a {
    color: #0585D4;
    text-decoration: none;
    background-image: linear-gradient(#0585D4, #0585D4);
    background-size: 0 1.5px;
    background-repeat: no-repeat;
    background-position: center bottom;
    transition: background-size .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cont_us .form_area .form_box .privacy_row .priv_text a:hover {
    background-size: 100% 1.5px
}

.cont_us .form_area .form_box .submit_btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 16px 40px;
    background: transparent;
    border: 3px solid #FF7A05;
    border-radius: 14px;
    font-size: 20px;
    line-height: 1.6;
    color: #FF7A05;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cont_us .form_area .form_box .submit_btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #FF7A05;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
    border-radius: 11px
}

.cont_us .form_area .form_box .submit_btn:hover::before {
    transform: scaleX(1)
}

.cont_us .form_area .form_box .submit_btn:hover {
    color: #fff;
    transform: scale(1.03);
    box-shadow: 0 6px 22px -2px #ff7a0517
}

.cont_us .form_area .form_box .submit_btn:focus {
    outline: 3px solid #FF7A05;
    outline-offset: 3px
}

.cont_us .form_area .form_box .submit_btn .btn_label {
    position: relative;
    z-index: 1
}

.cont_us .form_area .form_box .submit_btn .btn_spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid #fff6;
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    position: relative;
    z-index: 1
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.cont_us .form_area .form_box .submit_btn:active .btn_label {
    display: none
}

.cont_us .form_area .form_box .submit_btn:active .btn_spinner {
    display: block
}

.cont_us .divider_pencil2 {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.cont_us .divider_pencil2 svg {
    display: block;
    width: 100%
}

.cont_us .loc_area {
    padding: 72px;
    background: linear-gradient(157deg, #f0f7ff 0%, #fff8f2 100%);
    position: relative;
    animation: bg_breathe 8s ease-in-out infinite
}

@keyframes bg_breathe {

    0%,
    100% {
        background: linear-gradient(157deg, #f0f7ff 0%, #fff8f2 100%)
    }

    50% {
        background: linear-gradient(157deg, #fff0fb 0%, #f0f7ff 100%)
    }
}

.cont_us .loc_area .bg_geo_loc {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
    pointer-events: none
}

.cont_us .loc_area .bg_geo_loc.l1 {
    width: 360px;
    height: 360px;
    background: #FF7A05;
    bottom: -80px;
    right: 80px
}

.cont_us .loc_area .bg_geo_loc.l2 {
    width: 220px;
    height: 220px;
    background: #0585D4;
    top: 40px;
    left: 40px
}

.cont_us .loc_area .loc_inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.cont_us .loc_area .loc_inner .loc_top {
    text-align: center;
    margin-bottom: 40px
}

.cont_us .loc_area .loc_inner .loc_top h2 {
    font-size: 50px;
    line-height: 1.2;
    color: #111820;
    font-weight: 800;
    margin: 0 0 16px
}

.cont_us .loc_area .loc_inner .loc_top h2 .acc {
    color: #0585D4;
    display: inline-block;
    position: relative
}

.cont_us .loc_area .loc_inner .loc_top h2 .acc::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #0585D4, #FF02B5);
    border-radius: 5px;
    transform-origin: left center;
    animation: underline_in .8s cubic-bezier(0.34, 1.56, 0.64, 1) .6s both
}

.cont_us .loc_area .loc_inner .loc_top .loc_sub {
    font-size: 20px;
    line-height: 1.6;
    color: #3d4a58;
    margin: 0;
    text-align: left
}

.cont_us .loc_area .loc_inner .loc_grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    align-items: start
}

.cont_us .loc_area .loc_inner .loc_card {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 1px 3px -2px #0585d414 0 6px 22px -2px #0585d417;
    transition: transform .6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cont_us .loc_area .loc_inner .loc_card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 60px -2px #0585d421
}

.cont_us .loc_area .loc_inner .loc_card .card_icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cont_us .loc_area .loc_inner .loc_card .card_icon.orange {
    background: #ff7a051a
}

.cont_us .loc_area .loc_inner .loc_card .card_icon.blue {
    background: #0585d41a
}

.cont_us .loc_area .loc_inner .loc_card .card_icon.pink {
    background: #ff02b51a
}

.cont_us .loc_area .loc_inner .loc_card h5 {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6472;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0
}

.cont_us .loc_area .loc_inner .loc_card .card_val {
    font-size: 20px;
    line-height: 1.6;
    color: #111820;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cont_us .loc_area .loc_inner .loc_card .card_val:hover {
    color: #FF7A05
}

.cont_us .loc_area .loc_inner .loc_card .card_note {
    font-size: 15px;
    line-height: 1.9;
    color: #5a6472;
    margin: 0
}

.cont_us .loc_area .loc_inner .loc_card.featured {
    grid-row: span 1;
    background: linear-gradient(157deg, #fff8f2 0%, #f0f7ff 100%);
    border: 2px solid #ff7a0526
}

@media (max-width: 1100px) {
    .cont_us .pg_open {
        flex-direction: column;
        padding: 40px 40px 72px;
        gap: 40px
    }

    .cont_us .pg_open .open_img_col {
        flex: 0 0 auto;
        width: 100%
    }

    .cont_us .pg_open .open_img_col .img_frame img {
        width: 100%;
        height: 300px
    }

    .cont_us .form_area {
        padding: 40px 40px 72px
    }

    .cont_us .form_area .form_layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .cont_us .loc_area {
        padding: 40px 40px 72px
    }

    .cont_us .loc_area .loc_inner .loc_grid {
        grid-template-columns: 1fr 1fr
    }

    .cont_us .loc_area .loc_inner .loc_card.featured {
        grid-column: span 2
    }
}

@media (max-width: 700px) {
    .cont_us .pg_open {
        padding: 24px 16px 40px
    }

    .cont_us .pg_open .open_text h1 {
        font-size: 50px
    }

    .cont_us .form_area {
        padding: 24px 16px 40px
    }

    .cont_us .form_area .form_box {
        padding: 24px 16px
    }

    .cont_us .form_area .form_box .form_row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .cont_us .loc_area {
        padding: 24px 16px 40px
    }

    .cont_us .loc_area .loc_inner .loc_grid {
        grid-template-columns: 1fr
    }

    .cont_us .loc_area .loc_inner .loc_card.featured {
        grid-column: span 1
    }

    .cont_us .loc_area .loc_inner .loc_top h2 {
        font-size: 36px
    }

    .cont_us .form_area .form_aside .aside_head h2 {
        font-size: 36px
    }
}

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

.abt .pg_open {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    padding: 72px;
    position: relative;
    background: linear-gradient(160deg, #fff8f2 0%, #f0f7ff 60%, #fff 100%)
}

.abt .pg_open::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#0585d40a 1px, transparent 1px), linear-gradient(90deg, #0585d40a 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none
}

.abt .pg_open::after {
    content: "";
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 180px;
    height: 180px;
    background: repeating-linear-gradient(-45deg, #ff7a050f 0px, #ff7a050f 1px, transparent 1px, transparent 8px);
    pointer-events: none;
    border-radius: 5px
}

.abt .open_text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1
}

.abt .open_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #FF7A05
}

.abt .open_label span.dot {
    width: 8px;
    height: 8px;
    border-radius: 38px;
    background: #FF7A05;
    display: inline-block
}

.abt .open_h1 {
    font-size: 68px;
    line-height: 1.2;
    color: #111820;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 16px
}

.abt .open_h1 em {
    font-style: normal;
    color: #0585D4;
    position: relative;
    display: inline-block
}

.abt .open_h1 em::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FF7A05;
    border-radius: 5px;
    animation: underline_draw .8s cubic-bezier(0.34, 1.56, 0.64, 1) .4s forwards
}

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

.abt .open_counter {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 3px solid #FF7A05;
    border-radius: 14px;
    padding: 8px 16px;
    box-shadow: 0 6px 22px -2px #ff7a0517;
    vertical-align: middle;
    margin-left: 8px
}

.abt .open_counter .num {
    font-size: 36px;
    font-weight: 900;
    color: #FF7A05;
    line-height: 1.2
}

.abt .open_counter .num_label {
    font-size: 15px;
    color: #555e6a;
    line-height: 1.6
}

.abt .open_desc {
    font-size: 20px;
    line-height: 1.6;
    color: #334155;
    margin: 0;
    max-width: 560px
}

.abt .open_img_strip {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt .open_img_strip img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 22px;
    filter: saturate(0.6) brightness(1.05);
    box-shadow: 0 10px 60px -2px #0585d421;
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .open_img_strip img:hover {
    filter: saturate(1) brightness(1)
}

.abt .open_img_strip .img_note {
    font-size: 15px;
    color: #789;
    line-height: 1.6;
    text-align: center
}

.abt .divider_curve {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -1px
}

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

.abt .dual_paths {
    padding: 72px;
    background: #fff;
    position: relative
}

.abt .dual_paths_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto
}

.abt .path_card {
    background: linear-gradient(135deg, #fff8f2 0%, #fff 100%);
    border-radius: 22px;
    padding: 40px;
    box-shadow: 0 6px 22px -2px #ff7a0517;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: box-shadow .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .path_card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 60px -2px #ff7a0521
}

.abt .path_card.alt {
    background: linear-gradient(135deg, #f0f7ff 0%, #fff 100%);
    box-shadow: 0 6px 22px -2px #0585d417
}

.abt .path_card.alt:hover {
    box-shadow: 0 10px 60px -2px #0585d421
}

.abt .path_icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #FF7A05;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.abt .path_card.alt .path_icon {
    background: #0585D4
}

.abt .path_icon svg {
    width: 24px;
    height: 24px;
    fill: #fff
}

.abt .path_h2 {
    font-size: 26px;
    line-height: 1.2;
    color: #111820;
    margin: 0;
    text-align: center;
    position: relative;
    display: inline-block
}

.abt .path_h2::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #FF7A05;
    border-radius: 5px;
    margin: 8px auto 0;
    transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .path_card.alt .path_h2::after {
    background: #0585D4
}

.abt .path_card:hover .path_h2::after {
    width: 100%
}

.abt .path_body {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
    margin: 0
}

.abt .path_img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px
}

.abt .path_stat {
    display: flex;
    align-items: baseline;
    gap: 8px
}

.abt .path_stat .big_num {
    font-size: 50px;
    font-weight: 900;
    color: #FF7A05;
    line-height: 1.2
}

.abt .path_card.alt .path_stat .big_num {
    color: #0585D4
}

.abt .path_stat .big_label {
    font-size: 15px;
    color: #789;
    line-height: 1.6
}

.abt .divider_curve2 {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

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

.abt .steps_section {
    padding: 72px;
    background: linear-gradient(160deg, #f0f7ff 0%, #fff8f2 100%);
    position: relative;
    overflow: hidden
}

.abt .steps_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(120deg, #0585d40a 0px, #0585d40a 2px, transparent 2px, transparent 18px);
    pointer-events: none
}

.abt .steps_head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}

.abt .steps_h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #111820;
    margin: 0 0 8px;
    display: inline-block;
    position: relative
}

.abt .steps_h2::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #FF02B5;
    border-radius: 5px
}

.abt .steps_sub {
    font-size: 20px;
    color: #334155;
    line-height: 1.6;
    margin: 16px 0 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.abt .steps_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto
}

.abt .steps_row::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, #FF7A05, #0585D4, #FF02B5, #FF7A05);
    z-index: 0;
    border-radius: 5px
}

.abt .step_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1
}

.abt .step_num {
    width: 72px;
    height: 72px;
    border-radius: 38px;
    background: #fff;
    border: 3px solid #FF7A05;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: #FF7A05;
    box-shadow: 0 6px 22px -2px #ff7a0517;
    transition: background .5s ease, color .5s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0
}

.abt .step_item:nth-child(2) .step_num {
    border-color: #0585D4;
    color: #0585D4
}

.abt .step_item:nth-child(3) .step_num {
    border-color: #FF02B5;
    color: #FF02B5
}

.abt .step_item:nth-child(4) .step_num {
    border-color: #0585D4;
    color: #0585D4
}

.abt .step_item:hover .step_num {
    background: #FF7A05;
    color: #fff;
    transform: scale(1.08)
}

.abt .step_item:nth-child(2):hover .step_num {
    background: #0585D4
}

.abt .step_item:nth-child(3):hover .step_num {
    background: #FF02B5
}

.abt .step_item:nth-child(4):hover .step_num {
    background: #0585D4
}

.abt .step_h4 {
    font-size: 20px;
    line-height: 1.2;
    color: #111820;
    margin: 0;
    text-align: center
}

.abt .step_desc {
    font-size: 15px;
    line-height: 1.9;
    color: #334155;
    text-align: center;
    margin: 0
}

.abt .steps_bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.abt .metric_box {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 3px -2px #ff7a0514;
    border: 2px solid transparent;
    transition: border-color .6s ease, box-shadow .6s ease
}

.abt .metric_box:hover {
    border-color: #FF7A05;
    box-shadow: 0 6px 22px -2px #ff7a0517
}

.abt .metric_big {
    font-size: 50px;
    font-weight: 900;
    color: #FF7A05;
    line-height: 1.2
}

.abt .metric_box:nth-child(2) .metric_big {
    color: #0585D4
}

.abt .metric_box:nth-child(3) .metric_big {
    color: #FF02B5
}

.abt .metric_label {
    font-size: 15px;
    color: #789;
    line-height: 1.6
}

.abt .metric_desc {
    font-size: 15px;
    color: #334155;
    line-height: 1.9;
    margin: 0
}

.abt .team_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto
}

.abt .team_card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    box-shadow: 0 6px 22px -2px #0585d417;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .team_card:hover {
    transform: scale(1.03)
}

.abt .team_img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 38px;
    flex-shrink: 0;
    box-shadow: 0 1px 3px -2px #0585d414
}

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

.abt .team_name {
    font-size: 20px;
    font-weight: 700;
    color: #111820;
    line-height: 1.2;
    margin: 0
}

.abt .team_role {
    font-size: 15px;
    color: #0585D4;
    font-weight: 600;
    line-height: 1.6
}

.abt .team_bio {
    font-size: 15px;
    color: #334155;
    line-height: 1.9;
    margin: 0
}

.abt .link_stories {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #FF7A05;
    text-decoration: none;
    border: 2px solid #FF7A05;
    border-radius: 8px;
    padding: 8px 16px;
    margin-top: 8px;
    transition: background .5s ease, color .5s ease;
    position: relative
}

.abt .link_stories::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #FF7A05;
    transition: left .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), right .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 5px
}

.abt .link_stories:hover::after {
    left: 0;
    right: 0
}

.abt .link_stories:hover {
    background: #FF7A05;
    color: #fff
}

.abt .link_stories svg {
    width: 16px;
    height: 16px;
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt .link_stories:hover svg {
    transform: translateX(4px)
}

@media (max-width: 1024px) {
    .abt .pg_open {
        grid-template-columns: 1fr;
        padding: 40px
    }

    .abt .open_img_strip {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .abt .open_img_strip img {
        height: 200px
    }

    .abt .dual_paths {
        padding: 40px
    }

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

    .abt .steps_section {
        padding: 40px
    }

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

    .abt .steps_row::before {
        display: none
    }

    .abt .steps_bottom {
        grid-template-columns: 1fr;
        margin-top: 24px
    }

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

@media (max-width: 600px) {
    .abt .pg_open {
        padding: 24px
    }

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

    .abt .dual_paths {
        padding: 24px
    }

    .abt .path_card {
        padding: 24px
    }

    .abt .steps_section {
        padding: 24px
    }

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

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

.success_page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background: linear-gradient(158deg, #fff8f2 0%, #f0f7ff 100%)
}

.success_page .card_wrap {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 72px 40px;
    box-shadow: 0 1px 3px -2px #ff7a0514 0 6px 22px -2px #ff7a0517 0 10px 60px -2px #ff7a0521;
    text-align: center;
    position: relative
}

.success_page .icon_wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 40px;
    border-radius: 38px;
    background: linear-gradient(158deg, #fff3e8 0%, #e8f4ff 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 2px #ff7a0514
}

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

.success_page .heading_main {
    font-size: 36px;
    line-height: 1.2;
    color: #1a2a3a;
    margin: 0 0 16px;
    font-weight: 700
}

.success_page .heading_main span {
    display: inline-block;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-size: 15px;
    color: #FF7A05;
    font-weight: 600;
    margin-bottom: 8px
}

.success_page .desc_text {
    font-size: 20px;
    line-height: 1.6;
    color: #3a4a5a;
    margin: 0 0 40px
}

.success_page .divider_line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #FF7A05 0%, #0585D4 100%);
    border-radius: 5px;
    margin: 0 auto 40px
}

.success_page .meta_row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px
}

.success_page .meta_chip {
    font-size: 15px;
    line-height: 1.6;
    color: #0585D4;
    background: #f0f7ff;
    border-radius: 8px;
    padding: 8px 16px;
    border: 2px solid #0585d42e
}

.success_page .btn_home {
    display: inline-block;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
    color: #FF7A05;
    background: transparent;
    border: 3px solid #FF7A05;
    border-radius: 14px;
    padding: 16px 40px;
    text-decoration: none;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer
}

.success_page .btn_home:hover {
    background: #FF7A05;
    color: #fff;
    transform: scale(1.04)
}

.success_page .btn_home:focus {
    outline: 3px solid #0585D4;
    outline-offset: 3px
}

.success_page .btn_home:active {
    transform: scale(1.01)
}

.success_page .deco_dot {
    position: absolute;
    border-radius: 38px;
    pointer-events: none
}

.success_page .deco_dot.top_right {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fff3e8 0%, #ffe0c0 100%);
    top: 24px;
    right: 24px;
    opacity: .7
}

.success_page .deco_dot.btm_left {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #e8f4ff 0%, #c0e0ff 100%);
    bottom: 24px;
    left: 24px;
    opacity: .7
}

@media (max-width: 600px) {
    .success_page .card_wrap {
        padding: 40px 24px
    }

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

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