@import "https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,400;1,400;0,700;1,700&display=swap";

html {
    box-sizing: border-box;
    font-size: 100%
}

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

html,
body {
    margin: 0
}

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

.site-header {
    position: relative;
    background: #fff;
    border-bottom: 1px solid #C7D1FD;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    z-index: 100;
    overflow: hidden
}

.site-header::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F04A96 0%, #C7D1FD 50%, #028464 100%);
    pointer-events: none
}

.header-utility-row {
    max-width: 1100px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.header-brand-group {
    display: flex;
    align-items: center;
    gap: 16px
}

.logo-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 1px 6px -1px #f04a960f 2px 5px 22px -1px #f04a961c;
    border: 1px solid #C7D1FD;
    flex-shrink: 0
}

.logo-shell img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block
}

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

.brand-name {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827;
    letter-spacing: .01em;
    text-decoration: none
}

.brand-tagline {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #028464;
    letter-spacing: .04em
}

.header-contact-strip {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #374151;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color .2s ease-out, background .18s ease-out
}

.contact-chip:hover,
.contact-chip:focus {
    color: #F04A96;
    background: #f04a960f;
    outline: none
}

.contact-chip:focus-visible {
    outline: 2px solid #F04A96;
    outline-offset: 2px
}

.contact-chip-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, #02846414 0%, #c7d1fd40 100%);
    border: 1px solid #02846433
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0
}

.trust-badge-text {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    color: #028464;
    letter-spacing: .03em
}

.trust-badge-sub {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.1;
    color: #374151
}

.header-nav-row {
    background: linear-gradient(90deg, #c7d1fd2e 0%, #f04a960d 100%);
    border-top: 1px solid #c7d1fd80
}

.header-nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.nav-pill-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #1f2937;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 0;
    position: relative;
    transition: color .22s ease-out;
    white-space: nowrap;
    min-height: 44px
}

.nav-pill-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #F04A96;
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform .25s ease-out;
    transform-origin: left center
}

.nav-pill-link:hover {
    color: #F04A96
}

.nav-pill-link:hover::after {
    transform: scaleX(1)
}

.nav-pill-link:focus-visible {
    outline: 2px solid #028464;
    outline-offset: 2px;
    border-radius: 3px
}

.nav-pill-link.active {
    color: #F04A96;
    font-weight: 700
}

.nav-pill-link.active::after {
    transform: scaleX(1)
}

.nav-divider {
    width: 1px;
    height: 20px;
    background: #c7d1fdcc;
    flex-shrink: 0
}

.nav-pill-link-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.site-footer {
    background: linear-gradient(180deg, #f5f7ff 0%, #e8ecff 40%, #d4daf5 100%);
    border-top: 1px solid #C7D1FD;
    padding: 80px 0 40px
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px
}

.footer-top-row {
    display: flex;
    align-items: flex-start;
    gap: 80px;
    flex-wrap: wrap;
    margin-bottom: 80px
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
    min-width: 200px
}

.footer-logo-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 1px 6px -1px #f04a960f 2px 5px 22px -1px #f04a961c;
    border: 1px solid #C7D1FD
}

.footer-logo-shell img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block
}

.footer-brand-name {
    font-family: 'Archivo', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.1;
    color: #111827
}

.footer-brand-desc {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #374151;
    max-width: 240px
}

.footer-links-cols {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
    flex: 1
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 140px
}

.footer-group-label {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    color: #028464;
    letter-spacing: .06em;
    text-transform: uppercase
}

.footer-link-item {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #374151;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease-out;
    min-height: 44px;
    align-self: flex-start
}

.footer-link-item:hover {
    color: #F04A96
}

.footer-link-item:focus-visible {
    outline: 2px solid #028464;
    outline-offset: 2px;
    border-radius: 3px
}

.footer-contact-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.footer-contact-item {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #374151;
    text-decoration: none;
    transition: color .2s ease-out;
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.footer-contact-item:hover {
    color: #F04A96
}

.footer-contact-item:focus-visible {
    outline: 2px solid #028464;
    outline-offset: 2px;
    border-radius: 3px
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px
}

.footer-bottom-row {
    border-top: 1px solid #c7d1fdb3;
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.footer-copy {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #374151
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.footer-legal-link {
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #374151;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 3px;
    transition: color .2s ease-out, background .18s ease-out
}

.footer-legal-link:hover {
    color: #F04A96;
    background: #f04a960f
}

.footer-legal-link:focus-visible {
    outline: 2px solid #028464;
    outline-offset: 2px
}

.cookie-popup-box {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 320px;
    background: #fff;
    border: 1px solid #C7D1FD;
    border-radius: 10px;
    box-shadow: 2px 10px 44px -1px #f04a9621;
    z-index: 1200;
    padding: 16px;
    font-family: 'Archivo', sans-serif
}

.cookie-desc-text {
    font-size: 15px;
    line-height: 1.7;
    color: #1f2937;
    margin: 0 0 8px
}

.cookie-uses-list {
    margin: 0 0 16px;
    padding: 0 0 0 16px;
    list-style: disc;
    font-size: 15px;
    line-height: 1.7;
    color: #374151
}

.cookie-settings-area {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.cookie-settings-area.open {
    display: flex
}

.cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #1f2937
}

.cookie-toggle-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #028464;
    cursor: pointer;
    flex-shrink: 0
}

.cookie-btn-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.cookie-btn-accept {
    flex: 1;
    min-height: 44px;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid #028464;
    background: transparent;
    color: #028464;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: color .22s ease-out, background .22s ease-out;
    position: relative;
    overflow: hidden
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus-visible {
    background: #028464;
    color: #fff;
    outline: none
}

.cookie-btn-accept:focus-visible {
    outline: 2px solid #028464;
    outline-offset: 2px
}

.cookie-btn-decline {
    flex: 1;
    min-height: 44px;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid #F04A96;
    background: transparent;
    color: #F04A96;
    font-family: 'Archivo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: color .25s ease-out, background .25s ease-out
}

.cookie-btn-decline:hover,
.cookie-btn-decline:focus-visible {
    background: #F04A96;
    color: #fff;
    outline: none
}

.cookie-btn-decline:focus-visible {
    outline: 2px solid #F04A96;
    outline-offset: 2px
}

.cookie-settings-link {
    display: block;
    text-align: center;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
    text-decoration: underline;
    padding: 4px;
    transition: color .2s ease-out
}

.cookie-settings-link:hover,
.cookie-settings-link:focus-visible {
    color: #F04A96;
    outline: none
}

.cookie-settings-link:focus-visible {
    outline: 2px solid #028464;
    outline-offset: 2px
}

.prefs-reopen-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #C7D1FD;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1100;
    transition: box-shadow .22s ease-out, border-color .22s ease-out
}

.prefs-reopen-btn:hover,
.prefs-reopen-btn:focus-visible {
    border-color: #028464;
    box-shadow: 2px 10px 44px -1px #02846421;
    outline: none
}

.prefs-reopen-btn:focus-visible {
    outline: 2px solid #028464;
    outline-offset: 2px
}

.prefs-reopen-icon {
    width: 22px;
    height: 22px
}

@media (max-width: 768px) {
    .header-utility-row {
        padding: 8px 16px;
        gap: 8px
    }

    .header-nav-inner {
        padding: 0 16px
    }

    .footer-inner {
        padding: 0 16px
    }

    .footer-top-row {
        gap: 40px;
        margin-bottom: 40px
    }

    .footer-links-cols {
        gap: 40px
    }

    .header-contact-strip {
        gap: 8px
    }

    .trust-badge {
        padding: 8px
    }

    .cookie-popup-box {
        width: calc(100vw - 32px);
        right: 16px
    }
}

.doc-text {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 40px
}

.doc-text h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -.5px;
    color: #111318;
    margin-bottom: 40px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #C7D1FD;
    border-left: 4px solid #F04A96;
    border-right: none;
    border-top: none;
    padding-left: 16px
}

.doc-text h2 {
    font-size: 50px;
    line-height: 1.1;
    letter-spacing: -.2px;
    color: #111318;
    margin-top: 80px;
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid #028464;
    border-right: none;
    border-top: none;
    border-bottom: none
}

.doc-text h3 {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: .06em;
    color: #111318;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 8px;
    font-weight: 700
}

.doc-text h4 {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: .03em;
    color: #1a2540;
    margin-top: 40px;
    margin-bottom: 8px;
    font-weight: 600;
    padding: 8px 16px;
    background-color: #f0f3ff;
    border-radius: 6px
}

.doc-text h5 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .08em;
    color: #028464;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 8px;
    font-weight: 700
}

.doc-text h6 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .05em;
    color: #555e75;
    margin-top: 16px;
    margin-bottom: 8px;
    font-weight: 600
}

.doc-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #2b3245;
    margin-top: 0;
    margin-bottom: 16px;
    max-width: 72ch
}

.doc-text strong,
.doc-text b {
    font-weight: 700;
    color: #111318
}

.doc-text em,
.doc-text i {
    font-style: italic;
    color: #3a4460
}

.doc-text hr {
    border: none;
    border-top: 1px solid #C7D1FD;
    margin-top: 40px;
    margin-bottom: 40px;
    height: 0;
    background: none
}

.doc-text div {
    font-size: 17px;
    line-height: 1.7;
    color: #2b3245
}

.doc-text div+div {
    margin-top: 16px
}

@media (max-width: 768px) {
    .doc-text {
        padding: 40px 16px
    }

    .doc-text h1 {
        font-size: 50px
    }

    .doc-text h2 {
        font-size: 50px;
        margin-top: 40px
    }

    .doc-text p {
        max-width: 100%
    }
}

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

    .doc-text h1 {
        font-size: 50px;
        padding-left: 8px
    }

    .doc-text h2 {
        font-size: 50px;
        padding-left: 8px
    }
}

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

.lrn-prog-dtl img {
    max-width: 100%;
    object-fit: cover
}

.lrn-prog-dtl .pg-breadcrumb {
    background: #f5f5f5;
    padding: 16px 0;
    border-bottom: 1px solid #e8e8e8
}

.lrn-prog-dtl .pg-breadcrumb-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.lrn-prog-dtl .pg-breadcrumb-inner a {
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    text-decoration: none;
    position: relative;
    padding: 4px 8px;
    border-radius: 3px;
    transition: background-color .2s ease-out, color .25s ease-out
}

