body {
    margin: 0
}

.pg-shell {
    box-sizing: border-box;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px
}

.site-hdr {
    box-sizing: border-box;
    position: relative;
    background: #FAFCFC;
    border-bottom: 2px solid #A9D9D4;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    overflow: visible
}

.site-hdr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3DC1A5 0%, #A9D9D4 60%, #3DC1A5 100%)
}

.hdr-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 24px;
    gap: 24px;
    max-width: 1366px;
    margin: 0 auto
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    grid-column: 2;
    text-decoration: none
}

.brand-icon-wrap {
    box-sizing: border-box;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff;
    border: 2px solid #A9D9D4;
    box-shadow: 2px 4px 22px 0 #3dc1a514 0 0 0 3px #3dc1a51a;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.brand-icon-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block
}

.brand-lbl {
    font-family: 'Cabin', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1a3a34;
    text-align: center
}

.nav-left {
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-right {
    grid-column: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-item {
    position: relative
}

.nav-lnk {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #1a3a34;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    background: transparent;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease;
    white-space: nowrap;
    min-height: 44px
}

.nav-lnk:hover,
.nav-lnk:focus {
    color: #3DC1A5;
    border-color: #A9D9D4;
    background: #3dc1a50f;
    outline: none
}

.nav-lnk:focus-visible {
    outline: 3px solid;
    outline-color: #3DC1A5;
    outline-offset: 2px
}

.nav-item-has-sub>.nav-lnk::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .5s ease
}

.nav-item-has-sub:hover>.nav-lnk::after,
.nav-item-has-sub:focus-within>.nav-lnk::after {
    transform: rotate(225deg) translateY(-2px)
}

.nav-sub {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1.5px solid #A9D9D4;
    border-radius: 8px;
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    list-style: none;
    margin: 0;
    padding: 8px;
    min-width: 200px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
    z-index: 200
}

.nav-item-has-sub:hover .nav-sub,
.nav-item-has-sub:focus-within .nav-sub {
    opacity: 1;
    pointer-events: auto
}

.nav-sub-lnk {
    display: block;
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #1a3a34;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background .6s ease, color .6s ease;
    min-height: 44px;
    display: flex;
    align-items: center
}

.nav-sub-lnk:hover,
.nav-sub-lnk:focus {
    background: #3dc1a514;
    color: #3DC1A5;
    outline: none
}

.nav-sub-lnk:focus-visible {
    outline: 3px solid #3DC1A5;
    outline-offset: 2px
}

@media (max-width: 1024px) {
    .hdr-grid {
        grid-template-columns: 1fr auto 1fr;
        gap: 16px;
        padding: 16px
    }

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

@media (max-width: 640px) {
    .hdr-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        justify-items: center;
        gap: 16px;
        padding: 16px
    }

    .brand-block {
        grid-column: 1
    }

    .nav-left {
        grid-column: 1;
        justify-content: center;
        flex-wrap: wrap
    }

    .nav-right {
        grid-column: 1;
        justify-content: center;
        flex-wrap: wrap
    }
}

.site-ftr {
    box-sizing: border-box;
    background: #A9D9D4;
    border-top: 2px solid #3DC1A5;
    box-shadow: 2px 1px 2px 0 #3dc1a50f inset;
    padding: 48px 0 24px
}

.ftr-grid {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: start
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
}

.ftr-logo-wrap {
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #fff;
    border: 2px solid #3DC1A5;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.ftr-logo-wrap img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block
}

.ftr-tagline {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #1a3a34;
    margin: 0
}

.ftr-nav-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ftr-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0
}

.ftr-link-item {
    display: flex;
    align-items: center
}

.ftr-link-item+.ftr-link-item::before {
    content: '';
    display: inline-block;
    width: 1px;
    height: 16px;
    background: #3DC1A5;
    margin: 0 8px
}

.ftr-lnk {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #1a3a34;
    text-decoration: none;
    padding: 8px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    transition: color .7s ease, border-color .7s ease, background .6s ease;
    min-height: 44px;
    display: flex;
    align-items: center
}

.ftr-lnk:hover,
.ftr-lnk:focus {
    color: #3DC1A5;
    border-color: #3dc1a566;
    background: #ffffff80;
    outline: none
}

.ftr-lnk:focus-visible {
    outline: 3px solid #3DC1A5;
    outline-offset: 2px
}

.ftr-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end
}

.ftr-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1a3a34
}

.ftr-contact-lnk {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #1a3a34;
    text-decoration: none;
    border-bottom: 1px solid #3dc1a580;
    transition: color .6s ease, border-color .6s ease
}

.ftr-contact-lnk:hover,
.ftr-contact-lnk:focus {
    color: #2a8a76;
    border-color: #3DC1A5;
    outline: none
}

.ftr-contact-lnk:focus-visible {
    outline: 3px solid #3DC1A5;
    outline-offset: 2px
}

.ftr-contact-icon {
    font-size: 20px;
    color: #3DC1A5;
    flex-shrink: 0
}

.ftr-bottom {
    box-sizing: border-box;
    max-width: 1366px;
    margin: 48px auto 0;
    padding: 24px 24px 0;
    border-top: 1px solid #3dc1a54d;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.ftr-copy {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #2a5a50;
    margin: 0
}

@media (max-width: 640px) {
    .ftr-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ftr-contact {
        align-items: flex-start
    }

    .ftr-bottom {
        flex-direction: column;
        align-items: flex-start
    }

    .ftr-links {
        flex-direction: column;
        align-items: flex-start
    }

    .ftr-link-item+.ftr-link-item::before {
        display: none
    }
}

.consent-bar {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #3DC1A5;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    z-index: 1500;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.consent-msg {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1a3a34;
    margin: 0;
    flex: 1;
    min-width: 200px
}

.consent-policy-lnk {
    color: #3DC1A5;
    text-decoration: underline;
    font-weight: 700
}

.consent-policy-lnk:hover {
    color: #2a8a76
}

.consent-btns {
    display: flex;
    gap: 8px;
    flex-shrink: 0
}

.consent-btn {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    padding: 8px 24px;
    border-radius: 8px;
    border: 2px solid #3DC1A5;
    background: transparent;
    color: #3DC1A5;
    cursor: pointer;
    min-height: 44px;
    transition: background .6s ease, color .6s ease, width .6s ease
}

.consent-btn:hover,
.consent-btn:focus {
    background: #3DC1A5;
    color: #fff;
    outline: none
}

.consent-btn:focus-visible {
    outline: 3px solid #3DC1A5;
    outline-offset: 2px
}

.consent-mini {
    box-sizing: border-box;
    position: fixed;
    bottom: 16px;
    right: 16px;
    background: #fff;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    z-index: 1400;
    padding: 8px 16px;
    display: none
}

.consent-mini-btn {
    font-family: 'Cabin', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #1a3a34;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .6s ease
}

.consent-mini-btn:hover,
.consent-mini-btn:focus {
    color: #3DC1A5;
    outline: none
}

.consent-mini-btn:focus-visible {
    outline: 3px solid #3DC1A5;
    outline-offset: 2px
}

.policy-uf-details {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 48px
}

.policy-uf-details h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2a28;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #A9D9D4
}

.policy-uf-details h2 {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1b2a28;
    margin-top: 48px;
    margin-bottom: 16px
}

.policy-uf-details h3 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #1b2a28;
    margin-top: 24px;
    margin-bottom: 16px
}

.policy-uf-details h4 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #1b2a28;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.policy-uf-details h5 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #2e4a45;
    margin-top: 16px;
    margin-bottom: 8px
}

.policy-uf-details h6 {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #3DC1A5;
    margin-top: 16px;
    margin-bottom: 8px
}

.policy-uf-details p {
    font-size: 15px;
    line-height: 1.8;
    letter-spacing: .01em;
    color: #2a3d3a;
    margin-bottom: 16px
}

.policy-uf-details strong,
.policy-uf-details b {
    font-weight: 700;
    color: #1b2a28
}

.policy-uf-details a {
    color: #3DC1A5;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color .5s ease
}

.policy-uf-details a:hover {
    color: #1b2a28;
    text-decoration-color: #3DC1A5
}

.policy-uf-details hr {
    border: none;
    border-top: 1px solid #A9D9D4;
    margin-top: 48px;
    margin-bottom: 48px
}

.policy-uf-details div {
    font-size: 15px;
    line-height: 1.8;
    color: #2a3d3a
}

.policy-uf-details table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.policy-uf-details thead {
    background-color: #A9D9D4
}

.policy-uf-details thead th {
    color: #1b2a28;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: left;
    padding: 16px 24px;
    font-size: 15px
}

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

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

.policy-uf-details tbody tr:hover {
    background-color: #FAFCFC
}

.policy-uf-details td {
    padding: 16px 24px;
    color: #2a3d3a;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.8
}

.policy-uf-details th {
    padding: 16px 24px;
    text-align: left
}

@media (max-width: 1024px) {
    .policy-uf-details {
        padding: 96px 24px
    }

    .policy-uf-details h1 {
        font-size: 50px
    }
}

@media (max-width: 640px) {
    .policy-uf-details {
        padding: 48px 16px
    }

    .policy-uf-details h1 {
        font-size: 26px
    }

    .policy-uf-details h2 {
        font-size: 20px
    }

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

.lrn-prog-dtl {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip
}

.lrn-prog-dtl .pg-band {
    width: 100%;
    position: relative;
    padding: 48px 48px 0;
    background: #FAFCFC
}

.lrn-prog-dtl .pg-band-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    max-width: 1366px;
    margin: 0 auto
}

.lrn-prog-dtl .pg-text-col {
    flex: 1 1 0;
    min-width: 0
}

.lrn-prog-dtl .pg-meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.lrn-prog-dtl .pg-tag {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #3DC1A5;
    color: #3DC1A5;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .04em
}

.lrn-prog-dtl .pg-userfmt {
    font-size: 15px;
    line-height: 1.5;
    color: #2a6b5e;
    letter-spacing: .03em;
    background: #e8f7f4;
    padding: 8px 16px;
    border-radius: 8px
}

.lrn-prog-dtl .pg-readtime {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    letter-spacing: .03em
}

