@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/300-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/400-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/500-italic.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/700-italic.css";

html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    min-height: 100dvh;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    color: #2F2C2C;
    background: #FDFDFD;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%
}

.top-bar {
    background: linear-gradient(135deg, #2f2c2cf7 0%, #2f2c2ceb 100%);
    border-bottom: 2px solid #06ffdc2e;
    padding: 24px 36px
}

.top-bar-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 36px
}

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

.logo-container {
    background: #fdfdfd14;
    padding: 12px;
    border-radius: 10px;
    box-shadow: -1px 4px 22px 0 #06ffdc1c;
    border: 1px solid #06ffdc38
}

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

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

.brand-phone {
    font-size: 20px;
    font-weight: 500;
    color: #06FFDC;
    text-decoration: none;
    letter-spacing: .02em
}

.brand-phone:hover {
    color: #06ffdcd1
}

.brand-phone:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 4px
}

.brand-email {
    font-size: 15px;
    font-weight: 400;
    color: #fdfdfdc2;
    text-decoration: none
}

.brand-email:hover {
    color: #FDFDFD
}

.brand-email:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 4px
}

.divider-vert {
    width: 1px;
    height: 96px;
    background: linear-gradient(180deg, #06ffdc00 0%, #06ffdc70 50%, #06ffdc00 100%)
}

.nav-zone {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px
}

.primary-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-link {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: #fdfdfde0;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    background: #06ffdc0f;
    border: 1px solid #06ffdc24;
    position: relative;
    overflow: hidden
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #06FFDC;
    transition: width .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav-link:hover {
    color: #FDFDFD;
    background: #06ffdc1f;
    border-color: #06ffdc52
}

.nav-link:hover::before {
    width: 100%
}

.nav-link:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 4px
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fdfdfd0a;
    border: 1px solid #06ffdc2e;
    border-radius: 18px;
    color: #fdfdfdd1;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer
}

.lang-selector:hover {
    background: #fdfdfd14;
    border-color: #06ffdc5c
}

.lang-selector:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 4px
}

.lang-icon {
    width: 20px;
    height: 20px;
    fill: #06FFDC
}

@media (max-width: 1280px) {
    .top-bar-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .divider-vert {
        display: none
    }

    .nav-zone {
        justify-content: center
    }

    .brand-zone {
        justify-content: center
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 24px
    }

    .brand-zone {
        flex-direction: column;
        text-align: center
    }

    .logo-img {
        width: 72px;
        height: 72px
    }

    .primary-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%
    }

    .nav-link {
        text-align: center
    }

    .nav-zone {
        flex-direction: column;
        width: 100%
    }
}

.ft-wrapper {
    background: linear-gradient(180deg, #2f2c2c0a 0%, #2f2c2c05 100%);
    border-top: 3px solid #06ffdc3d;
    padding: 72px 36px 36px
}

.ft-main {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid #2f2c2c1f
}

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

.ft-logo-container {
    background: #2f2c2c0a;
    padding: 8px;
    border-radius: 6px;
    display: inline-block;
    width: fit-content;
    border: 1px solid #2f2c2c14;
    box-shadow: -1px 3px 6px 0 #2f2c2c0f
}

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

.ft-desc {
    font-size: 15px;
    line-height: 1.75;
    color: #2f2c2cc2;
    margin: 0
}

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

.ft-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2F2C2C;
    text-decoration: none
}

.ft-contact-item:hover {
    color: #06FFDC
}

.ft-contact-item:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 4px
}

.ft-contact-icon {
    width: 20px;
    height: 20px;
    fill: #06FFDC;
    flex-shrink: 0
}

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

.ft-nav-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #2F2C2C;
    margin: 0
}

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

.ft-nav-link {
    font-size: 15px;
    font-weight: 400;
    color: #2f2c2cc2;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 4px 0
}

.ft-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #06FFDC
}

.ft-nav-link:hover {
    color: #2F2C2C
}

.ft-nav-link:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 4px
}

.ft-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding-top: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px
}

.ft-copyright {
    font-size: 14px;
    color: #2f2c2c9e;
    margin: 0
}

.ft-location {
    font-size: 14px;
    color: #2f2c2c9e;
    margin: 0
}

@media (min-width: 769px) {
    .ft-nav-link::before {
        transition: width .22s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .ft-nav-link:hover::before {
        width: 100%
    }
}

@media (max-width: 1280px) {
    .ft-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px
    }
}

@media (max-width: 768px) {
    .ft-wrapper {
        padding: 48px 24px 24px
    }

    .ft-main {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-bottom: 48px
    }

    .ft-bottom {
        flex-direction: column;
        text-align: center
    }
}

.consent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 540px;
    background: #FDFDFD;
    border: 2px solid #06ffdc47;
    border-top: none;
    border-radius: 0 0 18px 18px;
    box-shadow: -1px 10px 52px 0 #2f2c2c1c;
    padding: 36px;
    z-index: 2000;
    display: none;
    opacity: 0;
    transform: translateY(-20px)
}

.consent-overlay.visible {
    opacity: 1;
    transform: translateY(0)
}

.consent-text {
    font-size: 15px;
    line-height: 1.75;
    color: #2f2c2cd1;
    margin: 0 0 24px
}

.consent-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px
}

.consent-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #2f2c2c0a;
    border-radius: 6px
}

.consent-label {
    font-size: 15px;
    font-weight: 500;
    color: #2F2C2C
}

.consent-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: #2f2c2c2e;
    border-radius: 28px;
    cursor: pointer;
    border: 1px solid #2f2c2c3d
}

.consent-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #FDFDFD;
    border-radius: 50%;
    box-shadow: -1px 3px 6px 0 #2f2c2c0f
}

.consent-switch:hover {
    background: #2f2c2c3d
}

.consent-switch:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 4px
}

.consent-switch.active {
    background: #06FFDC;
    border-color: #06FFDC
}

.consent-switch.active::after {
    left: 27px
}

.consent-actions {
    display: flex;
    gap: 12px
}

.consent-btn {
    flex: 1;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid #06FFDC;
    background: #06FFDC;
    color: #2F2C2C;
    font-family: 'Roboto', sans-serif
}

.consent-btn:hover {
    border-color: #06ffdcc2;
    background: #06ffdce0
}