.lrn-prog-dtl .pg-breadcrumb-inner a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: #C7D1FD;
    border-radius: 3px;
    transition: width .22s ease-out;
    z-index: 0
}

.lrn-prog-dtl .pg-breadcrumb-inner a:hover::before {
    width: 100%
}

.lrn-prog-dtl .pg-breadcrumb-inner a span {
    position: relative;
    z-index: 1
}

.lrn-prog-dtl .pg-breadcrumb-sep {
    font-size: 15px;
    color: #8a8a8a;
    line-height: 1.4
}

.lrn-prog-dtl .pg-breadcrumb-current {
    font-size: 15px;
    line-height: 1.4;
    color: #3d3d3d
}

.lrn-prog-dtl .title-strip {
    background: linear-gradient(160deg, #f04a9612 0%, #0284640a 60%, #fff 100%);
    padding: 40px 0;
    position: relative
}

.lrn-prog-dtl .title-strip-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F04A96 0%, #028464 100%);
    border-radius: 0 3px 3px 0
}

.lrn-prog-dtl .title-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 40px
}

.lrn-prog-dtl .title-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center
}

.lrn-prog-dtl .title-meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.lrn-prog-dtl .tag-category {
    background: #F04A96;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    padding: 4px 16px;
    border-radius: 3px;
    letter-spacing: .06em
}

.lrn-prog-dtl .tag-user-fmt {
    background: #C7D1FD;
    color: #1a2060;
    font-size: 15px;
    line-height: 1.4;
    padding: 4px 16px;
    border-radius: 3px;
    letter-spacing: .04em
}

.lrn-prog-dtl .title-h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #1b1b1b;
    margin: 0
}

.lrn-prog-dtl .title-h1 span {
    display: block
}

.lrn-prog-dtl .title-desc-text {
    font-size: 17px;
    line-height: 1.7;
    color: #3d3d3d;
    margin: 0;
    max-width: 560px
}

.lrn-prog-dtl .title-pub-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap
}

.lrn-prog-dtl .title-pub-item {
    font-size: 15px;
    line-height: 1.4;
    color: #5a5a5a;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.lrn-prog-dtl .title-pub-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.lrn-prog-dtl .title-img-col {
    width: 220px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 5px 22px -1px #f04a961c
}

.lrn-prog-dtl .title-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
    transition: filter .35s ease-out
}

.lrn-prog-dtl .title-img-col:hover img {
    filter: grayscale(0%)
}

.lrn-prog-dtl .svg-divider-1 {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff
}

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

.lrn-prog-dtl .prog-body-wrap {
    background: #fff;
    padding: 0 0 80px
}

.lrn-prog-dtl .prog-body-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start
}

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

.lrn-prog-dtl .prog-sidebar {
    width: 300px;
    flex-shrink: 0
}

.lrn-prog-dtl .prog-program-block {
    background: #f5f7ff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 2px 1px 6px -1px #0284640f
}

.lrn-prog-dtl .prog-program-block h2 {
    font-size: 17px;
    line-height: 1.4;
    color: #028464;
    margin: 0 0 16px;
    letter-spacing: .07em;
    text-transform: uppercase
}

.lrn-prog-dtl .prog-program-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d;
    margin: 0 0 8px
}

.lrn-prog-dtl .prog-program-block em {
    font-style: italic;
    color: #5a5a5a
}

.lrn-prog-dtl .prog-program-block mark {
    background: #C7D1FD;
    color: #1a2060;
    padding: 0 4px;
    border-radius: 3px
}

.lrn-prog-dtl .prog-program-block ul {
    padding-left: 16px;
    margin: 8px 0
}

.lrn-prog-dtl .prog-program-block ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d;
    margin-bottom: 4px
}

.lrn-prog-dtl .prog-program-block blockquote {
    border-top: 2px solid #F04A96;
    padding: 16px;
    margin: 16px 0;
    background: #fff;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d
}

.lrn-prog-dtl .prog-program-block details {
    margin: 8px 0;
    border: 1px solid #d0d9ff;
    border-radius: 6px;
    overflow: hidden
}

.lrn-prog-dtl .prog-program-block summary {
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    cursor: pointer;
    background: #eef1ff;
    transition: background-color .2s ease-out
}

.lrn-prog-dtl .prog-program-block summary:hover {
    background: #C7D1FD
}

.lrn-prog-dtl .prog-program-block details> :not(summary) {
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d
}

.lrn-prog-dtl .prog-desc-block {
    padding: 0
}

.lrn-prog-dtl .prog-desc-block h2 {
    font-size: 17px;
    line-height: 1.4;
    color: #1b1b1b;
    margin: 0 0 16px
}

.lrn-prog-dtl .prog-desc-block h3 {
    font-size: 17px;
    line-height: 1.4;
    color: #028464;
    margin: 16px 0 8px
}

.lrn-prog-dtl .prog-desc-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d;
    margin: 0 0 16px
}

.lrn-prog-dtl .prog-desc-block strong {
    color: #1b1b1b
}

.lrn-prog-dtl .prog-desc-block cite {
    font-style: italic;
    color: #5a5a5a;
    font-size: 15px
}

.lrn-prog-dtl .prog-desc-block ul {
    padding-left: 16px;
    margin: 8px 0 16px
}

.lrn-prog-dtl .prog-desc-block ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d;
    margin-bottom: 4px
}

.lrn-prog-dtl .prog-desc-block dl {
    margin: 16px 0
}

.lrn-prog-dtl .prog-desc-block dt {
    font-size: 15px;
    line-height: 1.4;
    color: #1b1b1b;
    font-weight: 600;
    margin-top: 8px
}

.lrn-prog-dtl .prog-desc-block dd {
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d;
    margin-left: 16px
}

.lrn-prog-dtl .prog-desc-block blockquote {
    border-top: 2px solid #028464;
    padding: 16px;
    margin: 16px 0;
    background: #f0faf7;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d
}

.lrn-prog-dtl .prog-desc-block details {
    margin: 8px 0;
    border: 1px solid #c5d5d0;
    border-radius: 6px;
    overflow: hidden
}

.lrn-prog-dtl .prog-desc-block summary {
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    cursor: pointer;
    background: #e8f5f1;
    transition: background-color .18s ease-out
}

.lrn-prog-dtl .prog-desc-block summary:hover {
    background: #C7D1FD
}

.lrn-prog-dtl .prog-desc-block details> :not(summary) {
    padding: 8px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d
}

.lrn-prog-dtl .sidebar-price-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 2px 10px 44px -1px #f04a9621;
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog-dtl .sidebar-price-val {
    font-size: 50px;
    line-height: 1.1;
    color: #1b1b1b;
    font-weight: 700
}

.lrn-prog-dtl .sidebar-price-des {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a5a;
    margin: 0
}

.lrn-prog-dtl .sidebar-price-note {
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    background: #e8f5f1;
    border-radius: 6px;
    padding: 8px 16px
}

.lrn-prog-dtl .sidebar-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.lrn-prog-dtl .sidebar-meta-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.lrn-prog-dtl .sidebar-meta-label {
    font-size: 15px;
    line-height: 1.4;
    color: #8a8a8a;
    min-width: 80px;
    flex-shrink: 0
}

.lrn-prog-dtl .sidebar-meta-val {
    font-size: 15px;
    line-height: 1.4;
    color: #1b1b1b
}

.lrn-prog-dtl .sidebar-seats {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    background: #fff5fa;
    border-radius: 6px;
    padding: 8px 16px
}

.lrn-prog-dtl .sidebar-seats-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #F04A96;
    flex-shrink: 0;
    animation: seat-flicker 2.8s ease-out infinite
}

@keyframes seat-flicker {
    0% {
        opacity: 1
    }

    40% {
        opacity: .35
    }

    55% {
        opacity: .9
    }

    70% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

.lrn-prog-dtl .sidebar-seats-txt {
    font-size: 15px;
    line-height: 1.4;
    color: #c0245a
}

.lrn-prog-dtl .enroll-btn {
    display: block;
    text-align: center;
    background: #028464;
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.lrn-prog-dtl .enroll-btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #F04A96;
    transition: height .28s ease-out;
    z-index: 0
}

.lrn-prog-dtl .enroll-btn:hover::before {
    height: 100%
}

.lrn-prog-dtl .enroll-btn span {
    position: relative;
    z-index: 1
}

.lrn-prog-dtl .enroll-btn:focus {
    outline: 2px solid #028464;
    outline-offset: 3px
}

.lrn-prog-dtl .report-err-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #8a8a8a;
    text-decoration: none;
    justify-content: center;
    padding: 4px 8px;
    border-radius: 3px;
    transition: color .18s ease-out, background-color .22s ease-out
}

.lrn-prog-dtl .report-err-link:hover {
    color: #c0245a;
    background: #fff0f6
}

.lrn-prog-dtl .report-err-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.lrn-prog-dtl .svg-divider-2 {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #f5f7ff
}

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

.lrn-prog-dtl .dot-texture-sect {
    background: #f5f7ff;
    padding: 80px 0;
    position: relative
}

.lrn-prog-dtl .dot-texture-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #0284641f 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: 14px 0;
    pointer-events: none
}

.lrn-prog-dtl .dot-texture-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #f04a9614 1px, transparent 1px);
    background-size: 28px 28px;
    background-position: 0 14px
}

.lrn-prog-dtl .curl-deco {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 80px;
    height: 80px;
    opacity: .12;
    pointer-events: none
}

.lrn-prog-dtl .stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1
}

.lrn-prog-dtl .stats-heading {
    font-size: 50px;
    line-height: 1.1;
    color: #1b1b1b;
    margin: 0 0 40px;
    text-align: center
}

.lrn-prog-dtl .stats-heading span {
    display: block
}

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

.lrn-prog-dtl .stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 40px 16px;
    text-align: center;
    box-shadow: 2px 1px 6px -1px #0284640f;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .25s ease-out, transform .2s ease-out
}

.lrn-prog-dtl .stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F04A96, #028464);
    border-radius: 10px 10px 0 0
}

.lrn-prog-dtl .stat-card:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621;
    transform: translateY(-4px)
}

.lrn-prog-dtl .stat-num {
    font-size: 50px;
    line-height: 1.1;
    color: #028464;
    font-weight: 700
}

.lrn-prog-dtl .stat-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #5a5a5a;
    letter-spacing: .05em
}

