html {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

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

.top_bar {
    background: #0F253D;
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px
}

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

.top_link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #04F6CA;
    text-decoration: none;
    letter-spacing: .04em;
    line-height: 1.2;
    transition: color .15s cubic-bezier(0.4, 0, 1, 1)
}

.top_link:hover {
    color: #FFFEF9
}

.top_link:focus {
    outline: 2px solid #FFFEF9;
    outline-offset: 2px;
    color: #0F253D;
    background: #FFFEF9
}

.site_head {
    background: #FFFEF9;
    border-bottom: 1px solid #0f253d1a;
    box-shadow: 0 4px 20px -2px #04f6ca1a;
    position: relative;
    z-index: 100
}

.head_row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 80px
}

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

.brand_img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 64px;
    border-radius: 10px;
    background: #FFFEF9;
    box-shadow: inset 0 2px 6px #0f253d1f 0 3px 3px -2px #0f253d0d;
    border: 1px solid #04f6ca4d;
    overflow: hidden;
    flex-shrink: 0
}

.brand_img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%
}

.brand_name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #0F253D;
    line-height: 1.2;
    letter-spacing: -.02em
}

.brand_name span {
    color: #04F6CA
}

.main_nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    justify-content: center;
    flex: 1;
    padding: 0 12px
}

.nav_link {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 400;
    color: #0F253D;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 10px;
    line-height: 1.2;
    letter-spacing: .02em;
    white-space: nowrap;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1)
}

.nav_link:hover {
    background: #04f6ca26;
    color: #0F253D
}

.nav_link:focus {
    outline: none;
    background: #0F253D;
    color: #FFFEF9
}

.nav_link.active {
    background: #0F253D;
    color: #04F6CA
}

.head_action {
    flex-shrink: 0
}

.btn_join {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #0F253D;
    background: #04F6CA;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    letter-spacing: .02em;
    box-shadow: 0 4px 20px -2px #04f6ca1a;
    transition: background .18s cubic-bezier(0.4, 0, 1, 1), box-shadow .18s cubic-bezier(0.4, 0, 1, 1);
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    min-height: 44px
}

.btn_join:hover {
    background: #0F253D;
    color: #04F6CA;
    box-shadow: 0 10px 48px -2px #04f6ca1f
}

.btn_join:focus {
    outline: none;
    background: #FFFEF9;
    color: #0F253D;
    box-shadow: 0 0 0 3px #0F253D
}

.btn_join .arr {
    display: inline-block;
    transform: translateX(-4px);
    opacity: 0;
    transition: transform .15s cubic-bezier(0.4, 0, 1, 1), opacity .15s cubic-bezier(0.4, 0, 1, 1);
    font-style: normal
}

.btn_join .lbl {
    display: inline-block;
    transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.btn_join:hover .arr {
    transform: translateX(0);
    opacity: 1
}

.btn_join:hover .lbl {
    transform: translateX(4px)
}

@media (max-width: 900px) {
    .head_row {
        flex-wrap: wrap;
        min-height: auto;
        padding: 12px 24px;
        gap: 12px
    }

    .main_nav {
        order: 3;
        width: 100%;
        padding: 0;
        justify-content: flex-start;
        gap: 4px
    }

    .head_action {
        order: 2
    }
}

@media (max-width: 600px) {
    .top_contact {
        gap: 12px
    }

    .brand_name {
        font-size: 18px
    }

    .main_nav {
        gap: 4px
    }

    .nav_link {
        font-size: 15px;
        padding: 8px
    }
}

.site_foot {
    background: #0F253D;
    padding: 80px 0 0
}

.foot_grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.foot_top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px
}

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

.foot_logo_box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 64px;
    border-radius: 10px;
    background: #fffef914;
    box-shadow: inset 0 2px 6px #04f6ca1a 0 3px 3px -2px #04f6ca0d;
    border: 1px solid #04f6ca40;
    overflow: hidden
}

.foot_logo_box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    max-width: 100%
}

.foot_brand_name {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 28px;
    font-weight: 700;
    color: #FFFEF9;
    line-height: 1.2;
    letter-spacing: -.02em
}

.foot_brand_name span {
    color: #04F6CA
}

.foot_tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #fffef9a6;
    line-height: 1.6
}

.foot_copy_year {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #fffef973;
    line-height: 1.6;
    margin-top: 8px
}

.foot_col_label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #04F6CA;
    letter-spacing: .08em;
    line-height: 1.2;
    margin-bottom: 24px;
    text-transform: uppercase
}

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

.foot_links li a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #fffef9bf;
    text-decoration: none;
    line-height: 1.6;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1);
    display: inline-block
}

.foot_links li a:hover {
    color: #04F6CA
}

.foot_links li a:focus {
    outline: 2px solid #04F6CA;
    outline-offset: 2px;
    color: #FFFEF9
}

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

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

.foot_contact_label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: #fffef973;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase
}

.foot_contact_val {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #fffef9cc;
    line-height: 1.6;
    text-decoration: none;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

a.foot_contact_val:hover {
    color: #04F6CA
}

a.foot_contact_val:focus {
    outline: 2px solid #04F6CA;
    outline-offset: 2px;
    color: #FFFEF9
}

.foot_divider {
    border: none;
    border-top: 1px solid #04f6ca1f;
    margin: 0
}

.foot_bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 24px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

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

.foot_legal_links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #fffef973;
    text-decoration: none;
    line-height: 1.6;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.foot_legal_links a:hover {
    color: #04F6CA
}

.foot_legal_links a:focus {
    outline: 2px solid #04F6CA;
    outline-offset: 2px;
    color: #FFFEF9
}

.foot_domain {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #fffef94d;
    line-height: 1.6
}

@media (max-width: 900px) {
    .foot_top {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .foot_brand {
        grid-column: 1 / -1
    }
}

@media (max-width: 600px) {
    .foot_top {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .foot_brand {
        grid-column: auto
    }

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

    .foot_legal_links {
        gap: 12px
    }
}

.cookie_bar {
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 680px;
    background: #FFFEF9;
    border-radius: 16px;
    box-shadow: 0 10px 48px -2px #0f253d1f 0 4px 20px -2px #0f253d1a;
    border: 1px solid #04f6ca40;
    z-index: 1500;
    padding: 24px;
    display: none
}

.cookie_bar.sliding_in {
    transform: translateX(0)
}

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

.cookie_msg {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #0F253D;
    line-height: 1.6
}

.cookie_msg a {
    color: #0F253D;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.cookie_msg a:hover {
    color: #04F6CA
}

.cookie_msg a:focus {
    outline: 2px solid #0F253D;
    outline-offset: 2px
}

.cookie_cats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid #0f253d1a;
    border-bottom: 1px solid #0f253d1a
}

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

.cookie_cat_label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #0F253D;
    line-height: 1.6
}

.cookie_cat_badge {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    color: #0f253d80;
    line-height: 1.2
}

.cookie_toggle {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0
}

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

.cookie_track {
    position: absolute;
    inset: 0;
    background: #0f253d26;
    border-radius: 16px;
    cursor: pointer;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1)
}

.cookie_track::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background: #FFFEF9;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.cookie_toggle input:checked+.cookie_track {
    background: #04F6CA
}

.cookie_toggle input:checked+.cookie_track::after {
    transform: translateX(18px)
}

.cookie_toggle input:focus+.cookie_track {
    outline: 2px solid #0F253D;
    outline-offset: 2px
}

.cookie_toggle input:disabled+.cookie_track {
    opacity: .6;
    cursor: not-allowed
}

.cookie_btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.cookie_btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    border: 2px solid #0F253D;
    line-height: 1.2;
    min-height: 44px;
    flex: 1;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), color .15s cubic-bezier(0.4, 0, 1, 1)
}

.cookie_btn.primary {
    background: #0F253D;
    color: #04F6CA
}

.cookie_btn.primary:hover {
    background: #04F6CA;
    color: #0F253D;
    border-color: #04F6CA
}

.cookie_btn.primary:focus {
    outline: none;
    background: #FFFEF9;
    color: #0F253D;
    border-color: #0F253D
}

.cookie_btn.secondary {
    background: transparent;
    color: #0F253D
}

.cookie_btn.secondary:hover {
    background: #0F253D;
    color: #FFFEF9
}

.cookie_btn.secondary:focus {
    outline: none;
    background: #FFFEF9;
    color: #0F253D;
    border-color: #0F253D
}

.info-policy {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
    color: #0F253D;
    line-height: 1.9
}

.info-policy p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #0F253D
}

.info-policy strong,
.info-policy b {
    font-weight: 700;
    color: #0F253D
}

.info-policy em,
.info-policy i {
    font-style: italic;
    color: #0F253D
}

.info-policy div {
    margin-bottom: 40px
}

.info-policy table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px -2px #04f6ca1a;
    border-radius: 10px;
    overflow: hidden
}

