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

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-family: 'Inter', sans-serif
}

.site_header {
    position: relative;
    background-color: #0d1117;
    border-top: 3px solid #FD6289;
    overflow: visible
}

.site_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #076c602e 0%, #0d111700 60%);
    pointer-events: none
}

.hd_inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    min-height: 96px
}

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

.logo_ring {
    width: 72px;
    height: 72px;
    border-radius: 40px;
    background-color: #076C60;
    border: 2px solid #fd628973;
    box-shadow: 0 1px 4px -2px #fd628914 0 6px 25px -2px #fd62891a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0
}

.logo_ring img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block
}

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

.brand_name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFF;
    letter-spacing: .02em;
    margin: 0
}

.brand_tagline {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: #ffffff8c;
    margin: 0
}

.primary_nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end
}

.nav_link {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: #ffffffc7;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid transparent;
    transition: color .5s ease, background-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s ease;
    white-space: nowrap;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.nav_link:hover {
    color: #FD6289;
    background-color: #fd628914;
    border-color: #fd628940
}

.nav_link:focus {
    outline: none;
    border-color: #FD6289;
    background-color: #fd62891a
}

.nav_link.active {
    color: #FD6289;
    border-color: #fd62894d;
    background-color: #fd62890f
}

.nav_divider {
    width: 1px;
    height: 20px;
    background: #ffffff1f;
    margin: 0 8px;
    flex-shrink: 0
}

@media (max-width: 768px) {
    .hd_inner {
        padding: 0 16px;
        gap: 16px;
        min-height: 80px;
        flex-wrap: wrap;
        padding-top: 16px;
        padding-bottom: 16px
    }

    .brand_tagline {
        display: none
    }

    .primary_nav {
        width: 100%;
        justify-content: flex-start;
        padding-bottom: 16px;
        gap: 8px
    }

    .nav_divider {
        display: none
    }
}

@media (max-width: 375px) {
    .brand_name {
        font-size: 16px
    }

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

    .logo_ring {
        width: 56px;
        height: 56px
    }

    .logo_ring img {
        width: 46px;
        height: 46px
    }
}

.site_footer {
    background-color: #0b0f14;
    border-top: 1px solid #076c6059;
    padding-top: 80px;
    padding-bottom: 0
}

.ft_inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px
}

.ft_columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding-bottom: 80px
}

.ft_brand_col {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    min-width: 200px
}

.ft_logo_wrap {
    width: 72px;
    height: 72px;
    border-radius: 40px;
    background-color: #076C60;
    border: 2px solid #fd628959;
    box-shadow: 0 6px 25px -2px #076c601a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.ft_logo_wrap img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block
}

.ft_brand_name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    color: #FFF;
    margin: 0
}

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

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

.ft_contact_item i {
    color: #076C60;
    font-size: 16px;
    flex-shrink: 0
}

.ft_contact_link {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #fff9;
    text-decoration: none;
    transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ft_contact_link:hover {
    color: #FD6289
}

.ft_contact_link:focus {
    outline: none;
    color: #FD6289
}

.ft_address_text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff73;
    margin: 0
}

.ft_links_col {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ft_col_head {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffffe6;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin: 0
}

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

.ft_link_item a {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff8c;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .5s ease, border-color .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline
}

.ft_link_item a:hover {
    color: #FD6289;
    border-bottom-color: #fd628966
}

.ft_link_item a:focus {
    outline: none;
    color: #FD6289;
    border-bottom-color: #FD6289
}

.ft_bottom_bar {
    border-top: 1px solid #ffffff12;
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.ft_copy {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
    color: #ffffff59;
    margin: 0
}

.ft_accent_mark {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    background-color: #FD6289;
    margin-right: 8px;
    vertical-align: middle
}

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

.ft_legal_link {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff59;
    text-decoration: none;
    transition: color .6s ease
}

.ft_legal_link:hover {
    color: #ffffffb3
}

.ft_legal_link:focus {
    outline: none;
    color: #FFF
}

@media (max-width: 1024px) {
    .ft_columns {
        gap: 40px
    }
}

@media (max-width: 768px) {
    .ft_inner {
        padding: 0 24px
    }

    .ft_columns {
        flex-direction: column;
        gap: 40px;
        padding-bottom: 40px
    }

    .ft_bottom_bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }
}

@media (max-width: 375px) {
    .ft_inner {
        padding: 0 16px
    }

    .site_footer {
        padding-top: 40px
    }
}

.agreement-block {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #111318;
    color: #d8dce8;
    line-height: 1.6
}

.agreement-block h1 {
    font-size: 60px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 40px;
    margin-top: 0;
    letter-spacing: .01em
}

.agreement-block h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #fff;
    margin-top: 80px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #fd62892e;
    border-left: 3px solid #FD6289;
    border-radius: 2px;
    padding-left: 16px
}

.agreement-block h3 {
    font-size: 32px;
    line-height: 1.4;
    color: #eceef5;
    margin-top: 40px;
    margin-bottom: 16px
}

.agreement-block h4 {
    font-size: 24px;
    line-height: 1.4;
    color: #d8dce8;
    margin-top: 24px;
    margin-bottom: 16px
}

.agreement-block h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #c4c9d8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-top: 24px;
    margin-bottom: 8px
}

.agreement-block h6 {
    font-size: 16px;
    line-height: 1.6;
    color: #FD6289;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 16px;
    margin-bottom: 8px
}

.agreement-block ul {
    margin: 24px 0;
    padding-left: 24px;
    list-style: none
}

.agreement-block ol {
    margin: 24px 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter
}

.agreement-block ul li {
    font-size: 16px;
    line-height: 1.6;
    color: #d8dce8;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative
}

.agreement-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #FD6289;
    border-radius: 2px;
    transform: rotate(45deg)
}

.agreement-block ol li {
    font-size: 16px;
    line-height: 1.6;
    color: #d8dce8;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
    counter-increment: policy-counter
}

.agreement-block ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -8px;
    color: #FD6289;
    font-size: 16px;
    line-height: 1.6
}

.agreement-block ul li ul,
.agreement-block ol li ol,
.agreement-block ul li ol,
.agreement-block ol li ul {
    margin: 8px 0
}

.agreement-block strong,
.agreement-block b {
    color: #fff;
    font-weight: 700
}

.agreement-block table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #fd62891a
}

.agreement-block thead {
    background: linear-gradient(135deg, #076C60 0%, #054d45 100%)
}

.agreement-block thead th {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 16px 24px;
    text-align: left;
    font-weight: 700;
    border-bottom: 2px solid #fd62894d
}

.agreement-block tbody tr {
    border-bottom: 1px solid #ffffff0f;
    transition: background .5s ease
}

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

.agreement-block tbody tr:nth-child(even) {
    background: #ffffff08
}

.agreement-block tbody tr:hover {
    background: #fd62890f
}

.agreement-block td {
    font-size: 16px;
    line-height: 1.6;
    color: #d8dce8;
    padding: 16px 24px;
    vertical-align: top
}

.agreement-block div {
    margin-bottom: 16px
}

@media (max-width: 1024px) {
    .agreement-block {
        padding: 80px 40px
    }

    .agreement-block h1 {
        font-size: 44px
    }

    .agreement-block h2 {
        font-size: 32px
    }

    .agreement-block h3 {
        font-size: 24px
    }
}

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

    .agreement-block h1 {
        font-size: 32px
    }

    .agreement-block h2 {
        font-size: 24px;
        margin-top: 40px
    }

    .agreement-block h3 {
        font-size: 24px
    }

    .agreement-block h4 {
        font-size: 16px
    }

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

    .agreement-block thead th,
    .agreement-block td {
        padding: 16px;
        min-width: 140px
    }
}