.consent-btn:focus {
    outline: 2px dashed #2F2C2C;
    outline-offset: 4px
}

.consent-link {
    font-size: 14px;
    color: #2f2c2c9e;
    text-align: center;
    margin-top: 12px
}

.consent-policy-link {
    color: #06FFDC;
    text-decoration: none
}

.consent-policy-link:hover {
    text-decoration: underline
}

.consent-policy-link:focus {
    outline: 2px dashed #06FFDC;
    outline-offset: 2px
}

@media (max-width: 768px) {
    .consent-overlay {
        max-width: calc(100% - 48px);
        padding: 24px
    }

    .consent-actions {
        flex-direction: column
    }
}

@media (min-width: 769px) {
    .consent-overlay {
        transition: opacity .26s cubic-bezier(0.0, 0, 0.2, 1), transform .26s cubic-bezier(0.0, 0, 0.2, 1)
    }

    .consent-btn {
        transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .consent-switch::after {
        transition: left .24s cubic-bezier(0.4, 0, 0.2, 1)
    }
}

.legal-inner {
    margin: 0 auto;
    max-width: 1440px;
    padding: 72px 24px
}

@media (min-width: 768px) {
    .legal-inner {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .legal-inner {
        padding: 72px
    }
}

.legal-inner p {
    color: #2F2C2C;
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 24px
}

.legal-inner p:last-child {
    margin-bottom: 0
}

.legal-inner strong,
.legal-inner b {
    color: #2F2C2C;
    font-weight: 600
}

.legal-inner em,
.legal-inner i {
    font-style: italic
}

.legal-inner a {
    color: #2F2C2C;
    display: inline;
    position: relative;
    text-decoration: none;
    transition: color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.legal-inner a::after {
    background: #06FFDC;
    bottom: 0;
    content: '';
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .26s cubic-bezier(0.0, 0, 0.2, 1);
    width: 100%
}

@media (min-width: 768px) {
    .legal-inner a:hover {
        color: #2f2c2ccc
    }

    .legal-inner a:hover::after {
        transform: scaleX(1)
    }
}

.legal-inner table {
    border-collapse: collapse;
    box-shadow: -1px 3px 6px 0 #2f2c2c0f;
    margin: 36px 0;
    overflow: hidden;
    width: 100%
}

.legal-inner thead {
    background: #06ffdc14
}

.legal-inner th {
    border-bottom: 1px solid #2f2c2c1f;
    color: #2F2C2C;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.1;
    padding: 12px 24px;
    text-align: left
}

.legal-inner tbody tr {
    border-bottom: 1px solid #2f2c2c14;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 768px) {
    .legal-inner tbody tr:hover {
        background: #06ffdc0a
    }
}

.legal-inner tbody tr:last-child {
    border-bottom: none
}

.legal-inner td {
    color: #2F2C2C;
    font-size: 15px;
    line-height: 1.75;
    padding: 12px 24px
}

@media (max-width: 767px) {
    .legal-inner table {
        display: block;
        overflow-x: auto
    }

    .legal-inner th,
    .legal-inner td {
        padding: 8px 12px
    }
}

.lrn-prgrm {
    background: #FDFDFD;
    color: #2F2C2C;
    max-width: 1440px;
    margin: 0 auto
}

.lrn-prgrm ::selection {
    background: #2f2c2c1f;
    color: #2F2C2C
}

.lrn-prgrm .diag-intro {
    position: relative;
    background: linear-gradient(127deg, #2F2C2C 0%, #2F2C2C 48%, #06FFDC 48%, #06FFDC 100%);
    padding: 72px 24px;
    overflow: hidden
}

@media (min-width: 768px) {
    .lrn-prgrm .diag-intro {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .lrn-prgrm .diag-intro {
        padding: 72px
    }
}

.lrn-prgrm .diag-intro-grid {
    display: grid;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center
}

@media (min-width: 768px) {
    .lrn-prgrm .diag-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px
    }
}

.lrn-prgrm .diag-intro-txt {
    animation: rotateSettle .26s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: center
}

@keyframes rotateSettle {
    0% {
        transform: rotate(-2deg);
        opacity: 0
    }

    100% {
        transform: rotate(0deg);
        opacity: 1
    }
}

.lrn-prgrm .diag-intro-txt h1 {
    font-size: 36px;
    line-height: 1.1;
    color: #FDFDFD;
    margin: 0 0 24px
}

@media (min-width: 768px) {
    .lrn-prgrm .diag-intro-txt h1 {
        font-size: 48px
    }
}

.lrn-prgrm .diag-intro-txt ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #FDFDFD
}

.lrn-prgrm .diag-intro-txt li {
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 12px;
    padding: 0 0 0 24px;
    position: relative
}

.lrn-prgrm .diag-intro-txt li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: #06FFDC;
    border-radius: 50%
}

.lrn-prgrm .diag-intro-img {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: -1px 10px 52px 0 #2f2c2c1c
}

.lrn-prgrm .diag-intro-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.85) saturate(0.7);
    transition: filter .24s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 768px) {
    .lrn-prgrm .diag-intro-img img {
        filter: brightness(0.85) saturate(0.7) hue-rotate(195deg)
    }

    .lrn-prgrm .diag-intro-img:hover img {
        filter: brightness(1) saturate(1) hue-rotate(195deg)
    }
}

.lrn-prgrm .arrow-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #FDFDFD
}

.lrn-prgrm .arrow-divider-item {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #06FFDC;
    opacity: .6
}

.lrn-prgrm .offset-cols {
    background: #06ffdc0a;
    padding: 72px 24px;
    position: relative
}