.info-policy thead {
    background-color: #0F253D;
    color: #FFFEF9
}

.info-policy thead th {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    text-align: left;
    line-height: 1.6
}

.info-policy tbody tr {
    border-bottom: 1px solid #04f6ca26;
    transition: background-color .12s cubic-bezier(0.4, 0, 1, 1)
}

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

.info-policy tbody tr:nth-child(even) {
    background-color: #04f6ca0a
}

.info-policy tbody tr:hover {
    background-color: #04f6ca17
}

.info-policy td {
    padding: 12px 24px;
    font-size: 15px;
    color: #0F253D;
    line-height: 1.6;
    vertical-align: top
}

.info-policy th {
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.6;
    vertical-align: top
}

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

    .info-policy table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 10px
    }

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

@media (min-width: 601px) and (max-width: 900px) {
    .info-policy {
        padding: 80px 40px
    }
}

.pod_det {
    background: #FFFEF9;
    overflow-x: clip
}

.pod_det .art_head {
    position: relative;
    padding: 80px 24px;
    background: linear-gradient(170deg, #FFFEF9 0%, #e8fdf8 40%, #c2faf0 100%)
}

.pod_det .art_head::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#04f6ca0f 1px, transparent 1px), linear-gradient(90deg, #04f6ca0f 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.pod_det .art_head_in {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px
}

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

.pod_det .art_tag {
    display: inline-block;
    background: #0F253D;
    color: #04F6CA;
    font-size: 15px;
    letter-spacing: .08em;
    padding: 4px 12px;
    border-radius: 0
}

.pod_det .art_readtime {
    font-size: 15px;
    color: #0F253D;
    opacity: .6;
    letter-spacing: .05em
}

.pod_det .art_views {
    font-size: 15px;
    color: #0F253D;
    opacity: .6;
    margin-left: auto
}

.pod_det .art_h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0;
    max-width: 820px
}

.pod_det .art_desc_short {
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    opacity: .75;
    max-width: 680px;
    margin: 0
}

.pod_det .art_author_row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #0f253d1f;
    padding-top: 24px
}

.pod_det .art_author_label {
    font-size: 15px;
    color: #0F253D;
    opacity: .5;
    letter-spacing: .06em
}

.pod_det .art_author_sep {
    width: 1px;
    height: 16px;
    background: #0f253d33
}

.pod_det .art_author_name {
    font-size: 15px;
    color: #0F253D;
    font-weight: 600
}

.pod_det .art_img_wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    max-height: 480px
}

.pod_det .art_img_wrap img {
    width: 100%;
    max-width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 16px
}

.pod_det .art_img_wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #04f6ca2e 0%, #0f253d61 100%);
    border-radius: 16px;
    pointer-events: none
}

.pod_det .art_bracket {
    position: absolute;
    width: 28px;
    height: 28px;
    pointer-events: none;
    z-index: 2
}

.pod_det .art_bracket.tl {
    top: 12px;
    left: 12px;
    border-top: 2px solid #04F6CA;
    border-left: 2px solid #04F6CA
}

.pod_det .art_bracket.br {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid #04F6CA;
    border-right: 2px solid #04F6CA
}

.pod_det .art_body {
    padding: 80px 24px;
    background: linear-gradient(180deg, #FFFEF9 0%, #f2fefb 100%);
    position: relative
}

.pod_det .art_body_grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 80px;
    align-items: start
}

.pod_det .art_prose {
    min-width: 0
}

.pod_det .art_prose p {
    font-size: 18px;
    line-height: 1.9;
    color: #0F253D;
    margin: 0 0 24px
}

.pod_det .art_prose h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #FFFEF9;
    background: #0F253D;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 0;
    margin: 40px 0 24px
}

.pod_det .art_prose h3 {
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    font-weight: 700;
    margin: 24px 0 12px
}

.pod_det .art_prose abbr {
    border-bottom: 1px dashed #0f253d66;
    cursor: help;
    text-decoration: none
}

.pod_det .art_prose blockquote {
    border-left: none;
    background: #04f6ca1a;
    border-radius: 10px;
    padding: 24px;
    margin: 24px 0;
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    font-style: italic
}

.pod_det .art_prose ul,
.pod_det .art_prose ol {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    counter-reset: step_c
}

.pod_det .art_prose ol li {
    counter-increment: step_c;
    position: relative;
    padding: 12px 0 12px 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    border-bottom: 1px solid #0f253d14
}

.pod_det .art_prose ol li::before {
    content: counter(step_c, decimal-leading-zero);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #04F6CA;
    background: #0F253D;
    width: 28px;
    height: 28px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0
}

.pod_det .art_prose ul li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D
}

.pod_det .art_prose ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 2px;
    background: #04F6CA
}

.pod_det .art_prose details {
    margin: 24px 0;
    border-radius: 10px;
    border: 1px solid #0f253d1f;
    overflow: hidden
}

.pod_det .art_prose summary {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    color: #0F253D;
    cursor: pointer;
    background: #04f6ca0f;
    list-style: none;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1)
}

.pod_det .art_prose summary:hover {
    background: #04f6ca24
}

.pod_det .art_prose details[open] summary {
    border-bottom: 1px solid #0f253d1a
}

.pod_det .art_prose details> :not(summary) {
    padding: 12px 24px 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D
}

.pod_det .art_prose a {
    color: #0F253D;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: box-shadow .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1)
}

.pod_det .art_prose a:hover {
    outline: 1px solid #0F253D;
    outline-offset: 2px;
    text-decoration: none;
    color: #04F6CA;
    outline-color: #04F6CA
}

.pod_det .art_sidebar {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.pod_det .side_card {
    border-radius: 16px;
    padding: 24px;
    background: #0F253D;
    box-shadow: 0 4px 20px -2px #0f253d1a;
    position: relative;
    overflow: hidden;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1)
}

.pod_det .side_card:hover {
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 48px -2px #0f253d1f
}

.pod_det .side_card::before {
    content: '';
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80px;
    height: 80px;
    border: 1px solid #04f6ca1f;
    border-radius: 0;
    transform: rotate(20deg);
    pointer-events: none
}

.pod_det .side_card::after {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 48px;
    height: 48px;
    border: 1px solid #04f6ca14;
    border-radius: 0;
    transform: rotate(20deg);
    pointer-events: none
}

.pod_det .side_card_label {
    font-size: 15px;
    color: #04F6CA;
    letter-spacing: .08em;
    margin: 0 0 12px;
    text-transform: uppercase
}

.pod_det .side_card_val {
    font-size: 28px;
    line-height: 1.2;
    color: #FFFEF9;
    font-weight: 700;
    margin: 0 0 8px
}

.pod_det .side_card_sub {
    font-size: 15px;
    color: #fffef98c;
    margin: 0;
    line-height: 1.6
}

.pod_det .side_sep {
    width: 100%;
    height: 1px;
    background: #04f6ca2e;
    margin: 8px 0
}

.pod_det .side_cta_card {
    border-radius: 16px;
    padding: 24px;
    background: #04f6ca14;
    border: 1px solid #04f6ca38;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.pod_det .side_cta_label {
    font-size: 15px;
    color: #0F253D;
    font-weight: 600;
    margin: 0
}

.pod_det .side_cta_text {
    font-size: 15px;
    color: #0F253D;
    opacity: .7;
    margin: 0;
    line-height: 1.6
}

.pod_det .btn_main {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #0F253D;
    color: #04F6CA;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: .04em;
    position: relative;
    overflow: hidden;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 3px 3px -2px #0f253d0d
}

.pod_det .btn_main:hover {
    background: #04F6CA;
    color: #0F253D;
    box-shadow: 0 4px 20px -2px #04f6ca1a
}

.pod_det .btn_main .btn_icon {
    display: inline-block;
    width: 0;
    overflow: hidden;
    transition: width .12s cubic-bezier(0.4, 0, 1, 1);
    font-style: normal
}

.pod_det .btn_main:hover .btn_icon {
    width: 16px
}

.pod_det .btn_main .btn_arrow {
    display: inline-block;
    width: 14px;
    height: 2px;
    background: currentColor;
    position: relative;
    vertical-align: middle;
    margin-right: 4px
}

.pod_det .btn_main .btn_arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg)
}

.pod_det .art_head_in,
.pod_det .art_img_wrap,
.pod_det .art_prose {
    animation: slide_in_up .18s cubic-bezier(0.4, 0, 1, 1) both
}

.pod_det .art_sidebar {
    animation: slide_in_right .15s cubic-bezier(0.4, 0, 1, 1) .08s both
}