@media (max-width: 375px) {
    .agreement-block {
        padding: 40px 16px
    }

    .agreement-block h1 {
        font-size: 32px
    }

    .agreement-block h2 {
        font-size: 24px
    }
}

.why_us {
    background-color: #0e1118;
    overflow-x: clip;
    position: relative
}

.why_us .pg_lead {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
    position: relative
}

.why_us .pg_lead::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 40px;
    right: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FD6289 30%, #076C60 70%, transparent);
    opacity: .35;
    pointer-events: none
}

.why_us .lead_text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 40px 40px 0
}

.why_us .lead_accent {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    border-radius: 2px;
    margin-bottom: 8px
}

.why_us .lead_h1 {
    font-size: 60px;
    line-height: 1.15;
    color: #f0ede8;
    letter-spacing: 0;
    margin: 0
}

.why_us .lead_h1 .kw {
    background: linear-gradient(135deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: #FD628940;
    text-underline-offset: 6px
}

.why_us .lead_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #b8b3ac;
    margin: 0;
    max-width: 520px;
    padding: 16px;
    background-color: #161b24;
    border-radius: 6px;
    box-shadow: inset 0 1px 4px -2px #fd628914;
    border: 1px solid #2a2f3a
}

.why_us .lead_desc {
    font-size: 16px;
    line-height: 1.6;
    color: #9e9890;
    margin: 0;
    max-width: 520px
}

.why_us .lead_img_col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 0;
    position: relative
}

.why_us .img_frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #fd62891a;
    border: 2px solid #2a2f3a;
    outline: 1px solid #FD628820;
    outline-offset: 4px
}

.why_us .img_frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.why_us .img_frame:hover img {
    transform: scale(1.04)
}

.why_us .img_scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 3px, #0000001f 3px, #0000001f 4px);
    pointer-events: none;
    border-radius: 12px
}

.why_us .geo_shape_a {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border: 1px solid #FD628818;
    border-radius: 12px;
    transform: rotate(25deg);
    pointer-events: none
}

.why_us .geo_shape_b {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 56px;
    height: 56px;
    border: 1px solid #076C6020;
    border-radius: 6px;
    transform: rotate(-15deg);
    pointer-events: none
}

.why_us .divider_geo {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background-color: #0b0f16
}

.why_us .divider_geo .dg_unit {
    width: 8px;
    height: 8px;
    border: 1px solid #FD628840;
    border-radius: 2px;
    transform: rotate(45deg);
    flex-shrink: 0
}

.why_us .divider_geo .dg_unit.alt {
    border-color: #076C6050;
    width: 5px;
    height: 5px
}

.why_us .reasons_grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(0deg, #0e1118 0%, #151b27 100%);
    position: relative
}

.why_us .reasons_grid::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(12deg);
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, #FD628812, transparent);
    pointer-events: none
}

.why_us .rg_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px
}

.why_us .rg_header .sec_line {
    display: block;
    width: 36px;
    height: 2px;
    background: #076C60;
    border-radius: 2px
}

.why_us .rg_header h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #f0ede8;
    margin: 0
}

.why_us .reasons_list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.why_us .reason_item {
    background-color: #161b24;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #222836;
    box-shadow: inset 0 1px 4px -2px #076c6014;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(24px);
    animation: item_reveal .6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    transition: box-shadow .6s ease, border-color .5s ease
}

.why_us .reason_item:hover {
    box-shadow: 0 6px 25px -2px #fd62891a;
    border-color: #FD628840
}

.why_us .reason_item:nth-child(1) {
    animation-delay: .1s
}

.why_us .reason_item:nth-child(2) {
    animation-delay: .22s
}

.why_us .reason_item:nth-child(3) {
    animation-delay: .34s
}

.why_us .reason_item:nth-child(4) {
    animation-delay: .46s
}

.why_us .reason_item:nth-child(5) {
    animation-delay: .58s
}

.why_us .reason_item:nth-child(6) {
    animation-delay: .7s
}

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

.why_us .ri_num {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block
}

.why_us .ri_title {
    font-size: 24px;
    line-height: 1.4;
    color: #f0ede8;
    margin: 0
}

.why_us .ri_text {
    font-size: 16px;
    line-height: 1.6;
    color: #9e9890;
    margin: 0
}

.why_us .divider_band {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #076C60 0%, #FD6289 50%, #076C60 100%);
    opacity: .25
}

.why_us .instructors_strip {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    background-color: #0b0f16;
    position: relative
}

.why_us .instructors_strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    bottom: 0;
    background: linear-gradient(135deg, transparent 40%, #FD628806 60%, transparent 80%);
    pointer-events: none
}

.why_us .is_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px
}

.why_us .is_header .sec_line {
    display: block;
    width: 36px;
    height: 2px;
    background: #FD6289;
    border-radius: 2px
}

.why_us .is_header h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #f0ede8;
    margin: 0
}

.why_us .is_layout {
    display: grid;
    grid-template-columns: 1fr 2fr 3fr;
    gap: 24px;
    align-items: start
}

.why_us .is_stat_col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.why_us .stat_pill {
    background-color: #161b24;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #222836;
    box-shadow: 0 1px 4px -2px #fd628914;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .6s ease
}

.why_us .stat_pill:hover {
    border-color: #076C6060
}

.why_us .stat_val {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.why_us .stat_lbl {
    font-size: 16px;
    line-height: 1.4;
    color: #9e9890
}

.why_us .is_profiles {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.why_us .prof_card {
    background-color: #161b24;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #222836;
    box-shadow: inset 0 1px 4px -2px #076c6014;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .7s ease
}

.why_us .prof_card:hover {
    box-shadow: 0 9px 52px -2px #fd628924
}

.why_us .prof_name {
    font-size: 24px;
    line-height: 1.4;
    color: #f0ede8;
    margin: 0
}

.why_us .prof_role {
    font-size: 16px;
    line-height: 1.4;
    color: #FD6289
}

.why_us .prof_bio {
    font-size: 16px;
    line-height: 1.6;
    color: #9e9890;
    margin: 0
}

.why_us .is_img_col {
    position: relative
}

.why_us .is_img_wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 52px -2px #076c6024;
    border: 2px solid #222836;
    outline: 1px solid #076C6030;
    outline-offset: 5px
}

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

.why_us .is_diag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 12px;
    overflow: hidden
}

.why_us .is_diag::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    width: 1px;
    height: 140%;
    background: linear-gradient(180deg, transparent, #FD628820 50%, transparent);
    transform: rotate(20deg);
    transform-origin: top center
}

.why_us .divider_dots {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 40px;
    background-color: #0e1118
}

.why_us .divider_dots .dd_dot {
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background-color: #2a2f3a;
    flex-shrink: 0;
    transition: background-color .5s ease
}

.why_us .divider_dots .dd_dot.hi {
    background: linear-gradient(135deg, #FD6289, #076C60);
    width: 24px
}

.why_us .progress_block {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    background: linear-gradient(0deg, #151b27 0%, #0e1118 100%) !important;
    position: relative
}

.why_us .pb_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
    max-width: 640px
}

.why_us .pb_header .sec_line {
    display: block;
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    border-radius: 2px
}

.why_us .pb_header h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #f0ede8;
    margin: 0
}

.why_us .pb_header p {
    font-size: 16px;
    line-height: 1.6;
    color: #9e9890;
    margin: 0
}

.why_us .pb_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

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

.why_us .meter_row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.why_us .meter_label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.why_us .meter_name {
    font-size: 16px;
    line-height: 1.4;
    color: #d4cfc8
}