.lrn-prog-dtl .stat-card-expand {
    width: 0;
    height: 3px;
    background: #F04A96;
    border-radius: 3px;
    transition: width .35s ease-out;
    margin-top: 8px
}

.lrn-prog-dtl .stat-card:hover .stat-card-expand {
    width: 60px
}

@media (max-width: 900px) {
    .lrn-prog-dtl .title-strip-inner {
        flex-direction: column;
        gap: 16px
    }

    .lrn-prog-dtl .title-img-col {
        width: 100%;
        height: 200px
    }

    .lrn-prog-dtl .prog-body-inner {
        flex-direction: column;
        gap: 40px
    }

    .lrn-prog-dtl .prog-sidebar {
        width: 100%
    }

    .lrn-prog-dtl .sidebar-price-card {
        position: static
    }

    .lrn-prog-dtl .stats-grid {
        grid-template-columns: 1fr 1fr
    }

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

@media (max-width: 600px) {

    .lrn-prog-dtl .title-strip-inner,
    .lrn-prog-dtl .prog-body-inner,
    .lrn-prog-dtl .stats-inner {
        padding: 0 16px
    }

    .lrn-prog-dtl .pg-breadcrumb-inner {
        padding: 0 16px
    }

    .lrn-prog-dtl .stats-grid {
        grid-template-columns: 1fr
    }

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

    .lrn-prog-dtl .sidebar-price-card {
        padding: 16px
    }

    .lrn-prog-dtl .prog-program-block {
        padding: 16px
    }
}

.prm-idx {
    background-color: #fff;
    overflow-x: hidden
}

.prm-idx .pg-strip {
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px
}

.prm-idx .grad-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #F04A96 35%, #028464 65%, transparent 100%);
    border: none;
    margin: 0
}

.prm-idx .grad-divider-alt {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #C7D1FD 50%, transparent 100%);
    border: none;
    margin: 0
}

.prm-idx .lbl-tag {
    display: inline-block;
    background-color: #C7D1FD;
    color: #1a1a2e;
    font-size: 15px;
    letter-spacing: .08em;
    padding: 4px 16px;
    border-radius: 3px;
    font-weight: 600;
    color: #12124a
}

.prm-idx .lbl-tag.pink {
    background-color: #F04A96;
    color: #fff
}

.prm-idx .lbl-tag.green {
    background-color: #028464;
    color: #fff
}

.prm-idx .sec-divider-dash {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    justify-content: center
}

.prm-idx .sec-divider-dash .dash-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.prm-idx .sec-divider-dash .dash-line {
    flex: 1;
    height: 1px;
    border-top: 2px dashed #C7D1FD;
    max-width: 120px
}

.prm-idx .icon-connector-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    justify-content: center;
    padding: 16px 0
}

.prm-idx .icon-connector-row .conn-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #C7D1FD
}

.prm-idx .icon-connector-row .conn-icon svg {
    width: 18px;
    height: 18px
}

.prm-idx .icon-connector-row .conn-dashed {
    width: 48px;
    height: 1px;
    border-top: 2px dashed #F04A96
}

.prm-idx .dbl-border-wrap {
    border: 2px solid #F04A96;
    padding: 4px;
    border-radius: 10px;
    display: inline-block
}

.prm-idx .dbl-border-wrap .dbl-inner {
    border: 2px solid #C7D1FD;
    border-radius: 6px;
    overflow: hidden
}

.prm-idx .corner-bracket {
    position: relative
}

.prm-idx .corner-bracket::before,
.prm-idx .corner-bracket::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: #F04A96;
    border-style: solid
}

.prm-idx .corner-bracket::before {
    top: -4px;
    left: -4px;
    border-width: 2px 0 0 2px;
    border-radius: 3px 0 0 0
}

.prm-idx .corner-bracket::after {
    bottom: -4px;
    right: -4px;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 3px 0
}

.prm-idx .anim-color-shift {
    animation: colorReveal .45s ease-out forwards
}

@keyframes colorReveal {
    0% {
        color: #C7D1FD
    }

    60% {
        color: #F04A96
    }

    100% {
        color: #1a2e2e
    }
}

.prm-idx .btn-prim {
    display: inline-block;
    background-color: #028464;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out, box-shadow .25s ease-out;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.prm-idx .btn-prim::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: #F04A96;
    transition: bottom .22s ease-out;
    z-index: 0
}

.prm-idx .btn-prim:hover::before {
    bottom: 0
}

.prm-idx .btn-prim span {
    position: relative;
    z-index: 1
}

.prm-idx .btn-prim:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621
}

.prm-idx .btn-sec {
    display: inline-block;
    background-color: transparent;
    color: #028464;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .05em;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #028464;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out, border-color .18s ease-out
}

.prm-idx .btn-sec::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background-color: #028464;
    transition: bottom .2s ease-out;
    z-index: 0
}

.prm-idx .btn-sec:hover::before {
    bottom: 0
}

.prm-idx .btn-sec:hover {
    color: #fff
}

.prm-idx .btn-sec span {
    position: relative;
    z-index: 1
}

.prm-idx .inline-lnk {
    color: #028464;
    text-decoration: none;
    position: relative;
    padding: 0 4px
}

.prm-idx .inline-lnk::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background-color: #C7D1FD;
    border-radius: 3px;
    transition: width .2s ease-out;
    z-index: -1
}

.prm-idx .inline-lnk:hover::before {
    width: 100%
}

.prm-idx .txt-15 {
    font-size: 15px;
    line-height: 1.7
}

.prm-idx .txt-17 {
    font-size: 17px;
    line-height: 1.7
}

.prm-idx .txt-dark {
    color: #1a2e2e
}

.prm-idx .txt-mid {
    color: #2e4a48
}

.prm-idx .txt-center {
    text-align: center
}

.prm-idx .txt-left {
    text-align: left
}

.prm-idx .h-50 {
    font-size: 50px;
    line-height: 1.1
}

.prm-idx .h-68 {
    font-size: 68px;
    line-height: 1.1
}

.prm-idx .fw-700 {
    font-weight: 700
}

.prm-idx .fw-400 {
    font-weight: 400
}

.prm-idx .mt-4 {
    margin-top: 4px !important
}

.prm-idx .mt-8 {
    margin-top: 8px
}

.prm-idx .mt-16 {
    margin-top: 16px
}

.prm-idx .mt-40 {
    margin-top: 40px
}

.prm-idx .mt-80 {
    margin-top: 80px
}

.prm-idx .mb-16 {
    margin-bottom: 16px
}

.prm-idx .mb-40 {
    margin-bottom: 40px
}

.prm-idx .mb-80 {
    margin-bottom: 80px
}

.prm-idx .pb-40 {
    padding-bottom: 40px
}

.prm-idx .pb-80 {
    padding-bottom: 80px
}

.prm-idx .pt-40 {
    padding-top: 40px
}

.prm-idx .pt-80 {
    padding-top: 80px
}

.prm-idx .sec-bg-tinted {
    background-color: #f5f8f7;
    background-image: radial-gradient(ellipse at 60% 40%, #c7d1fd2e 0%, #0284640a 100%);
    position: relative
}

.prm-idx .sec-bg-warm {
    background-color: #fff8fb;
    background-image: radial-gradient(ellipse at 40% 60%, #f04a9612 0%, #c7d1fd1f 100%);
    position: relative
}

.prm-idx .sec-bg-deep {
    background-color: #f0f4f3;
    background-image: radial-gradient(ellipse at 50% 30%, #0284641a 0%, #f04a960a 100%);
    position: relative
}

.prm-idx .sec-bg-plain {
    background-color: #fff
}

.prm-idx .sec-bg-contrast {
    background-color: #0d2e28;
    background-image: radial-gradient(ellipse at 70% 50%, #f04a961f 0%, #02846414 100%)
}

.prm-idx .sec-texture-overlay {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 28px, #c7d1fd0f 28px, #c7d1fd0f 29px);
    pointer-events: none
}

.prm-idx .title-strip-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    border-radius: 10px 10px 0 0
}

.prm-idx .title-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(100%) contrast(1.3) brightness(0.85);
    display: block;
    max-width: 100%
}

.prm-idx .title-strip-img .vignette-layer {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #0a1e198c 100%);
    pointer-events: none;
    border-radius: 10px 10px 0 0
}

.prm-idx .title-strip-wrap {
    position: relative
}

.prm-idx .title-txt-zone {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 40px;
    border: 2px solid #F04A96;
    border-top: none
}

.prm-idx .title-strip-outer {
    border: 2px solid #C7D1FD;
    border-radius: 10px;
    padding: 4px;
    box-shadow: 2px 10px 44px -1px #f04a9621
}

.prm-idx .title-strip-outer .title-strip-img {
    border: none
}

.prm-idx .title-txt-zone .point-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.prm-idx .title-txt-zone .point-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48
}

.prm-idx .title-txt-zone .point-list li .pt-dot {
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background-color: #F04A96;
    flex-shrink: 0;
    margin-top: 8px
}

.prm-idx .title-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px
}

.prm-idx .title-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 40px
}

.prm-idx .title-aside .aside-stat {
    border-radius: 6px;
    background-color: #f5f8f7;
    padding: 16px;
    border: 1px solid #C7D1FD;
    box-shadow: 2px 1px 6px -1px #0284640f
}

.prm-idx .title-aside .aside-stat .stat-num {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #028464
}

.prm-idx .title-aside .aside-stat .stat-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #2e4a48;
    margin-top: 4px
}

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

.prm-idx .outcome-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px 16px 16px;
    border: 1px solid #C7D1FD;
    box-shadow: 2px 5px 22px -1px #0284641c;
    transition: box-shadow .25s ease-out, border-color .2s ease-out;
    position: relative;
    overflow: hidden
}

.prm-idx .outcome-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F04A96, #028464);
    border-radius: 10px 10px 0 0
}

.prm-idx .outcome-card:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621;
    border-color: #F04A96
}

.prm-idx .outcome-card .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background-color: #C7D1FD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background-color .2s ease-out
}

.prm-idx .outcome-card:hover .card-icon {
    background-color: #F04A96
}

.prm-idx .outcome-card:hover .card-icon svg {
    color: #fff
}

.prm-idx .outcome-card .card-icon svg {
    width: 22px;
    height: 22px;
    color: #028464;
    transition: color .2s ease-out
}

.prm-idx .outcome-card h5 {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a2e2e;
    margin: 0 0 8px
}