@media (min-width: 768px) {
    .lrn-prgrm .offset-cols {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .lrn-prgrm .offset-cols {
        padding: 72px
    }
}

.lrn-prgrm .offset-cols-wrap {
    max-width: 1200px;
    margin: 0 auto
}

.lrn-prgrm .offset-cols-grid {
    display: grid;
    gap: 36px
}

@media (min-width: 768px) {
    .lrn-prgrm .offset-cols-grid {
        grid-template-columns: 1fr 1fr;
        gap: 72px
    }
}

.lrn-prgrm .offset-cols-col.shifted {
    margin-top: 0
}

@media (min-width: 768px) {
    .lrn-prgrm .offset-cols-col.shifted {
        margin-top: 72px
    }
}

.lrn-prgrm .offset-cols h2 {
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 24px;
    text-align: center;
    background: linear-gradient(90deg, #2F2C2C 0%, #2F2C2C 40%, #06FFDC 40%, #06FFDC 60%, #2F2C2C 60%, #2F2C2C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

@media (min-width: 768px) {
    .lrn-prgrm .offset-cols h2 {
        font-size: 36px
    }
}

.lrn-prgrm .offset-cols p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 24px;
    text-align: center
}

.lrn-prgrm .offset-cols p:last-child {
    margin: 0
}

.lrn-prgrm .offset-cols-card {
    background: #FDFDFD;
    border: 1px solid #2f2c2c14;
    border-right: 3px solid #06FFDC;
    border-radius: 10px;
    padding: 36px 24px;
    box-shadow: -1px 4px 22px 0 #2f2c2c1c;
    animation: rotateSettle .22s cubic-bezier(0.0, 0, 0.2, 1) forwards;
    transform-origin: center
}

@media (min-width: 768px) {
    .lrn-prgrm .offset-cols-card {
        padding: 36px
    }
}

.lrn-prgrm .data-visual {
    background: #FDFDFD;
    padding: 72px 24px;
    position: relative
}

@media (min-width: 768px) {
    .lrn-prgrm .data-visual {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .lrn-prgrm .data-visual {
        padding: 72px
    }
}

.lrn-prgrm .data-visual-wrap {
    max-width: 1200px;
    margin: 0 auto
}

.lrn-prgrm .data-visual h2 {
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 36px;
    text-align: center
}

@media (min-width: 768px) {
    .lrn-prgrm .data-visual h2 {
        font-size: 36px;
        margin: 0 0 72px
    }
}

.lrn-prgrm .data-visual-grid {
    display: grid;
    gap: 36px;
    margin: 0 0 72px
}

@media (min-width: 768px) {
    .lrn-prgrm .data-visual-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px
    }
}

.lrn-prgrm .data-visual-item {
    background: #FDFDFD;
    border: 1px solid #2f2c2c14;
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: -1px 3px 6px 0 #06ffdc0f;
    transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), border-color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 768px) {
    .lrn-prgrm .data-visual-item:hover {
        box-shadow: -1px 10px 52px 0 #06ffdc1c;
        border-color: #06FFDC
    }
}

.lrn-prgrm .data-visual-item h3 {
    font-size: 20px;
    line-height: 1.1;
    margin: 0 0 12px
}

.lrn-prgrm .data-visual-item p {
    font-size: 14px;
    line-height: 1.75;
    margin: 0;
    color: #2f2c2cb3
}

.lrn-prgrm .chart-container {
    max-width: 800px;
    margin: 0 auto;
    background: #FDFDFD;
    border: 1px solid #2f2c2c14;
    border-radius: 18px;
    padding: 36px 24px;
    box-shadow: -1px 4px 22px 0 #2f2c2c1c
}

@media (min-width: 768px) {
    .lrn-prgrm .chart-container {
        padding: 36px
    }
}

.lrn-prgrm .chart-title {
    font-size: 17px;
    line-height: 1.1;
    margin: 0 0 24px;
    text-align: center;
    font-weight: 600
}

.lrn-prgrm .chart-bars {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prgrm .chart-bar-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.lrn-prgrm .chart-bar-label {
    font-size: 14px;
    line-height: 1.1;
    min-width: 120px;
    text-align: right;
    color: #2f2c2cb3
}

.lrn-prgrm .chart-bar-track {
    flex: 1;
    height: 36px;
    background: #2f2c2c0a;
    border-radius: 6px;
    position: relative;
    overflow: hidden
}

.lrn-prgrm .chart-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #06FFDC 0%, #06FFDC 70%, #2F2C2C 70%, #2F2C2C 100%);
    border-radius: 6px;
    position: relative;
    transition: width .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prgrm .chart-bar-value {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    line-height: 1.1;
    font-weight: 600;
    color: #2F2C2C
}

.lrn-prgrm .testimonial-section {
    background: #2f2c2c05;
    padding: 72px 24px;
    position: relative
}

@media (min-width: 768px) {
    .lrn-prgrm .testimonial-section {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .lrn-prgrm .testimonial-section {
        padding: 72px
    }
}

.lrn-prgrm .testimonial-wrap {
    max-width: 1200px;
    margin: 0 auto
}

.lrn-prgrm .testimonial-section h2 {
    font-size: 26px;
    line-height: 1.1;
    margin: 0 0 36px;
    text-align: center;
    background: linear-gradient(180deg, #2F2C2C 0%, #2F2C2C 33%, #06FFDC 33%, #06FFDC 66%, #2F2C2C 66%, #2F2C2C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

@media (min-width: 768px) {
    .lrn-prgrm .testimonial-section h2 {
        font-size: 36px;
        margin: 0 0 72px
    }
}

.lrn-prgrm .testimonial-grid {
    display: grid;
    gap: 36px
}

@media (min-width: 768px) {
    .lrn-prgrm .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px
    }
}

.lrn-prgrm .testimonial-card {
    background: #FDFDFD;
    border: 1px solid #2f2c2c14;
    border-radius: 28px;
    padding: 24px;
    text-align: center;
    position: relative;
    box-shadow: -1px 3px 6px 0 #2f2c2c0f;
    animation: rotateSettle .2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: center
}

.lrn-prgrm .testimonial-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid #06FFDC;
    box-shadow: -1px 4px 22px 0 #06ffdc1c
}

.lrn-prgrm .testimonial-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: saturate(0.8);
    transition: filter .26s cubic-bezier(0.0, 0, 0.2, 1)
}

@media (min-width: 768px) {
    .lrn-prgrm .testimonial-portrait:hover img {
        filter: saturate(1)
    }
}

.lrn-prgrm .testimonial-name {
    font-size: 17px;
    line-height: 1.1;
    margin: 0 0 8px;
    font-weight: 600
}

.lrn-prgrm .testimonial-role {
    font-size: 14px;
    line-height: 1.1;
    margin: 0 0 24px;
    color: #2f2c2c99
}

.lrn-prgrm .testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    color: #2f2c2ccc;
    font-style: italic
}

.lrn-prgrm .centered-cta {
    background: #FDFDFD;
    padding: 72px 24px;
    text-align: center
}

@media (min-width: 768px) {
    .lrn-prgrm .centered-cta {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .lrn-prgrm .centered-cta {
        padding: 72px
    }
}

.lrn-prgrm .centered-cta-wrap {
    max-width: 800px;
    margin: 0 auto;
    background: #06ffdc0f;
    border: 1px solid #06ffdc33;
    border-radius: 18px;
    padding: 36px 24px;
    position: relative;
    box-shadow: inset 0 2px 8px 0 #06ffdc14
}

@media (min-width: 768px) {
    .lrn-prgrm .centered-cta-wrap {
        padding: 36px
    }
}

.lrn-prgrm .centered-cta h3 {
    font-size: 20px;
    line-height: 1.1;
    margin: 0 0 24px
}

@media (min-width: 768px) {
    .lrn-prgrm .centered-cta h3 {
        font-size: 26px
    }
}

.lrn-prgrm .centered-cta p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 24px;
    color: #2f2c2ccc
}

.lrn-prgrm .centered-cta-btn {
    display: inline-block;
    background: #2F2C2C;
    color: #FDFDFD;
    font-size: 15px;
    line-height: 1.1;
    padding: 12px 36px;
    border: 2px solid #2F2C2C;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: lowercase
}

@media (min-width: 768px) {
    .lrn-prgrm .centered-cta-btn:hover {
        border-color: #06FFDC
    }
}

.lrn-prgrm .img-showcase {
    background: #FDFDFD;
    padding: 72px 24px
}

@media (min-width: 768px) {
    .lrn-prgrm .img-showcase {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .lrn-prgrm .img-showcase {
        padding: 72px
    }
}

.lrn-prgrm .img-showcase-wrap {
    max-width: 1200px;
    margin: 0 auto
}

.lrn-prgrm .img-showcase-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: -1px 10px 52px 0 #2f2c2c1c;
    margin: 0 0 36px
}

.lrn-prgrm .img-showcase-img img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(0.7);
    transition: filter .26s cubic-bezier(0.0, 0, 0.2, 1)
}