.why_us .meter_pct {
    font-size: 16px;
    line-height: 1.4;
    color: #FD6289;
    font-weight: 600
}

.why_us .meter_track {
    width: 100%;
    height: 8px;
    background-color: #222836;
    border-radius: 40px;
    overflow: hidden
}

.why_us .meter_fill {
    height: 100%;
    border-radius: 40px;
    background: linear-gradient(90deg, #076C60, #FD6289);
    transition: width .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.why_us .pb_reviews {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.why_us .rating_summary {
    background-color: #161b24;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #222836;
    box-shadow: inset 0 1px 4px -2px #fd628914;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px
}

.why_us .rating_big {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0
}

.why_us .rating_detail {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.why_us .rating_stars {
    display: flex;
    flex-direction: row;
    gap: 4px
}

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

.why_us .rating_count {
    font-size: 16px;
    line-height: 1.4;
    color: #9e9890
}

.why_us .review_card {
    background-color: #161b24;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #222836;
    box-shadow: inset 0 1px 4px -2px #076c6014;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color .7s ease
}

.why_us .review_card:hover {
    border-color: #FD628840
}

.why_us .rev_author {
    font-size: 16px;
    line-height: 1.4;
    color: #f0ede8;
    font-weight: 600
}

.why_us .rev_text {
    font-size: 16px;
    line-height: 1.6;
    color: #9e9890;
    margin: 0
}

.why_us .cta_row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap
}

.why_us .btn_primary {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FD6289, #076C60);
    color: #f0ede8;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px -2px #fd62891a;
    transition: box-shadow .6s ease, transform .5s ease;
    position: relative
}

.why_us .btn_primary::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .6s ease, inset .5s ease
}

.why_us .btn_primary:hover {
    box-shadow: 0 9px 52px -2px #fd628924;
    transform: translateY(-2px)
}

.why_us .btn_primary:hover::after {
    border-color: #FD628860;
    inset: -6px
}

.why_us .btn_outline {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #f0ede8;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid #FD628860;
    cursor: pointer;
    transition: background-color .6s ease, border-color .5s ease;
    position: relative
}

.why_us .btn_outline::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color .7s ease, inset .6s ease
}

.why_us .btn_outline:hover {
    background-color: #FD628810;
    border-color: #FD6289
}

.why_us .btn_outline:hover::after {
    border-color: #FD628830;
    inset: -6px
}

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

    .why_us .lead_text {
        padding: 0
    }

    .why_us .lead_img_col {
        max-width: 400px
    }

    .why_us .lead_h1 {
        font-size: 44px
    }

    .why_us .reasons_grid {
        padding: 40px 24px
    }

    .why_us .reasons_list {
        grid-template-columns: 1fr 1fr
    }

    .why_us .instructors_strip {
        padding: 40px 24px
    }

    .why_us .is_layout {
        grid-template-columns: 1fr 1fr
    }

    .why_us .is_img_col {
        display: none
    }

    .why_us .progress_block {
        padding: 40px 24px
    }

    .why_us .pb_grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .why_us .lead_h1 {
        font-size: 32px
    }

    .why_us .reasons_list {
        grid-template-columns: 1fr
    }

    .why_us .is_layout {
        grid-template-columns: 1fr
    }

    .why_us .rg_header h2,
    .why_us .is_header h2,
    .why_us .pb_header h2 {
        font-size: 32px
    }

    .why_us .rating_summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .why_us .cta_row {
        flex-direction: column
    }
}

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

    .why_us .reasons_grid,
    .why_us .instructors_strip,
    .why_us .progress_block {
        padding: 24px 16px
    }

    .why_us .lead_h1 {
        font-size: 32px
    }
}

.abt_pg {
    background: #0d1117;
    color: #e8edf2;
    overflow-x: clip;
    position: relative
}

.abt_pg ::selection {
    background: linear-gradient(90deg, #FD6289, #076C60);
    color: #fff
}

.abt_pg .pg_width {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px
}

@keyframes overlay_breathe {

    0%,
    100% {
        opacity: 0
    }

    50% {
        opacity: 1
    }
}

.abt_pg .bg_overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, #fd62890a 0%, #076c600f 100%);
    pointer-events: none;
    animation: overlay_breathe 8s ease infinite;
    z-index: 0
}

.abt_pg .ttl_block {
    position: relative;
    z-index: 1;
    padding: 80px 0
}

.abt_pg .ttl_inner {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px
}

.abt_pg .ttl_strip {
    width: 220px;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    border-radius: 12px 0 0 12px;
    flex-shrink: 0
}

.abt_pg .ttl_strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.7);
    transition: filter .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt_pg .ttl_strip_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fd628973 0%, #076c608c 100%);
    pointer-events: none;
    border-radius: 12px 0 0 12px
}

.abt_pg .ttl_strip_shape {
    position: absolute;
    bottom: 40px;
    left: 16px;
    width: 60px;
    height: 3px;
    background: #FD6289;
    border-radius: 2px
}

.abt_pg .ttl_strip_shape::after {
    content: '';
    display: block;
    width: 30px;
    height: 3px;
    background: #076C60;
    border-radius: 2px;
    margin-top: 8px
}

.abt_pg .ttl_text {
    flex: 1;
    background: #111820;
    border-radius: 0 12px 12px 0;
    padding: 80px 80px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.abt_pg .ttl_accent_line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    border-radius: 2px;
    margin-bottom: 24px
}

.abt_pg .ttl_label {
    font-size: 16px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: #FD6289;
    margin-bottom: 16px;
    line-height: 1.4
}

.abt_pg .ttl_h1 {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 800;
    margin: 0 0 24px;
    color: #e8edf2
}

.abt_pg .ttl_h1 em {
    font-style: normal;
    background: linear-gradient(120deg, #FD6289 20%, #076C60 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt_pg .ttl_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #a0aab4;
    max-width: 480px
}

.abt_pg .ttl_shape_tri {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid #fd62891f;
    pointer-events: none
}

.abt_pg .who_sec {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(0deg, #111820 0%, #0d1117 100%)
}

.abt_pg .who_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.abt_pg .who_col_a {
    padding-top: 0
}

.abt_pg .who_col_b {
    padding-top: 40px
}

.abt_pg .accent_line_sm {
    width: 36px;
    height: 3px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    border-radius: 2px;
    margin-bottom: 16px
}

.abt_pg .who_h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 24px;
    color: #e8edf2
}

.abt_pg .who_p_first {
    font-size: 16px;
    line-height: 1.6;
    color: #e8edf2;
    background: #fd628912;
    border-radius: 6px;
    padding: 16px;
    margin: 0 0 16px;
    box-shadow: inset 0 1px 4px -2px #fd628914
}

.abt_pg .who_p {
    font-size: 16px;
    line-height: 1.6;
    color: #a0aab4;
    margin: 0 0 16px
}

.abt_pg .who_img_wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #fd62891a;
    position: relative
}

.abt_pg .who_img_wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.04)
}

.abt_pg .who_img_wrap:hover img {
    transform: scale(1.0)
}

.abt_pg .who_img_caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(0deg, #0d1117d9 0%, transparent 100%);
    font-size: 16px;
    color: #e8edf2;
    border-radius: 0 0 12px 12px
}

.abt_pg .metrics_row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px
}

.abt_pg .metric_item {
    flex: 1;
    border-radius: 12px;
    background: #111820;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 1px 4px -2px #076c6014;
    transition: box-shadow .6s ease
}

.abt_pg .metric_item:hover {
    box-shadow: 0 9px 52px -2px #076c6024
}