.lrn-prog-dtl .pg-views {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.lrn-prog-dtl .pg-views svg {
    flex-shrink: 0
}

.lrn-prog-dtl .pg-h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    background: linear-gradient(211deg, #3DC1A5 30%, #1a7a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lrn-prog-dtl .pg-h1 em {
    font-style: normal;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1.5px #3DC1A5;
    background: none
}

.lrn-prog-dtl .pg-desc-short {
    font-size: 20px;
    line-height: 1.5;
    color: #1c3b35;
    margin-bottom: 24px;
    max-width: 640px
}

.lrn-prog-dtl .pg-img-wrap {
    flex: 0 0 420px;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.lrn-prog-dtl .pg-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 20px
}

.lrn-prog-dtl .pg-img-vignette {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(circle at 100% 0%, #0a282361 0%, transparent 60%), radial-gradient(circle at 0% 100%, #0a282347 0%, transparent 55%);
    pointer-events: none
}

.lrn-prog-dtl .pg-wave-divider {
    width: 100%;
    line-height: 0;
    margin-top: 48px
}

.lrn-prog-dtl .pg-wave-divider svg {
    display: block;
    width: 100%
}

.lrn-prog-dtl .cross-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 0;
    overflow: hidden
}

.lrn-prog-dtl .cross-divider span {
    display: block;
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0
}

.lrn-prog-dtl .cross-divider span::before,
.lrn-prog-dtl .cross-divider span::after {
    content: "";
    position: absolute;
    background: #A9D9D4;
    border-radius: 2px
}

.lrn-prog-dtl .cross-divider span::before {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0
}

.lrn-prog-dtl .cross-divider span::after {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px
}

.lrn-prog-dtl .prog-sect {
    padding: 48px;
    background: #fff;
    position: relative
}

.lrn-prog-dtl .prog-sect-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.lrn-prog-dtl .prog-left {
    flex: 1 1 0;
    min-width: 0
}

.lrn-prog-dtl .prog-right {
    flex: 0 0 340px;
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog-dtl .prog-h2 {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 24px;
    background: linear-gradient(211deg, #3DC1A5 20%, #1a7a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lrn-prog-dtl .prog-content {
    font-size: 15px;
    line-height: 1.8;
    color: #1c3b35
}

.lrn-prog-dtl .prog-content p {
    margin-bottom: 16px
}

.lrn-prog-dtl .prog-content ol {
    padding-left: 24px;
    margin-bottom: 16px
}

.lrn-prog-dtl .prog-content li {
    margin-bottom: 8px;
    line-height: 1.8
}

.lrn-prog-dtl .prog-content h2 {
    font-size: 20px;
    line-height: 1.5;
    color: #1c3b35;
    margin-bottom: 16px;
    margin-top: 24px
}

.lrn-prog-dtl .prog-content blockquote {
    border-top: 2px solid #3DC1A5;
    border-bottom: 2px solid #3DC1A5;
    padding: 16px 24px;
    margin: 24px 0;
    color: #2a6b5e;
    font-size: 20px;
    line-height: 1.5
}

.lrn-prog-dtl .prog-content cite {
    font-size: 15px;
    color: #555;
    font-style: normal
}

.lrn-prog-dtl .prog-content figure {
    margin: 24px 0
}

.lrn-prog-dtl .prog-content figcaption {
    font-size: 15px;
    color: #555;
    margin-top: 8px
}

.lrn-prog-dtl .prog-content details {
    border: 2px solid #A9D9D4;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px
}

.lrn-prog-dtl .prog-content summary {
    font-size: 15px;
    font-weight: 600;
    color: #2a6b5e;
    cursor: pointer;
    line-height: 1.5
}

.lrn-prog-dtl .price-card {
    border: 2px solid #3DC1A5;
    border-radius: 20px;
    padding: 24px;
    background: #FAFCFC;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog-dtl .price-amt {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1c3b35
}

.lrn-prog-dtl .price-terms {
    font-size: 15px;
    line-height: 1.5;
    color: #2a6b5e
}

.lrn-prog-dtl .price-note {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    font-style: italic
}

.lrn-prog-dtl .enrol-btn {
    display: block;
    text-align: center;
    padding: 16px 24px;
    border-radius: 48px;
    border: 2px solid #3DC1A5;
    color: #3DC1A5;
    font-size: 15px;
    letter-spacing: .04em;
    text-decoration: none;
    background: transparent;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease, color .5s ease;
    cursor: pointer
}

.lrn-prog-dtl .enrol-btn:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 32px
}

.lrn-prog-dtl .enrol-btn:focus {
    outline: 3px solid #1a7a68;
    outline-offset: 3px
}

.lrn-prog-dtl .enrol-btn:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a52e
}

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

.lrn-prog-dtl .stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-radius: 8px;
    background: #e8f7f4;
    font-size: 15px;
    line-height: 1.5;
    color: #1c3b35
}

.lrn-prog-dtl .stat-item strong {
    color: #2a6b5e
}

.lrn-prog-dtl .seats-badge {
    padding: 8px 16px;
    border-radius: 8px;
    background: #fff3e0;
    border: 2px solid #e6a020;
    font-size: 15px;
    line-height: 1.5;
    color: #7a4800;
    text-align: center
}

.lrn-prog-dtl .prog-decor-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 0 0 200px
}

.lrn-prog-dtl .prog-decor-circles svg {
    position: absolute;
    top: -60px;
    right: -60px
}

.lrn-prog-dtl .desc-sect {
    padding: 48px;
    background: linear-gradient(211deg, #e8f7f4 30%, #FAFCFC 100%);
    position: relative
}

.lrn-prog-dtl .desc-sect-inner {
    max-width: 1366px;
    margin: 0 auto
}

.lrn-prog-dtl .desc-h2 {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin-bottom: 24px;
    background: linear-gradient(211deg, #3DC1A5 20%, #1a7a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lrn-prog-dtl .desc-body {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.lrn-prog-dtl .desc-text {
    flex: 1 1 0;
    min-width: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #1c3b35
}

.lrn-prog-dtl .desc-text p {
    margin-bottom: 16px
}

.lrn-prog-dtl .desc-text h2 {
    font-size: 20px;
    line-height: 1.5;
    color: #1c3b35;
    margin-bottom: 16px;
    margin-top: 24px
}

.lrn-prog-dtl .desc-text h3 {
    font-size: 15px;
    line-height: 1.5;
    color: #2a6b5e;
    margin-bottom: 8px;
    margin-top: 16px;
    font-weight: 700
}

.lrn-prog-dtl .desc-text ul,
.lrn-prog-dtl .desc-text ol {
    padding-left: 24px;
    margin-bottom: 16px
}

.lrn-prog-dtl .desc-text li {
    margin-bottom: 8px;
    line-height: 1.8
}

.lrn-prog-dtl .desc-text blockquote {
    border-top: 2px solid #3DC1A5;
    border-bottom: 2px solid #3DC1A5;
    padding: 16px 24px;
    margin: 24px 0;
    color: #2a6b5e;
    font-size: 20px;
    line-height: 1.5
}

.lrn-prog-dtl .desc-text strong {
    color: #1a7a68
}

.lrn-prog-dtl .desc-text em {
    font-style: italic
}

.lrn-prog-dtl .desc-text dl {
    margin-bottom: 16px
}

.lrn-prog-dtl .desc-text dt {
    font-weight: 700;
    color: #2a6b5e;
    margin-top: 8px
}

.lrn-prog-dtl .desc-text dd {
    margin-left: 24px;
    color: #1c3b35
}

.lrn-prog-dtl .desc-text details {
    border: 2px solid #A9D9D4;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px
}

.lrn-prog-dtl .desc-text summary {
    font-size: 15px;
    font-weight: 600;
    color: #2a6b5e;
    cursor: pointer;
    line-height: 1.5
}

.lrn-prog-dtl .fact-col {
    flex: 0 0 280px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog-dtl .fact-blk {
    border-radius: 20px;
    padding: 24px;
    background: #fff;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    border: 2px solid #A9D9D4;
    animation: shadow-pulse 3.5s ease infinite
}

@keyframes shadow-pulse {
    0% {
        box-shadow: 2px 4px 22px 0 #3dc1a514
    }

    50% {
        box-shadow: 2px 10px 60px 0 #3dc1a52e
    }

    100% {
        box-shadow: 2px 4px 22px 0 #3dc1a514
    }
}

.lrn-prog-dtl .fact-blk-label {
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    letter-spacing: .04em;
    margin-bottom: 8px
}

.lrn-prog-dtl .fact-blk-val {
    font-size: 26px;
    line-height: 1.1;
    color: #1c3b35;
    letter-spacing: -.01em
}

.lrn-prog-dtl .fact-blk-note {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    margin-top: 8px
}

.lrn-prog-dtl .desc-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    pointer-events: none;
    overflow: hidden
}

.lrn-prog-dtl .desc-decor svg {
    position: absolute;
    bottom: -50px;
    left: -50px;
    opacity: .12
}

.lrn-prog-dtl .engage-sect {
    padding: 96px 48px 48px;
    background: #fff;
    position: relative
}

.lrn-prog-dtl .engage-sect-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.lrn-prog-dtl .poll-col {
    flex: 0 0 380px;
    max-width: 380px
}

.lrn-prog-dtl .poll-h3 {
    font-size: 20px;
    line-height: 1.5;
    color: #1c3b35;
    margin-bottom: 16px;
    letter-spacing: -.01em
}

.lrn-prog-dtl .poll-form {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog-dtl .poll-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #A9D9D4;
    cursor: pointer;
    transition: border-color .5s ease, background .6s ease;
    background: #FAFCFC
}

.lrn-prog-dtl .poll-opt:has(input:checked) {
    border-color: #3DC1A5;
    background: #e8f7f4
}

.lrn-prog-dtl .poll-radio {
    width: 20px;
    height: 20px;
    border-radius: 48px;
    border: 2px solid #A9D9D4;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    cursor: pointer;
    transition: border-color .5s ease, background .5s ease;
    box-shadow: 2px 1px 2px 0 #3dc1a50f
}

.lrn-prog-dtl .poll-radio:checked {
    border-color: #3DC1A5;
    background: #3DC1A5;
    box-shadow: inset 2px 1px 2px 0 #3dc1a54d
}

.lrn-prog-dtl .poll-radio:focus {
    outline: 3px solid #3DC1A5;
    outline-offset: 2px
}

.lrn-prog-dtl .poll-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #1c3b35;
    cursor: pointer
}

.lrn-prog-dtl .poll-submit {
    margin-top: 8px;
    padding: 16px 24px;
    border-radius: 48px;
    border: 2px solid #3DC1A5;
    color: #3DC1A5;
    font-size: 15px;
    background: transparent;
    cursor: pointer;
    transition: padding .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease, color .5s ease;
    align-self: flex-start
}

.lrn-prog-dtl .poll-submit:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 32px
}

.lrn-prog-dtl .poll-submit:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a533
}

.lrn-prog-dtl .poll-submit:focus {
    outline: 3px solid #1a7a68;
    outline-offset: 3px
}

.lrn-prog-dtl .report-col {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog-dtl .report-h3 {
    font-size: 20px;
    line-height: 1.5;
    color: #1c3b35;
    margin-bottom: 8px
}

.lrn-prog-dtl .report-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #555
}

.lrn-prog-dtl .report-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 8px;
    border: 2px solid #A9D9D4;
    color: #2a6b5e;
    font-size: 15px;
    text-decoration: none;
    background: #FAFCFC;
    transition: border-color .6s ease, background .5s ease, padding .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start
}