.prm-idx .outcome-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48;
    margin: 0
}

.prm-idx .hesitation-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.prm-idx .hesitation-img-wrap {
    position: relative
}

.prm-idx .hesitation-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
    max-width: 100%;
    box-shadow: 2px 10px 44px -1px #f04a9621
}

.prm-idx .hesitation-img-wrap .vign-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 35%, #0a1e1973 100%);
    border-radius: 10px;
    pointer-events: none
}

.prm-idx .hesitation-txt h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a2e2e;
    margin: 0 0 16px
}

.prm-idx .hesitation-txt p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48;
    margin: 0 0 16px
}

.prm-idx .hesitation-txt .honest-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 16px;
    border: 1px solid #C7D1FD;
    margin-top: 16px;
    box-shadow: 2px 1px 6px -1px #0284640f
}

.prm-idx .hesitation-txt .honest-box .hb-label {
    font-size: 15px;
    font-weight: 700;
    color: #028464;
    letter-spacing: .05em;
    margin-bottom: 8px
}

.prm-idx .hesitation-txt .honest-box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48
}

.prm-idx .longval-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

.prm-idx .longval-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm-idx .longval-img-col img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
    max-width: 100%;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.prm-idx .longval-img-col .img-caption {
    font-size: 15px;
    line-height: 1.4;
    color: #2e4a48;
    padding: 8px 0;
    border-top: 1px solid #C7D1FD
}

.prm-idx .longval-txt-col h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a2e2e;
    margin: 0 0 16px
}

.prm-idx .longval-txt-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48;
    margin: 0 0 16px
}

.prm-idx .longval-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px
}

.prm-idx .longval-point {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid #C7D1FD;
    box-shadow: 2px 1px 6px -1px #0284640f;
    transition: border-color .2s ease-out, box-shadow .25s ease-out
}

.prm-idx .longval-point:hover {
    border-color: #028464;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.prm-idx .longval-point .lp-num {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #C7D1FD;
    flex-shrink: 0;
    width: 48px;
    text-align: center
}

.prm-idx .longval-point .lp-body h6 {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: #1a2e2e;
    margin: 0 0 4px
}

.prm-idx .longval-point .lp-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48;
    margin: 0
}

.prm-idx .approach-layout {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.prm-idx .approach-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.prm-idx .approach-row.flipped {
    direction: ltr
}

.prm-idx .approach-row .appr-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
    max-width: 100%;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.prm-idx .approach-row .appr-vign {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.prm-idx .approach-row .appr-vign .vign-ov {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #0a1e1966 100%);
    pointer-events: none
}

.prm-idx .approach-txt h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a2e2e;
    margin: 0 0 16px
}

.prm-idx .approach-txt p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48;
    margin: 0 0 16px
}

.prm-idx .approach-pillars {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px
}

.prm-idx .pillar-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    background-color: #f5f8f7;
    font-size: 15px;
    line-height: 1.4;
    color: #1a2e2e;
    font-weight: 600;
    transition: background-color .2s ease-out
}

.prm-idx .pillar-item:hover {
    background-color: #C7D1FD
}

.prm-idx .pillar-item .pi-dot {
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background-color: #028464;
    flex-shrink: 0
}

.prm-idx .approach-img-right {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.prm-idx .approach-img-right img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
    max-width: 100%;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.prm-idx .rep-layout {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.prm-idx .rep-top {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start
}

.prm-idx .rep-top h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #f5f8f7;
    margin: 0 0 16px
}

.prm-idx .rep-top p {
    font-size: 15px;
    line-height: 1.7;
    color: #b8d4cf;
    margin: 0
}

.prm-idx .rep-badges {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end
}

.prm-idx .rep-badge {
    background-color: #c7d1fd1f;
    border: 1px solid #c7d1fd4d;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 15px;
    color: #C7D1FD;
    letter-spacing: .05em;
    font-weight: 600
}

.prm-idx .rep-voices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.prm-idx .voice-card {
    background-color: #ffffff0f;
    border: 1px solid #c7d1fd33;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background-color .22s ease-out, border-color .2s ease-out
}

.prm-idx .voice-card:hover {
    background-color: #ffffff1a;
    border-color: #f04a9666
}

.prm-idx .voice-card .vc-head {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center
}

.prm-idx .voice-card .vc-portrait {
    width: 56px;
    height: 84px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0
}

.prm-idx .voice-card .vc-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    max-width: 100%
}

.prm-idx .voice-card .vc-meta {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.prm-idx .voice-card .vc-name {
    font-size: 17px;
    font-weight: 700;
    color: #f5f8f7;
    line-height: 1.4
}

.prm-idx .voice-card .vc-role {
    font-size: 15px;
    color: #b8d4cf;
    line-height: 1.4
}

.prm-idx .voice-card .vc-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #b8d4cf;
    margin: 0;
    font-style: italic
}

.prm-idx .voice-card .vc-tag {
    display: inline-block;
    background-color: #028464;
    color: #fff;
    font-size: 15px;
    padding: 4px 8px;
    border-radius: 3px;
    font-weight: 600;
    align-self: flex-start
}

.prm-idx .voice-no-portrait {
    background-color: #ffffff0f;
    border: 1px solid #c7d1fd33;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background-color .22s ease-out
}

.prm-idx .voice-no-portrait:hover {
    background-color: #ffffff1a
}

.prm-idx .voice-no-portrait .vnp-name {
    font-size: 17px;
    font-weight: 700;
    color: #f5f8f7;
    line-height: 1.4
}

.prm-idx .voice-no-portrait .vnp-role {
    font-size: 15px;
    color: #b8d4cf
}

.prm-idx .voice-no-portrait .vnp-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #b8d4cf;
    font-style: italic;
    margin: 0
}

.prm-idx .faq-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start
}

.prm-idx .faq-label-col h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a2e2e;
    margin: 0 0 16px
}

.prm-idx .faq-label-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48;
    margin: 0
}

.prm-idx .faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.prm-idx .faq-item {
    border: 1px solid #C7D1FD;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 2px 1px 6px -1px #0284640f
}

.prm-idx .faq-item summary {
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    color: #1a2e2e;
    cursor: pointer;
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    transition: background-color .18s ease-out
}

.prm-idx .faq-item summary::-webkit-details-marker {
    display: none
}

.prm-idx .faq-item summary:hover {
    background-color: #f5f8f7
}

.prm-idx .faq-item summary .faq-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .2s ease-out
}

.prm-idx .faq-item[open] summary .faq-arrow {
    transform: rotate(180deg)
}

.prm-idx .faq-item[open] summary {
    background-color: #f5f8f7;
    border-bottom: 1px solid #C7D1FD
}

.prm-idx .faq-body {
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #2e4a48
}

.prm-idx .faq-body p {
    margin: 0
}

@media (max-width: 900px) {
    .prm-idx .title-layout {
        grid-template-columns: 1fr
    }

    .prm-idx .title-aside {
        flex-direction: row;
        padding-top: 0
    }

    .prm-idx .outcome-grid {
        grid-template-columns: 1fr 1fr
    }

    .prm-idx .hesitation-layout {
        grid-template-columns: 1fr
    }

    .prm-idx .longval-layout {
        grid-template-columns: 1fr
    }

    .prm-idx .approach-row {
        grid-template-columns: 1fr
    }

    .prm-idx .rep-top {
        grid-template-columns: 1fr
    }

    .prm-idx .rep-badges {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap
    }

    .prm-idx .rep-voices {
        grid-template-columns: 1fr
    }

    .prm-idx .faq-layout {
        grid-template-columns: 1fr
    }

    .prm-idx .h-68 {
        font-size: 50px
    }

    .prm-idx .h-50 {
        font-size: 50px
    }
}

@media (max-width: 600px) {
    .prm-idx .outcome-grid {
        grid-template-columns: 1fr
    }

    .prm-idx .title-aside {
        flex-direction: column
    }

    .prm-idx .h-68 {
        font-size: 50px
    }

    .prm-idx .title-txt-zone {
        padding: 16px
    }

    .prm-idx .rep-voices {
        grid-template-columns: 1fr
    }
}

.gds-root {
    background: #fff;
    overflow-x: hidden
}

.gds-root .img-cover {
    max-width: 100%;
    object-fit: cover
}

.gds-root .page-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px
}

.gds-root .tri-divider {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden
}

.gds-root .tri-divider svg {
    display: block;
    width: 100%
}

.gds-root .tb-area {
    position: relative;
    padding: 80px 0 40px;
    background: #f5f7ff;
    overflow: hidden
}

.gds-root .tb-blob-a {
    position: absolute;
    top: -40px;
    left: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #f04a9617;
    filter: blur(48px);
    pointer-events: none
}

.gds-root .tb-blob-b {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: #02846414;
    filter: blur(40px);
    pointer-events: none
}

.gds-root .tb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.gds-root .tb-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.gds-root .tb-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #028464;
    background: #c7d1fd66;
    padding: 4px 16px;
    border-radius: 3px;
    width: fit-content
}

.gds-root .tb-heading {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin: 0
}

.gds-root .tb-heading .accent-num {
    color: #F04A96;
    display: block
}

.gds-root .tb-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    margin: 0;
    max-width: 460px
}

.gds-root .tb-stat-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.gds-root .tb-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    min-width: 110px
}

.gds-root .tb-stat-num {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #F04A96
}

.gds-root .tb-stat-label {
    font-size: 15px;
    line-height: 1.4;
    color: #6b7280;
    letter-spacing: .04em
}

.gds-root .tb-mosaic-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px
}

.gds-root .tb-img-main {
    grid-column: 1 / 3;
    border-radius: 10px;
    overflow: hidden;
    position: relative
}

.gds-root .tb-img-main img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.gds-root .tb-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, #11182773 0%, transparent 60%);
    border-radius: 10px
}

.gds-root .tb-img-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #f04a96e6;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 3px;
    letter-spacing: .06em
}