.abt_pg .metric_num {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    background: linear-gradient(120deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block
}

.abt_pg .metric_label {
    font-size: 16px;
    color: #a0aab4;
    line-height: 1.4;
    margin-top: 8px;
    display: block
}

.abt_pg .approach_sec {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: #0d1117
}

.abt_pg .approach_dashed {
    border: 2px dashed #fd628938;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: border-color .6s ease
}

.abt_pg .approach_dashed:hover {
    border-color: #fd628980
}

.abt_pg .approach_h2 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 40px;
    color: #e8edf2;
    text-align: center
}

.abt_pg .approach_subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.abt_pg .approach_subgrid_inner {
    display: grid;
    grid-template-rows: auto auto;
    gap: 24px
}

.abt_pg .step_card {
    background: #111820;
    border-radius: 12px;
    padding: 24px;
    box-shadow: inset 0 1px 4px -2px #076c6014;
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt_pg .step_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 52px -2px #076c6024
}

.abt_pg .step_num {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #FD6289;
    display: block;
    margin-bottom: 8px
}

.abt_pg .step_h {
    font-size: 16px;
    font-weight: 700;
    color: #e8edf2;
    margin: 0 0 8px;
    line-height: 1.4
}

.abt_pg .step_p {
    font-size: 16px;
    line-height: 1.6;
    color: #a0aab4;
    margin: 0
}

.abt_pg .approach_img_col {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #076c601a
}

.abt_pg .approach_img_col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 300px;
    transition: transform .75s ease
}

.abt_pg .approach_img_col:hover img {
    transform: scale(1.03)
}

.abt_pg .divider_center {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin: 40px 0
}

.abt_pg .divider_line {
    flex: 1;
    height: 1px;
    background: #fd628933
}

.abt_pg .divider_dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FD6289, #076C60);
    flex-shrink: 0
}

.abt_pg .team_sec {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(0deg, #111820 0%, #0d1117 100%)
}

.abt_pg .team_header {
    margin-bottom: 40px
}

.abt_pg .team_h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    color: #e8edf2;
    margin: 0 0 16px
}

.abt_pg .team_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #a0aab4;
    max-width: 560px
}

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

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

.abt_pg .person_card {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    background: #0d1117;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 4px -2px #fd628914;
    transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt_pg .person_card:hover {
    box-shadow: 0 6px 25px -2px #fd62891a
}

.abt_pg .person_img {
    width: 64px;
    height: 64px;
    border-radius: 40px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 1px 4px -2px #fd628914
}

.abt_pg .person_img img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    display: block
}

.abt_pg .person_info {
    flex: 1
}

.abt_pg .person_name {
    font-size: 16px;
    font-weight: 700;
    color: #e8edf2;
    margin: 0 0 4px;
    line-height: 1.4
}

.abt_pg .person_role {
    font-size: 16px;
    color: #FD6289;
    line-height: 1.4;
    margin: 0 0 4px
}

.abt_pg .person_note {
    font-size: 16px;
    color: #a0aab4;
    line-height: 1.4;
    margin: 0
}

.abt_pg .cta_panel {
    background: #111820;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 9px 52px -2px #076c6024
}

.abt_pg .cta_h3 {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #e8edf2;
    margin: 0
}

.abt_pg .cta_p {
    font-size: 16px;
    line-height: 1.6;
    color: #a0aab4;
    margin: 0
}

.abt_pg .cta_links {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt_pg .btn_primary {
    display: inline-block;
    padding: 16px 40px;
    background: #FD6289;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    border: 2px solid #FD6289;
    transition: background .55s ease, color .55s ease, border-color .55s ease, box-shadow .55s ease;
    box-shadow: 0 1px 4px -2px #fd628914;
    position: relative
}

.abt_pg .btn_primary:hover {
    background: transparent;
    color: #FD6289;
    border-color: #FD6289;
    box-shadow: 0 6px 25px -2px #fd62891a;
    outline: 3px solid #fd628940;
    outline-offset: 3px
}

.abt_pg .btn_secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #076C60;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    border: 2px solid #076C60;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), outline .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt_pg .btn_secondary:hover {
    background: #076C60;
    color: #fff;
    outline: 3px solid #076c6040;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .abt_pg .ttl_h1 {
        font-size: 44px
    }

    .abt_pg .ttl_text {
        padding: 40px 40px 40px 24px
    }

    .abt_pg .ttl_strip {
        width: 160px;
        min-width: 160px
    }

    .abt_pg .who_grid {
        grid-template-columns: 1fr
    }

    .abt_pg .who_col_b {
        padding-top: 0
    }

    .abt_pg .approach_subgrid {
        grid-template-columns: 1fr 1fr
    }

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

@media (max-width: 768px) {
    .abt_pg .pg_width {
        padding: 0 16px
    }

    .abt_pg .ttl_inner {
        padding: 0 16px;
        flex-direction: column
    }

    .abt_pg .ttl_strip {
        width: 100%;
        min-width: 0;
        height: 200px;
        border-radius: 12px 12px 0 0
    }

    .abt_pg .ttl_strip img {
        height: 200px
    }

    .abt_pg .ttl_strip_overlay {
        border-radius: 12px 12px 0 0
    }

    .abt_pg .ttl_text {
        border-radius: 0 0 12px 12px;
        padding: 24px
    }

    .abt_pg .ttl_h1 {
        font-size: 32px
    }

    .abt_pg .who_h2 {
        font-size: 32px
    }

    .abt_pg .metrics_row {
        flex-direction: column
    }

    .abt_pg .approach_subgrid {
        grid-template-columns: 1fr
    }

    .abt_pg .approach_dashed {
        padding: 24px
    }

    .abt_pg .team_h2 {
        font-size: 32px
    }

    .abt_pg .cta_panel {
        padding: 24px
    }

    .abt_pg .ttl_block {
        padding: 40px 0
    }

    .abt_pg .who_sec {
        padding: 40px 0
    }

    .abt_pg .approach_sec {
        padding: 40px 0
    }

    .abt_pg .team_sec {
        padding: 40px 0
    }
}

@media (max-width: 375px) {
    .abt_pg .ttl_h1 {
        font-size: 24px
    }

    .abt_pg .metric_num {
        font-size: 32px
    }

    .abt_pg .cta_h3 {
        font-size: 24px
    }
}

.frnt {
    background-color: #0d1117;
    color: #e8eaf0;
    overflow-x: clip;
    max-width: 1440px;
    margin: 0 auto
}