@keyframes slide_in_up {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

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

@keyframes slide_in_right {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

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

@media (max-width: 900px) {
    .pod_det .art_body_grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .pod_det .art_sidebar {
        position: static
    }

    .pod_det .art_h1 {
        font-size: 38px
    }
}

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

    .pod_det .art_body {
        padding: 40px 24px
    }

    .pod_det .art_h1 {
        font-size: 28px
    }

    .pod_det .art_img_wrap img {
        height: 240px
    }

    .pod_det .art_views {
        margin-left: 0
    }
}

.ent {
    background: #FFFEF9;
    overflow-x: clip
}

.ent .pg_wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

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

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

.ent .d1 {
    animation: diag_reveal .55s cubic-bezier(0.4, 0, 1, 1) both
}

.ent .d2 {
    animation: diag_reveal .55s cubic-bezier(0.4, 0, 1, 1) .08s both
}

.ent .d3 {
    animation: diag_reveal .55s cubic-bezier(0.4, 0, 1, 1) .16s both
}

.ent .d4 {
    animation: diag_reveal .55s cubic-bezier(0.4, 0, 1, 1) .24s both
}

.ent .d5 {
    animation: diag_reveal .55s cubic-bezier(0.4, 0, 1, 1) .32s both
}

.ent .ttl_blk {
    background: #0F253D;
    padding: 120px 0 80px;
    position: relative
}

.ent .ttl_blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 60%;
    background: #04F6CA
}

.ent .ttl_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 80px
}

.ent .ttl_text {
    flex: 1 1 0
}

.ent .ttl_eyebrow {
    font-size: 15px;
    color: #04F6CA;
    letter-spacing: .12em;
    margin-bottom: 24px;
    display: block
}

.ent .ttl_h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0 0 24px
}

.ent .ttl_h1 .grad_word {
    background: linear-gradient(112deg, #04F6CA 0%, #FFFEF9 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ent .ttl_sub {
    font-size: 18px;
    line-height: 1.6;
    color: #fffef9b8;
    max-width: 480px
}

.ent .ttl_img_col {
    flex: 0 0 340px;
    position: relative
}

.ent .ttl_img_wrap {
    width: 340px;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

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

.ent .ttl_img_wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at 0% 0%, #04f6ca61 0%, transparent 70%);
    pointer-events: none
}

.ent .inv_blk {
    padding: 80px 0;
    background: #FFFEF9;
    position: relative
}

.ent .inv_blk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 24px;
    right: 50%;
    height: 1px;
    background: #0F253D;
    opacity: .12
}

.ent .inv_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 40px
}

.ent .inv_card {
    background: #FFFEF9;
    border: 1px solid #0f253d1a;
    border-radius: 16px;
    padding: 40px 24px;
    box-shadow: 0 4px 20px -2px #04f6ca1a;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.ent .inv_card:hover {
    box-shadow: 0 10px 48px -2px #04f6ca1f;
    transform: translateY(-4px)
}

.ent .inv_num {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    display: block;
    margin-bottom: 8px
}

.ent .inv_label {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253d99;
    display: block;
    margin-bottom: 12px
}

.ent .inv_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D
}

.ent .sec_head {
    margin-bottom: 8px
}

.ent .sec_lbl {
    font-size: 15px;
    letter-spacing: .1em;
    color: #0f253d80;
    display: block;
    margin-bottom: 12px
}

.ent .sec_h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    display: inline;
    background: linear-gradient(180deg, transparent 60%, #04f6ca4d 60%);
    padding: 0 4px
}

.ent .sec_body {
    font-size: 18px;
    line-height: 1.6;
    color: #0f253dbf;
    max-width: 620px;
    margin-top: 24px
}