.lrn-prog-dtl .report-link:hover {
    border-color: #3DC1A5;
    background: #e8f7f4;
    padding: 16px 32px
}

.lrn-prog-dtl .report-link:focus {
    outline: 3px solid #3DC1A5;
    outline-offset: 3px
}

.lrn-prog-dtl .engage-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    pointer-events: none;
    overflow: hidden
}

.lrn-prog-dtl .engage-decor svg {
    position: absolute;
    top: -40px;
    right: -40px;
    opacity: .1
}

@keyframes diag-reveal {
    0% {
        opacity: 0;
        transform: translateY(16px) translateX(8px)
    }

    100% {
        opacity: 1;
        transform: translateY(0) translateX(0)
    }
}

.lrn-prog-dtl .pg-text-col,
.lrn-prog-dtl .pg-img-wrap {
    animation: diag-reveal .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

.lrn-prog-dtl .pg-img-wrap {
    animation-delay: .15s
}

.lrn-prog-dtl .price-card {
    animation: diag-reveal .7s cubic-bezier(0.25, 0.46, 0.45, 0.94) .1s both
}

.lrn-prog-dtl .fact-blk:nth-child(1) {
    animation: diag-reveal .6s ease .05s both, shadow-pulse 3.5s ease infinite .65s
}

.lrn-prog-dtl .fact-blk:nth-child(2) {
    animation: diag-reveal .6s ease .12s both, shadow-pulse 3.5s ease infinite .72s
}

.lrn-prog-dtl .fact-blk:nth-child(3) {
    animation: diag-reveal .6s ease .2s both, shadow-pulse 3.5s ease infinite .8s
}

@media (max-width: 1024px) {
    .lrn-prog-dtl .pg-band {
        padding: 48px 24px 0
    }

    .lrn-prog-dtl .pg-band-inner {
        flex-direction: column;
        gap: 24px
    }

    .lrn-prog-dtl .pg-img-wrap {
        flex: none;
        max-width: 100%;
        width: 100%
    }

    .lrn-prog-dtl .pg-img-wrap img {
        height: 260px
    }

    .lrn-prog-dtl .pg-h1 {
        font-size: 50px
    }

    .lrn-prog-dtl .prog-sect {
        padding: 48px 24px
    }

    .lrn-prog-dtl .prog-sect-inner {
        flex-direction: column
    }

    .lrn-prog-dtl .prog-right {
        flex: none;
        max-width: 100%;
        width: 100%
    }

    .lrn-prog-dtl .desc-sect {
        padding: 48px 24px
    }

    .lrn-prog-dtl .desc-body {
        flex-direction: column
    }

    .lrn-prog-dtl .fact-col {
        flex: none;
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap
    }

    .lrn-prog-dtl .fact-blk {
        flex: 1 1 200px
    }

    .lrn-prog-dtl .engage-sect {
        padding: 48px 24px
    }

    .lrn-prog-dtl .engage-sect-inner {
        flex-direction: column
    }

    .lrn-prog-dtl .poll-col {
        flex: none;
        max-width: 100%;
        width: 100%
    }
}

@media (max-width: 640px) {
    .lrn-prog-dtl .pg-band {
        padding: 24px 16px 0
    }

    .lrn-prog-dtl .pg-h1 {
        font-size: 26px
    }

    .lrn-prog-dtl .pg-desc-short {
        font-size: 15px
    }

    .lrn-prog-dtl .price-amt {
        font-size: 26px
    }

    .lrn-prog-dtl .prog-sect {
        padding: 24px 16px
    }

    .lrn-prog-dtl .desc-sect {
        padding: 24px 16px
    }

    .lrn-prog-dtl .engage-sect {
        padding: 24px 16px
    }

    .lrn-prog-dtl .fact-col {
        flex-direction: column
    }

    .lrn-prog-dtl .pg-meta-row {
        gap: 8px
    }
}

.innov-pg {
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden
}

.innov-pg .title-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    padding: 96px 48px 48px;
    align-items: center;
    position: relative
}

.innov-pg .title-row::before {
    content: '';
    position: absolute;
    top: 48px;
    right: 48px;
    width: 180px;
    height: 180px;
    border: 2px dashed #3dc1a547;
    border-radius: 48px;
    pointer-events: none;
    z-index: 0
}

.innov-pg .title-left {
    position: relative;
    z-index: 1
}

.innov-pg .tag-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #3DC1A5;
    border: 1px solid #3DC1A5;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 24px
}

.innov-pg .pg-h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    background: linear-gradient(211deg, #3DC1A5 18%, #1a7a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.innov-pg .pg-h1 em {
    font-style: italic
}

.innov-pg .title-desc {
    font-size: 20px;
    line-height: 1.8;
    color: #2c4a44;
    max-width: 520px;
    margin-bottom: 24px
}

.innov-pg .title-desc span {
    font-style: italic
}

.innov-pg .title-cta {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .04em;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 20px;
    padding: 16px 24px;
    background: transparent;
    text-decoration: none;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease, color .5s ease
}

.innov-pg .title-cta:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 48px
}

.innov-pg .title-img-col {
    position: relative;
    z-index: 1
}

.innov-pg .title-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    position: relative
}

.innov-pg .title-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(211deg, #3dc1a52e 0%, #a9d9d414 100%);
    pointer-events: none
}

.innov-pg .title-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(1.1) brightness(1.02)
}

.innov-pg .deco-dot {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    border-radius: 48px;
    background: #3dc1a51f;
    pointer-events: none
}

.innov-pg .wave-div {
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.innov-pg .wave-div svg {
    display: block;
    width: 100%
}

.innov-pg .process-band {
    background: #FAFCFC;
    padding: 96px 48px;
    position: relative
}

.innov-pg .process-band::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(211deg, #3DC1A5 18%, #A9D9D4 100%);
    border-radius: 8px 0 0 8px;
    pointer-events: none
}

.innov-pg .proc-head {
    text-align: center;
    margin-bottom: 48px
}

.innov-pg .proc-h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.015em;
    background: linear-gradient(211deg, #3DC1A5 18%, #1a7a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px
}

.innov-pg .proc-sub {
    font-size: 20px;
    line-height: 1.5;
    color: #2c4a44;
    max-width: 560px;
    margin: 0 auto
}

.innov-pg .flow-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    margin-bottom: 48px
}

.innov-pg .flow-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    position: relative
}

.innov-pg .flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 18px solid #3DC1A5;
    z-index: 2
}

.innov-pg .step-icon-bg {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: linear-gradient(211deg, #3DC1A5 18%, #A9D9D4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    flex-shrink: 0
}

.innov-pg .step-icon-bg svg {
    width: 28px;
    height: 28px;
    fill: #fff
}

.innov-pg .step-num {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .06em;
    color: #3DC1A5;
    margin-bottom: 8px;
    font-weight: 700
}

.innov-pg .step-h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #1a3530;
    margin-bottom: 8px
}

.innov-pg .step-p {
    font-size: 15px;
    line-height: 1.8;
    color: #3a5a55
}

.innov-pg .flow-step-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #3dc1a52e;
    box-shadow: 2px 1px 2px 0 #3dc1a50f;
    transition: box-shadow .7s ease, transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 24px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative
}

.innov-pg .flow-step-card:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    transform: translateY(-4px)
}

.innov-pg .flow-arrow {
    display: flex;
    align-items: center;
    padding: 0 8px;
    flex-shrink: 0;
    align-self: center
}

.innov-pg .flow-arrow svg {
    width: 24px;
    height: 24px;
    fill: #3DC1A5
}

.innov-pg .split-lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 0
}

.innov-pg .lower-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    position: relative
}

.innov-pg .lower-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block
}

.innov-pg .lower-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(211deg, transparent 50%, #3dc1a526 100%);
    pointer-events: none;
    z-index: 1
}

.innov-pg .lower-txt {
    padding: 0
}

.innov-pg .lower-h3 {
    font-size: 26px;
    line-height: 1.5;
    letter-spacing: -.01em;
    color: #1a3530;
    margin-bottom: 16px
}

.innov-pg .lower-h3 strong {
    background: linear-gradient(211deg, #3DC1A5 18%, #1a7a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.innov-pg .lower-p {
    font-size: 15px;
    line-height: 1.8;
    color: #3a5a55;
    margin-bottom: 16px
}

.innov-pg .lower-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.innov-pg .lower-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #2c4a44;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.innov-pg .li-dot {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #3DC1A5;
    flex-shrink: 0;
    margin-top: 8px
}

.innov-pg .lower-btn {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .04em;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 20px;
    padding: 16px 24px;
    background: transparent;
    text-decoration: none;
    transition: padding .55s ease, background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s ease
}

.innov-pg .lower-btn:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 48px
}

.innov-pg .edge-glow {
    position: absolute;
    inset: 0;
    border-radius: 0;
    pointer-events: none;
    box-shadow: inset 0 0 60px 0 #3dc1a500;
    animation: edgepulse 4s ease-in-out infinite
}

@keyframes edgepulse {
    0% {
        box-shadow: inset 0 0 40px 0 #3dc1a50a
    }

    50% {
        box-shadow: inset 0 0 80px 0 #3dc1a51a
    }

    100% {
        box-shadow: inset 0 0 40px 0 #3dc1a50a
    }
}

.innov-pg .proc-third-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

.innov-pg .metric-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #3dc1a533;
    padding: 24px;
    text-align: center;
    box-shadow: 2px 1px 2px 0 #3dc1a50f;
    transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s ease
}

.innov-pg .metric-card:hover {
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    transform: translateY(-3px)
}

.innov-pg .metric-num {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: linear-gradient(211deg, #3DC1A5 18%, #1a7a68 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px
}

.innov-pg .metric-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #3a5a55
}

.innov-pg .img3-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.innov-pg .img3-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

@media (max-width: 1024px) {
    .innov-pg .title-row {
        grid-template-columns: 1fr;
        padding: 48px 24px 24px;
        gap: 24px
    }

    .innov-pg .pg-h1 {
        font-size: 50px
    }

    .innov-pg .title-img-wrap img {
        height: 300px
    }

    .innov-pg .process-band {
        padding: 48px 24px
    }

    .innov-pg .proc-h2 {
        font-size: 26px
    }

    .innov-pg .flow-row {
        flex-direction: column;
        gap: 16px
    }

    .innov-pg .flow-step-card:not(:last-child)::after {
        display: none
    }

    .innov-pg .flow-arrow {
        transform: rotate(90deg);
        align-self: center
    }

    .innov-pg .split-lower {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .innov-pg .proc-third-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }
}

@media (max-width: 640px) {
    .innov-pg .title-row {
        padding: 24px 16px
    }

    .innov-pg .pg-h1 {
        font-size: 26px
    }

    .innov-pg .process-band {
        padding: 24px 16px
    }

    .innov-pg .proc-h2 {
        font-size: 26px
    }

    .innov-pg .proc-third-row {
        grid-template-columns: 1fr
    }

    .innov-pg .metric-num {
        font-size: 26px
    }

    .innov-pg .flow-row {
        flex-direction: column
    }

    .innov-pg .flow-arrow {
        transform: rotate(90deg)
    }
}