.frnt ::selection {
    background: linear-gradient(90deg, #FD6289, #076C60);
    color: #fff
}

.frnt .split_reveal {
    animation: splitOpen .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@keyframes splitOpen {
    0% {
        clip-path: inset(0 50% 0 50%);
        opacity: 0
    }

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

.frnt .grad_text {
    background: linear-gradient(135deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.frnt .accent_line {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    border-radius: 2px;
    margin-bottom: 16px
}

.frnt .title_blk {
    position: relative;
    background: linear-gradient(160deg, #0d1117 30%, #0a1f1c 70%, #1a0a10 100%);
    padding: 80px;
    overflow: hidden
}

.frnt .title_blk_bg {
    position: absolute;
    inset: 0;
    background-image: url(./promo_images/project-2022-009.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: brightness(0.08) saturate(0.4) grayscale(0.3);
    z-index: 0
}

.frnt .title_band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 10%, #FD6289 40%, #076C60 60%, transparent 90%)
}

.frnt .title_shapes {
    position: absolute;
    top: 40px;
    right: 80px;
    width: 220px;
    height: 220px;
    z-index: 1;
    pointer-events: none
}

.frnt .shape_ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #fd62892e
}

.frnt .shape_ring.r1 {
    width: 220px;
    height: 220px;
    top: 0;
    left: 0
}

.frnt .shape_ring.r2 {
    width: 160px;
    height: 160px;
    top: 30px;
    left: 30px;
    border-color: #076c6038
}

.frnt .shape_ring.r3 {
    width: 80px;
    height: 80px;
    top: 70px;
    left: 70px;
    background: #fd62890f;
    border-color: #fd62894d
}

.frnt .title_inner {
    position: relative;
    z-index: 2;
    max-width: 760px
}

.frnt .title_label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FD6289;
    margin-bottom: 24px;
    border: 1px solid #fd62894d;
    border-radius: 2px;
    padding: 8px 16px
}

.frnt .title_h1 {
    font-size: 70px;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #e8eaf0
}

.frnt .title_h1 em {
    font-style: normal;
    display: block
}

.frnt .title_lead {
    font-size: 24px;
    line-height: 1.6;
    color: #e8eaf0bf;
    margin: 0 0 40px;
    max-width: 560px
}

.frnt .title_lead strong {
    color: #e8eaf0;
    font-weight: 600
}

.frnt .title_actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.frnt .btn_prim {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FD6289, #c04060);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s ease;
    box-shadow: 0 6px 25px -2px #fd62891a;
    cursor: pointer
}

.frnt .btn_prim:hover {
    box-shadow: 0 9px 52px -2px #fd628924;
    transform: translateY(-2px)
}

.frnt .btn_out {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    padding: 16px 40px;
    background: transparent;
    color: #e8eaf0;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #e8eaf04d;
    transition: border-color .7s ease, box-shadow .7s ease
}

.frnt .btn_out:hover {
    border-color: #076c60cc;
    box-shadow: 0 0 0 4px #076c601f
}

.frnt .outcomes {
    padding: 80px;
    background: #111620
}

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

.frnt .outcomes_left {
    position: relative
}

.frnt .outcomes_img_wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 52px -2px #fd628924
}

.frnt .outcomes_img_wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) brightness(0.85);
    transition: filter .6s ease, transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frnt .outcomes_img_wrap:hover img {
    filter: saturate(1.1) brightness(0.95);
    transform: scale(1.03)
}

.frnt .outcomes_img_caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(0deg, #0d1117eb 0%, transparent 100%);
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf0cc
}

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

.frnt .outcomes_right h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0;
    color: #e8eaf0
}

.frnt .outcomes_intro {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf0a6;
    padding: 16px;
    background: #fd62890f;
    border-radius: 6px;
    margin: 0
}

.frnt .outcome_items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: oc
}

.frnt .outcome_items li {
    counter-increment: oc;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid #ffffff0f;
    box-shadow: inset 0 1px 4px -2px #fd628914;
    transition: background .55s ease, border-color .55s ease
}

.frnt .outcome_items li:hover {
    background: #fd62890f;
    border-color: #fd628933
}

.frnt .oc_num {
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
    width: 40px
}

.frnt .oc_text {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf0cc
}

.frnt .oc_text strong {
    display: block;
    color: #e8eaf0;
    font-size: 16px;
    margin-bottom: 8px
}

.frnt .approach {
    padding: 80px;
    background: #0d1117;
    position: relative
}

.frnt .approach_band {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #076C60 50%, transparent)
}

.frnt .approach_h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0 0 8px;
    color: #e8eaf0;
    text-align: center
}

.frnt .approach_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf08c;
    text-align: center;
    max-width: 520px;
    margin: 0 auto 40px
}

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

.frnt .ap_card {
    padding: 40px 24px;
    background: #111620;
    border-radius: 12px;
    border: 1px solid #ffffff0d;
    box-shadow: inset 0 6px 25px -2px #076c601a;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .65s ease
}

.frnt .ap_card:hover {
    transform: translateY(-4px);
    border-color: #076c6059
}

.frnt .ap_icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.frnt .ap_card h3 {
    font-size: 24px;
    line-height: 1.4;
    margin: 0;
    color: #e8eaf0
}

.frnt .ap_card p {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf0a6;
    margin: 0
}

.frnt .ap_tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #076C60;
    padding: 8px 16px;
    border: 1px solid #076c604d;
    border-radius: 2px;
    align-self: flex-start
}

.frnt .team {
    padding: 80px;
    background: linear-gradient(170deg, #0a1f1c 0%, #111620 60%, #1a0a10 100%);
    position: relative
}

.frnt .team_scallop {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 24px;
    overflow: hidden
}

.frnt .team_scallop svg {
    display: block;
    width: 100%;
    height: 24px
}

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

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

.frnt .team_left h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0;
    color: #e8eaf0
}

.frnt .team_desc {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf0a6;
    margin: 0
}

.frnt .team_desc.first_p {
    padding: 16px;
    background: #076c6014;
    border-radius: 6px;
    color: #e8eaf0cc
}

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

.frnt .instr_row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    padding: 16px;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid #ffffff0f;
    transition: background .6s ease
}

.frnt .instr_row:hover {
    background: #076c6014
}

.frnt .instr_avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FD6289, #076C60);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff
}

.frnt .instr_info strong {
    display: block;
    font-size: 16px;
    color: #e8eaf0;
    margin-bottom: 8px
}

.frnt .instr_info span {
    font-size: 16px;
    color: #e8eaf08c
}

.frnt .team_right {
    position: relative
}

.frnt .team_img_frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 9px 52px -2px #076c6024
}

.frnt .team_img_frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.8);
    transition: filter .75s ease, transform .75s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frnt .team_img_frame:hover img {
    filter: saturate(1) brightness(0.9);
    transform: scale(1.04)
}

.frnt .team_img_badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #0d1117e0;
    border: 1px solid #fd628940;
    border-radius: 12px;
    padding: 16px;
    max-width: 240px
}

.frnt .team_img_badge strong {
    display: block;
    font-size: 24px;
    line-height: 1.15;
    color: #FD6289;
    margin-bottom: 8px
}

.frnt .team_img_badge span {
    font-size: 16px;
    line-height: 1.4;
    color: #e8eaf0b3
}

.frnt .journey {
    padding: 80px;
    background: #111620;
    position: relative
}

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

.frnt .journey_top h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0;
    color: #e8eaf0;
    max-width: 480px
}

.frnt .journey_top p {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf08c;
    max-width: 360px;
    margin: 0
}

.frnt .journey_phases {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    position: relative
}

.frnt .phase_item {
    padding: 24px;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid #ffffff0f;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    transition: background .55s ease, border-color .6s ease;
    cursor: default
}

.frnt .phase_item:hover {
    background: #fd628912;
    border-color: #fd628940
}

.frnt .phase_item:hover~.phase_item {
    background: #076c600d
}

.frnt .phase_num {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(135deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.frnt .phase_item h4 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
    color: #e8eaf0;
    font-weight: 600
}

.frnt .phase_item p {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf099;
    margin: 0
}

.frnt .phase_connector {
    position: absolute;
    top: 50%;
    right: -5px;
    width: 10px;
    height: 2px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    z-index: 1
}

.frnt .longval {
    padding: 80px;
    background: #0d1117;
    position: relative
}

.frnt .longval_scallop {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 24px;
    overflow: hidden
}

.frnt .longval_scallop svg {
    display: block;
    width: 100%;
    height: 24px
}

.frnt .longval_band {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FD6289 50%, transparent)
}

.frnt .longval_grid {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: start
}

.frnt .longval_left {
    position: relative
}

.frnt .longval_img_wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 9px 52px -2px #fd628924
}