@media (min-width: 768px) {
    .lrn-prgrm .img-showcase-img:hover img {
        filter: saturate(1)
    }
}

.lrn-prgrm .img-showcase h4 {
    font-size: 17px;
    line-height: 1.1;
    margin: 0 0 12px;
    text-align: center
}

.lrn-prgrm .img-showcase p {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    text-align: center;
    color: #2f2c2cb3
}

@media (min-width: 768px) {
    .lrn-prgrm .img-showcase-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        align-items: start
    }
}

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

.abt-pg * {
    box-sizing: border-box
}

.abt-pg .manifesto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative;
    overflow: hidden
}

.abt-pg .manifesto::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #06ffdc14;
    top: 72px;
    left: 36px;
    pointer-events: none;
    z-index: 1
}

.abt-pg .manifesto::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: #2f2c2c0a;
    bottom: 48px;
    right: 72px;
    pointer-events: none;
    z-index: 1
}

.abt-pg .manifesto-left {
    background: #2F2C2C;
    padding: 72px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.abt-pg .manifesto-right {
    background: #06FFDC;
    padding: 72px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2
}

.abt-pg .manifesto h1 {
    font-size: 48px;
    line-height: 1.1;
    margin: 0 0 24px;
    text-align: center
}

.abt-pg .manifesto-left h1 {
    color: #FDFDFD
}

.abt-pg .manifesto-right h1 {
    color: #2F2C2C
}

.abt-pg .manifesto p {
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 24px;
    text-align: center
}

.abt-pg .manifesto-left p {
    color: #fdfdfdeb
}

.abt-pg .manifesto-right p {
    color: #2f2c2ce0
}

.abt-pg .manifesto p:last-child {
    margin-bottom: 0
}

@media (max-width: 767px) {
    .abt-pg .manifesto {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .abt-pg .manifesto-left,
    .abt-pg .manifesto-right {
        padding: 48px 24px
    }

    .abt-pg .manifesto h1 {
        font-size: 36px;
        margin-bottom: 24px
    }

    .abt-pg .manifesto::before {
        width: 120px;
        height: 120px;
        top: 24px;
        left: 12px
    }

    .abt-pg .manifesto::after {
        width: 160px;
        height: 160px;
        bottom: 24px;
        right: 12px
    }
}

.abt-pg .team-grid {
    background: linear-gradient(127deg, #FDFDFD 0%, #FDFDFD 48%, #06ffdc0f 48%, #06ffdc0f 100%);
    padding: 72px 24px;
    position: relative
}

.abt-pg .team-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, transparent 60%, #2f2c2c08 100%);
    pointer-events: none;
    z-index: 1
}

.abt-pg .team-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.abt-pg .team-intro {
    text-align: center;
    margin-bottom: 72px
}

.abt-pg .team-intro h2 {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 24px;
    background: linear-gradient(93deg, #2F2C2C 0%, #2F2C2C 42%, #06FFDC 42%, #06FFDC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-pg .team-intro p {
    font-size: 17px;
    line-height: 1.75;
    color: #2f2c2cdb;
    margin: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.abt-pg .team-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    align-items: start
}

.abt-pg .team-card {
    background: #FDFDFD;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: -1px 4px 22px 0 #2f2c2c1c;
    display: flex;
    flex-direction: column
}

.abt-pg .team-card.center {
    margin-top: 48px
}

.abt-pg .team-photo {
    width: 100%;
    aspect-ratio: 5/7;
    overflow: hidden;
    position: relative;
    border-radius: 28px;
    margin: 12px 12px 0
}

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

.abt-pg .team-card:hover .team-photo img {
    filter: saturate(0.3)
}

.abt-pg .team-info {
    padding: 24px;
    text-align: center
}

.abt-pg .team-info h3 {
    font-size: 20px;
    line-height: 1.1;
    color: #2F2C2C;
    margin: 0 0 8px
}

.abt-pg .team-info .role {
    font-size: 15px;
    line-height: 1.75;
    color: #2f2c2ca3;
    margin: 0 0 12px
}

.abt-pg .team-info p {
    font-size: 14px;
    line-height: 1.75;
    color: #2f2c2cc7;
    margin: 0
}

@media (max-width: 1279px) {
    .abt-pg .team-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .abt-pg .team-card.center {
        margin-top: 0
    }
}

@media (max-width: 767px) {
    .abt-pg .team-grid {
        padding: 48px 24px
    }

    .abt-pg .team-intro {
        margin-bottom: 48px
    }

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

    .abt-pg .team-cards {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abt-pg .team-card.center {
        margin-top: 0
    }
}

.abt-pg .approach-section {
    background: #2F2C2C;
    padding: 72px 24px;
    position: relative;
    overflow: hidden
}

.abt-pg .approach-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.abt-pg .approach-header {
    text-align: center;
    margin-bottom: 72px
}

.abt-pg .approach-header h2 {
    font-size: 36px;
    line-height: 1.1;
    color: #FDFDFD;
    margin: 0 0 24px
}

.abt-pg .approach-header p {
    font-size: 17px;
    line-height: 1.75;
    color: #fdfdfdd6;
    margin: 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto
}

.abt-pg .approach-cards {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 24px
}

.abt-pg .approach-card {
    background: #fdfdfd0a;
    border-radius: 10px;
    padding: 36px 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid #06ffdc1f
}

.abt-pg .approach-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #06ffdc2e 0%, transparent 100%);
    border-radius: 10px;
    opacity: 0;
    z-index: 0;
    pointer-events: none
}

.abt-pg .approach-card:hover::before {
    opacity: 1
}

.abt-pg .approach-card>* {
    position: relative;
    z-index: 1
}

.abt-pg .approach-card .number {
    font-size: 48px;
    line-height: 1.1;
    color: #06ffdc29;
    margin: 0 0 12px;
    font-weight: 700
}

.abt-pg .approach-card h3 {
    font-size: 20px;
    line-height: 1.1;
    color: #FDFDFD;
    margin: 0 0 12px
}

.abt-pg .approach-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #fdfdfdc2;
    margin: 0
}

.abt-pg .approach-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 48px
}

.abt-pg .approach-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 6px;
    overflow: hidden;
    position: relative
}