.pdcast {
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden
}

.pdcast .title-seg {
    position: relative;
    padding: 96px 48px;
    background: #FAFCFC;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.pdcast .title-seg .img-side {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.pdcast .title-seg .img-side img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    opacity: .72;
    filter: brightness(0.9);
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block
}

.pdcast .title-seg .img-side img:hover {
    opacity: 1;
    filter: brightness(1.08)
}

.pdcast .title-seg .img-side .shape-a {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 80px;
    height: 80px;
    border-radius: 48px;
    background: #3DC1A5;
    opacity: .18;
    pointer-events: none
}

.pdcast .title-seg .img-side .shape-b {
    position: absolute;
    bottom: 24px;
    left: -16px;
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #A9D9D4;
    opacity: .3;
    pointer-events: none;
    transform: rotate(22deg)
}

.pdcast .title-seg .txt-side {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.pdcast .title-seg .txt-side .cap-line {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .18em;
    color: #3DC1A5;
    border-bottom: 2px solid #A9D9D4;
    padding-bottom: 8px;
    line-height: 1.5
}

.pdcast .title-seg .txt-side h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0;
    background: linear-gradient(211deg, #3DC1A5 28%, #1a8f78 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pdcast .title-seg .txt-side h1 .kw-ul {
    text-decoration: underline;
    text-decoration-color: #A9D9D4;
    text-underline-offset: 6px;
    -webkit-text-fill-color: transparent
}

.pdcast .title-seg .txt-side .desc {
    font-size: 20px;
    line-height: 1.8;
    color: #1e4a42;
    margin: 0
}

.pdcast .title-seg .txt-side .act-btn {
    align-self: flex-start;
    font-size: 15px;
    letter-spacing: .06em;
    color: #3DC1A5;
    background: transparent;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.pdcast .title-seg .txt-side .act-btn:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 36px
}

.pdcast .title-seg .txt-side .act-btn:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a52e
}

.pdcast .title-seg .curve-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    line-height: 0
}

.pdcast .geo-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    background: #fff;
    overflow: hidden
}

.pdcast .geo-divider .geo-unit {
    width: 12px;
    height: 12px;
    border-radius: 8px;
    background: #A9D9D4;
    flex-shrink: 0
}

.pdcast .geo-divider .geo-unit.sm {
    width: 6px;
    height: 6px;
    background: #3DC1A5;
    opacity: .4
}

.pdcast .geo-divider .geo-unit.sq {
    border-radius: 0;
    transform: rotate(45deg);
    width: 8px;
    height: 8px;
    background: #3DC1A5;
    opacity: .6
}

.pdcast .ep-grid-seg {
    padding: 96px 48px;
    background: #fff
}

.pdcast .ep-grid-seg h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.015em;
    margin: 0 0 8px;
    background: linear-gradient(211deg, #3DC1A5 18%, #2a9e8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pdcast .ep-grid-seg .sub-cap {
    font-size: 15px;
    letter-spacing: .14em;
    color: #3DC1A5;
    border-bottom: 1.5px solid #A9D9D4;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 48px;
    line-height: 1.5
}

.pdcast .ep-grid-seg .ep-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px
}

.pdcast .ep-grid-seg .ep-card {
    background: #FAFCFC;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: bounce-in .7s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.pdcast .ep-grid-seg .ep-card:nth-child(2) {
    animation-delay: .1s
}

.pdcast .ep-grid-seg .ep-card:nth-child(3) {
    animation-delay: .18s
}

.pdcast .ep-grid-seg .ep-card:nth-child(4) {
    animation-delay: .26s
}

.pdcast .ep-grid-seg .ep-card:nth-child(5) {
    animation-delay: .34s
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(24px) scale(0.97)
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scale(1.01)
    }

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

.pdcast .ep-grid-seg .ep-card:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    transform: translateY(-4px)
}

.pdcast .ep-grid-seg .ep-card.featured {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    background: linear-gradient(211deg, #3DC1A5 8%, #A9D9D4 100%);
    padding: 48px;
    justify-content: flex-end
}

.pdcast .ep-grid-seg .ep-card.featured .ep-num {
    font-size: 68px;
    line-height: 1.1;
    color: #ffffff38;
    letter-spacing: -.03em;
    margin: 0
}

.pdcast .ep-grid-seg .ep-card.featured h3 {
    font-size: 26px;
    line-height: 1.5;
    color: #fff;
    margin: 0;
    letter-spacing: -.01em
}

.pdcast .ep-grid-seg .ep-card.featured .ep-meta {
    font-size: 15px;
    color: #fffc;
    line-height: 1.5;
    margin: 0
}

.pdcast .ep-grid-seg .ep-card.featured .ep-desc {
    font-size: 15px;
    color: #ffffffe6;
    line-height: 1.8;
    margin: 0
}

.pdcast .ep-grid-seg .ep-card.featured .play-btn {
    align-self: flex-start;
    background: #fff;
    color: #3DC1A5;
    border: none !important;
    border-radius: 48px;
    padding: 16px 24px;
    font-size: 15px;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .55s ease, color .55s ease, padding .5s ease;
    box-shadow: 2px 1px 2px 0 #3dc1a50f
}

.pdcast .ep-grid-seg .ep-card.featured .play-btn:hover {
    background: #1e4a42;
    color: #fff;
    padding: 16px 36px
}

.pdcast .ep-grid-seg .ep-card.featured .play-btn:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a52e
}

.pdcast .ep-grid-seg .ep-card .ep-num {
    font-size: 15px;
    color: #3DC1A5;
    letter-spacing: .12em;
    margin: 0;
    line-height: 1.5
}

.pdcast .ep-grid-seg .ep-card h3 {
    font-size: 20px;
    line-height: 1.5;
    color: #1e4a42;
    margin: 0
}

.pdcast .ep-grid-seg .ep-card .ep-meta {
    font-size: 15px;
    color: #4a7a72;
    line-height: 1.5;
    margin: 0
}

.pdcast .ep-grid-seg .ep-card .ep-desc {
    font-size: 15px;
    color: #2e5e56;
    line-height: 1.8;
    margin: 0
}

.pdcast .geo-divider-b {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    background: #FAFCFC;
    overflow: hidden
}

.pdcast .geo-divider-b .gu {
    width: 8px;
    height: 8px;
    border-radius: 0;
    transform: rotate(45deg);
    background: #3DC1A5;
    opacity: .5;
    flex-shrink: 0
}

.pdcast .geo-divider-b .gu.lg {
    width: 14px;
    height: 14px;
    opacity: .2;
    background: #A9D9D4
}

.pdcast .hosts-seg {
    padding: 96px 48px;
    background: #FAFCFC;
    position: relative
}

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

.pdcast .hosts-seg .anim-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0
}

.pdcast .hosts-seg .anim-bg .zone-a {
    position: absolute;
    top: -60px;
    left: -60px;
    width: 320px;
    height: 320px;
    border-radius: 48px;
    background: #A9D9D4;
    opacity: .13;
    animation: zone-drift 9s ease infinite alternate
}

.pdcast .hosts-seg .anim-bg .zone-b {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    height: 240px;
    border-radius: 48px;
    background: #3DC1A5;
    opacity: .09;
    animation: zone-drift-b 11s ease infinite alternate
}

@keyframes zone-drift {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(40px, 30px) scale(1.12)
    }
}

@keyframes zone-drift-b {
    0% {
        transform: translate(0, 0) scale(1)
    }

    100% {
        transform: translate(-30px, -20px) scale(1.08)
    }
}

.pdcast .hosts-seg .seg-label {
    position: relative;
    z-index: 1;
    font-size: 15px;
    letter-spacing: .16em;
    color: #3DC1A5;
    border-bottom: 1.5px solid #A9D9D4;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 24px;
    line-height: 1.5
}

.pdcast .hosts-seg h2 {
    position: relative;
    z-index: 1;
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.015em;
    margin: 0 0 48px;
    background: linear-gradient(211deg, #3DC1A5 22%, #2a9e8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pdcast .hosts-seg .host-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.pdcast .hosts-seg .host-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow .7s ease, transform .7s ease
}

.pdcast .hosts-seg .host-card:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    transform: translateY(-3px)
}

.pdcast .hosts-seg .host-card .host-avatar {
    width: 64px;
    height: 64px;
    border-radius: 48px;
    background: linear-gradient(211deg, #3DC1A5 18%, #A9D9D4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pdcast .hosts-seg .host-card .host-avatar svg {
    width: 32px;
    height: 32px
}

.pdcast .hosts-seg .host-card h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #1e4a42;
    margin: 0
}

.pdcast .hosts-seg .host-card .host-role {
    font-size: 15px;
    color: #3DC1A5;
    letter-spacing: .08em;
    margin: 0;
    line-height: 1.5
}

.pdcast .hosts-seg .host-card .host-bio {
    font-size: 15px;
    color: #2e5e56;
    line-height: 1.8;
    margin: 0
}

.pdcast .geo-divider-c {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 48px;
    background: #fff;
    overflow: hidden
}

.pdcast .geo-divider-c .gc {
    width: 10px;
    height: 10px;
    border-radius: 8px;
    background: #A9D9D4;
    flex-shrink: 0
}

.pdcast .geo-divider-c .gc.tri {
    width: 0;
    height: 0;
    background: transparent;
    border-radius: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 9px solid #3DC1A5;
    opacity: .5
}

.pdcast .listen-seg {
    padding: 96px 48px;
    background: #fff
}

.pdcast .listen-seg .seg-label {
    font-size: 15px;
    letter-spacing: .16em;
    color: #3DC1A5;
    border-bottom: 1.5px solid #A9D9D4;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 24px;
    line-height: 1.5
}

.pdcast .listen-seg h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.015em;
    margin: 0 0 8px;
    background: linear-gradient(211deg, #3DC1A5 18%, #2a9e8a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.pdcast .listen-seg .listen-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #1e4a42;
    margin: 0 0 48px;
    max-width: 600px
}

.pdcast .listen-seg .platform-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px
}

.pdcast .listen-seg .plat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    background: #FAFCFC;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 1px 2px 0 #3dc1a50f;
    flex: 1 1 200px;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.pdcast .listen-seg .plat-item:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    transform: translateY(-2px)
}

.pdcast .listen-seg .plat-item .plat-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(211deg, #3DC1A5 18%, #A9D9D4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pdcast .listen-seg .plat-item .plat-icon svg {
    width: 24px;
    height: 24px
}

.pdcast .listen-seg .plat-item .plat-name {
    font-size: 20px;
    color: #1e4a42;
    margin: 0;
    line-height: 1.5
}