.frnt .longval_img_wrap img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    display: block;
    filter: saturate(0.5) brightness(0.75);
    transition: filter .7s ease, transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.frnt .longval_img_wrap:hover img {
    filter: saturate(0.9) brightness(0.88);
    transform: scale(1.04)
}

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

.frnt .longval_right h2 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0;
    color: #e8eaf0
}

.frnt .longval_right p {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf0a6;
    margin: 0
}

.frnt .longval_right p.first_p {
    padding: 16px;
    background: #fd62890f;
    border-radius: 6px;
    color: #e8eaf0cc
}

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

.frnt .feat_group {
    padding: 16px;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid #ffffff0f;
    box-shadow: inset 0 1px 4px -2px #076c6014
}

.frnt .feat_group h5 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 8px;
    color: #076C60;
    letter-spacing: .08em;
    text-transform: uppercase
}

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

.frnt .feat_list li {
    font-size: 16px;
    line-height: 1.6;
    color: #e8eaf0b3;
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start
}

.frnt .feat_dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FD6289;
    flex-shrink: 0;
    margin-top: 8px
}

@media (max-width: 1024px) {
    .frnt .title_blk {
        padding: 80px 40px
    }

    .frnt .title_h1 {
        font-size: 60px
    }

    .frnt .outcomes {
        padding: 80px 40px
    }

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

    .frnt .approach {
        padding: 80px 40px
    }

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

    .frnt .team {
        padding: 80px 40px
    }

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

    .frnt .journey {
        padding: 80px 40px
    }

    .frnt .journey_phases {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .frnt .longval {
        padding: 80px 40px
    }

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

@media (max-width: 768px) {
    .frnt .title_blk {
        padding: 80px 24px
    }

    .frnt .title_h1 {
        font-size: 44px
    }

    .frnt .title_lead {
        font-size: 16px
    }

    .frnt .title_shapes {
        display: none
    }

    .frnt .outcomes {
        padding: 80px 24px
    }

    .frnt .approach {
        padding: 80px 24px
    }

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

    .frnt .team {
        padding: 80px 24px
    }

    .frnt .journey {
        padding: 80px 24px
    }

    .frnt .journey_top {
        flex-direction: column;
        align-items: flex-start
    }

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

    .frnt .phase_connector {
        display: none
    }

    .frnt .longval {
        padding: 80px 24px
    }
}

@media (max-width: 375px) {
    .frnt .title_h1 {
        font-size: 32px
    }

    .frnt .title_blk {
        padding: 40px 16px
    }

    .frnt .outcomes {
        padding: 40px 16px
    }

    .frnt .approach {
        padding: 40px 16px
    }

    .frnt .team {
        padding: 40px 16px
    }

    .frnt .journey {
        padding: 40px 16px
    }

    .frnt .longval {
        padding: 40px 16px
    }

    .frnt .btn_prim,
    .frnt .btn_out {
        padding: 16px 24px
    }
}

.cnt_pg {
    background: #0d1117;
    color: #e8eaf0;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.cnt_pg ::selection {
    background: linear-gradient(90deg, #FD6289, #076C60);
    color: #fff
}

.cnt_pg .top_band {
    background: linear-gradient(112deg, #076C60 0%, #0d1117 38%, #0d1117 62%, #FD6289 100%);
    padding: 80px 40px 40px;
    position: relative
}

.cnt_pg .top_band::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    bottom: 0;
    border-top: 1px solid #fd62892e;
    border-left: 1px solid #076c602e;
    pointer-events: none
}

.cnt_pg .top_band::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 120px;
    height: 120px;
    border-right: 1px solid #fd62891f;
    border-bottom: 1px solid #fd62891f;
    border-radius: 0 0 2px 0;
    pointer-events: none
}

.cnt_pg .band_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    max-width: 1200px
}

.cnt_pg .band_label {
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #FD6289;
    margin-bottom: 16px;
    display: block
}

.cnt_pg .band_label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #FD6289;
    vertical-align: middle;
    margin-right: 8px
}

.cnt_pg .band_h1 {
    font-size: 60px;
    line-height: 1.15;
    margin: 0 0 24px;
    background: linear-gradient(112deg, #fff 40%, #FD6289 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cnt_pg .band_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #a8b0c0;
    max-width: 420px
}

.cnt_pg .band_contacts {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid #ffffff0f;
    box-shadow: 0 6px 25px -2px #fd62891a
}

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

.cnt_pg .c_icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: #076c602e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.cnt_pg .c_icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #076C60;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cnt_pg .c_label {
    font-size: 16px;
    line-height: 1.15;
    color: #5a6478;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
    display: block
}

.cnt_pg .c_val {
    font-size: 16px;
    line-height: 1.4;
    color: #e8eaf0
}

.cnt_pg .c_val a {
    color: #e8eaf0;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cnt_pg .c_val a:hover {
    color: #FD6289
}

.cnt_pg .form_sec {
    padding: 80px 40px;
    background: #111820;
    position: relative
}

.cnt_pg .form_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #076C60 40%, #FD6289 60%, transparent)
}

.cnt_pg .form_inner {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 80px;
    max-width: 1200px
}

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

.cnt_pg .aside_h2 {
    font-size: 44px;
    line-height: 1.15;
    color: #fff;
    margin: 0
}