.gds-root .tb-mini-a {
    border-radius: 10px;
    background: linear-gradient(135deg, #F04A96 0%, #C7D1FD 100%);
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.gds-root .tb-mini-a-num {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1
}

.gds-root .tb-mini-a-text {
    font-size: 15px;
    color: #ffffffd9;
    line-height: 1.4;
    text-align: center;
    padding: 0 4px
}

.gds-root .tb-mini-b {
    border-radius: 10px;
    background: linear-gradient(135deg, #028464 0%, #C7D1FD 100%);
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px
}

.gds-root .tb-mini-b-num {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1
}

.gds-root .tb-mini-b-text {
    font-size: 15px;
    color: #ffffffd9;
    line-height: 1.4;
    text-align: center;
    padding: 0 4px
}

.gds-root .div-a {
    background: #f5f7ff;
    line-height: 0
}

.gds-root .div-a svg {
    display: block;
    width: 100%
}

.gds-root .glist-area {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.gds-root .glist-concentric {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    overflow: hidden
}

.gds-root .glist-concentric svg {
    width: 100%;
    height: 100%
}

.gds-root .glist-head {
    text-align: center;
    margin-bottom: 40px
}

.gds-root .glist-label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 700;
    color: #028464;
    margin-bottom: 8px
}

.gds-root .glist-h2 {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px
}

.gds-root .glist-h2 span {
    display: block
}

.gds-root .glist-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #374151;
    max-width: 560px;
    margin: 0 auto
}

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

.gds-root .g-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: box-shadow .25s ease-out, transform .2s ease-out
}

.gds-root .g-card:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621;
    transform: translateY(-4px)
}

.gds-root .g-card-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    overflow: hidden;
    z-index: 2
}

.gds-root .g-card-corner svg {
    display: block
}

.gds-root .g-card-top {
    padding: 40px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.gds-root .g-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.gds-root .g-card-icon svg {
    width: 22px;
    height: 22px
}

.gds-root .g-card-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 4px
}

.gds-root .g-tag {
    font-size: 15px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 3px;
    letter-spacing: .05em;
    line-height: 1.4
}

.gds-root .g-tag.pink {
    background: #f04a961f;
    color: #c0175e
}

.gds-root .g-tag.green {
    background: #0284641c;
    color: #015e49
}

.gds-root .g-tag.blue {
    background: #c7d1fd99;
    color: #3451b2
}

.gds-root .g-card-h {
    font-size: 17px;
    line-height: 1.4;
    font-weight: 700;
    color: #111827;
    margin: 0
}

.gds-root .g-card-body {
    padding: 0 16px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.gds-root .g-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
    flex: 1
}

.gds-root .g-card-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap
}

.gds-root .g-card-dur {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-size: 15px;
    color: #6b7280
}

.gds-root .g-card-dur svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.gds-root .g-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #028464;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    border: 2px solid #028464;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out, border-color .2s ease-out;
    align-self: flex-start
}

.gds-root .g-card-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #028464;
    transition: height .22s ease-out;
    z-index: 0
}

.gds-root .g-card-link:hover::before {
    height: 100%
}

.gds-root .g-card-link:hover {
    color: #fff
}

.gds-root .g-card-link span {
    position: relative;
    z-index: 1
}

.gds-root .g-card-link svg {
    position: relative;
    z-index: 1;
    width: 14px;
    height: 14px;
    transition: transform .18s ease-out
}

.gds-root .g-card-link:hover svg {
    transform: translateX(3px)
}

.gds-root .g-card.featured {
    grid-column: 1 / 3;
    flex-direction: row
}

.gds-root .g-card.featured .g-card-top {
    flex: 1;
    padding: 40px 16px 16px
}

.gds-root .g-card.featured .g-card-body {
    flex: 1;
    padding: 40px 16px 16px;
    border-left: none
}

.gds-root .g-card.featured .g-card-h {
    font-size: 17px
}

.gds-root .glist-cta-row {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px
}

.gds-root .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    background: #F04A96;
    border: none;
    border-radius: 6px;
    padding: 16px 40px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out;
    text-decoration: none
}

.gds-root .btn-primary::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #c0175e;
    transition: height .25s ease-out;
    z-index: 0
}

.gds-root .btn-primary:hover::before {
    height: 100%
}

.gds-root .btn-primary span {
    position: relative;
    z-index: 1
}

.gds-root .btn-primary:focus {
    outline: 3px solid #F04A96;
    outline-offset: 3px
}

.gds-root .glist-hover-group:hover .glist-word {
    text-decoration: underline;
    text-decoration-color: #F04A96;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px
}

.gds-root .glist-word {
    transition: text-decoration .18s ease-out
}

@media (max-width: 900px) {
    .gds-root .tb-grid {
        grid-template-columns: 1fr
    }

    .gds-root .tb-mosaic-col {
        display: none
    }

    .gds-root .glist-grid {
        grid-template-columns: 1fr 1fr
    }

    .gds-root .g-card.featured {
        grid-column: 1 / 3;
        flex-direction: column
    }
}

@media (max-width: 600px) {
    .gds-root .tb-heading {
        font-size: 50px
    }

    .gds-root .glist-grid {
        grid-template-columns: 1fr
    }

    .gds-root .g-card.featured {
        grid-column: 1 / 2
    }

    .gds-root .glist-h2 {
        font-size: 50px
    }

    .gds-root .tb-stat-row {
        gap: 8px
    }
}

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

.ctus-pg .reveal-clip {
    animation: clipReveal .45s ease-out both
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 0 100% 0)
    }

    to {
        clip-path: inset(0 0 0% 0)
    }
}

.ctus-pg .reach-band {
    background: #f5f5f0;
    padding: 80px 16px;
    position: relative
}

.ctus-pg .reach-band::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #f04a960d;
    pointer-events: none
}

.ctus-pg .reach-band::after {
    content: '';
    position: absolute;
    bottom: 40px;
    right: 8%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #0284640f;
    pointer-events: none
}

.ctus-pg .reach-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px
}

.ctus-pg .reach-text {
    flex: 1 1 340px
}

.ctus-pg .reach-label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #028464;
    background: #0284641a;
    padding: 4px 16px;
    border-radius: 3px;
    margin-bottom: 16px;
    line-height: 1.4
}

.ctus-pg .reach-hdg {
    font-size: 50px;
    line-height: 1.1;
    color: #1a1200;
    margin: 0 0 16px;
    font-weight: 700
}

.ctus-pg .reach-hdg span {
    display: block
}

.ctus-pg .reach-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #2d2d2d;
    margin: 0 0 40px
}

.ctus-pg .reach-details {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus-pg .reach-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.ctus-pg .reach-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctus-pg .reach-icon svg {
    width: 18px;
    height: 18px
}

.ctus-pg .reach-item-body {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .reach-item-lbl {
    font-size: 15px;
    letter-spacing: .08em;
    color: #028464;
    line-height: 1.4;
    font-weight: 600
}

.ctus-pg .reach-item-val {
    font-size: 17px;
    line-height: 1.4;
    color: #2d2d2d
}

.ctus-pg .reach-item-val a {
    color: #2d2d2d;
    text-decoration: none;
    position: relative;
    transition: color .2s ease-out
}

.ctus-pg .reach-item-val a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F04A96;
    border-radius: 3px;
    transition: width .25s ease-out
}

.ctus-pg .reach-item-val a:hover {
    color: #F04A96
}

.ctus-pg .reach-item-val a:hover::after {
    width: 100%
}

.ctus-pg .reach-stat {
    margin-top: 40px;
    border: 2px solid #F04A96;
    outline: 4px solid #f04a9626;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.ctus-pg .reach-stat-num {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
    color: #F04A96;
    flex-shrink: 0
}

.ctus-pg .reach-stat-txt {
    font-size: 15px;
    line-height: 1.4;
    color: #2d2d2d
}

.ctus-pg .reach-form-col {
    flex: 1 1 420px
}

.ctus-pg .form-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 2px 10px 44px -1px #f04a9621;
    padding: 40px;
    position: relative
}

.ctus-pg .form-card-dashed {
    position: absolute;
    inset: -8px;
    border: 2px dashed #f04a964d;
    border-radius: 16px;
    pointer-events: none
}

.ctus-pg .form-hdg {
    font-size: 17px;
    font-weight: 700;
    color: #1a1200;
    margin: 0 0 16px;
    line-height: 1.4
}

.ctus-pg .form-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-bottom: 16px
}

.ctus-pg .form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 0
}

.ctus-pg .form-field.full {
    flex: 1 1 100%
}

.ctus-pg .f-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #2d2d2d;
    font-weight: 600
}

.ctus-pg .f-req {
    color: #F04A96;
    margin-left: 2px
}

.ctus-pg .f-inp {
    height: 48px;
    border: 1.5px solid #d0d0c8;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #1a1200;
    background: #fafaf7;
    outline: none;
    transition: border-color .2s ease-out, box-shadow .25s ease-out;
    width: 100%;
    box-sizing: border-box
}

.ctus-pg .f-inp::placeholder {
    font-size: 14px;
    color: #9a9a8e
}

.ctus-pg .f-inp:focus {
    border-color: #F04A96;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    background: #fff
}

.ctus-pg .f-select {
    height: 48px;
    border: 1.5px solid #d0d0c8;
    border-radius: 6px;
    padding: 0 16px;
    font-size: 15px;
    line-height: 1.4;
    color: #1a1200;
    background: #fafaf7;
    outline: none;
    transition: border-color .2s ease-out, box-shadow .25s ease-out;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer
}

.ctus-pg .f-select:focus {
    border-color: #028464;
    box-shadow: 2px 5px 22px -1px #0284641c;
    background: #fff
}

.ctus-pg .f-select-wrap {
    position: relative
}

.ctus-pg .f-select-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #2d2d2d;
    pointer-events: none
}

.ctus-pg .f-textarea {
    border: 1.5px solid #d0d0c8;
    border-radius: 6px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #1a1200;
    background: #fafaf7;
    outline: none;
    transition: border-color .2s ease-out, box-shadow .25s ease-out;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 100px
}

.ctus-pg .f-textarea::placeholder {
    font-size: 14px;
    color: #9a9a8e
}

.ctus-pg .f-textarea:focus {
    border-color: #F04A96;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    background: #fff
}

.ctus-pg .form-opts {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus-pg .form-opts-lbl {
    font-size: 15px;
    font-weight: 600;
    color: #2d2d2d;
    line-height: 1.4
}

.ctus-pg .opt-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.ctus-pg .opt-item {
    position: relative
}

.ctus-pg .opt-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ctus-pg .opt-item label {
    display: inline-block;
    padding: 8px 16px;
    border: 1.5px solid #d0d0c8;
    border-radius: 6px;
    font-size: 15px;
    line-height: 1.4;
    color: #2d2d2d;
    cursor: pointer;
    transition: border-color .2s ease-out, background .2s ease-out, color .15s ease-out;
    background: #fafaf7;
    user-select: none
}

.ctus-pg .opt-item input[type="checkbox"]:checked+label {
    border-color: #028464;
    background: #02846414;
    color: #028464;
    font-weight: 600
}

.ctus-pg .opt-item label:hover {
    border-color: #F04A96;
    background: #f04a960d
}

.ctus-pg .opt-item input[type="checkbox"]:focus-visible+label {
    outline: 2px solid #F04A96;
    outline-offset: 2px
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px
}

.ctus-pg .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #F04A96;
    cursor: pointer
}