.ent .cur_blk {
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.ent .cur_blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(147deg, #0F253D 0%, #0F253D 48%, #04F6CA 48%, #04F6CA 100%);
    opacity: .06;
    pointer-events: none
}

.ent .cur_layout {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center
}

.ent .cur_img_wrap {
    flex: 0 0 460px;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 48px -2px #0f253d1f
}

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

.ent .cur_text {
    flex: 1 1 0
}

.ent .cur_quote {
    border-top: 2px solid #04F6CA;
    padding-top: 24px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.9;
    color: #0F253D;
    font-style: italic
}

.ent .cur_steps {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    counter-reset: step_c
}

.ent .cur_steps li {
    counter-increment: step_c;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #0f253d14;
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    position: relative
}

.ent .cur_steps li::before {
    content: counter(step_c, decimal-leading-zero);
    font-size: 15px;
    color: #04F6CA;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px
}

.ent .ltv_blk {
    padding: 80px 0;
    background: #0F253D
}

.ent .ltv_blk .sec_lbl {
    color: #fffef973
}

.ent .ltv_blk .sec_h2 {
    color: #FFFEF9;
    background: linear-gradient(180deg, transparent 60%, #04f6ca40 60%)
}

.ent .ltv_body {
    font-size: 18px;
    line-height: 1.6;
    color: #fffef9b3;
    max-width: 540px;
    margin-top: 24px
}

.ent .ltv_layout {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    margin-top: 40px
}

.ent .ltv_col_a {
    flex: 1 1 0
}

.ent .ltv_col_b {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ent .ltv_item {
    padding: 24px;
    border-radius: 10px;
    background: #fffef90d;
    border: 1px solid #04f6ca26
}

.ent .ltv_item_h {
    font-size: 18px;
    line-height: 1.2;
    color: #04F6CA;
    margin-bottom: 8px
}

.ent .ltv_item_p {
    font-size: 15px;
    line-height: 1.6;
    color: #fffef9a6
}

.ent .ltv_img_wrap {
    width: 100%;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 3px -2px #04f6ca0d
}

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

.ent .appr_blk {
    padding: 80px 0;
    background: #FFFEF9;
    position: relative
}

.ent .appr_deco {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    pointer-events: none;
    overflow: hidden
}

.ent .appr_deco span {
    display: block;
    height: 2px;
    background: #04f6ca80;
    margin-bottom: 8px;
    border-radius: 0
}

.ent .appr_deco span:nth-child(1) {
    width: 60px
}

.ent .appr_deco span:nth-child(2) {
    width: 40px
}

.ent .appr_deco span:nth-child(3) {
    width: 20px
}

.ent .appr_cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 40px;
    align-items: start
}

.ent .appr_text_col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ent .appr_p {
    font-size: 18px;
    line-height: 1.6;
    color: #0f253dc7
}

.ent .appr_accent {
    background: #04f6ca1f;
    border-radius: 10px;
    padding: 24px;
    font-size: 18px;
    line-height: 1.9;
    color: #0F253D;
    font-style: italic
}

.ent .appr_vis_col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ent .appr_metric {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.ent .appr_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #04F6CA;
    flex-shrink: 0
}

.ent .appr_metric_text {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D
}

.ent .appr_bar_wrap {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ent .appr_bar_row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ent .appr_bar_lbl {
    font-size: 15px;
    color: #0f253d99
}

.ent .appr_bar_track {
    height: 6px;
    background: #0f253d14;
    border-radius: 0;
    overflow: hidden
}

.ent .appr_bar_fill {
    height: 100%;
    background: linear-gradient(90deg, #04F6CA 0%, #04f6ca80 100%);
    border-radius: 0
}

.ent .exp_blk {
    padding: 80px 0;
    position: relative
}

.ent .exp_blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(112deg, #FFFEF9 55%, #04f6ca14 55%);
    pointer-events: none
}

.ent .exp_inner {
    position: relative
}

.ent .exp_layout {
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin-top: 40px;
    align-items: flex-start
}

.ent .exp_portrait_col {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.ent .exp_portrait {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #04F6CA;
    box-shadow: 0 4px 20px -2px #04f6ca1a
}

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

.ent .exp_name {
    font-size: 15px;
    color: #0F253D;
    text-align: center
}

.ent .exp_role {
    font-size: 15px;
    color: #0f253d80;
    text-align: center;
    letter-spacing: .06em
}

.ent .exp_text_col {
    flex: 1 1 0
}

.ent .exp_phases {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px
}

.ent .exp_phase {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.ent .exp_phase_num {
    font-size: 28px;
    line-height: 1.2;
    color: #04f6ca59;
    flex-shrink: 0;
    width: 40px;
    font-weight: 700
}

.ent .exp_phase_body {
    flex: 1
}

.ent .exp_phase_h {
    font-size: 18px;
    line-height: 1.2;
    color: #0F253D;
    margin-bottom: 8px
}

.ent .exp_phase_p {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253dad
}

.ent .char_hover {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0
}

.ent .char_hover .ch {
    display: inline-block;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ent .char_hover:hover .ch:nth-child(1) {
    color: #04F6CA;
    transition-delay: 0s
}

.ent .char_hover:hover .ch:nth-child(2) {
    color: #04F6CA;
    transition-delay: .02s
}

.ent .char_hover:hover .ch:nth-child(3) {
    color: #04F6CA;
    transition-delay: .04s
}

.ent .char_hover:hover .ch:nth-child(4) {
    color: #04F6CA;
    transition-delay: .06s
}

.ent .char_hover:hover .ch:nth-child(5) {
    color: #04F6CA;
    transition-delay: .08s
}

.ent .char_hover:hover .ch:nth-child(6) {
    color: #04F6CA;
    transition-delay: .1s
}

.ent .char_hover:hover .ch:nth-child(7) {
    color: #04F6CA;
    transition-delay: .12s
}

.ent .char_hover:hover .ch:nth-child(8) {
    color: #04F6CA;
    transition-delay: .14s
}

.ent .char_hover:hover .ch:nth-child(9) {
    color: #04F6CA;
    transition-delay: .16s
}

.ent .char_hover:hover .ch:nth-child(10) {
    color: #04F6CA;
    transition-delay: .18s
}

.ent .divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 24px
}

.ent .divider::before,
.ent .divider::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #0f253d2e
}

.ent .divider::before {
    margin-right: auto
}

.ent .divider::after {
    margin-left: auto
}

.ent .appr_blk::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(circle, #04f6ca1f 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
    border-radius: 16px;
    overflow: hidden
}

.ent a {
    color: #0F253D;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ent a:hover {
    border-bottom-color: #04F6CA;
    color: #04F6CA
}

@media (max-width: 900px) {
    .ent .ttl_inner {
        flex-direction: column;
        gap: 40px
    }

    .ent .ttl_img_col {
        flex: unset
    }

    .ent .ttl_img_wrap {
        width: 100%;
        height: 280px
    }

    .ent .inv_grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ent .cur_layout {
        flex-direction: column;
        gap: 40px
    }

    .ent .cur_img_wrap {
        flex: unset;
        width: 100%
    }

    .ent .ltv_layout {
        flex-direction: column;
        gap: 40px
    }

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

    .ent .exp_layout {
        flex-direction: column;
        gap: 40px
    }

    .ent .exp_portrait_col {
        flex: unset;
        flex-direction: row;
        align-items: center;
        gap: 24px
    }

    .ent .ttl_h1 {
        font-size: 38px
    }
}

@media (max-width: 600px) {
    .ent .ttl_blk {
        padding: 80px 0 40px
    }

    .ent .ttl_h1 {
        font-size: 28px
    }

    .ent .sec_h2 {
        font-size: 28px
    }

    .ent .inv_blk,
    .ent .cur_blk,
    .ent .ltv_blk,
    .ent .appr_blk,
    .ent .exp_blk {
        padding: 40px 0
    }

    .ent .exp_portrait_col {
        flex-direction: column
    }
}

.pdc {
    background: #FFFEF9;
    overflow-x: hidden
}

.pdc .top-strip {
    background: #0F253D;
    padding: 80px 24px 40px
}

.pdc .top-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative
}

.pdc .brace-left,
.pdc .brace-right {
    position: absolute;
    font-size: 120px;
    line-height: 1;
    color: #04F6CA;
    opacity: .12;
    top: -20px;
    pointer-events: none;
    user-select: none
}

.pdc .brace-left {
    left: -8px
}

.pdc .brace-right {
    right: -8px
}

.pdc .pg-label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #04F6CA;
    line-height: 1.6;
    text-transform: uppercase;
    background: #04f6ca14;
    padding: 4px 12px;
    border-radius: 0;
    width: fit-content
}

.pdc .pg-heading {
    font-size: 52px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0;
    max-width: 680px
}

.pdc .pg-sub {
    font-size: 18px;
    line-height: 1.6;
    color: #fffef9ad;
    max-width: 560px;
    margin: 0
}

.pdc .dot-accent {
    width: 10px;
    height: 10px;
    border-radius: 16px;
    background: #04F6CA;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
    flex-shrink: 0
}

.pdc .pg-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #fffef980;
    line-height: 1.6
}

.pdc .strip-pattern {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding-top: 8px
}

.pdc .strip-pattern span {
    display: block;
    width: 24px;
    height: 4px;
    background: #04F6CA;
    opacity: .2;
    border-radius: 0
}

.pdc .strip-pattern span:nth-child(2) {
    opacity: .12;
    width: 40px
}

.pdc .strip-pattern span:nth-child(3) {
    opacity: .07;
    width: 16px
}

@keyframes borderGlow {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.pdc .glow-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(96deg, transparent 0%, #04F6CA 40%, transparent 100%);
    animation: borderGlow .18s cubic-bezier(0.4, 0, 1, 1) forwards
}

.pdc .cards-area {
    padding: 80px 24px;
    background: #FFFEF9
}

.pdc .cards-inner {
    max-width: 1100px;
    margin: 0 auto
}

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

.pdc .pod-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px -2px #0f253d1a;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), transform .15s cubic-bezier(0.4, 0, 1, 1);
    text-decoration: none;
    color: inherit
}

.pdc .pod-card:hover {
    box-shadow: 0 10px 48px -2px #0f253d1f;
    transform: translateY(-4px)
}

.pdc .pod-card:focus {
    outline: 2px solid #04F6CA;
    outline-offset: 2px
}

.pdc .card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden
}

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

.pdc .pod-card:hover .card-img-wrap img {
    transform: scale(1.04)
}

.pdc .card-caption {
    position: absolute;
    inset: 0;
    background: #0f253dd1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.pdc .pod-card:hover .card-caption {
    opacity: 1
}

.pdc .card-caption p {
    font-size: 15px;
    line-height: 1.6;
    color: #FFFEF9;
    text-align: center;
    margin: 0
}

.pdc .card-tag {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .08em;
    color: #0F253D;
    background: #04f6ca2e;
    padding: 4px 8px;
    border-radius: 0;
    text-transform: uppercase;
    line-height: 1.6
}

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

.pdc .card-title {
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    margin: 0;
    font-weight: 700
}

.pdc .card-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #3a4f63;
    margin: 0;
    flex: 1
}

.pdc .card-foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid #0f253d14
}

.pdc .card-author {
    font-size: 15px;
    color: #0F253D;
    line-height: 1.6;
    font-weight: 600
}

.pdc .card-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #5a7080;
    line-height: 1.6
}

.pdc .meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 16px;
    background: #04F6CA;
    display: inline-block
}

.pdc .read-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #0F253D;
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
    transition: color .12s ease-in;
    position: relative
}

.pdc .read-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 1px;
    background: #04F6CA;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.pdc .read-link:hover::after {
    transform: scaleX(1)
}

.pdc .read-link:hover {
    color: #04F6CA
}

.pdc .link-arrow {
    display: inline-block;
    width: 16px;
    height: 16px;
    transition: transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.pdc .read-link:hover .link-arrow {
    transform: translateX(4px)
}

.pdc .info-band {
    background: #0F253D;
    padding: 80px 24px
}

.pdc .info-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start
}

.pdc .band-label {
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #04F6CA;
    line-height: 1.6;
    margin-bottom: 12px
}

.pdc .band-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.pdc .band-heading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #04f6ca14;
    border-radius: 0;
    z-index: 0
}

.pdc .band-heading span {
    position: relative;
    z-index: 1
}

.pdc .band-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.pdc .step-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    position: relative;
    padding-bottom: 40px
}

.pdc .step-item:last-child {
    padding-bottom: 0
}

.pdc .step-num-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0
}

.pdc .step-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #04f6ca1f;
    border: 1px solid #04f6ca4d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #04F6CA;
    flex-shrink: 0;
    line-height: 1
}

.pdc .step-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(180deg, #04f6ca4d 0%, #04f6ca0a 100%);
    margin-top: 8px
}

.pdc .step-item:last-child .step-line {
    display: none
}

.pdc .step-text h5 {
    font-size: 18px;
    line-height: 1.6;
    color: #FFFEF9;
    margin: 0 0 8px;
    font-weight: 700
}

.pdc .step-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #fffef99e;
    margin: 0
}

.pdc .quote-band {
    padding: 80px 24px;
    background: #FFFEF9
}

.pdc .quote-inner {
    max-width: 1100px;
    margin: 0 auto
}

.pdc .quote-block {
    background: linear-gradient(112deg, #04f6ca12 0%, #0f253d0a 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 3px 3px -2px #04f6ca0d
}

.pdc .quote-mark {
    width: 48px;
    height: 48px;
    flex-shrink: 0
}

.pdc .quote-text {
    font-size: 28px;
    line-height: 1.6;
    color: #0F253D;
    margin: 0;
    font-style: italic
}

.pdc .quote-attr {
    font-size: 15px;
    color: #5a7080;
    line-height: 1.6;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.pdc .quote-attr strong {
    color: #0F253D
}

.pdc .metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px
}

.pdc .metric-box {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 20px -2px #0f253d1a;
    border-top: 3px solid #04F6CA
}

.pdc .metric-val {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    font-weight: 700
}

.pdc .metric-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #5a7080
}

.pdc .img-feature {
    padding: 0 24px 80px;
    background: #FFFEF9
}

.pdc .img-feature-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    align-items: center
}

.pdc .img-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 48px -2px #0f253d1f
}

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