.cnt_pg .aside_h2 span {
    background: linear-gradient(112deg, #FD6289, #076C60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.cnt_pg .aside_desc {
    font-size: 16px;
    line-height: 1.6;
    color: #8a93a8
}

.cnt_pg .aside_desc.first {
    background: #076c601a;
    border-top: 2px solid #076c6059;
    border-radius: 2px;
    padding: 16px;
    color: #b0bac8
}

.cnt_pg .skill_rows {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.cnt_pg .sk_row {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cnt_pg .sk_meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center
}

.cnt_pg .sk_name {
    font-size: 16px;
    color: #c8d0e0
}

.cnt_pg .sk_pct {
    font-size: 16px;
    color: #FD6289;
    font-weight: 600
}

.cnt_pg .sk_track {
    height: 6px;
    background: #ffffff12;
    border-radius: 2px;
    overflow: hidden
}

.cnt_pg .sk_fill {
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(90deg, #076C60, #FD6289);
    transition: width .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.cnt_pg .form_card {
    background: #ffffff06;
    border: 1px solid #ffffff12;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 9px 52px -2px #fd628924
}

.cnt_pg .f_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.cnt_pg .f_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.cnt_pg .f_label {
    font-size: 16px;
    color: #8a93a8;
    text-transform: uppercase;
    letter-spacing: .08em
}

.cnt_pg .f_input {
    background: #ffffff0a;
    border: 1px solid #ffffff1a;
    border-radius: 6px;
    padding: 16px;
    color: #e8eaf0;
    font-size: 16px;
    outline: none;
    transition: border-color .5s ease, box-shadow .6s ease;
    width: 100%;
    box-sizing: border-box
}

.cnt_pg .f_input::placeholder {
    color: #4a5268;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .06em
}

.cnt_pg .f_input:focus {
    border-color: #076C60;
    box-shadow: 0 1px 4px -2px #076c6014 0 6px 25px -2px #076c601a
}

.cnt_pg .chk_group_label {
    font-size: 16px;
    color: #8a93a8;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    display: block
}

.cnt_pg .chk_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px
}

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

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

.cnt_pg .chk_item span {
    font-size: 16px;
    color: #c0c8d8;
    line-height: 1.4
}

.cnt_pg .privacy_row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px;
    background: #076c6012;
    border-radius: 6px
}

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

.cnt_pg .privacy_txt {
    font-size: 16px;
    color: #8a93a8;
    line-height: 1.6
}

.cnt_pg .privacy_txt a {
    color: #FD6289;
    text-decoration: none;
    transition: opacity .5s ease
}

.cnt_pg .privacy_txt a:hover {
    opacity: .75
}

.cnt_pg .btn_submit {
    background: #FD6289;
    color: #fff;
    border: 2px solid #FD6289;
    border-radius: 24px;
    padding: 16px 40px;
    font-size: 16px;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .55s ease, color .55s ease, box-shadow .65s ease, outline-offset .6s ease;
    outline: 2px solid transparent;
    outline-offset: 0;
    display: inline-block
}

.cnt_pg .btn_submit:hover {
    background: transparent;
    color: #FD6289;
    box-shadow: 0 6px 25px -2px #fd62891a;
    outline: 2px solid #FD6289;
    outline-offset: 4px
}

.cnt_pg .btn_submit:focus {
    outline: 2px solid #FD6289;
    outline-offset: 4px
}

.cnt_pg .btn_submit:active {
    background: #c04060;
    border-color: #c04060;
    color: #fff
}

.cnt_pg .loc_sec {
    padding: 80px 40px;
    background: #0d1117;
    position: relative
}

.cnt_pg .loc_sec::before {
    content: "";
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 1px;
    background: #ffffff0f
}

.cnt_pg .loc_curl {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    opacity: .08;
    pointer-events: none
}

.cnt_pg .loc_grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    max-width: 1200px;
    align-items: start
}

.cnt_pg .loc_h2 {
    font-size: 32px;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 16px
}

.cnt_pg .loc_h2::before {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    margin-bottom: 16px;
    border-radius: 2px
}

.cnt_pg .loc_txt {
    font-size: 16px;
    line-height: 1.6;
    color: #8a93a8
}

.cnt_pg .loc_details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.cnt_pg .loc_card {
    background: #ffffff06;
    border: 1px solid #ffffff0f;
    border-radius: 12px;
    padding: 24px;
    box-shadow: inset 0 2px 8px #076c600d 0 1px 4px -2px #076c6014;
    transition: border-color .65s ease, box-shadow .7s ease
}

.cnt_pg .loc_card:hover {
    border-color: #fd628940;
    box-shadow: inset 0 2px 8px #076c600d 0 6px 25px -2px #fd62891a
}

.cnt_pg .loc_card_icon {
    width: 36px;
    height: 36px;
    margin-bottom: 16px
}

.cnt_pg .loc_card_icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: #FD6289;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.cnt_pg .loc_card_h {
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .07em
}

.cnt_pg .loc_card_v {
    font-size: 16px;
    line-height: 1.6;
    color: #8a93a8
}

.cnt_pg .loc_card_v a {
    color: #8a93a8;
    text-decoration: none;
    transition: color .55s ease
}

.cnt_pg .loc_card_v a:hover {
    color: #FD6289
}

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

    .cnt_pg .band_h1 {
        font-size: 44px
    }

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

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

    .cnt_pg .loc_details {
        grid-template-columns: 1fr 1fr
    }
}

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

    .cnt_pg .band_h1 {
        font-size: 32px
    }

    .cnt_pg .form_sec {
        padding: 40px 24px
    }

    .cnt_pg .f_row {
        grid-template-columns: 1fr
    }

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

    .cnt_pg .loc_sec {
        padding: 40px 24px
    }

    .cnt_pg .loc_details {
        grid-template-columns: 1fr
    }

    .cnt_pg .form_card {
        padding: 24px
    }

    .cnt_pg .aside_h2 {
        font-size: 32px
    }
}

@media (max-width: 375px) {
    .cnt_pg .band_h1 {
        font-size: 24px
    }

    .cnt_pg .top_band {
        padding: 40px 16px
    }

    .cnt_pg .form_sec {
        padding: 40px 16px
    }

    .cnt_pg .loc_sec {
        padding: 40px 16px
    }
}

.lrn_prog {
    background: #0e0e12;
    color: #e8e4f0;
    overflow-x: clip
}

.lrn_prog .pg_container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px
}

::selection {
    background: linear-gradient(90deg, #FD6289, #076C60);
    color: #fff
}

.lrn_prog .acct_line {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, #FD6289, #076C60);
    border-radius: 2px;
    margin-bottom: 16px
}

.lrn_prog .grad_text {
    background: linear-gradient(120deg, #FD6289 30%, #076C60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lrn_prog .title_blk {
    padding: 80px 0;
    position: relative
}

.lrn_prog .title_blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #FD6289 30%, #076C60 70%, transparent 100%)
}

.lrn_prog .title_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

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

.lrn_prog .num_accent {
    font-size: 70px;
    line-height: 1.15;
    font-weight: 900;
    background: linear-gradient(120deg, #FD6289 30%, #076C60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block
}

.lrn_prog .title_h1 {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 800;
    color: #e8e4f0;
    margin: 0
}

.lrn_prog .title_desc {
    font-size: 16px;
    line-height: 1.6;
    color: #b8b4c8;
    margin: 0;
    padding: 16px;
    background: #fd62890f;
    border-radius: 6px
}

.lrn_prog .title_img_col {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn_prog .img_shape_wrap {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    border-radius: 24px 2px 24px 2px;
    overflow: hidden;
    box-shadow: 0 9px 52px -2px #fd628924;
    position: relative
}

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

.lrn_prog .img_shape_wrap:hover img {
    filter: blur(0px) brightness(1.05)
}

.lrn_prog .img_glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, #fd62892e 0%, transparent 65%);
    pointer-events: none;
    border-radius: 24px 2px 24px 2px
}

.lrn_prog .edge_line {
    position: absolute;
    left: -16px;
    top: 16px;
    bottom: 16px;
    width: 3px;
    background: linear-gradient(180deg, #FD6289 0%, #076C60 100%);
    border-radius: 2px
}

.lrn_prog .struct_blk {
    background: #fff;
    padding: 80px 0
}

.lrn_prog .struct_blk .acct_line {
    margin-bottom: 16px
}

.lrn_prog .struct_h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #0e0e12;
    margin: 0 0 8px
}

.lrn_prog .struct_sub {
    font-size: 16px;
    line-height: 1.6;
    color: #2a2a38;
    margin: 0 0 40px
}

.lrn_prog .modules_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn_prog .mod_item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    padding: 24px;
    background: #f2f0f8;
    border-radius: 12px;
    box-shadow: 0 1px 4px -2px #076c6014;
    transition: box-shadow .6s ease, transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.lrn_prog .mod_item:hover {
    box-shadow: 0 6px 25px -2px #076c601a;
    transform: translateX(8px)
}

.lrn_prog .mod_num {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    background: linear-gradient(120deg, #FD6289 30%, #076C60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center
}

.lrn_prog .mod_body {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn_prog .mod_title {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    color: #0e0e12;
    margin: 0
}

.lrn_prog .mod_text {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a50;
    margin: 0
}

.lrn_prog .mod_tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #076C60;
    font-weight: 600;
    padding: 8px 16px;
    background: #076c6014;
    border-radius: 6px;
    align-self: flex-start
}

.lrn_prog .stats_blk {
    background: #13131a;
    padding: 80px 0
}

.lrn_prog .stats_top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px
}

.lrn_prog .stats_h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #e8e4f0;
    margin: 0
}

.lrn_prog .stats_body {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn_prog .stats_p {
    font-size: 16px;
    line-height: 1.6;
    color: #b8b4c8;
    margin: 0
}

.lrn_prog .stats_p_open {
    font-size: 16px;
    line-height: 1.6;
    color: #e8e4f0;
    margin: 0;
    padding: 16px;
    background: #fd628912;
    border-radius: 6px
}

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

.lrn_prog .stat_shape {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 40px 16px;
    border: 2px solid #fd62894d;
    border-radius: 12px;
    text-align: center;
    transition: border-color .7s ease, box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden
}

.lrn_prog .stat_shape::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fd62890a 0%, #076c600a 100%);
    border-radius: 12px;
    pointer-events: none
}

.lrn_prog .stat_shape:hover {
    border-color: #FD6289;
    box-shadow: 0 6px 25px -2px #fd62891a
}

.lrn_prog .stat_num {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 900;
    background: linear-gradient(120deg, #FD6289 30%, #076C60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lrn_prog .stat_label {
    font-size: 16px;
    line-height: 1.4;
    color: #b8b4c8;
    font-weight: 600
}

.lrn_prog .outcomes_grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.lrn_prog .outcome_card {
    padding: 24px;
    background: #ffffff08;
    border-radius: 12px;
    border: 1px solid #e8e4f014;
    box-shadow: inset 0 2px 8px #fd62890a;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background .65s ease
}

.lrn_prog .outcome_card:hover {
    background: #fd62890f
}

.lrn_prog .outcome_icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn_prog .outcome_h4 {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #e8e4f0;
    margin: 0
}

.lrn_prog .outcome_p {
    font-size: 16px;
    line-height: 1.6;
    color: #8884a0;
    margin: 0
}

.lrn_prog .faq_blk {
    background: #0e0e12;
    padding: 80px 0
}

.lrn_prog .faq_grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start
}

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

.lrn_prog .faq_h2 {
    font-size: 44px;
    line-height: 1.15;
    font-weight: 800;
    color: #e8e4f0;
    margin: 0
}

.lrn_prog .faq_note {
    font-size: 16px;
    line-height: 1.6;
    color: #8884a0;
    margin: 0
}

.lrn_prog .faq_contact_btn {
    display: inline-block;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid #FD6289;
    border-radius: 6px;
    color: #FD6289;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: background .55s ease, color .55s ease, border-color .55s ease;
    outline-offset: 0
}

.lrn_prog .faq_contact_btn:hover {
    background: #FD6289;
    color: #0e0e12;
    outline: 3px solid #FD6289;
    outline-offset: 4px
}

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

.lrn_prog .faq_item {
    border: 1px solid #e8e4f01a;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .6s ease
}

.lrn_prog .faq_item:hover {
    border-color: #fd628966
}

.lrn_prog .faq_trigger {
    width: 100%;
    background: #ffffff05;
    border: none;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background .5s ease
}

.lrn_prog .faq_trigger:hover {
    background: #fd62890f
}

.lrn_prog .faq_q {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #e8e4f0;
    margin: 0
}

.lrn_prog .faq_icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    border: 2px solid #fd628980;
    display: flex;
    align-items: center;
    justify-content: center
}