.pdcast .listen-seg .plat-item .plat-sub {
    font-size: 15px;
    color: #4a7a72;
    margin: 0;
    line-height: 1.5
}

.pdcast .listen-seg .sub-strip {
    background: #FAFCFC;
    border-radius: 20px;
    padding: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.pdcast .listen-seg .sub-strip .strip-txt h3 {
    font-size: 26px;
    line-height: 1.5;
    color: #1e4a42;
    margin: 0 0 8px
}

.pdcast .listen-seg .sub-strip .strip-txt p {
    font-size: 15px;
    color: #2e5e56;
    line-height: 1.8;
    margin: 0
}

.pdcast .listen-seg .sub-strip .sub-btn {
    flex-shrink: 0;
    font-size: 15px;
    letter-spacing: .06em;
    color: #3DC1A5;
    background: transparent;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    padding: 16px 24px;
    cursor: pointer;
    transition: background .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 2px 1px 2px 0 #3dc1a50f
}

.pdcast .listen-seg .sub-strip .sub-btn:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 36px
}

.pdcast .listen-seg .sub-strip .sub-btn:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a52e
}

@media (max-width: 1024px) {
    .pdcast .title-seg {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .pdcast .title-seg .img-side img {
        height: 320px
    }

    .pdcast .title-seg .txt-side h1 {
        font-size: 50px
    }

    .pdcast .ep-grid-seg {
        padding: 48px 24px
    }

    .pdcast .ep-grid-seg .ep-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto
    }

    .pdcast .ep-grid-seg .ep-card.featured {
        grid-row: auto;
        grid-column: 1 / 3
    }

    .pdcast .hosts-seg {
        padding: 48px 24px
    }

    .pdcast .hosts-seg .host-row {
        grid-template-columns: 1fr 1fr
    }

    .pdcast .listen-seg {
        padding: 48px 24px
    }

    .pdcast .listen-seg .sub-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px
    }

    .pdcast .geo-divider,
    .pdcast .geo-divider-b,
    .pdcast .geo-divider-c {
        padding: 16px 24px
    }
}

@media (max-width: 640px) {
    .pdcast .title-seg .txt-side h1 {
        font-size: 50px
    }

    .pdcast .ep-grid-seg .ep-grid {
        grid-template-columns: 1fr
    }

    .pdcast .ep-grid-seg .ep-card.featured {
        grid-column: 1 / 2;
        padding: 24px
    }

    .pdcast .ep-grid-seg .ep-card.featured .ep-num {
        font-size: 50px
    }

    .pdcast .hosts-seg .host-row {
        grid-template-columns: 1fr
    }

    .pdcast .listen-seg .platform-list {
        flex-direction: column
    }

    .pdcast .ep-grid-seg h2,
    .pdcast .hosts-seg h2,
    .pdcast .listen-seg h2 {
        font-size: 26px
    }
}

.ct-us {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip
}

.ct-us .pg-band {
    padding: 96px 48px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
    background: #FAFCFC;
    position: relative
}

.ct-us .pg-band::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: radial-gradient(circle at 32px 0, transparent 20px, #FAFCFC 20px) repeat-x;
    background-size: 64px 32px;
    pointer-events: none
}

.ct-us .dot-grid {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: radial-gradient(circle, #3DC1A5 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .13;
    pointer-events: none
}

.ct-us .pg-left {
    position: relative;
    z-index: 1
}

.ct-us .pg-left-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 24px;
    text-transform: uppercase
}

.ct-us .pg-left-deco {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 48px
}

.ct-us .pg-left-deco span {
    display: block;
    height: 2px;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    border-radius: 8px
}

.ct-us .pg-left-deco span:nth-child(1) {
    width: 48px
}

.ct-us .pg-left-deco span:nth-child(2) {
    width: 32px
}

.ct-us .pg-left-deco span:nth-child(3) {
    width: 64px
}

.ct-us .pg-left-deco span:nth-child(4) {
    width: 24px
}

.ct-us .pg-heading {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: linear-gradient(211deg, #3DC1A5 28%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px
}

.ct-us .pg-heading em {
    font-style: italic
}

.ct-us .pg-sub {
    font-size: 20px;
    line-height: 1.5;
    color: #2a4a44;
    max-width: 520px
}

.ct-us .pg-right {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ct-us .reach-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.ct-us .reach-item {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ct-us .reach-item:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.ct-us .reach-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    border-radius: 8px;
    transition: transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ct-us .reach-item:hover .reach-icon {
    transform: rotate(360deg)
}

.ct-us .reach-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff
}

.ct-us .reach-lbl {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .04em;
    color: #3DC1A5;
    text-transform: uppercase
}

.ct-us .reach-val {
    font-size: 15px;
    line-height: 1.5;
    color: #1e3530;
    word-break: break-word
}

.ct-us .reach-val a {
    color: #1e3530;
    text-decoration: none;
    border-bottom: 1px solid #A9D9D4;
    transition: color .5s ease, border-color .5s ease
}

.ct-us .reach-val a:hover {
    color: #3DC1A5;
    border-color: #3DC1A5
}

.ct-us .form-band {
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.ct-us .form-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: radial-gradient(circle at 32px 32px, transparent 20px, #fff 20px) repeat-x;
    background-size: 64px 32px;
    pointer-events: none
}

.ct-us .form-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
    max-width: 1200px
}

.ct-us .form-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 16px
}

.ct-us .form-aside-head {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #1e3530
}

.ct-us .form-aside-head em {
    font-style: italic;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ct-us .form-aside-txt {
    font-size: 15px;
    line-height: 1.8;
    color: #3a5550
}

.ct-us .form-aside-link {
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    transition: gap .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ct-us .form-aside-link:hover {
    gap: 16px
}

.ct-us .form-aside-link svg {
    width: 16px;
    height: 16px;
    fill: #3DC1A5;
    flex-shrink: 0
}

.ct-us .code-snip {
    background: #1e3530;
    border-radius: 8px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.8;
    color: #A9D9D4;
    overflow: hidden
}

.ct-us .code-snip .cs-key {
    color: #3DC1A5
}

.ct-us .code-snip .cs-str {
    color: #FAFCFC
}

.ct-us .code-snip .cs-cmt {
    color: #5a8a80
}

.ct-us .form-wrap {
    background: #FAFCFC;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.ct-us .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.ct-us .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.ct-us .field-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #1e3530;
    letter-spacing: .02em
}

.ct-us .field-lbl span {
    color: #3DC1A5
}

.ct-us .field-inp {
    padding: 16px;
    border: 2px solid #A9D9D4;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #1e3530;
    background: #fff;
    outline: none;
    transition: border-color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ct-us .field-inp::placeholder {
    color: #A9D9D4;
    transition: opacity .7s ease
}

.ct-us .field-inp:focus::placeholder {
    opacity: 0
}

.ct-us .field-inp:focus {
    border-color: #3DC1A5;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.ct-us .checks-head {
    font-size: 15px;
    line-height: 1.5;
    color: #1e3530;
    margin-bottom: 16px;
    letter-spacing: .02em
}

.ct-us .checks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px
}

.ct-us .chk-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.ct-us .chk-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #3DC1A5;
    cursor: pointer;
    flex-shrink: 0
}

.ct-us .chk-item-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #3a5550;
    cursor: pointer
}

.ct-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px;
    padding: 16px;
    background: #fff;
    border-radius: 8px;
    border: 2px solid #A9D9D4
}

.ct-us .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #3DC1A5;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px
}

.ct-us .privacy-txt {
    font-size: 15px;
    line-height: 1.8;
    color: #3a5550
}

.ct-us .privacy-txt a {
    color: #3DC1A5;
    text-decoration: none;
    border-bottom: 1px solid #A9D9D4;
    transition: border-color .5s ease
}

.ct-us .privacy-txt a:hover {
    border-color: #3DC1A5
}

.ct-us .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 48px;
    background: transparent;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1.5;
    cursor: pointer;
    transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease
}

.ct-us .submit-btn:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 64px;
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.ct-us .submit-btn:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a50f
}

.ct-us .submit-btn:focus-visible {
    outline: 3px solid #3DC1A5;
    outline-offset: 3px
}

.ct-us .info-band {
    padding: 96px 48px;
    background: linear-gradient(211deg, #1e3530 28%, #2a4a44 100%);
    position: relative;
    overflow: hidden
}

.ct-us .info-band-deco {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 320px;
    height: 320px;
    border-radius: 48px;
    background: linear-gradient(211deg, #3dc1a51f 30%, #a9d9d40f 100%);
    pointer-events: none;
    transform: rotate(25deg)
}

.ct-us .info-band-deco2 {
    position: absolute;
    bottom: 48px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none
}

.ct-us .info-band-deco2 span {
    display: block;
    height: 2px;
    background: #3dc1a54d;
    border-radius: 8px
}

.ct-us .info-band-deco2 span:nth-child(1) {
    width: 40px
}

.ct-us .info-band-deco2 span:nth-child(2) {
    width: 24px
}

.ct-us .info-band-deco2 span:nth-child(3) {
    width: 56px
}

.ct-us .info-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1
}

.ct-us .info-main {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ct-us .info-main-head {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ct-us .info-main-txt {
    font-size: 15px;
    line-height: 1.8;
    color: #A9D9D4;
    max-width: 360px
}

.ct-us .info-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ct-us .info-col-head {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .06em;
    color: #3DC1A5;
    text-transform: uppercase
}

.ct-us .info-col-val {
    font-size: 15px;
    line-height: 1.8;
    color: #A9D9D4
}

.ct-us .info-col-val a {
    color: #A9D9D4;
    text-decoration: none;
    border-bottom: 1px solid #3dc1a54d;
    transition: color .5s ease, border-color .5s ease
}

.ct-us .info-col-val a:hover {
    color: #3DC1A5;
    border-color: #3DC1A5
}

.ct-us .info-accent {
    background: #3dc1a51a;
    border: 2px solid #3dc1a540;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ct-us .info-accent-head {
    font-size: 20px;
    line-height: 1.5;
    color: #3DC1A5
}

.ct-us .info-accent-txt {
    font-size: 15px;
    line-height: 1.8;
    color: #A9D9D4
}

.ct-us .info-accent-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    text-decoration: none;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    padding: 8px 16px;
    transition: background .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    align-self: flex-start
}

.ct-us .info-accent-link:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 8px 24px
}

.ct-us .info-accent-link:focus-visible {
    outline: 3px solid #A9D9D4;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .ct-us .pg-band {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .ct-us .pg-heading {
        font-size: 50px
    }

    .ct-us .reach-strip {
        grid-template-columns: 1fr
    }

    .ct-us .form-band {
        padding: 48px 24px
    }

    .ct-us .form-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ct-us .form-wrap {
        padding: 24px
    }

    .ct-us .info-band {
        padding: 48px 24px
    }

    .ct-us .info-cols {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .ct-us .info-main {
        grid-column: 1 / -1
    }

    .ct-us .info-accent {
        grid-column: 1 / -1
    }
}

@media (max-width: 640px) {
    .ct-us .pg-heading {
        font-size: 50px
    }

    .ct-us .form-row {
        grid-template-columns: 1fr
    }

    .ct-us .checks-grid {
        grid-template-columns: 1fr
    }

    .ct-us .info-cols {
        grid-template-columns: 1fr
    }

    .ct-us .info-main-head {
        font-size: 26px
    }
}

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

.abt-pg .divider-dash {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 48px;
    overflow: hidden
}

.abt-pg .divider-dash span {
    display: inline-block;
    background: #3DC1A5;
    border-radius: 48px
}

.abt-pg .divider-dash span:nth-child(odd) {
    width: 4px;
    height: 4px;
    opacity: .5
}

.abt-pg .divider-dash span:nth-child(even) {
    width: 12px;
    height: 3px;
    opacity: .3
}

.abt-pg .divider-line {
    height: 1px;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    margin: 0 48px;
    opacity: .25
}

.abt-pg .divider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0
}