.pdc .img-wrap:hover img {
    transform: scale(1.03)
}

.pdc .img-caption-reveal {
    position: absolute;
    inset: 0;
    background: #0f253dc7;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity .15s cubic-bezier(0.4, 0, 1, 1)
}

.pdc .img-wrap:hover .img-caption-reveal {
    opacity: 1
}

.pdc .img-caption-reveal p {
    font-size: 15px;
    line-height: 1.6;
    color: #FFFEF9;
    margin: 0
}

.pdc .scanline-overlay {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, #0f253d0a 3px, #0f253d0a 4px);
    pointer-events: none
}

.pdc .feat-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.pdc .feat-label {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #04F6CA;
    line-height: 1.6
}

.pdc .feat-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0
}

.pdc .feat-para {
    font-size: 15px;
    line-height: 1.9;
    color: #3a4f63;
    margin: 0
}

.pdc .feat-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #0F253D;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    background: #04f6ca26;
    transition: background .12s ease-in, color .12s ease-in;
    width: fit-content
}

.pdc .feat-link:hover {
    background: #04F6CA;
    color: #0F253D
}

.pdc .feat-link:hover .link-arrow {
    transform: translateX(4px)
}

.pdc .cta-strip {
    background: #0F253D;
    padding: 80px 24px;
    position: relative;
    overflow: hidden
}

.pdc .cta-strip-deco {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 16px;
    border: 2px solid #04f6ca14;
    transform: rotate(24deg);
    pointer-events: none
}

.pdc .cta-strip-deco2 {
    position: absolute;
    bottom: -40px;
    left: 60px;
    width: 120px;
    height: 120px;
    border-radius: 10px;
    border: 1px solid #04f6ca0f;
    transform: rotate(-12deg);
    pointer-events: none
}

.pdc .cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.pdc .cta-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px
}

.pdc .cta-heading {
    font-size: 38px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0
}

.pdc .cta-para {
    font-size: 18px;
    line-height: 1.6;
    color: #fffef9a6;
    margin: 0
}

.pdc .cta-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #0F253D;
    background: #04F6CA;
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .12s ease-in, box-shadow .12s ease-in;
    box-shadow: 0 4px 20px -2px #04f6ca1a
}

.pdc .cta-btn:hover {
    background: #02d9b2;
    box-shadow: 0 10px 48px -2px #04f6ca1f
}

.pdc .cta-btn:focus {
    outline: 2px solid #FFFEF9;
    outline-offset: 2px
}

.pdc .cta-btn .link-arrow {
    transition: transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.pdc .cta-btn:hover .link-arrow {
    transform: translateX(4px)
}

@media (max-width: 900px) {
    .pdc .pg-heading {
        font-size: 38px
    }

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

    .pdc .info-band-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .pdc .metrics-row {
        grid-template-columns: 1fr 1fr
    }

    .pdc .img-feature-inner {
        grid-template-columns: 1fr
    }

    .pdc .cta-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 600px) {
    .pdc .pg-heading {
        font-size: 28px
    }

    .pdc .metrics-row {
        grid-template-columns: 1fr
    }

    .pdc .quote-text {
        font-size: 18px
    }

    .pdc .cta-heading {
        font-size: 28px
    }

    .pdc .band-heading {
        font-size: 28px
    }

    .pdc .top-strip {
        padding: 40px 24px
    }
}

.ab_us {
    overflow-x: hidden
}

.ab_us .pg_wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.ab_us .top_blk {
    padding: 80px 24px 40px;
    background: #FFFEF9;
    position: relative
}

.ab_us .top_blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#0f253d0a 1px, transparent 1px), linear-gradient(90deg, #0f253d0a 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.ab_us .top_blk::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #04f6ca2e 40%, #04f6ca14 80%, transparent 100%);
    transform: rotate(8deg);
    transform-origin: top left;
    pointer-events: none
}

.ab_us .top_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px
}

.ab_us .top_text {
    text-align: center;
    max-width: 680px;
    padding: 40px 24px 24px
}

.ab_us .top_label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .14em;
    color: #0F253D;
    background: #04f6ca26;
    padding: 4px 12px;
    border-radius: 0;
    margin-bottom: 24px;
    text-transform: uppercase
}

.ab_us .top_h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.ab_us .top_h1 .h1_bg {
    background: #04f6ca38;
    padding: 0 8px;
    border-radius: 0
}

.ab_us .top_desc {
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    text-align: left;
    max-width: 560px;
    margin: 0 auto
}

.ab_us .top_img_row {
    width: 100%;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
    max-width: 1100px
}

.ab_us .top_img_main {
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 48px -2px #0f253d1f
}

.ab_us .top_img_main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(12%) saturate(110%) brightness(1.04);
    display: block
}

.ab_us .top_img_side {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ab_us .top_img_sm {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px -2px #0f253d1a
}

.ab_us .top_img_sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(8%) saturate(108%) brightness(1.06);
    display: block
}

.ab_us .who_blk {
    background: #0F253D;
    padding: 80px 24px;
    position: relative
}

.ab_us .who_blk::before {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #04F6CA 0%, #04f6ca1a 70%, transparent 100%);
    pointer-events: none
}

.ab_us .who_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start
}

.ab_us .who_left h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0 0 24px
}

.ab_us .who_left h2 .h2_acc {
    background: #04f6ca2e;
    padding: 0 8px;
    border-radius: 0;
    color: #04F6CA
}

.ab_us .who_left p {
    font-size: 15px;
    line-height: 1.6;
    color: #fffef9bf;
    margin: 0 0 24px
}

.ab_us .who_left p:last-of-type {
    margin-bottom: 0
}

.ab_us .who_right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ab_us .metric_row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.ab_us .metric_card {
    border: 1px solid #04f6ca33;
    border-radius: 10px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    background: #04f6ca0a;
    transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), background .12s ease-in
}

.ab_us .metric_card:hover {
    border-color: #04f6ca80;
    background: #04f6ca14
}

.ab_us .metric_num {
    font-size: 38px;
    line-height: 1.2;
    color: #04F6CA;
    display: block;
    margin-bottom: 4px
}

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

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

.ab_us .arc_num {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    position: relative
}

.ab_us .arc_num svg {
    width: 44px;
    height: 44px
}

.ab_us .arc_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #fffef9b3
}

.ab_us .who_img_strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.ab_us .who_img_box {
    height: 160px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 3px -2px #04f6ca0d
}

.ab_us .who_img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(10%) saturate(90%) brightness(0.92);
    display: block
}

.ab_us .team_blk {
    background: #FFFEF9;
    padding: 80px 24px
}

.ab_us .team_inner {
    max-width: 1100px;
    margin: 0 auto
}

.ab_us .team_head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px
}

.ab_us .team_head h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0;
    max-width: 420px
}

.ab_us .team_head h2 .h_strip {
    display: inline;
    background: #04f6ca40;
    padding: 0 8px;
    border-radius: 0
}

.ab_us .team_head_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    max-width: 340px;
    opacity: .75
}

.ab_us .team_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.3fr;
    gap: 12px;
    align-items: start
}

.ab_us .team_card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px -2px #0f253d1a;
    background: #fff;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), transform .12s ease-in
}

.ab_us .team_card:hover {
    box-shadow: 0 10px 48px -2px #0f253d1f;
    transform: translateY(-4px)
}

.ab_us .team_portrait {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden
}

.ab_us .team_portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(6%) saturate(105%) brightness(1.03)
}

.ab_us .team_info {
    padding: 12px
}

.ab_us .team_name {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    font-weight: 700;
    display: block;
    margin-bottom: 4px
}

.ab_us .team_role {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253d8c
}

.ab_us .team_accent {
    grid-column: 4;
    grid-row: 1;
    background: #0F253D;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    box-shadow: 0 10px 48px -2px #0f253d1f
}

.ab_us .team_accent_q {
    font-size: 18px;
    line-height: 1.6;
    color: #FFFEF9;
    font-style: italic;
    margin: 0 0 24px
}

.ab_us .team_accent_name {
    font-size: 15px;
    color: #04F6CA;
    letter-spacing: .08em
}

.ab_us .steps_blk {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0
}

.ab_us .step_item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    border-bottom: 1px solid #0f253d14
}

.ab_us .step_item:last-child {
    border-bottom: none
}

.ab_us .step_num_ring {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    position: relative
}

.ab_us .step_num_ring svg {
    width: 44px;
    height: 44px
}

.ab_us .step_body h4 {
    font-size: 18px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 8px
}

.ab_us .step_body p {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253db3;
    margin: 0
}

.ab_us .form_blk {
    background: #FFFEF9;
    padding: 80px 24px;
    border-top: 1px solid #0f253d14
}

.ab_us .form_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start
}

.ab_us .form_left h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 24px
}

.ab_us .form_left h2 .h_acc {
    background: #04f6ca40;
    padding: 0 8px;
    border-radius: 0
}