.abt-pg .approach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.abt-pg .approach-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2f2c2cb8;
    opacity: 0;
    pointer-events: none
}

.abt-pg .approach-img:hover::after {
    opacity: 1
}

.abt-pg .approach-img:hover img {
    filter: saturate(0.4)
}

.abt-pg .divider-line {
    width: 120px;
    height: 2px;
    background: #06FFDC;
    margin: 72px auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.abt-pg .divider-line::before,
.abt-pg .divider-line::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #06FFDC;
    position: absolute
}

.abt-pg .divider-line::before {
    left: -3px
}

.abt-pg .divider-line::after {
    right: -3px
}

.abt-pg .arrow-indicator {
    width: 24px;
    height: 24px;
    position: absolute;
    bottom: 24px;
    right: 24px;
    opacity: .18;
    pointer-events: none
}

.abt-pg .arrow-indicator svg {
    width: 100%;
    height: 100%;
    fill: #06FFDC
}

@media (min-width: 768px) {
    .abt-pg .manifesto-left {
        transition: background-color .24s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .abt-pg .manifesto-right {
        transition: background-color .26s cubic-bezier(0.0, 0, 0.2, 1)
    }

    .abt-pg .team-card {
        transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .abt-pg .team-card:hover {
        transform: translateY(-8px);
        box-shadow: -1px 10px 52px 0 #2f2c2c1c
    }

    .abt-pg .team-photo img {
        transition: filter .28s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .abt-pg .approach-card {
        transition: border-color .24s cubic-bezier(0.0, 0, 0.2, 1)
    }

    .abt-pg .approach-card:hover {
        border-color: #06ffdc52
    }

    .abt-pg .approach-card::before {
        transition: opacity .26s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .abt-pg .approach-img img {
        transition: filter .24s cubic-bezier(0.4, 0, 0.2, 1)
    }

    .abt-pg .approach-img::after {
        transition: opacity .22s cubic-bezier(0.0, 0, 0.2, 1)
    }
}

@media (max-width: 1279px) {
    .abt-pg .approach-cards {
        grid-template-columns: 1fr
    }
}

@media (max-width: 767px) {
    .abt-pg .approach-section {
        padding: 48px 24px
    }

    .abt-pg .approach-header {
        margin-bottom: 48px
    }

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

    .abt-pg .approach-visual {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 36px
    }

    .abt-pg .divider-line {
        margin: 48px auto
    }
}

.abt-pg ::selection {
    background: #2f2c2c1f;
    color: #2F2C2C
}

@keyframes expand-height {
    from {
        max-height: 0;
        opacity: 0
    }

    to {
        max-height: 2000px;
        opacity: 1
    }
}

.abt-pg .manifesto {
    animation: expand-height .84s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.contact-pg {
    background: #FDFDFD;
    max-width: 1440px;
    margin: 0 auto
}

.contact-pg .split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px
}

.contact-pg .split-intro .left-pane {
    background: #2F2C2C;
    padding: 72px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.contact-pg .split-intro .left-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(#06ffdc08 1px, transparent 1px), linear-gradient(90deg, #06ffdc08 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 1
}

.contact-pg .split-intro .left-content {
    position: relative;
    z-index: 2;
    max-width: 540px
}

.contact-pg .split-intro .headline-primary {
    font-size: 48px;
    line-height: 1.1;
    color: #FDFDFD;
    margin: 0 0 24px
}

.contact-pg .split-intro .headline-primary .line-break {
    display: block
}

.contact-pg .split-intro .subtext {
    font-size: 17px;
    line-height: 1.75;
    color: #fdfdfdd1;
    margin: 0
}

.contact-pg .split-intro .right-pane {
    background: #06FFDC;
    padding: 72px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.contact-pg .split-intro .right-pane::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(#2f2c2c0a 1px, transparent 1px), linear-gradient(90deg, #2f2c2c0a 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none
}

.contact-pg .split-intro .contact-methods {
    position: relative;
    max-width: 520px
}

.contact-pg .split-intro .method-item {
    margin: 0 0 36px
}

.contact-pg .split-intro .method-item:last-child {
    margin-bottom: 0
}

.contact-pg .split-intro .method-label {
    font-size: 14px;
    line-height: 1.1;
    color: #2f2c2ca3;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.contact-pg .split-intro .method-value {
    font-size: 20px;
    line-height: 1.75;
    color: #2F2C2C;
    margin: 0
}

.contact-pg .split-intro .method-value a {
    color: #2F2C2C;
    text-decoration: none;
    position: relative;
    display: inline-block
}

.contact-pg .split-intro .method-value a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #2F2C2C;
    transition: width .24s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (min-width: 768px) {
    .contact-pg .split-intro .method-value a:hover::after {
        width: 100%
    }
}

.contact-pg .editorial-form-section {
    background: #FDFDFD;
    padding: 72px 24px;
    position: relative
}

.contact-pg .editorial-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    height: 100%;
    background: radial-gradient(ellipse at 50% 30%, #06ffdc14, transparent 60%);
    pointer-events: none;
    animation: glow-pulse 8s ease-in-out infinite
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.contact-pg .form-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    position: relative;
    z-index: 2
}

.contact-pg .form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 36px
}

.contact-pg .sidebar-heading {
    font-size: 36px;
    line-height: 1.1;
    color: #2F2C2C;
    margin: 0;
    background: linear-gradient(127deg, #2F2C2C 0%, #2F2C2C 45%, #06FFDC 45%, #06FFDC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.contact-pg .sidebar-metrics {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.contact-pg .metric-block {
    position: relative
}

.contact-pg .metric-number {
    font-size: 48px;
    line-height: 1.1;
    color: #2F2C2C;
    margin: 0 0 4px;
    font-weight: 600
}

.contact-pg .metric-bar {
    height: 2px;
    background: #06ffdc33;
    position: relative;
    margin: 0 0 8px;
    overflow: hidden
}

.contact-pg .metric-bar .fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #06FFDC
}

.contact-pg .metric-block:nth-child(1) .metric-bar .fill {
    width: 87%
}

.contact-pg .metric-block:nth-child(2) .metric-bar .fill {
    width: 94%
}

.contact-pg .metric-block:nth-child(3) .metric-bar .fill {
    width: 78%
}

.contact-pg .metric-caption {
    font-size: 15px;
    line-height: 1.75;
    color: #2f2c2cb8;
    margin: 0
}

.contact-pg .form-main {
    background: #fdfdfd99;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 36px;
    border: 1px dashed #2f2c2c29;
    border-radius: 10px;
    box-shadow: -1px 4px 22px 0 #2f2c2c1c
}

.contact-pg .form-main form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

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

.contact-pg .field-label {
    font-size: 14px;
    line-height: 1.1;
    color: #2F2C2C;
    margin: 0;
    font-weight: 500
}

.contact-pg .field-input {
    font-size: 17px;
    line-height: 1.75;
    color: #2F2C2C;
    background: #FDFDFD;
    border: 1px solid #2f2c2c2e;
    border-radius: 6px;
    padding: 12px;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none
}

.contact-pg .field-input:focus {
    border-color: #06FFDC;
    box-shadow: 0 0 0 3px #06ffdc1f
}

.contact-pg .field-input::placeholder {
    color: #2f2c2c6b
}

.contact-pg .time-prefs {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.contact-pg .time-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0
}

.contact-pg .time-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #06FFDC
}

.contact-pg .time-option label {
    font-size: 15px;
    line-height: 1.75;
    color: #2F2C2C;
    cursor: pointer;
    margin: 0
}

.contact-pg .privacy-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px 0 0
}

.contact-pg .privacy-consent input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 4px 0 0;
    flex-shrink: 0;
    accent-color: #06FFDC
}

.contact-pg .privacy-consent label {
    font-size: 14px;
    line-height: 1.75;
    color: #2f2c2cc7;
    margin: 0;
    cursor: pointer
}

.contact-pg .privacy-consent a {
    color: #06FFDC;
    text-decoration: none;
    position: relative
}

.contact-pg .privacy-consent a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #06FFDC
}

.contact-pg .submit-btn {
    background: #2F2C2C;
    color: #FDFDFD;
    border: 2px solid #2F2C2C;
    border-radius: 6px;
    padding: 12px 36px;
    font-size: 15px;
    line-height: 1.75;
    cursor: pointer;
    transition: border-color .26s cubic-bezier(0.0, 0, 0.2, 1), background .26s cubic-bezier(0.0, 0, 0.2, 1);
    text-transform: lowercase;
    align-self: flex-start
}

@media (min-width: 768px) {
    .contact-pg .submit-btn:hover {
        border-color: #06FFDC
    }
}

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

@media (max-width: 767px) {
    .contact-pg .split-intro {
        grid-template-columns: 1fr
    }

    .contact-pg .split-intro .left-pane,
    .contact-pg .split-intro .right-pane {
        padding: 36px 24px;
        min-height: auto
    }

    .contact-pg .split-intro .headline-primary {
        font-size: 36px
    }

    .contact-pg .editorial-form-section {
        padding: 36px 24px
    }

    .contact-pg .form-wrapper {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .contact-pg .sidebar-heading {
        font-size: 26px
    }

    .contact-pg .metric-number {
        font-size: 36px
    }

    .contact-pg .form-main {
        padding: 24px
    }
}

@media (min-width: 768px) and (max-width: 1279px) {
    .contact-pg .split-intro {
        min-height: 440px
    }

    .contact-pg .split-intro .left-pane,
    .contact-pg .split-intro .right-pane {
        padding: 48px 36px
    }

    .contact-pg .split-intro .headline-primary {
        font-size: 36px
    }

    .contact-pg .editorial-form-section {
        padding: 48px 24px
    }

    .contact-pg .form-wrapper {
        gap: 48px
    }

    .contact-pg .sidebar-heading {
        font-size: 26px
    }

    .contact-pg .metric-number {
        font-size: 36px
    }
}

.consult-hub {
    background: #FDFDFD;
    color: #2F2C2C;
    max-width: 1440px;
    margin: 0 auto
}

.consult-hub .grad-intro {
    background: linear-gradient(127deg, #2F2C2C 0%, #2F2C2C 48%, #06FFDC 48%, #06FFDC 100%);
    padding: 72px 24px;
    position: relative;
    overflow: hidden
}

.consult-hub .grad-intro::before {
    content: '"';
    position: absolute;
    font-size: 320px;
    line-height: 1;
    color: #fdfdfd14;
    top: -40px;
    left: 24px;
    pointer-events: none
}

.consult-hub .intro-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.consult-hub .intro-heading {
    font-size: 48px;
    line-height: 1.1;
    color: #FDFDFD;
    margin: 0 0 24px;
    opacity: 0;
    transform: scale(0.92);
    animation: reveal-scale .26s cubic-bezier(0.0, 0, 0.2, 1) .1s forwards
}

.consult-hub .intro-number {
    font-size: 26px;
    color: #06FFDC;
    vertical-align: super;
    margin: 0 0 0 8px
}

.consult-hub .intro-text {
    font-size: 17px;
    line-height: 1.75;
    color: #FDFDFD;
    margin: 0;
    opacity: 0;
    transform: scale(0.92);
    animation: reveal-scale .24s cubic-bezier(0.4, 0, 0.2, 1) .3s forwards
}

@keyframes reveal-scale {
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.consult-hub .team-showcase {
    padding: 72px 24px;
    background: #FDFDFD;
    position: relative
}

.consult-hub .team-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px
}

.consult-hub .team-wide {
    flex: 1
}

.consult-hub .team-title {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 24px;
    background: linear-gradient(94deg, #2F2C2C 0%, #06FFDC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center
}

.consult-hub .team-description {
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 24px;
    text-align: center
}

.consult-hub .team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 36px 0 0
}

.consult-hub .team-card {
    background: #FDFDFD;
    border: 1px solid #2f2c2c1f;
    border-radius: 10px;
    padding: 24px;
    position: relative;
    box-shadow: -1px 3px 6px 0 #2f2c2c0f;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.consult-hub .team-card::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 1px solid #06ffdc66;
    border-radius: 10px;
    z-index: -1;
    pointer-events: none
}

.consult-hub .team-card:hover {
    box-shadow: -1px 8px 28px 0 #06ffdc2e
}

.consult-hub .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px
}

.consult-hub .team-portrait {
    width: 80px;
    height: 80px;
    border-radius: 3px;
    object-fit: cover;
    object-position: top;
    filter: grayscale(0);
    transition: filter .24s cubic-bezier(0.0, 0, 0.2, 1)
}

.consult-hub .team-card:hover .team-portrait {
    filter: grayscale(1)
}

.consult-hub .card-identity {
    flex: 1
}

.consult-hub .member-name {
    font-size: 20px;
    line-height: 1.1;
    margin: 0 0 4px;
    color: #2F2C2C
}

.consult-hub .member-role {
    font-size: 14px;
    line-height: 1.1;
    margin: 0;
    color: #2f2c2ca3
}

.consult-hub .card-body {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    text-align: center
}

.consult-hub .card-metric {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 12px 0 0;
    padding: 12px;
    background: #06ffdc0f;
    border-radius: 6px
}

.consult-hub .metric-number {
    font-size: 26px;
    line-height: 1;
    color: #06FFDC
}

.consult-hub .metric-label {
    font-size: 14px;
    line-height: 1.1;
    color: #2F2C2C
}

.consult-hub .problem-zone {
    padding: 72px 24px;
    background: #2f2c2c05;
    position: relative
}

.consult-hub .problem-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: url(./photo_directory/image_0017b.jpg);
    background-size: cover;
    background-position: center;
    opacity: .04;
    pointer-events: none;
    transform: translateZ(0)
}

.consult-hub .problem-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.consult-hub .problem-header {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 36px;
    text-align: center;
    color: #2F2C2C
}

.consult-hub .problem-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.consult-hub .problem-block {
    background: #FDFDFD;
    border-radius: 18px;
    padding: 24px;
    box-shadow: -1px 4px 22px 0 #2f2c2c1c inset 0 1px 3px 0 #06ffdc24;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.94);
    animation: reveal-scale .28s cubic-bezier(0.4, 0, 0.2, 1) .2s forwards
}

.consult-hub .problem-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #06ffdc14 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none
}