.abt-pg .divider-dots span {
    width: 5px;
    height: 5px;
    border-radius: 48px;
    background: #A9D9D4;
    opacity: .6
}

.abt-pg .divider-dots span:nth-child(3n) {
    width: 14px;
    border-radius: 8px;
    opacity: .35
}

.abt-pg .lead-blk {
    position: relative;
    padding: 96px 48px;
    background: linear-gradient(211deg, #3dc1a500 0%, #3dc1a521 60%, #3dc1a547 100%)
}

.abt-pg .lead-blk-img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 0
}

.abt-pg .lead-blk-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.45);
    transition: filter .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .lead-blk-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(211deg, #3dc1a52e 0%, #0a1e1cb8 100%);
    pointer-events: none
}

.abt-pg .lead-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    animation: lead-fade 6s ease-in-out infinite alternate;
    background: linear-gradient(211deg, #3dc1a51a 0%, #a9d9d414 100%);
    pointer-events: none
}

@keyframes lead-fade {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.abt-pg .lead-inner {
    position: relative;
    z-index: 2;
    max-width: 720px
}

.abt-pg .lead-quote-mark {
    display: block;
    font-size: 200px;
    line-height: 1.1;
    color: #3dc1a521;
    position: absolute;
    top: -48px;
    left: -16px;
    pointer-events: none;
    user-select: none;
    font-style: normal;
    z-index: 0;
    letter-spacing: -8px
}

.abt-pg .lead-text-area {
    position: relative;
    z-index: 1
}

.abt-pg .lead-tag {
    display: inline-block;
    border: 1.5px solid #3dc1a58c;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #A9D9D4;
    margin-bottom: 24px;
    letter-spacing: .08em
}

.abt-pg .lead-h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 24px;
    background: linear-gradient(211deg, #FAFCFC 30%, #3DC1A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-pg .lead-h1 em {
    font-style: italic
}

.abt-pg .lead-thesis {
    font-size: 20px;
    line-height: 1.8;
    color: #fafcfcd1;
    margin-bottom: 16px;
    max-width: 560px
}

.abt-pg .lead-thesis-b {
    font-size: 15px;
    line-height: 1.8;
    color: #fafcfc99;
    max-width: 520px
}

.abt-pg .story-blk {
    padding: 96px 48px;
    background: #FAFCFC
}

.abt-pg .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    align-items: start
}

.abt-pg .story-col-left {
    grid-column: 1 / 2
}

.abt-pg .story-col-center {
    grid-column: 2 / 3
}

.abt-pg .story-col-right {
    grid-column: 3 / 4
}

.abt-pg .story-eyebrow {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .1em;
    color: #3DC1A5;
    margin-bottom: 16px;
    text-transform: uppercase
}

.abt-pg .story-h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    background: linear-gradient(211deg, #1a3a35 30%, #3DC1A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-pg .story-body {
    font-size: 15px;
    line-height: 1.8;
    color: #2a3a38;
    margin-bottom: 16px
}

.abt-pg .story-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.abt-pg .story-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
    transition: filter .7s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .story-img-wrap:hover img {
    filter: brightness(1.05)
}

.abt-pg .stat-card {
    background: linear-gradient(211deg, #3dc1a512 0%, #a9d9d41f 100%);
    border: 1.5px solid #3dc1a533;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 2px 1px 2px 0 #3dc1a50f;
    transition: box-shadow .6s ease, border-color .6s ease
}

.abt-pg .stat-card:hover {
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    border-color: #3dc1a573
}

.abt-pg .stat-num {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.03em;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block
}

.abt-pg .stat-label {
    font-size: 15px;
    line-height: 1.5;
    color: #2a3a38;
    margin-top: 8px;
    display: block
}

.abt-pg .proof-blk {
    padding: 96px 48px;
    background: linear-gradient(211deg, #1e3532 0%, #0f2420 65%, #162e2a 100%);
    position: relative;
    overflow: hidden
}

.abt-pg .proof-blk-bg-anim {
    position: absolute;
    inset: 0;
    background: linear-gradient(211deg, #3dc1a514 0%, #a9d9d40a 100%);
    animation: proof-bg 8s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0
}

@keyframes proof-bg {
    0% {
        opacity: .3
    }

    100% {
        opacity: 1
    }
}

.abt-pg .proof-inner {
    position: relative;
    z-index: 1
}

.abt-pg .proof-top-label {
    font-size: 15px;
    letter-spacing: .1em;
    color: #3DC1A5;
    text-transform: uppercase;
    margin-bottom: 48px;
    display: block
}

.abt-pg .proof-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.abt-pg .proof-quote-wrap {
    border: 1.5px dashed #3dc1a566;
    border-radius: 20px;
    padding: 48px;
    position: relative;
    background: #3dc1a50d
}

.abt-pg .proof-quote-icon {
    display: block;
    width: 36px;
    height: 28px;
    margin-bottom: 24px
}

.abt-pg .proof-quote-text {
    font-size: 20px;
    line-height: 1.8;
    color: #fafcfce0;
    margin-bottom: 24px
}

.abt-pg .proof-author-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.abt-pg .proof-author-img {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.abt-pg .proof-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transition: filter .5s ease
}

.abt-pg .proof-author-img:hover img {
    filter: brightness(1.1)
}

.abt-pg .proof-author-name {
    font-size: 15px;
    line-height: 1.5;
    color: #FAFCFC;
    display: block
}

.abt-pg .proof-author-role {
    font-size: 15px;
    line-height: 1.5;
    color: #a9d9d4b3;
    display: block
}

.abt-pg .proof-stats-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .proof-stat-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
    background: #fafcfc0a;
    border: 1px solid #3dc1a526;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .6s ease
}

.abt-pg .proof-stat-row:hover {
    background: #3dc1a517;
    border-color: #3dc1a566
}

.abt-pg .proof-stat-icon-wrap {
    position: relative;
    flex-shrink: 0
}

.abt-pg .proof-stat-icon-wrap .icon-dot {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 10px;
    height: 10px;
    background: #3DC1A5;
    border-radius: 48px;
    border: 2px solid #1e3532
}

.abt-pg .proof-stat-icon-wrap i {
    font-size: 26px;
    color: #A9D9D4;
    display: block
}

.abt-pg .proof-stat-val {
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block
}

.abt-pg .proof-stat-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #fafcfca6;
    display: block;
    margin-top: 4px
}

.abt-pg .sub-blk {
    padding: 96px 48px;
    background: #FAFCFC
}

.abt-pg .sub-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center
}

.abt-pg .sub-copy-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-pg .sub-h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    background: linear-gradient(211deg, #1a3a35 30%, #3DC1A5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-pg .sub-h2 em {
    font-style: italic
}

.abt-pg .sub-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #2a3a38
}

.abt-pg .sub-incentive {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: linear-gradient(211deg, #3dc1a514 0%, #a9d9d41f 100%);
    border-radius: 8px;
    border: 1px solid #3dc1a533
}

.abt-pg .sub-incentive-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: #3DC1A5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-pg .sub-incentive-icon i {
    color: #fff;
    font-size: 20px
}

.abt-pg .sub-incentive-txt {
    font-size: 15px;
    line-height: 1.5;
    color: #1a3a35
}

.abt-pg .sub-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    position: relative
}

.abt-pg .sub-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: filter .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .sub-img-wrap:hover img {
    filter: brightness(1.05)
}

.abt-pg .sub-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    border: 1.5px solid #3dc1a526;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .sub-form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px
}

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

.abt-pg .field-grp label {
    font-size: 15px;
    line-height: 1.5;
    color: #1a3a35;
    letter-spacing: .02em
}

.abt-pg .field-grp input {
    padding: 16px;
    border: 1.5px solid #3dc1a54d;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #1a3a35;
    background: #FAFCFC;
    outline: none;
    transition: border-color .5s ease, box-shadow .5s ease
}

.abt-pg .field-grp input::placeholder {
    color: #3dc1a566;
    transition: opacity .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-pg .field-grp input:focus::placeholder {
    opacity: 0
}

.abt-pg .field-grp input:focus {
    border-color: #3DC1A5;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.abt-pg .sub-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 48px;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    background: transparent;
    color: #3DC1A5;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .6s ease, color .6s ease, padding .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .6s ease;
    align-self: flex-start
}

.abt-pg .sub-btn:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 64px;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.abt-pg .sub-btn:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a533
}

.abt-pg .sub-form-note {
    font-size: 15px;
    line-height: 1.5;
    color: #3dc1a599
}