.ab_us .form_left p {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253db8;
    margin: 0 0 24px
}

.ab_us .form_left p:last-of-type {
    margin-bottom: 0
}

.ab_us .form_img {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    height: 200px;
    box-shadow: 0 4px 20px -2px #0f253d1a
}

.ab_us .form_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: sepia(8%) saturate(108%) brightness(1.04);
    display: block
}

.ab_us .contact_form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 48px -2px #0f253d1f
}

.ab_us .f_group {
    margin-bottom: 24px
}

.ab_us .f_label {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    margin-bottom: 4px;
    letter-spacing: .04em
}

.ab_us .f_input {
    width: 100%;
    padding: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    background: #FFFEF9;
    border: 1px solid #0f253d2e;
    border-radius: 10px;
    outline: none;
    box-sizing: border-box;
    box-shadow: inset 0 2px 4px #0f253d0d;
    transition: border-color .15s cubic-bezier(0.4, 0, 1, 1)
}

.ab_us .f_input:focus {
    border-color: #04F6CA !important
}

.ab_us .f_input::placeholder {
    color: #0f253d61
}

.ab_us .budget_label {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    margin-bottom: 8px;
    letter-spacing: .04em
}

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

.ab_us .budget_opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.ab_us .budget_opt input[type="radio"] {
    accent-color: #04F6CA;
    width: 16px;
    height: 16px;
    cursor: pointer
}

.ab_us .budget_opt span {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253dc7
}

.ab_us .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px
}

.ab_us .privacy_row input[type="checkbox"] {
    accent-color: #04F6CA;
    width: 16px;
    height: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer
}

.ab_us .privacy_txt {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253da6
}

.ab_us .privacy_txt a {
    color: #0F253D;
    text-decoration: underline;
    transition: color .12s ease-in, outline .1s cubic-bezier(0.4, 0, 1, 1)
}

.ab_us .privacy_txt a:hover {
    outline: 2px solid #0F253D;
    outline-offset: 2px;
    text-decoration: none
}

.ab_us .submit_btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #0F253D;
    color: #FFFEF9;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.6;
    cursor: pointer;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s ease-in;
    width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.ab_us .submit_btn .btn_icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform .15s cubic-bezier(0.4, 0, 1, 1)
}

.ab_us .submit_btn:hover {
    background: #04F6CA;
    color: #0F253D;
    box-shadow: 0 4px 20px -2px #04f6ca1a
}

.ab_us .submit_btn:hover .btn_icon {
    transform: translateX(4px)
}

.ab_us .submit_btn:focus {
    outline: 2px solid #04F6CA;
    outline-offset: 2px
}

@keyframes mask_reveal {
    0% {
        clip-path: circle(0% at 50% 50%);
        opacity: 0
    }

    100% {
        clip-path: circle(75% at 50% 50%);
        opacity: 1
    }
}

.ab_us .top_inner {
    animation: mask_reveal .7s cubic-bezier(0.4, 0, 1, 1) both
}

.ab_us .who_inner {
    animation: mask_reveal .65s cubic-bezier(0.4, 0, 1, 1) .1s both
}

@media (max-width: 900px) {
    .ab_us .top_img_row {
        grid-template-columns: 1fr
    }

    .ab_us .top_img_side {
        flex-direction: row
    }

    .ab_us .top_img_sm {
        height: 160px
    }

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

    .ab_us .metric_row {
        grid-template-columns: repeat(3, 1fr)
    }

    .ab_us .team_grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .ab_us .team_accent {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: auto
    }

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

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

@media (max-width: 600px) {
    .ab_us .top_h1 {
        font-size: 38px
    }

    .ab_us .metric_row {
        grid-template-columns: 1fr 1fr
    }

    .ab_us .team_grid {
        grid-template-columns: 1fr
    }

    .ab_us .who_img_strip {
        grid-template-columns: 1fr
    }

    .ab_us .contact_form {
        padding: 24px
    }

    .ab_us .top_img_main {
        height: 260px
    }

    .ab_us .top_img_side {
        flex-direction: column
    }

    .ab_us .top_img_sm {
        height: 140px
    }
}

.cu {
    background: #FFFEF9;
    overflow-x: clip
}

.cu .pg-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.cu ::selection {
    background: #04F6CA;
    color: #0F253D
}

.cu .reach-strip {
    background: linear-gradient(170deg, #FFFEF9 0%, #e8fdf8 40%, #d0f9f0 70%, #FFFEF9 100%);
    padding: 80px 0 40px;
    position: relative
}

.cu .reach-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(60deg, transparent, transparent 18px, #04f6ca0a 18px, #04f6ca0a 19px), repeating-linear-gradient(-60deg, transparent, transparent 18px, #04f6ca0a 18px, #04f6ca0a 19px);
    pointer-events: none
}

.cu .reach-inner {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    position: relative
}

.cu .reach-left {
    flex: 0 0 38%;
    padding: 40px 0 0
}

.cu .reach-right {
    flex: 1 1 0
}

.cu .lbl-tag {
    display: inline-block;
    background: #04f6ca26;
    color: #0F253D;
    font-size: 15px;
    letter-spacing: .12em;
    padding: 4px 12px;
    border-radius: 0;
    margin-bottom: 24px;
    text-transform: uppercase
}

.cu .reach-h {
    font-size: 52px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 24px;
    clip-path: inset(0 100% 0 0);
    animation: wipe-in .16s cubic-bezier(0.4, 0, 1, 1) .05s forwards
}

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

.cu .reach-num {
    font-size: 68px;
    line-height: 1.2;
    color: #04F6CA;
    font-weight: 700;
    display: block
}

.cu .reach-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    margin: 0 0 40px;
    opacity: .82
}

.cu .def-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.cu .def-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border-radius: 10px;
    background: #0f253d0a;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1)
}

.cu .def-list li:hover {
    background: #04f6ca1f
}

.cu .def-term {
    font-size: 15px;
    letter-spacing: .08em;
    color: #0F253D;
    opacity: .55;
    text-transform: uppercase
}

.cu .def-val {
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    font-weight: 600
}

.cu .def-val a {
    color: #0F253D;
    text-decoration: none;
    border-bottom: 1px solid #04f6ca80;
    transition: border-color .1s cubic-bezier(0.4, 0, 1, 1), color .1s cubic-bezier(0.4, 0, 1, 1)
}

.cu .def-val a:hover {
    color: #04F6CA;
    border-color: #04F6CA;
    outline: 2px solid #04F6CA;
    outline-offset: 2px;
    border-radius: 0
}

.cu .arrow-dec {
    width: 32px;
    height: 32px;
    opacity: .18;
    margin: 40px 0 0
}

.cu .divider-svg {
    display: block;
    width: 100%;
    height: 48px;
    overflow: hidden
}

.cu .form-band {
    background: #0F253D;
    padding: 80px 0;
    position: relative
}

.cu .form-band::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 48px;
    background: #FFFEF9;
    clip-path: ellipse(55% 100% at 50% 0%);
    pointer-events: none
}

.cu .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.cu .form-aside {
    padding: 40px 0 0
}

.cu .form-aside-h {
    font-size: 38px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0 0 24px;
    clip-path: inset(0 100% 0 0);
    animation: wipe-in .15s cubic-bezier(0.4, 0, 1, 1) .1s forwards
}

.cu .aside-note {
    font-size: 18px;
    line-height: 1.6;
    color: #fffef9b3;
    margin: 0 0 40px
}

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

.cu .step-list li {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 0;
    position: relative
}

.cu .step-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 44px;
    bottom: -12px;
    width: 2px;
    background: #04f6ca40
}

.cu .step-num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 16px;
    background: #04F6CA;
    color: #0F253D;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cu .step-text {
    font-size: 15px;
    line-height: 1.6;
    color: #fffef9bf;
    padding-top: 4px
}

.cu .form-card {
    background: #FFFEF9;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 48px -2px #04f6ca1f
}

.cu .form-card form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.cu .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cu .field-grp label {
    font-size: 15px;
    letter-spacing: .06em;
    color: #0F253D;
    font-weight: 600;
    text-transform: uppercase
}

.cu .field-grp input,
.cu .field-grp select {
    border: 1.5px solid #0f253d2e;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 18px;
    color: #0F253D;
    background: #FFFEF9;
    outline: none;
    box-shadow: inset 0 2px 6px #0f253d0a;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1);
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none
}

.cu .field-grp input::placeholder {
    color: #0f253d59;
    font-size: 15px
}

.cu .field-grp input:focus,
.cu .field-grp select:focus {
    border-color: #04F6CA;
    box-shadow: inset 0 2px 6px #04f6ca14 0 0 0 3px #04f6ca2e
}

.cu .select-wrap {
    position: relative
}

.cu .select-wrap::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #0F253D;
    pointer-events: none
}

.cu .priority-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.cu .priority-opt {
    position: relative
}