.consult-hub .block-number {
    font-size: 72px;
    line-height: 1;
    color: #06ffdc1f;
    margin: 0 0 12px;
    text-align: center
}

.consult-hub .block-title {
    font-size: 20px;
    line-height: 1.1;
    margin: 0 0 12px;
    text-align: center;
    color: #2F2C2C
}

.consult-hub .block-text {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    text-align: center;
    color: #2f2c2cdb
}

.consult-hub .context-reveal {
    padding: 72px 24px;
    background: #FDFDFD;
    position: relative
}

.consult-hub .context-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: start
}

.consult-hub .context-left {
    order: 2
}

.consult-hub .context-heading {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 24px;
    background: linear-gradient(112deg, #2F2C2C 0%, #06FFDC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center
}

.consult-hub .context-body {
    font-size: 17px;
    line-height: 1.75;
    margin: 0 0 12px;
    text-align: center
}

.consult-hub .context-body-second {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    text-align: center
}

.consult-hub .context-right {
    order: 1
}

.consult-hub .visual-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px
}

.consult-hub .stack-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: -1px 3px 6px 0 #2f2c2c0f;
    filter: grayscale(0);
    transition: filter .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.consult-hub .stack-img:hover {
    filter: grayscale(1)
}

.consult-hub .stack-tall {
    height: 280px
}