@media (max-width: 1024px) {
    .abt-pg .story-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .abt-pg .story-col-left {
        grid-column: 1 / 2
    }

    .abt-pg .story-col-center {
        grid-column: 2 / 3
    }

    .abt-pg .story-col-right {
        grid-column: 1 / 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .abt-pg .proof-layout {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .abt-pg .sub-layout {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .abt-pg .lead-h1 {
        font-size: 50px
    }
}

@media (max-width: 640px) {
    .abt-pg .lead-blk {
        padding: 48px 16px 96px
    }

    .abt-pg .lead-h1 {
        font-size: 26px
    }

    .abt-pg .lead-thesis {
        font-size: 15px
    }

    .abt-pg .lead-quote-mark {
        font-size: 120px
    }

    .abt-pg .story-blk {
        padding: 48px 16px
    }

    .abt-pg .story-grid {
        grid-template-columns: 1fr
    }

    .abt-pg .story-col-left,
    .abt-pg .story-col-center,
    .abt-pg .story-col-right {
        grid-column: auto
    }

    .abt-pg .story-col-right {
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .abt-pg .story-h2 {
        font-size: 26px
    }

    .abt-pg .proof-blk {
        padding: 48px 16px
    }

    .abt-pg .proof-quote-wrap {
        padding: 24px
    }

    .abt-pg .proof-stats-col {
        gap: 16px
    }

    .abt-pg .sub-blk {
        padding: 48px 16px
    }

    .abt-pg .sub-h2 {
        font-size: 26px
    }

    .abt-pg .sub-form-card {
        padding: 24px
    }

    .abt-pg .divider-dash {
        padding: 0 16px
    }

    .abt-pg .divider-line {
        margin: 0 16px
    }
}

.prm {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip
}

.prm .ttl-blk {
    padding: 96px 48px;
    position: relative;
    background: #FAFCFC
}

.prm .ttl-blk .dot-field {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.prm .ttl-blk .dot-field::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #3DC1A5 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .09
}

.prm .ttl-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    max-width: 1366px;
    position: relative;
    z-index: 1
}

.prm .ttl-copy {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .ttl-visual {
    flex: 0 0 55%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm .ttl-eyebrow {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .08em;
    color: #3DC1A5;
    text-transform: uppercase;
    margin: 0
}

.prm .ttl-h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0;
    color: #1b2a28
}

.prm .ttl-h1 em {
    font-style: italic;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.prm .ttl-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #2c3e3c;
    margin: 0;
    max-width: 420px
}

.prm .ttl-act {
    display: inline-block;
    padding: 16px 24px;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    text-decoration: none;
    background: transparent;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease, color .5s ease;
    align-self: flex-start
}

.prm .ttl-act:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 40px
}

.prm .ttl-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.prm .ttl-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transform: scale(1);
    transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.prm .ttl-img-wrap:hover img {
    transform: scale(1.04)
}

.prm .ttl-tag-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.prm .ttl-tag {
    font-size: 15px;
    line-height: 1.5;
    color: #2c3e3c;
    background: #fff;
    border: 1px solid #A9D9D4;
    border-radius: 48px;
    padding: 8px 16px
}

.prm .nums-blk {
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.prm .nums-blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 85%)
}

.prm .nums-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px
}

.prm .nums-head {
    flex: 0 0 45%
}

.prm .nums-h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0 0 16px;
    color: #1b2a28
}

.prm .nums-h2 em {
    font-style: italic;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.prm .nums-sub {
    font-size: 20px;
    line-height: 1.5;
    color: #2c3e3c;
    margin: 0;
    max-width: 380px
}

.prm .nums-img-aside {
    flex: 0 0 48%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.prm .nums-img-aside img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .7s ease
}

.prm .nums-img-aside:hover img {
    transform: scale(1.05)
}

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

.prm .num-card {
    background: #FAFCFC;
    border: 1px solid #A9D9D4;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    transition: box-shadow .6s ease, transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.prm .num-card:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    transform: translateY(-4px)
}

.prm .num-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    width: 24px;
    height: 24px;
    background: #3DC1A5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.1;
    color: #fff
}

.prm .num-figure {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #3DC1A5;
    display: block;
    margin-bottom: 8px
}

.prm .num-label {
    font-size: 15px;
    line-height: 1.5;
    color: #1b2a28;
    display: block;
    margin-bottom: 8px
}

.prm .num-detail {
    font-size: 15px;
    line-height: 1.8;
    color: #4a6360;
    margin: 0
}

.prm .val-blk {
    padding: 96px 48px;
    position: relative;
    background: #FAFCFC
}

.prm .val-diag {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.prm .val-diag::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(211deg, #3dc1a50f 30%, #a9d9d40a 85%);
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%)
}

.prm .val-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.prm .val-h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0;
    color: #1b2a28;
    max-width: 680px
}

.prm .val-h2 em {
    font-style: italic;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.prm .val-cols {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 24px;
    align-items: start
}

.prm .val-item {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm .val-item.tall {
    margin-top: -24px
}

.prm .val-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 22px 0 #3dc1a514
}

.prm .val-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.prm .val-item.tall .val-img-wrap img {
    height: 300px
}

.prm .val-img-wrap:hover img {
    transform: scale(1.04)
}

.prm .val-card {
    background: #fff;
    border: 1px solid #A9D9D4;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 1px 2px 0 #3dc1a50f;
    transition: box-shadow .65s ease
}

.prm .val-card:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.prm .val-card-h {
    font-size: 20px;
    line-height: 1.5;
    color: #1b2a28;
    margin: 0 0 8px
}

.prm .val-card-p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a6360;
    margin: 0
}

.prm .val-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .5s ease
}

.prm .val-link:hover {
    color: #1b2a28
}

.prm .avail-blk {
    padding: 96px 48px;
    background: #fff
}

.prm .avail-head-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px
}

.prm .avail-h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.01em;
    margin: 0;
    color: #1b2a28;
    flex: 0 0 45%
}

.prm .avail-h2 em {
    font-style: italic;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.prm .avail-intro {
    flex: 0 0 45%;
    font-size: 20px;
    line-height: 1.5;
    color: #2c3e3c;
    margin: 0
}

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

.prm .avail-card {
    border: 1px solid #A9D9D4;
    border-radius: 20px;
    overflow: hidden;
    background: #FAFCFC;
    position: relative;
    transition: box-shadow .7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 2px 1px 2px 0 #3dc1a50f
}

.prm .avail-card:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    transform: translateY(-6px)
}

.prm .avail-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform .8s ease
}

.prm .avail-card:hover .avail-card-img {
    transform: scale(1.05)
}

.prm .avail-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm .avail-card-num {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 32px;
    height: 32px;
    background: #3DC1A5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1.1;
    color: #fff
}

.prm .avail-card-h {
    font-size: 20px;
    line-height: 1.5;
    color: #1b2a28;
    margin: 0
}

.prm .avail-card-p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a6360;
    margin: 0
}

.prm .avail-card-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    border: 1px solid #3DC1A5;
    border-radius: 8px;
    padding: 8px 16px;
    text-decoration: none;
    background: transparent;
    align-self: flex-start;
    transition: padding .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), background .5s ease, color .5s ease
}

.prm .avail-card-link:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 8px 28px
}

.prm .ttl-h1 {
    animation: track-in .8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

@keyframes track-in {
    from {
        letter-spacing: .15em;
        opacity: 0
    }

    to {
        letter-spacing: -.02em;
        opacity: 1
    }
}

@media (max-width: 1024px) {
    .prm .ttl-inner {
        flex-direction: column
    }

    .prm .ttl-copy {
        flex: 0 0 auto;
        width: 100%
    }

    .prm .ttl-visual {
        flex: 0 0 auto;
        width: 100%
    }

    .prm .nums-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .prm .nums-top {
        flex-direction: column;
        align-items: flex-start
    }

    .prm .nums-img-aside {
        flex: 0 0 auto;
        width: 100%
    }

    .prm .val-cols {
        grid-template-columns: 1fr 1fr
    }

    .prm .val-item.tall {
        margin-top: 0;
        grid-column: 1 / -1
    }

    .prm .avail-head-row {
        flex-direction: column
    }

    .prm .avail-h2 {
        flex: 0 0 auto
    }

    .prm .avail-intro {
        flex: 0 0 auto
    }

    .prm .avail-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .prm .ttl-blk {
        padding: 48px 16px
    }

    .prm .ttl-h1 {
        font-size: 50px
    }

    .prm .nums-blk {
        padding: 48px 16px
    }

    .prm .nums-grid {
        grid-template-columns: 1fr
    }

    .prm .nums-h2 {
        font-size: 26px
    }

    .prm .val-blk {
        padding: 48px 16px
    }

    .prm .val-h2 {
        font-size: 26px
    }

    .prm .val-cols {
        grid-template-columns: 1fr
    }

    .prm .val-item.tall {
        grid-column: auto
    }

    .prm .avail-blk {
        padding: 48px 16px
    }

    .prm .avail-h2 {
        font-size: 26px
    }

    .prm .avail-grid {
        grid-template-columns: 1fr
    }

    .prm .ttl-inner {
        gap: 24px
    }
}

.lrn-prog {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip
}

.lrn-prog .pg-band {
    padding: 96px 48px
}

.lrn-prog .pg-band-sm {
    padding: 48px
}

.lrn-prog .pg-band-tight {
    padding: 24px 48px
}

@media (max-width: 640px) {
    .lrn-prog .pg-band {
        padding: 48px 16px
    }

    .lrn-prog .pg-band-sm {
        padding: 24px 16px
    }

    .lrn-prog .pg-band-tight {
        padding: 16px
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    .lrn-prog .pg-band {
        padding: 96px 24px
    }

    .lrn-prog .pg-band-sm {
        padding: 48px 24px
    }

    .lrn-prog .pg-band-tight {
        padding: 24px
    }
}

.lrn-prog .grad-txt {
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.lrn-prog .serif-word {
    font-style: italic
}

.lrn-prog .num-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #3DC1A5;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    flex-shrink: 0
}

.lrn-prog .tri-corner-tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 40px 0 0;
    border-color: #3dc1a521 transparent transparent;
    pointer-events: none
}

.lrn-prog .tri-corner-br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent #a9d9d421;
    pointer-events: none
}

@keyframes bg-osc {

    0%,
    100% {
        background-color: #FAFCFC
    }

    50% {
        background-color: #f2faf8
    }
}

.lrn-prog .title-blk {
    position: relative;
    background: #FAFCFC;
    animation: bg-osc 7s ease infinite
}

.lrn-prog .title-img-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.lrn-prog .title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) contrast(1.08) brightness(0.92) saturate(0.85)
}

.lrn-prog .title-img-wrap .geo-line-tl {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 48px;
    height: 2px;
    background: #3dc1a599;
    pointer-events: none
}

.lrn-prog .title-img-wrap .geo-line-tl::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 48px;
    background: #3dc1a599
}

.lrn-prog .title-txt-zone {
    padding: 48px 0 24px
}

.lrn-prog .title-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 48px;
    padding: 4px 16px;
    margin-bottom: 16px;
    letter-spacing: .06em
}

.lrn-prog .title-h1 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2d2a;
    margin-bottom: 16px
}

@media (max-width: 640px) {
    .lrn-prog .title-h1 {
        font-size: 26px
    }

    .lrn-prog .title-img-wrap {
        height: 220px
    }
}

.lrn-prog .title-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #2a4040;
    max-width: 640px;
    margin-bottom: 24px
}

.lrn-prog .title-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.lrn-prog .btn-prim {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    padding: 12px 24px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .5s ease;
    font-weight: 600
}

.lrn-prog .btn-prim:hover {
    background: #3DC1A5;
    color: #fff;
    padding-left: 32px;
    padding-right: 32px
}

.lrn-prog .btn-prim:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a52e
}

.lrn-prog .btn-sec {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: #2a4040;
    border: 2px solid #A9D9D4;
    border-radius: 8px;
    padding: 12px 24px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background .7s ease, color .7s ease, padding .5s ease;
    font-weight: 500
}

.lrn-prog .btn-sec:hover {
    background: #A9D9D4;
    color: #1b2d2a;
    padding-left: 32px;
    padding-right: 32px
}

.lrn-prog .cards-grid-row {
    background: #FAFCFC;
    position: relative
}

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