.cu .priority-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.cu .priority-opt label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1.5px solid #0f253d26;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), background .12s cubic-bezier(0.4, 0, 1, 1);
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    font-weight: 400;
    color: #0F253D;
    background: #FFFEF9
}

.cu .priority-opt label:hover {
    border-color: #04F6CA;
    background: #04f6ca0f
}

.cu .priority-opt input[type="radio"]:checked+label {
    border-color: #04F6CA;
    background: #04f6ca1f;
    font-weight: 600
}

.cu .priority-opt input[type="radio"]:focus+label {
    outline: 2px solid #04F6CA;
    outline-offset: 2px
}

.cu .pri-name {
    font-size: 15px;
    font-weight: 600;
    color: #0F253D
}

.cu .pri-sub {
    font-size: 15px;
    color: #0f253d8c;
    font-weight: 400
}

.cu .urgency-sel {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.cu .urg-opt {
    position: relative
}

.cu .urg-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.cu .urg-opt label {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid #0f253d26;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    color: #0F253D;
    background: #FFFEF9;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    transition: border-color .1s cubic-bezier(0.4, 0, 1, 1), background .1s cubic-bezier(0.4, 0, 1, 1)
}

.cu .urg-opt label:hover {
    border-color: #04F6CA;
    background: #04f6ca12
}

.cu .urg-opt input[type="radio"]:checked+label {
    border-color: #04F6CA;
    background: #04f6ca24;
    font-weight: 600
}

.cu .urg-opt input[type="radio"]:focus+label {
    outline: 2px solid #04F6CA;
    outline-offset: 2px
}

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

.cu .privacy-row input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: #04F6CA;
    cursor: pointer;
    border-radius: 0
}

.cu .privacy-row span {
    font-size: 15px;
    line-height: 1.6;
    color: #0f253db3
}

.cu .privacy-row a {
    color: #0F253D;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .1s cubic-bezier(0.4, 0, 1, 1)
}

.cu .privacy-row a:hover {
    color: #04F6CA
}

.cu .btn-submit {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #04F6CA;
    color: #0F253D;
    border: none;
    border-radius: 10px;
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .04em;
    text-transform: lowercase;
    align-self: flex-start;
    box-shadow: 0 4px 20px -2px #04f6ca1a;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1), transform .1s cubic-bezier(0.4, 0, 1, 1);
    position: relative;
    overflow: hidden
}

.cu .btn-submit .btn-icon {
    display: inline-block;
    transform: translateX(-4px);
    opacity: 0;
    transition: transform .12s cubic-bezier(0.4, 0, 1, 1), opacity .12s cubic-bezier(0.4, 0, 1, 1)
}

.cu .btn-submit .btn-label {
    display: inline-block;
    transition: transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.cu .btn-submit:hover .btn-icon {
    transform: translateX(0);
    opacity: 1
}

.cu .btn-submit:hover .btn-label {
    transform: translateX(6px)
}

.cu .btn-submit:hover {
    background: #02ddb5;
    box-shadow: 0 10px 48px -2px #04f6ca1f
}

.cu .btn-submit:focus {
    outline: 3px solid #04F6CA;
    outline-offset: 3px
}

.cu .btn-submit:active {
    transform: scale(0.98)
}

.cu .field-sec-label {
    font-size: 15px;
    letter-spacing: .06em;
    color: #0F253D;
    font-weight: 600;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px
}

@media (max-width: 900px) {
    .cu .reach-inner {
        flex-direction: column;
        gap: 40px
    }

    .cu .reach-left {
        flex: none;
        width: 100%;
        padding: 0
    }

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

    .cu .form-aside {
        padding: 0
    }

    .cu .reach-h {
        font-size: 38px
    }
}

@media (max-width: 600px) {
    .cu .reach-strip {
        padding: 40px 0 24px
    }

    .cu .form-band {
        padding: 40px 0
    }

    .cu .form-card {
        padding: 24px
    }

    .cu .priority-row {
        grid-template-columns: 1fr
    }

    .cu .reach-h {
        font-size: 28px
    }

    .cu .form-aside-h {
        font-size: 28px
    }

    .cu .reach-num {
        font-size: 52px
    }
}

.rdmp {
    background: #FFFEF9;
    overflow-x: clip
}

.rdmp .pg_frame {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.rdmp .tb {
    background: #0F253D;
    padding: 80px 0;
    position: relative
}

.rdmp .tb_frame {
    position: relative;
    border: 1px solid #04f6ca38;
    padding: 40px;
    max-width: 1100px;
    margin: 0 auto
}

.rdmp .tb_frame::before,
.rdmp .tb_frame::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #04F6CA;
    border-style: solid
}

.rdmp .tb_frame::before {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px
}

.rdmp .tb_frame::after {
    bottom: -1px;
    right: -1px;
    border-width: 0 2px 2px 0
}

.rdmp .tb_label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #04F6CA;
    text-transform: uppercase;
    margin-bottom: 24px;
    background: #04f6ca14;
    padding: 4px 12px;
    border-radius: 0
}

.rdmp .tb_h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0 0 24px;
    max-width: 680px
}

.rdmp .tb_h1 .acc {
    color: #04F6CA
}

.rdmp .tb_sub {
    font-size: 18px;
    line-height: 1.6;
    color: #fffef9b8;
    max-width: 560px;
    margin: 0
}

.rdmp .tb_dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.rdmp .tb_dots span {
    position: absolute;
    border-radius: 50%;
    background: #04f6ca1f
}

.rdmp .tb_dots span:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 18%;
    right: 40px
}

.rdmp .tb_dots span:nth-child(2) {
    width: 10px;
    height: 10px;
    top: 32%;
    right: 80px
}

.rdmp .tb_dots span:nth-child(3) {
    width: 4px;
    height: 4px;
    top: 50%;
    right: 30px
}

.rdmp .tb_dots span:nth-child(4) {
    width: 14px;
    height: 14px;
    top: 65%;
    right: 100px
}

.rdmp .tb_dots span:nth-child(5) {
    width: 7px;
    height: 7px;
    top: 78%;
    right: 55px
}

.rdmp .tb_dots span:nth-child(6) {
    width: 3px;
    height: 3px;
    top: 88%;
    right: 140px
}

.rdmp .tb_bleed {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 280px;
    height: 280px;
    background: radial-gradient(ellipse at 0% 100%, #04f6ca17 0%, transparent 70%);
    pointer-events: none;
    animation: bleed_anim 6s cubic-bezier(0.4, 0, 1, 1) infinite alternate
}

@keyframes bleed_anim {
    0% {
        opacity: .3;
        transform: scale(0.85)
    }

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

.rdmp .div_a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
    background: #FFFEF9
}

.rdmp .div_a::before,
.rdmp .div_a::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #0f253d1f;
    max-width: 400px
}

.rdmp .div_shape {
    width: 10px;
    height: 10px;
    background: #04F6CA;
    transform: rotate(45deg);
    border-radius: 0;
    flex-shrink: 0
}

.rdmp .phases {
    padding: 80px 0;
    background: #FFFEF9
}

.rdmp .sec_label {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #04F6CA;
    margin-bottom: 8px;
    display: block
}

.rdmp .sec_h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 40px
}

.rdmp .sec_h2 .acc {
    color: #04F6CA
}

.rdmp .ph_list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative
}

.rdmp .ph_list::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #04F6CA 0%, #04f6ca26 100%)
}

.rdmp .ph_item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative
}

.rdmp .ph_item:last-child {
    margin-bottom: 0
}

.rdmp .ph_num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #0F253D;
    color: #04F6CA;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px -2px #0f253d1a;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.rdmp .ph_item:hover .ph_num {
    background: #04F6CA;
    color: #0F253D;
    transform: scale(1.08)
}

.rdmp .ph_body {
    flex: 1;
    background: #FFFEF9;
    border: 1px solid #0f253d1a;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 3px 3px -2px #0f253d0d;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), border-color .12s ease-in;
    position: relative
}

.rdmp .ph_body:hover {
    box-shadow: 0 4px 20px -2px #0f253d1a;
    border-color: #04f6ca66
}

.rdmp .ph_tag {
    display: inline-block;
    font-size: 15px;
    background: #04f6ca1f;
    color: #0F253D;
    padding: 4px 12px;
    border-radius: 0;
    margin-bottom: 8px;
    letter-spacing: .06em
}

.rdmp .ph_h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 12px;
    display: inline;
    background: linear-gradient(135deg, #04f6ca2e 0%, transparent 80%);
    padding: 0 8px 0 0
}

.rdmp .ph_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    margin: 12px 0 0
}

.rdmp .ph_tasks {
    list-style: none;
    padding: 0;
    margin: 12px 0 0
}

.rdmp .ph_tasks li {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    padding: 4px 0 4px 20px;
    position: relative;
    border-bottom: 1px solid #0f253d0f
}