.lrn_prog .faq_icon svg {
    transition: transform .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.lrn_prog .faq_answer {
    display: none;
    padding: 0 24px 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #8884a0
}

.lrn_prog .faq_item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none
}

.lrn_prog .faq_item input:checked~.faq_trigger .faq_icon svg {
    transform: rotate(45deg)
}

.lrn_prog .faq_item input:checked~.faq_answer {
    display: block !important
}

.lrn_prog .faq_trigger_label {
    width: 100%;
    background: #ffffff05;
    border: none;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    transition: background .5s ease
}

.lrn_prog .faq_trigger_label:hover {
    background: #fd62890f
}

@keyframes wave_in {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.lrn_prog .wave_row {
    opacity: 0;
    animation: wave_in .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.lrn_prog .wave_row:nth-child(1) {
    animation-delay: .1s
}

.lrn_prog .wave_row:nth-child(2) {
    animation-delay: .22s
}

.lrn_prog .wave_row:nth-child(3) {
    animation-delay: .34s
}

.lrn_prog .wave_row:nth-child(4) {
    animation-delay: .46s
}

.lrn_prog .wave_row:nth-child(5) {
    animation-delay: .58s
}

.lrn_prog .trace_outline {
    position: relative
}

.lrn_prog .trace_outline::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid transparent;
    border-radius: 14px;
    transition: border-color .65s ease, inset .65s ease;
    pointer-events: none
}

.lrn_prog .trace_outline:hover::after {
    inset: -8px;
    border-color: #fd628980
}

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

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

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

    .lrn_prog .faq_aside {
        position: static
    }

    .lrn_prog .stat_shapes {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 768px) {
    .lrn_prog .pg_container {
        padding: 0 24px
    }

    .lrn_prog .title_h1 {
        font-size: 44px
    }

    .lrn_prog .num_accent {
        font-size: 60px
    }

    .lrn_prog .stat_shapes {
        grid-template-columns: 1fr 1fr
    }

    .lrn_prog .outcomes_grid {
        grid-template-columns: 1fr
    }

    .lrn_prog .mod_item {
        grid-template-columns: 56px 1fr;
        gap: 16px
    }

    .lrn_prog .struct_h2 {
        font-size: 32px
    }

    .lrn_prog .stats_h2 {
        font-size: 32px
    }

    .lrn_prog .faq_h2 {
        font-size: 32px
    }
}

@media (max-width: 375px) {
    .lrn_prog .pg_container {
        padding: 0 16px
    }

    .lrn_prog .title_h1 {
        font-size: 32px
    }

    .lrn_prog .num_accent {
        font-size: 44px
    }

    .lrn_prog .stat_shapes {
        grid-template-columns: 1fr
    }

    .lrn_prog .title_blk {
        padding: 40px 0
    }

    .lrn_prog .struct_blk {
        padding: 40px 0
    }

    .lrn_prog .stats_blk {
        padding: 40px 0
    }

    .lrn_prog .faq_blk {
        padding: 40px 0
    }
}

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

.success_page .success_wrap {
    max-width: 560px;
    width: 100%;
    background: #0a1f1b;
    border-radius: 24px;
    padding: 80px 40px;
    box-shadow: 0 1px 4px -2px #fd628914 0 6px 25px -2px #fd62891a 0 9px 52px -2px #fd628924;
    text-align: center;
    position: relative;
    overflow: hidden
}

.success_page .success_wrap::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(105deg, #FD6289 0%, #076C60 100%);
    border-radius: 0 0 6px 6px
}

.success_page .icon_wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    border-radius: 40px;
    background: #0d2a24;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 12px #076c602e
}

.success_page .icon_wrap svg {
    display: block
}

.success_page .success_heading {
    font-size: 32px;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: 0
}

.success_page .success_heading span {
    background: linear-gradient(105deg, #FD6289 0%, #076C60 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.success_page .success_text {
    font-size: 16px;
    line-height: 1.6;
    color: #8ab8b2;
    margin: 0 0 40px
}

.success_page .success_link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
    background: transparent;
    border: 2px solid #FD6289;
    border-radius: 12px;
    padding: 16px 40px;
    text-decoration: none;
    transition: border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s ease, box-shadow .7s ease;
    box-shadow: 0 1px 4px -2px #fd628914;
    outline-offset: 4px
}

.success_page .success_link:hover {
    color: #FD6289;
    border-color: #fff;
    box-shadow: 0 6px 25px -2px #fd62891a
}

.success_page .success_link:focus-visible {
    outline: 2px solid #FD6289;
    outline-offset: 4px
}

.success_page .success_link:active {
    box-shadow: inset 0 2px 8px #fd62891f
}

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

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

@media (max-width: 375px) {
    .success_page {
        padding: 40px 16px
    }

    .success_page .success_wrap {
        padding: 40px 16px
    }
}