@media (max-width: 1024px) {
    .lrn-prog .cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .lrn-prog .cards-grid {
        grid-template-columns: 1fr
    }
}

.lrn-prog .prog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.lrn-prog .prog-card:hover {
    box-shadow: 2px 10px 60px 0 #3dc1a524;
    transform: translateY(-4px)
}

.lrn-prog .card-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden
}

.lrn-prog .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease
}

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

.lrn-prog .card-img-overlay {
    position: absolute;
    inset: 0;
    background: #1b2d2a00;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .6s ease
}

.lrn-prog .prog-card:hover .card-img-overlay {
    background: #1b2d2a9e
}

.lrn-prog .card-img-overlay-txt {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    text-align: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .6s ease;
    font-weight: 500
}

.lrn-prog .prog-card:hover .card-img-overlay-txt {
    opacity: 1
}

.lrn-prog .card-badge-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: #3DC1A5;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 1px 2px 0 #3dc1a50f;
    z-index: 1
}

.lrn-prog .card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.lrn-prog .card-tags-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center
}

.lrn-prog .card-tag {
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    border: 1.5px solid #A9D9D4;
    border-radius: 48px;
    padding: 2px 12px;
    letter-spacing: .04em
}

.lrn-prog .card-user-fmt {
    font-size: 15px;
    line-height: 1.5;
    color: #5a7a77;
    border: 1.5px solid #e0f0ee;
    border-radius: 48px;
    padding: 2px 12px
}

.lrn-prog .card-ttl {
    font-size: 20px;
    line-height: 1.5;
    color: #1b2d2a;
    font-weight: 700;
    letter-spacing: -.01em
}

.lrn-prog .card-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #3a5552
}

.lrn-prog .card-meta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px
}

.lrn-prog .card-meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    line-height: 1.5;
    color: #5a7a77
}

.lrn-prog .card-meta-item svg {
    flex-shrink: 0
}

.lrn-prog .card-price-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap
}

.lrn-prog .card-price {
    font-size: 26px;
    line-height: 1.1;
    color: #1b2d2a;
    font-weight: 700;
    letter-spacing: -.02em
}

.lrn-prog .card-price-des {
    font-size: 15px;
    line-height: 1.5;
    color: #5a7a77
}

.lrn-prog .card-price-note {
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    font-weight: 500
}

.lrn-prog .card-seats {
    font-size: 15px;
    line-height: 1.5;
    color: #b85c3a;
    font-weight: 600
}

.lrn-prog .card-cta {
    display: block;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    padding: 10px 24px;
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    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), padding .5s ease
}

.lrn-prog .card-cta:hover {
    background: #3DC1A5;
    color: #fff;
    padding-left: 32px;
    padding-right: 32px
}

.lrn-prog .card-cta:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a52e
}

@keyframes bg-osc2 {

    0%,
    100% {
        background-color: #f5fbf9
    }

    50% {
        background-color: #edf7f4
    }
}

.lrn-prog .process-row {
    position: relative;
    animation: bg-osc2 9s ease infinite
}

.lrn-prog .proc-head {
    margin-bottom: 48px
}

.lrn-prog .proc-head h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2d2a;
    margin-bottom: 16px
}

@media (max-width: 640px) {
    .lrn-prog .proc-head h2 {
        font-size: 26px
    }
}

.lrn-prog .proc-head p {
    font-size: 20px;
    line-height: 1.5;
    color: #3a5552;
    max-width: 560px
}

.lrn-prog .proc-steps {
    display: flex;
    flex-direction: row;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px
}

@media (max-width: 1024px) {
    .lrn-prog .proc-steps {
        flex-wrap: wrap
    }
}

.lrn-prog .proc-step {
    flex: 1;
    min-width: 180px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative
}

.lrn-prog .proc-step-num {
    position: absolute;
    top: -12px;
    right: 16px;
    background: #3DC1A5;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 1px 2px 0 #3dc1a50f
}

.lrn-prog .proc-step-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #3dc1a51a
}

.lrn-prog .proc-step h5 {
    font-size: 20px;
    line-height: 1.5;
    color: #1b2d2a;
    font-weight: 700;
    letter-spacing: -.01em
}

.lrn-prog .proc-step p {
    font-size: 15px;
    line-height: 1.8;
    color: #3a5552
}

.lrn-prog .stats-row {
    background: #fff;
    position: relative
}

.lrn-prog .stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center
}

@media (max-width: 640px) {
    .lrn-prog .stats-inner {
        grid-template-columns: 1fr
    }
}

.lrn-prog .stats-txt-col h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2d2a;
    margin-bottom: 16px
}

@media (max-width: 640px) {
    .lrn-prog .stats-txt-col h2 {
        font-size: 26px
    }
}

.lrn-prog .stats-txt-col p {
    font-size: 20px;
    line-height: 1.5;
    color: #3a5552;
    margin-bottom: 24px
}

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

.lrn-prog .stat-item {
    background: #FAFCFC;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 2px 1px 2px 0 #3dc1a50f;
    position: relative
}

.lrn-prog .stat-item .num-badge {
    position: absolute;
    top: -10px;
    left: 16px
}

.lrn-prog .stat-val {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.03em;
    font-weight: 700;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 16px
}

.lrn-prog .stat-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #5a7a77;
    margin-top: 4px
}

.lrn-prog .stats-img-col {
    position: relative
}

.lrn-prog .stats-img-wrap {
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.lrn-prog .stats-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.2) contrast(1.05) brightness(0.95) saturate(0.9);
    transition: transform .7s ease
}

.lrn-prog .stats-img-wrap:hover img {
    transform: scale(1.03)
}

.lrn-prog .stats-img-overlay {
    position: absolute;
    inset: 0;
    background: #1b2d2a00;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .6s ease
}

.lrn-prog .stats-img-wrap:hover .stats-img-overlay {
    background: #1b2d2a8c
}

.lrn-prog .stats-img-overlay-txt {
    color: #fff;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    padding: 24px;
    opacity: 0;
    transition: opacity .6s ease;
    font-weight: 600
}

.lrn-prog .stats-img-wrap:hover .stats-img-overlay-txt {
    opacity: 1
}

@media (max-width: 640px) {
    .lrn-prog .stats-img-wrap {
        height: 220px
    }
}

@keyframes bg-osc3 {

    0%,
    100% {
        background-color: #FAFCFC
    }

    50% {
        background-color: #f0f9f7
    }
}

.lrn-prog .faq-row {
    position: relative;
    animation: bg-osc3 11s ease infinite
}

.lrn-prog .faq-row .tri-corner-tl {
    border-width: 56px 56px 0 0
}

.lrn-prog .faq-head {
    margin-bottom: 48px
}

.lrn-prog .faq-head h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2d2a;
    margin-bottom: 16px
}

@media (max-width: 640px) {
    .lrn-prog .faq-head h2 {
        font-size: 26px
    }
}

.lrn-prog .faq-head p {
    font-size: 20px;
    line-height: 1.5;
    color: #3a5552;
    max-width: 560px
}

.lrn-prog .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px
}

.lrn-prog .faq-item {
    background: #fff;
    border-radius: 20px;
    box-shadow: 2px 4px 22px 0 #3dc1a514;
    overflow: hidden
}

.lrn-prog .faq-q {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    list-style: none;
    font-size: 20px;
    line-height: 1.5;
    color: #1b2d2a;
    font-weight: 600;
    transition: color .5s ease
}

.lrn-prog .faq-q::-webkit-details-marker {
    display: none
}

.lrn-prog .faq-q:hover {
    color: #3DC1A5
}

.lrn-prog .faq-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background: #3dc1a51f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .5s ease
}

.lrn-prog details[open] .faq-icon {
    background: #3DC1A5
}

.lrn-prog .faq-icon svg path {
    transition: stroke .5s ease
}

.lrn-prog details[open] .faq-icon svg path {
    stroke: #fff
}

.lrn-prog .faq-ans {
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.8;
    color: #3a5552
}

.lrn-prog .enroll-row {
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    position: relative
}

.lrn-prog .enroll-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.lrn-prog .enroll-txt h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 16px
}

@media (max-width: 640px) {
    .lrn-prog .enroll-txt h2 {
        font-size: 26px
    }
}

.lrn-prog .enroll-txt p {
    font-size: 20px;
    line-height: 1.5;
    color: #ffffffe0;
    max-width: 520px
}

.lrn-prog .btn-enroll {
    display: inline-block;
    font-size: 20px;
    line-height: 1.5;
    color: #3DC1A5;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 16px 48px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
    transition: background .6s ease, color .6s ease, padding .5s ease
}

.lrn-prog .btn-enroll:hover {
    background: transparent;
    color: #fff;
    padding-left: 64px;
    padding-right: 64px
}

.lrn-prog .btn-enroll:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a52e
}

.lrn-prog .cards-section-head {
    margin-bottom: 48px
}

.lrn-prog .cards-section-head h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b2d2a;
    margin-bottom: 16px
}

@media (max-width: 640px) {
    .lrn-prog .cards-section-head h2 {
        font-size: 26px
    }
}

.lrn-prog .cards-section-head p {
    font-size: 20px;
    line-height: 1.5;
    color: #3a5552;
    max-width: 600px
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 24px;
    background: #FAFCFC
}

.success-page .result-card {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border: 4px solid #3DC1A5;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    box-shadow: 2px 10px 60px 0 #3dc1a524
}

.success-page .result-card .icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 48px;
    background: #A9D9D4;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-page .result-card .icon-wrap svg {
    width: 36px;
    height: 36px
}

.success-page .result-card .confirm-heading {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin: 0 0 16px;
    background: linear-gradient(211deg, #3DC1A5 30%, #A9D9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.success-page .result-card .confirm-msg {
    font-size: 20px;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0 0 8px
}

.success-page .result-card .confirm-sub {
    font-size: 15px;
    line-height: 1.8;
    color: #4a5a58;
    margin: 0 0 48px
}

.success-page .result-card .back-btn {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    color: #3DC1A5;
    border: 2px solid #3DC1A5;
    border-radius: 8px;
    padding: 16px 48px;
    text-decoration: none;
    transition: background .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), color .6s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding .5s ease;
    background: transparent
}

.success-page .result-card .back-btn:hover {
    background: #3DC1A5;
    color: #fff;
    padding: 16px 56px
}

.success-page .result-card .back-btn:focus {
    outline: 3px solid #3DC1A5;
    outline-offset: 3px
}

.success-page .result-card .back-btn:active {
    box-shadow: inset 2px 1px 2px 0 #3dc1a50f
}

@media (max-width: 640px) {
    .success-page {
        padding: 48px 16px
    }

    .success-page .result-card {
        padding: 24px 16px
    }

    .success-page .result-card .confirm-heading {
        font-size: 26px
    }

    .success-page .result-card .confirm-msg {
        font-size: 15px
    }
}