.rdmp .ph_tasks li:last-child {
    border-bottom: none
}

.rdmp .ph_tasks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #04F6CA
}

.rdmp .ph_tooltip {
    display: none;
    position: absolute;
    top: -32px;
    left: 0;
    background: #0F253D;
    color: #04F6CA;
    font-size: 15px;
    padding: 4px 12px;
    border-radius: 0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10
}

.rdmp .ph_body:hover .ph_tooltip {
    display: block
}

.rdmp .div_b {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 0;
    background: linear-gradient(135deg, #FFFEF9 60%, #04f6ca0f 100%)
}

.rdmp .div_b::before,
.rdmp .div_b::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #0f253d1a;
    max-width: 400px
}

.rdmp .div_tri {
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #04F6CA;
    flex-shrink: 0
}

.rdmp .metrics {
    padding: 80px 0;
    background: linear-gradient(170deg, #0f253df5 50%, #0F253D 100%);
    position: relative;
    overflow: hidden
}

.rdmp .metrics_bg_grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(#04f6ca0a 1px, transparent 1px), linear-gradient(90deg, #04f6ca0a 1px, transparent 1px);
    background-size: 40px 40px
}

.rdmp .metrics_bleed {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(ellipse at 100% 0%, #04f6ca12 0%, transparent 65%);
    pointer-events: none;
    animation: bleed_anim 8s cubic-bezier(0.4, 0, 1, 1) infinite alternate-reverse
}

.rdmp .metrics_inner {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px
}

.rdmp .metrics_top {
    margin-bottom: 40px
}

.rdmp .metrics_label {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #04F6CA;
    display: block;
    margin-bottom: 8px
}

.rdmp .metrics_h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #FFFEF9;
    margin: 0
}

.rdmp .metrics_h2 .acc {
    color: #04F6CA
}

.rdmp .metrics_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start
}

.rdmp .stat_row {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.rdmp .stat_card {
    background: #fffef90d;
    border: 1px solid #04f6ca26;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 3px 3px -2px #04f6ca0d;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), border-color .12s ease-in
}

.rdmp .stat_card:hover {
    background: #04f6ca0f;
    border-color: #04f6ca59
}

.rdmp .stat_num {
    font-size: 52px;
    line-height: 1.2;
    color: #04F6CA;
    display: block
}

.rdmp .stat_desc {
    font-size: 15px;
    line-height: 1.6;
    color: #fffef9b8;
    margin: 4px 0 0
}

.rdmp .funnel_wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.rdmp .funnel_label {
    font-size: 15px;
    color: #fffef999;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px;
    align-self: flex-start
}

.rdmp .fn_row {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 4px;
    position: relative
}

.rdmp .fn_bar {
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #0F253D;
    padding: 12px 8px;
    font-weight: 600;
    transition: opacity .12s ease-in
}

.rdmp .fn_bar:hover {
    opacity: .85
}

.rdmp .fn_bar.f1 {
    width: 100%;
    background: #04F6CA
}

.rdmp .fn_bar.f2 {
    width: 82%;
    background: #04f6cad1
}

.rdmp .fn_bar.f3 {
    width: 64%;
    background: #04f6ca9e
}

.rdmp .fn_bar.f4 {
    width: 44%;
    background: #04f6ca6b;
    color: #FFFEF9
}

.rdmp .fn_arrow {
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 10px solid #04f6ca4d
}

.rdmp .div_c {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 0;
    background: #FFFEF9
}

.rdmp .div_c::before,
.rdmp .div_c::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #0f253d1a;
    max-width: 400px
}

.rdmp .div_dot_row {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: center
}

.rdmp .div_dot_row span {
    border-radius: 50%;
    background: #0F253D;
    display: block
}

.rdmp .div_dot_row span:nth-child(1) {
    width: 4px;
    height: 4px
}

.rdmp .div_dot_row span:nth-child(2) {
    width: 8px;
    height: 8px;
    background: #04F6CA
}

.rdmp .div_dot_row span:nth-child(3) {
    width: 4px;
    height: 4px
}

.rdmp .vision {
    position: relative
}

.rdmp .vision_top {
    background: #FFFEF9;
    padding: 80px 0 0
}

.rdmp .vision_bot {
    background: #0F253D;
    padding: 0 0 80px
}

.rdmp .vision_split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start
}

.rdmp .vision_img_wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 48px -2px #0f253d1f;
    background: #0F253D;
    height: 380px
}

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

.rdmp .vision_img_wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0f253d8c 0%, transparent 55%);
    pointer-events: none
}

.rdmp .vision_text {
    padding: 40px 0
}

.rdmp .vision_label {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #04F6CA;
    display: block;
    margin-bottom: 8px
}

.rdmp .vision_h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 24px
}

.rdmp .vision_h2 .acc {
    color: #04F6CA
}

.rdmp .vision_bq {
    border-radius: 0;
    background: #04f6ca1a;
    padding: 24px;
    margin: 0 0 24px;
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D
}

.rdmp .vision_p {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    margin: 0
}

.rdmp .vision_strip {
    background: #0F253D;
    padding: 40px 24px
}

.rdmp .vision_strip_inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.rdmp .vstrip_card {
    background: #fffef90d;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #04f6ca1f;
    box-shadow: 0 3px 3px -2px #04f6ca0d;
    position: relative;
    transition: border-color .15s cubic-bezier(0.4, 0, 1, 1)
}

.rdmp .vstrip_card:hover {
    border-color: #04f6ca59
}

.rdmp .vstrip_h4 {
    font-size: 18px;
    line-height: 1.2;
    color: #04F6CA;
    margin: 0 0 8px;
    background: #04f6ca14;
    display: inline-block;
    padding: 4px 8px;
    border-radius: 0
}

.rdmp .vstrip_p {
    font-size: 15px;
    line-height: 1.6;
    color: #fffef9b8;
    margin: 0
}

.rdmp .vstrip_tip {
    display: none;
    position: absolute;
    top: -36px;
    left: 0;
    background: #04F6CA;
    color: #0F253D;
    font-size: 15px;
    padding: 4px 12px;
    border-radius: 0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 5
}

.rdmp .vstrip_card:hover .vstrip_tip {
    display: block
}

@media (max-width: 900px) {
    .rdmp .tb_h1 {
        font-size: 38px
    }

    .rdmp .metrics_grid {
        grid-template-columns: 1fr
    }

    .rdmp .vision_split {
        grid-template-columns: 1fr
    }

    .rdmp .vision_strip_inner {
        grid-template-columns: 1fr 1fr
    }

    .rdmp .vision_img_wrap {
        height: 260px
    }
}

@media (max-width: 600px) {
    .rdmp .tb_h1 {
        font-size: 28px
    }

    .rdmp .tb_frame {
        padding: 24px
    }

    .rdmp .sec_h2,
    .rdmp .metrics_h2,
    .rdmp .vision_h2 {
        font-size: 28px
    }

    .rdmp .vision_strip_inner {
        grid-template-columns: 1fr
    }

    .rdmp .ph_list::before {
        left: 20px
    }

    .rdmp .ph_num {
        width: 40px;
        height: 40px;
        font-size: 15px
    }
}

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

.success_pg .card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 48px -2px #04f6ca1f;
    max-width: 560px;
    padding: 40px;
    width: 100%;
    text-align: center
}

.success_pg .card .icon_wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(160deg, #04f6ca26 0%, #0f253d0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px
}

.success_pg .card .icon_wrap svg {
    display: block
}

.success_pg .card .heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #0F253D;
    margin: 0 0 12px
}

.success_pg .card .sub {
    font-size: 18px;
    line-height: 1.6;
    color: #0F253D;
    opacity: .72;
    margin: 0 0 40px
}

.success_pg .card .btn_home {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #04F6CA;
    color: #0F253D;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s ease-in;
    box-shadow: 0 4px 20px -2px #04f6ca1a
}

.success_pg .card .btn_home:hover {
    background: #00ddb5;
    box-shadow: 0 10px 48px -2px #04f6ca1f
}

.success_pg .card .btn_home:hover svg {
    transform: translateX(4px)
}

.success_pg .card .btn_home svg {
    transition: transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.success_pg .card .divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #04f6ca4d 40%, #0f253d14 100%);
    margin: 40px 0
}

.success_pg .card .note {
    font-size: 15px;
    line-height: 1.6;
    color: #0F253D;
    opacity: .55
}

.success_pg .card .note a {
    color: #0F253D;
    opacity: 1;
    font-weight: 600;
    text-decoration: none;
    padding: 0 2px;
    border-bottom: 1.5px solid #04f6ca99;
    transition: border-color .1s ease-in
}

.success_pg .card .note a:hover {
    border-color: #04F6CA
}

@media (max-width: 600px) {
    .success_pg {
        padding: 40px 12px
    }

    .success_pg .card {
        padding: 24px
    }

    .success_pg .card .heading {
        font-size: 28px
    }
}