.ctus-pg .privacy-txt {
    font-size: 15px;
    line-height: 1.4;
    color: #2d2d2d
}

.ctus-pg .privacy-txt a {
    color: #028464;
    text-decoration: none;
    position: relative;
    transition: color .2s ease-out
}

.ctus-pg .privacy-txt a:hover {
    color: #F04A96;
    text-decoration: underline
}

.ctus-pg .submit-btn {
    display: block;
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 6px;
    background: #F04A96;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out, box-shadow .25s ease-out;
    box-shadow: 2px 5px 22px -1px #f04a961c
}

.ctus-pg .submit-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #028464;
    transition: height .35s ease-out;
    z-index: 0
}

.ctus-pg .submit-btn:hover::before {
    height: 100%
}

.ctus-pg .submit-btn:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621
}

.ctus-pg .submit-btn-txt {
    position: relative;
    z-index: 1
}

.ctus-pg .submit-btn:focus-visible {
    outline: 3px solid #028464;
    outline-offset: 3px
}

.ctus-pg .submit-btn:active {
    transform: translateY(1px)
}

.ctus-pg .divider-svg {
    display: block;
    width: 100%;
    height: 28px;
    overflow: hidden
}

.ctus-pg .info-band {
    background: #fff;
    padding: 80px 16px;
    position: relative
}

.ctus-pg .info-band-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(155deg, #c7d1fd2e 0%, #f04a960a 60%, #02846412 100%);
    pointer-events: none
}

.ctus-pg .info-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative
}

.ctus-pg .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px
}

.ctus-pg .info-tile {
    border-radius: 10px;
    padding: 40px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: #fff;
    box-shadow: 2px 1px 6px -1px #f04a960f;
    transition: box-shadow .35s ease-out, transform .25s ease-out
}

.ctus-pg .info-tile:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621;
    transform: translateY(-4px)
}

.ctus-pg .tile-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctus-pg .tile-icon-wrap.pink {
    background: #f04a961a
}

.ctus-pg .tile-icon-wrap.green {
    background: #0284641a
}

.ctus-pg .tile-icon-wrap.blue {
    background: #c7d1fd80
}

.ctus-pg .tile-icon-wrap svg {
    width: 24px;
    height: 24px
}

.ctus-pg .tile-name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .08em;
    color: #1a1200;
    line-height: 1.4
}

.ctus-pg .tile-val {
    font-size: 17px;
    line-height: 1.4;
    color: #2d2d2d
}

.ctus-pg .tile-val a {
    color: #2d2d2d;
    text-decoration: none;
    transition: color .2s ease-out
}

.ctus-pg .tile-val a:hover {
    color: #F04A96
}

.ctus-pg .info-note {
    margin-top: 40px;
    border-radius: 10px;
    background: #028464;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.ctus-pg .info-note-txt {
    flex: 1 1 0
}

.ctus-pg .info-note-hdg {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.4
}

.ctus-pg .info-note-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffd9;
    margin: 0
}

.ctus-pg .info-note-badge {
    flex-shrink: 0;
    background: #ffffff26;
    border-radius: 10px;
    padding: 16px 40px;
    text-align: center
}

.ctus-pg .badge-time {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    display: block
}

.ctus-pg .badge-sub {
    font-size: 15px;
    color: #fffc;
    line-height: 1.4;
    display: block;
    margin-top: 4px
}

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

    .ctus-pg .reach-form-col {
        flex: 1 1 auto;
        width: 100%
    }

    .ctus-pg .reach-text {
        flex: 1 1 auto;
        width: 100%
    }

    .ctus-pg .info-grid {
        grid-template-columns: 1fr 1fr
    }

    .ctus-pg .info-note {
        flex-direction: column;
        gap: 16px;
        text-align: center
    }

    .ctus-pg .reach-hdg {
        font-size: 50px
    }
}

@media (max-width: 600px) {
    .ctus-pg .info-grid {
        grid-template-columns: 1fr
    }

    .ctus-pg .form-row {
        flex-direction: column
    }

    .ctus-pg .form-card {
        padding: 16px
    }

    .ctus-pg .reach-band {
        padding: 40px 16px
    }

    .ctus-pg .info-band {
        padding: 40px 16px
    }

    .ctus-pg .reach-hdg {
        font-size: 50px
    }

    .ctus-pg .badge-time {
        font-size: 50px
    }
}

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

.lrn-prog .prog-title-band {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(135deg, #F04A96, #028464, #C7D1FD, #F04A96);
    background-size: 400% 400%;
    animation: grad-shift 8s ease-out infinite;
    text-align: center
}

@keyframes grad-shift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.lrn-prog .prog-title-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff14;
    pointer-events: none
}

.lrn-prog .geo-shape-a {
    position: absolute;
    top: 16px;
    right: 80px;
    width: 60px;
    height: 60px;
    background: #ffffff1f;
    transform: rotate(45deg);
    border-radius: 6px;
    pointer-events: none
}

.lrn-prog .geo-shape-b {
    position: absolute;
    bottom: 16px;
    left: 40px;
    width: 40px;
    height: 40px;
    background: #ffffff17;
    transform: rotate(22deg);
    border-radius: 3px;
    pointer-events: none
}

.lrn-prog .geo-shape-c {
    position: absolute;
    top: 40px;
    left: 80px;
    width: 24px;
    height: 24px;
    border: 2px solid #ffffff2e;
    transform: rotate(45deg);
    border-radius: 3px;
    pointer-events: none
}

.lrn-prog .title-band-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.lrn-prog .title-band-label {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .12em;
    color: #ffffffe6;
    background: #ffffff26;
    border-radius: 16px;
    padding: 4px 16px;
    margin-bottom: 16px;
    text-transform: uppercase
}

.lrn-prog .title-band-heading {
    font-size: 68px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    font-weight: 700
}

.lrn-prog .title-band-heading span {
    display: block
}

.lrn-prog .title-band-link {
    display: inline-block;
    font-size: 17px;
    line-height: 1.4;
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #ffffff80;
    padding-bottom: 4px;
    transition: border-color .25s ease-out, color .2s ease-out
}

.lrn-prog .title-band-link:hover {
    border-color: #fff;
    color: #C7D1FD
}

.lrn-prog .divider-band {
    display: flex;
    justify-content: center;
    padding: 16px 40px
}

.lrn-prog .divider-strip {
    height: 4px;
    width: 120px;
    background: linear-gradient(90deg, #F04A96, #028464);
    border-radius: 16px
}

.lrn-prog .prog-cards-area {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 40px 80px
}

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

.lrn-prog .prog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 5px 22px -1px #f04a961c;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .25s ease-out, transform .2s ease-out
}

.lrn-prog .prog-card:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621;
    transform: translateY(-4px)
}

.lrn-prog .card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden
}

.lrn-prog .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block;
    transition: transform .4s ease-out
}

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

.lrn-prog .card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #02846473 0%, transparent 60%);
    pointer-events: none
}

.lrn-prog .card-tag-row {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.lrn-prog .card-tag {
    font-size: 15px;
    line-height: 1.4;
    padding: 4px 8px;
    border-radius: 6px;
    background: #F04A96;
    color: #fff;
    font-weight: 600;
    letter-spacing: .04em
}

.lrn-prog .card-tag.secondary {
    background: #028464
}

.lrn-prog .card-readtime {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    background: #028464bf;
    border-radius: 6px;
    padding: 4px 8px
}

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

.lrn-prog .card-heading {
    font-size: 17px;
    line-height: 1.4;
    color: #111;
    font-weight: 700;
    margin: 0
}

.lrn-prog .card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin: 0;
    flex: 1
}

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

.lrn-prog .card-meta-pill {
    font-size: 15px;
    line-height: 1.4;
    padding: 4px 8px;
    border-radius: 16px;
    background: #C7D1FD;
    color: #1a2060;
    font-weight: 500
}

.lrn-prog .card-seats {
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    font-weight: 600;
    margin-left: auto
}

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

.lrn-prog .card-price-main {
    font-size: 50px;
    line-height: 1.1;
    color: #F04A96;
    font-weight: 800
}

.lrn-prog .card-price-des {
    font-size: 15px;
    line-height: 1.4;
    color: #555;
    padding-bottom: 8px
}

.lrn-prog .card-price-note {
    font-size: 15px;
    line-height: 1.4;
    color: #888;
    font-style: italic
}

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

.lrn-prog .card-duration-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.lrn-prog .card-duration-label {
    font-size: 15px;
    line-height: 1.4;
    color: #444
}

.lrn-prog .card-cta-link {
    display: block;
    text-align: center;
    font-size: 17px;
    line-height: 1.4;
    color: #fff;
    background: #028464;
    border-radius: 6px;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out
}

.lrn-prog .card-cta-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    height: 100%;
    background: #F04A96;
    border-radius: 6px;
    transition: bottom .35s ease-out
}

.lrn-prog .card-cta-link:hover::after {
    bottom: 0
}

.lrn-prog .card-cta-link span {
    position: relative;
    z-index: 1
}

.lrn-prog .divider-band-alt {
    display: flex;
    justify-content: center;
    padding: 8px 40px
}

.lrn-prog .divider-strip-alt {
    height: 3px;
    width: 80px;
    background: linear-gradient(90deg, #C7D1FD, #F04A96);
    border-radius: 16px
}

.lrn-prog .metrics-band {
    background: #f4f7f6;
    padding: 80px 40px;
    position: relative;
    overflow: hidden
}

.lrn-prog .metrics-band::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: #f04a960f;
    transform: rotate(45deg);
    border-radius: 16px;
    pointer-events: none
}

.lrn-prog .metrics-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center
}