.consult-hub .stack-short {
    height: 180px
}

.consult-hub .objection-address {
    padding: 72px 24px;
    background: linear-gradient(168deg, #2f2c2c08 0%, #06ffdc08 100%);
    position: relative
}

.consult-hub .objection-address::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg, #06FFDC 0px, #06FFDC 12px, transparent 12px, transparent 24px);
    opacity: .2
}

.consult-hub .objection-inner {
    max-width: 900px;
    margin: 0 auto
}

.consult-hub .objection-question {
    font-size: 36px;
    line-height: 1.1;
    margin: 0 0 24px;
    text-align: center;
    color: #2F2C2C
}

.consult-hub .answer-flow {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.consult-hub .answer-segment {
    background: #FDFDFD;
    border-radius: 28px;
    padding: 24px;
    border: 1px solid #2f2c2c14;
    position: relative;
    overflow: hidden
}

.consult-hub .answer-segment::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: #06ffdc0f;
    border-radius: 50%;
    pointer-events: none
}

.consult-hub .segment-head {
    font-size: 20px;
    line-height: 1.1;
    margin: 0 0 12px;
    text-align: center;
    color: #2F2C2C
}

.consult-hub .segment-content {
    font-size: 15px;
    line-height: 1.75;
    margin: 0;
    text-align: center;
    color: #2f2c2cdb
}