.lrn-prog .metrics-side {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.lrn-prog .metric-item {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 2px 1px 6px -1px #f04a960f;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.lrn-prog .metric-num {
    font-size: 50px;
    line-height: 1.1;
    font-weight: 800;
    color: #028464
}

.lrn-prog .metric-label {
    font-size: 15px;
    line-height: 1.4;
    color: #555;
    letter-spacing: .05em
}

.lrn-prog .metrics-center {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center
}

.lrn-prog .metrics-center-heading {
    font-size: 50px;
    line-height: 1.1;
    color: #111;
    font-weight: 700;
    margin: 0
}

.lrn-prog .metrics-center-heading span {
    display: block
}

.lrn-prog .metrics-center-heading .accent-line {
    font-size: 68px;
    color: #F04A96
}

.lrn-prog .metrics-center-text {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin: 0
}

.lrn-prog .dual-metric-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center
}

.lrn-prog .dual-metric-box {
    background: linear-gradient(135deg, #F04A96 0%, #028464 100%);
    border-radius: 10px;
    padding: 16px;
    flex: 1;
    text-align: center;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.lrn-prog .dual-metric-num {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    font-weight: 800
}

.lrn-prog .dual-metric-label {
    font-size: 15px;
    line-height: 1.4;
    color: #ffffffd9;
    letter-spacing: .06em
}

.lrn-prog .metrics-side-right .metric-num {
    color: #F04A96
}

.lrn-prog .instructors-band {
    padding: 80px 40px;
    background: #fff
}

.lrn-prog .instructors-inner {
    max-width: 1100px;
    margin: 0 auto
}

.lrn-prog .instructors-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
    text-align: center
}

.lrn-prog .instructors-heading {
    font-size: 50px;
    line-height: 1.1;
    color: #111;
    font-weight: 700;
    margin: 0
}

.lrn-prog .instructors-heading span {
    display: block
}

.lrn-prog .instructors-sub {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin: 0
}

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

.lrn-prog .instructor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    border-radius: 10px;
    background: #f9fbfa;
    box-shadow: 2px 1px 6px -1px #0284640f;
    transition: box-shadow .28s ease-out, transform .22s ease-out
}

.lrn-prog .instructor-card:hover {
    box-shadow: 2px 5px 22px -1px #0284641c;
    transform: translateY(-3px)
}

.lrn-prog .instructor-portrait-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #C7D1FD
}

.lrn-prog .instructor-portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    max-width: 100%
}

.lrn-prog .instructor-name {
    font-size: 17px;
    line-height: 1.4;
    color: #111;
    font-weight: 700;
    text-align: center;
    margin: 0
}

.lrn-prog .instructor-role {
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    text-align: center;
    letter-spacing: .04em
}

.lrn-prog .instructor-bio {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    text-align: center;
    margin: 0
}

.lrn-prog .divider-band-b {
    display: flex;
    justify-content: center;
    padding: 16px 40px
}

.lrn-prog .divider-strip-b {
    height: 3px;
    width: 100px;
    background: linear-gradient(90deg, #028464, #C7D1FD);
    border-radius: 10px
}

.lrn-prog .img-feature-band {
    padding: 80px 40px;
    position: relative;
    background: #111
}

.lrn-prog .img-feature-bg {
    position: absolute;
    inset: 0;
    z-index: 0
}

.lrn-prog .img-feature-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    max-width: 100%;
    display: block
}

.lrn-prog .img-feature-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #0284649e;
    mix-blend-mode: multiply
}

.lrn-prog .img-feature-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #0000008c 100%);
    pointer-events: none;
    z-index: 1
}

.lrn-prog .img-feature-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center
}

.lrn-prog .img-feature-label {
    font-size: 15px;
    letter-spacing: .12em;
    color: #C7D1FD;
    text-transform: uppercase;
    background: #c7d1fd1f;
    border-radius: 16px;
    padding: 4px 16px
}

.lrn-prog .img-feature-heading {
    font-size: 50px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    margin: 0
}

.lrn-prog .img-feature-heading span {
    display: block
}

.lrn-prog .img-feature-heading .big-accent {
    font-size: 68px;
    color: #C7D1FD
}

.lrn-prog .img-feature-text {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffe0;
    max-width: 600px;
    margin: 0
}

.lrn-prog .img-feature-link {
    display: inline-block;
    font-size: 17px;
    line-height: 1.4;
    color: #111;
    background: #C7D1FD;
    border-radius: 6px;
    padding: 8px 40px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    transition: color .22s ease-out
}

.lrn-prog .img-feature-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -100%;
    height: 100%;
    background: #F04A96;
    border-radius: 6px;
    transition: bottom .3s ease-out
}

.lrn-prog .img-feature-link:hover {
    color: #fff
}

.lrn-prog .img-feature-link:hover::after {
    bottom: 0
}

.lrn-prog .img-feature-link span {
    position: relative;
    z-index: 1
}

.lrn-prog .diamond-accent {
    position: absolute;
    bottom: 16px;
    right: 40px;
    width: 32px;
    height: 32px;
    background: #c7d1fd2e;
    transform: rotate(45deg);
    border-radius: 3px;
    pointer-events: none;
    z-index: 2
}

@keyframes flicker-accent {

    0%,
    100% {
        opacity: .04
    }

    30% {
        opacity: .09
    }

    60% {
        opacity: .05
    }

    80% {
        opacity: .08
    }
}

.lrn-prog .flicker-bg-dot {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: flicker-accent 5s ease-out infinite
}

.lrn-prog .flicker-bg-dot.f1 {
    width: 80px;
    height: 80px;
    background: #F04A96;
    top: 40px;
    left: 16%;
    animation-delay: 0s
}

.lrn-prog .flicker-bg-dot.f2 {
    width: 48px;
    height: 48px;
    background: #028464;
    bottom: 40px;
    right: 18%;
    animation-delay: 1.8s
}

.lrn-prog .flicker-bg-dot.f3 {
    width: 32px;
    height: 32px;
    background: #C7D1FD;
    top: 50%;
    left: 5%;
    animation-delay: 3.2s
}

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

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

    .lrn-prog .metrics-side {
        flex-direction: row;
        flex-wrap: wrap
    }

    .lrn-prog .metric-item {
        flex: 1;
        min-width: 120px
    }

    .lrn-prog .instructors-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lrn-prog .title-band-heading {
        font-size: 50px
    }
}

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

    .lrn-prog .title-band-heading {
        font-size: 50px
    }

    .lrn-prog .instructors-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .lrn-prog .prog-title-band,
    .lrn-prog .prog-cards-area,
    .lrn-prog .metrics-band,
    .lrn-prog .instructors-band,
    .lrn-prog .img-feature-band {
        padding-left: 16px;
        padding-right: 16px
    }

    .lrn-prog .dual-metric-row {
        flex-direction: column
    }

    .lrn-prog .metrics-center-heading .accent-line {
        font-size: 50px
    }
}

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

.abt-us .abt-inner {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px
}

.abt-us .divider-dots {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 0
}

.abt-us .divider-dots span {
    display: block;
    height: 2px;
    background-image: radial-gradient(circle, #028464 1px, transparent 1px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    opacity: .35
}

.abt-us .title-block {
    padding-top: 40px;
    padding-bottom: 80px;
    text-align: center;
    position: relative
}

.abt-us .title-block .atmo-spot {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0
}

.abt-us .title-block .atmo-spot.left {
    width: 320px;
    height: 220px;
    background: #f04a9617;
    top: 0;
    left: -60px
}

.abt-us .title-block .atmo-spot.right {
    width: 280px;
    height: 200px;
    background: #02846414;
    top: 40px;
    right: -40px
}

.abt-us .title-block .img-wrap {
    position: relative;
    display: inline-block;
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    max-width: 780px;
    margin-bottom: 40px;
    box-shadow: 2px 10px 44px -1px #f04a9621;
    z-index: 1
}

.abt-us .title-block .img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-us .title-block .img-wrap .img-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to top, #ffffffeb 0%, transparent 100%)
}

.abt-us .title-block .txt-area {
    position: relative;
    z-index: 1
}

.abt-us .title-block .txt-area h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1a1a1a;
    color: #111218;
    margin-bottom: 16px;
    letter-spacing: -1px
}

.abt-us .title-block .txt-area h1 .accented {
    color: #F04A96;
    display: block
}

.abt-us .title-block .txt-area .sub-line {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 560px;
    margin: 0 auto
}

.abt-us .story-block {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #f4f6fb;
    border-right: 3px solid #C7D1FD;
    position: relative
}

.abt-us .story-block .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.abt-us .story-block .story-img-col {
    position: relative
}

.abt-us .story-block .story-img-col img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    display: block;
    box-shadow: 2px 5px 22px -1px #0284641c
}

.abt-us .story-block .story-img-col .vignette-layer {
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: radial-gradient(ellipse at center, transparent 50%, #00000047 100%);
    pointer-events: none
}

.abt-us .story-block .story-txt-col {
    padding-left: 16px
}

.abt-us .story-block .story-txt-col .vert-bar {
    width: 3px;
    height: 48px;
    background: linear-gradient(to bottom, #F04A96, #028464);
    border-radius: 3px;
    margin-bottom: 16px
}

.abt-us .story-block .story-txt-col h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #111218;
    margin-bottom: 16px
}

.abt-us .story-block .story-txt-col h2 span {
    display: block
}

.abt-us .story-block .story-txt-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 16px
}

.abt-us .story-block .story-txt-col .tag-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px
}

.abt-us .story-block .story-txt-col .tag-item {
    font-size: 15px;
    line-height: 1.4;
    padding: 4px 16px;
    border-radius: 6px;
    letter-spacing: .04em
}

.abt-us .story-block .story-txt-col .tag-item.pink {
    background: #f04a961f;
    color: #b0005e
}

.abt-us .story-block .story-txt-col .tag-item.green {
    background: #0284641a;
    color: #015c47
}

.abt-us .story-block .story-txt-col .tag-item.blue {
    background: #c7d1fd99;
    color: #2a3580
}

.abt-us .metrics-block {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff
}

.abt-us .metrics-block .metrics-head {
    text-align: center;
    margin-bottom: 40px
}

.abt-us .metrics-block .metrics-head h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #111218;
    margin-bottom: 8px
}

.abt-us .metrics-block .metrics-head h2 span {
    display: block
}

.abt-us .metrics-block .metrics-head p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 520px;
    margin: 0 auto
}

.abt-us .metrics-block .three-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px
}

.abt-us .metrics-block .met-card {
    border-radius: 10px;
    padding: 40px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 1px 6px -1px #f04a960f;
    transition: box-shadow .25s ease-out, transform .2s ease-out
}

.abt-us .metrics-block .met-card:hover {
    box-shadow: 2px 10px 44px -1px #f04a9621;
    transform: translateY(-4px)
}

.abt-us .metrics-block .met-card.card-a {
    background: linear-gradient(135deg, #f04a960f 0%, #c7d1fd2e 100%);
    border: 1px solid #f04a9626
}

.abt-us .metrics-block .met-card.card-b {
    background: linear-gradient(135deg, #0284640f 0%, #c7d1fd1f 100%);
    border: 1px solid #02846426
}

.abt-us .metrics-block .met-card.card-c {
    background: linear-gradient(135deg, #c7d1fd40 0%, #f04a960d 100%);
    border: 1px solid #c7d1fd80
}

.abt-us .metrics-block .met-card .met-num {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 8px
}

.abt-us .metrics-block .met-card.card-a .met-num {
    color: #F04A96
}

.abt-us .metrics-block .met-card.card-b .met-num {
    color: #028464
}

.abt-us .metrics-block .met-card.card-c .met-num {
    color: #3a4ab0
}

.abt-us .metrics-block .met-card .met-label {
    font-size: 15px;
    line-height: 1.4;
    color: #2d2d2d;
    letter-spacing: .03em
}

.abt-us .metrics-block .met-card .met-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-top: 8px
}

.abt-us .metrics-block .met-card .pulse-dot {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F04A96;
    animation: dot-pulse 2.2s ease-out infinite
}

@keyframes dot-pulse {

    0%,
    100% {
        opacity: .4;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.5)
    }
}

.abt-us .team-block {
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(160deg, #c7d1fd2e 0%, #f04a960d 60%, #0284640f 100%);
    border-right: 3px solid #f04a9633
}

.abt-us .team-block .team-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start
}

.abt-us .team-block .team-portrait-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px
}

.abt-us .team-block .portrait-frame {
    width: 240px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 5px 22px -1px #0284641c;
    flex-shrink: 0
}

.abt-us .team-block .portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.abt-us .team-block .portrait-name {
    font-size: 17px;
    line-height: 1.4;
    color: #111218;
    font-weight: 600;
    text-align: center
}

.abt-us .team-block .portrait-role {
    font-size: 15px;
    line-height: 1.4;
    color: #028464;
    text-align: center;
    letter-spacing: .04em
}

.abt-us .team-block .portrait-badge {
    display: inline-block;
    background: #c7d1fd80;
    color: #2a3580;
    border-radius: 6px;
    padding: 4px 16px;
    font-size: 15px;
    line-height: 1.4
}

.abt-us .team-block .team-txt-col {
    padding-top: 8px
}

.abt-us .team-block .team-txt-col .vert-bar {
    width: 3px;
    height: 48px;
    background: linear-gradient(to bottom, #028464, #C7D1FD);
    border-radius: 3px;
    margin-bottom: 16px
}

.abt-us .team-block .team-txt-col h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #111218;
    margin-bottom: 16px
}

.abt-us .team-block .team-txt-col h2 span {
    display: block
}

.abt-us .team-block .team-txt-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d;
    margin-bottom: 16px
}

.abt-us .team-block .other-members {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .team-block .other-member-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 8px 16px;
    background: #ffffffb3;
    border-radius: 6px;
    box-shadow: 2px 1px 6px -1px #0284640f
}

.abt-us .team-block .other-member-row .member-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0
}

.abt-us .team-block .other-member-row .member-dot.pink {
    background: #F04A96
}

.abt-us .team-block .other-member-row .member-dot.green {
    background: #028464
}

.abt-us .team-block .other-member-row .member-dot.blue {
    background: #3a4ab0
}

.abt-us .team-block .other-member-row .mem-name {
    font-size: 15px;
    line-height: 1.4;
    color: #111218;
    font-weight: 600;
    min-width: 140px
}

.abt-us .team-block .other-member-row .mem-role {
    font-size: 15px;
    line-height: 1.4;
    color: #555
}

.abt-us .img-pair-block {
    padding-top: 80px;
    padding-bottom: 80px;
    background: #fff
}

.abt-us .img-pair-block .pair-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 16px;
    align-items: stretch
}

.abt-us .img-pair-block .pair-img-wrap {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 5px 22px -1px #f04a961c
}

.abt-us .img-pair-block .pair-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-us .img-pair-block .pair-img-wrap .vig {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 45%, #0000004d 100%);
    pointer-events: none
}

.abt-us .img-pair-block .pair-txt-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(135deg, #02846412 0%, #c7d1fd33 100%);
    border-radius: 10px;
    border: 1px solid #0284641f;
    gap: 16px
}

.abt-us .img-pair-block .pair-txt-panel h3 {
    font-size: 17px;
    line-height: 1.4;
    color: #028464;
    letter-spacing: .06em;
    text-transform: uppercase
}

.abt-us .img-pair-block .pair-txt-panel p {
    font-size: 15px;
    line-height: 1.7;
    color: #2d2d2d
}

.abt-us .img-pair-block .pair-txt-panel .contact-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px
}

.abt-us .img-pair-block .pair-txt-panel .contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.4;
    color: #2d2d2d
}

.abt-us .img-pair-block .pair-txt-panel .contact-item a {
    color: #028464;
    text-decoration: none;
    position: relative;
    transition: color .2s ease-out
}

.abt-us .img-pair-block .pair-txt-panel .contact-item a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 0;
    background: #0284641a;
    border-radius: 3px;
    transition: width .22s ease-out;
    z-index: -1
}

.abt-us .img-pair-block .pair-txt-panel .contact-item a:hover::before {
    width: 100%
}

.abt-us .img-pair-block .pair-txt-panel .contact-item a:hover {
    color: #015c47
}

.abt-us .img-pair-block .pair-txt-panel .contact-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

@media (max-width: 860px) {
    .abt-us .title-block .txt-area h1 {
        font-size: 50px
    }

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

    .abt-us .story-block .story-txt-col {
        padding-left: 0
    }

    .abt-us .metrics-block .three-cols {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .abt-us .team-block .team-layout {
        grid-template-columns: 1fr
    }

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

    .abt-us .img-pair-block .pair-txt-panel {
        padding: 40px 16px
    }
}

@media (max-width: 560px) {
    .abt-us .abt-inner {
        padding-left: 16px;
        padding-right: 16px
    }

    .abt-us .title-block .txt-area h1 {
        font-size: 50px
    }

    .abt-us .story-block .story-txt-col h2,
    .abt-us .metrics-block .metrics-head h2,
    .abt-us .team-block .team-txt-col h2 {
        font-size: 50px
    }

    .abt-us .title-block .img-wrap img {
        height: 260px
    }

    .abt-us .story-block .story-img-col img {
        height: 240px
    }

    .abt-us .team-block .portrait-frame {
        width: 180px;
        height: 180px
    }

    .abt-us .other-member-row .mem-name {
        min-width: auto
    }
}

.success-page-root {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 16px;
    background: #fff
}

.success-page-root .success-card {
    max-width: 1100px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 2px 10px 44px -1px #f04a9621;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

.success-page-root .success-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F04A96 0%, #028464 60%, #C7D1FD 100%);
    border-radius: 16px 16px 0 0
}

.success-page-root .success-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: #C7D1FD;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-shrink: 0
}

.success-page-root .success-icon-wrap svg {
    width: 36px;
    height: 36px;
    display: block
}

.success-page-root .success-label {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .12em;
    color: #028464;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 600
}

.success-page-root .success-heading {
    font-size: 50px;
    line-height: 1.1;
    color: #1b1b1b;
    margin-bottom: 16px;
    font-weight: 700
}

.success-page-root .success-heading span {
    display: block
}

.success-page-root .success-body {
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 520px;
    margin-bottom: 40px
}

.success-page-root .success-divider {
    width: 48px;
    height: 3px;
    background: #F04A96;
    border-radius: 3px;
    margin-bottom: 40px
}

.success-page-root .success-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center
}

.success-page-root .success-btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff;
    background: #028464;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #028464;
    position: relative;
    overflow: hidden;
    transition: color .25s ease-out, border-color .25s ease-out;
    z-index: 0
}

.success-page-root .success-btn-primary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #F04A96;
    border-radius: 6px;
    transition: height .22s ease-out;
    z-index: -1
}

.success-page-root .success-btn-primary:hover {
    color: #fff;
    border-color: #F04A96
}

.success-page-root .success-btn-primary:hover::after {
    height: 100%
}

.success-page-root .success-btn-primary:focus-visible {
    outline: 3px solid #F04A96;
    outline-offset: 3px
}

.success-page-root .success-btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
    color: #028464;
    background: transparent;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid #028464;
    position: relative;
    overflow: hidden;
    transition: color .28s ease-out, border-color .28s ease-out;
    z-index: 0
}

.success-page-root .success-btn-secondary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #C7D1FD;
    border-radius: 6px;
    transition: height .22s ease-out;
    z-index: -1
}

.success-page-root .success-btn-secondary:hover {
    color: #1b1b1b;
    border-color: #C7D1FD
}

.success-page-root .success-btn-secondary:hover::after {
    height: 100%
}

.success-page-root .success-btn-secondary:focus-visible {
    outline: 3px solid #028464;
    outline-offset: 3px
}

.success-page-root .success-note {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.4;
    color: #5a5a5a
}

.success-page-root .success-note a {
    color: #028464;
    text-decoration: none;
    font-weight: 600;
    padding: 0 4px;
    border-radius: 3px;
    position: relative;
    transition: color .18s ease-out
}

.success-page-root .success-note a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    width: 0;
    background: #C7D1FD;
    border-radius: 3px;
    transition: width .2s ease-out;
    z-index: -1
}

.success-page-root .success-note a:hover {
    color: #1b1b1b
}

.success-page-root .success-note a:hover::before {
    width: 100%
}

@media (max-width: 600px) {
    .success-page-root {
        padding: 40px 8px
    }

    .success-page-root .success-card {
        padding: 40px 16px
    }

    .success-page-root .success-heading {
        font-size: 50px
    }

    .success-page-root .success-actions {
        flex-direction: column;
        align-items: stretch
    }

    .success-page-root .success-btn-primary,
    .success-page-root .success-btn-secondary {
        text-align: center
    }
}