.consult-hub .final-note {
    margin: 36px 0 0;
    padding: 24px;
    background: #06ffdc0a;
    border-radius: 10px;
    border-left: 4px solid #06FFDC;
    box-shadow: inset 2px 2px 8px 0 #06ffdc14
}

.consult-hub .final-text {
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
    text-align: center;
    color: #2F2C2C
}

@media (min-width: 768px) {
    .consult-hub .grad-intro {
        padding: 72px 36px
    }

    .consult-hub .intro-heading {
        font-size: 48px
    }

    .consult-hub .team-showcase {
        padding: 72px 36px
    }

    .consult-hub .team-layout {
        flex-direction: row;
        gap: 36px
    }

    .consult-hub .team-wide {
        flex: 2
    }

    .consult-hub .team-title {
        text-align: left
    }

    .consult-hub .team-description {
        text-align: left
    }

    .consult-hub .team-grid {
        grid-template-columns: 1fr
    }

    .consult-hub .problem-zone {
        padding: 72px 36px
    }

    .consult-hub .problem-columns {
        grid-template-columns: repeat(3, 1fr)
    }

    .consult-hub .problem-block:nth-child(1) {
        animation-delay: .1s
    }

    .consult-hub .problem-block:nth-child(2) {
        animation-delay: .25s;
        margin-top: 24px
    }

    .consult-hub .problem-block:nth-child(3) {
        animation-delay: .4s;
        margin-top: 48px
    }

    .consult-hub .context-reveal {
        padding: 72px 36px
    }

    .consult-hub .context-wrap {
        grid-template-columns: 1fr 1fr;
        gap: 72px
    }

    .consult-hub .context-left {
        order: 1
    }

    .consult-hub .context-heading {
        text-align: left
    }

    .consult-hub .context-body {
        text-align: left
    }

    .consult-hub .context-body-second {
        text-align: left
    }

    .consult-hub .context-right {
        order: 2
    }

    .consult-hub .visual-stack {
        grid-template-columns: 1fr 1fr
    }

    .consult-hub .stack-img:nth-child(1) {
        grid-column: 1 / 2
    }

    .consult-hub .stack-img:nth-child(2) {
        grid-column: 2 / 3
    }

    .consult-hub .stack-img:nth-child(3) {
        grid-column: 1 / 3
    }

    .consult-hub .objection-address {
        padding: 72px 36px
    }
}

@media (min-width: 1280px) {
    .consult-hub .grad-intro {
        padding: 72px
    }

    .consult-hub .team-showcase {
        padding: 72px
    }

    .consult-hub .problem-zone {
        padding: 72px
    }

    .consult-hub .context-reveal {
        padding: 72px
    }

    .consult-hub .objection-address {
        padding: 72px
    }
}

.success-pg {
    background: linear-gradient(162deg, #FDFDFD 0%, #FDFDFD 38%, #06ffdc14 38%, #06ffdc14 100%);
    min-height: 100vh;
    padding: 72px 24px
}

.success-pg .confirm-wrap {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px
}

.success-pg .check-icon {
    width: 120px;
    height: 120px;
    background: #06FFDC;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 4px 22px 0 #2f2c2c1c
}

.success-pg .check-icon svg {
    width: 72px;
    height: 72px;
    stroke: #2F2C2C;
    stroke-width: 3;
    fill: none
}

.success-pg .msg-box {
    background: #FDFDFD;
    border-radius: 18px;
    padding: 36px 24px;
    max-width: 680px;
    text-align: center;
    box-shadow: -1px 3px 6px 0 #2f2c2c0f
}

.success-pg .msg-box h1 {
    font-size: 36px;
    line-height: 1.1;
    color: #2F2C2C;
    margin: 0 0 24px;
    background: linear-gradient(98deg, #2F2C2C 0%, #06FFDC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.success-pg .msg-box p {
    font-size: 17px;
    line-height: 1.75;
    color: #2f2c2cd1;
    margin: 0 0 12px
}

.success-pg .msg-box p:last-of-type {
    margin: 0
}

.success-pg .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1440px;
    margin: 0 auto
}

.success-pg .detail-card {
    background: #fff9;
    border: 1px solid #2f2c2c1f;
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.success-pg .detail-card h2 {
    font-size: 20px;
    line-height: 1.1;
    color: #2F2C2C;
    margin: 0
}

.success-pg .detail-card p {
    font-size: 15px;
    line-height: 1.75;
    color: #2f2c2cbd;
    margin: 0
}

.success-pg .detail-card .highlight {
    font-size: 17px;
    color: #06FFDC;
    font-weight: 600
}

.success-pg .action-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 680px;
    margin: 0 auto
}

.success-pg .btn-home {
    background: #2F2C2C;
    color: #FDFDFD;
    border: 2px solid #2F2C2C;
    border-radius: 6px;
    padding: 12px 36px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: border-color .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-pg .btn-home:hover {
    border-color: #06FFDC
}

.success-pg .btn-contact {
    background: transparent;
    color: #2F2C2C;
    border: 2px solid #2f2c2c33;
    border-radius: 6px;
    padding: 12px 36px;
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: border-color .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.success-pg .btn-contact:hover {
    border-color: #06FFDC
}

@media (min-width: 768px) {
    .success-pg {
        padding: 72px 36px
    }

    .success-pg .confirm-wrap {
        gap: 72px
    }

    .success-pg .check-icon {
        width: 160px;
        height: 160px
    }

    .success-pg .check-icon svg {
        width: 96px;
        height: 96px
    }

    .success-pg .msg-box {
        padding: 72px 36px
    }

    .success-pg .msg-box h1 {
        font-size: 48px;
        margin: 0 0 36px
    }

    .success-pg .info-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .success-pg .action-row {
        flex-direction: row;
        justify-content: center
    }
}

@media (min-width: 1280px) {
    .success-pg .info-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px
    }

    .success-pg .detail-card {
        padding: 36px
    }
}