@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/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/roboto@latest/700-italic.css";

* {
    box-sizing: border-box
}

html {
    font-size: 100%
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overflow-wrap: break-word
}

body :focus-visible {
    outline: 3px solid #08C9B5;
    outline-offset: 2px;
    font-weight: 700
}

.site-hd {
    position: relative;
    z-index: 100;
    background: linear-gradient(135deg, #fff 0%, #f0fdfa 55%, #ede9ff 100%);
    border-bottom: 3px solid #08C9B5;
    box-shadow: 0 7px 22px -2px #08c9b51a;
    overflow: hidden
}

.site-hd::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(200deg, #7508c512 0%, transparent 70%);
    pointer-events: none
}

.hd-top-band {
    background: #7508C5;
    padding: 6px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    max-width: 100%
}

.hd-contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 15px;
    line-height: 1.3;
    text-decoration: none;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.hd-contact-item:hover {
    color: #08C9B5
}

.hd-contact-item svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.hd-main-pod {
    max-width: 1170px;
    margin: 0 auto;
    padding: 24px 24px 0;
    display: flex;
    align-items: stretch;
    gap: 40px
}

.brand-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    padding-bottom: 24px;
    padding-right: 40px;
    border-right: 2px solid #08c9b540;
    position: relative
}

.brand-cell::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #08C9B5, #7508C5);
    border-radius: 3px
}

.logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #08C9B5;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 1px 5px -2px #08c9b50f 0 7px 22px -2px #08c9b51a;
    padding: 4px;
    flex-shrink: 0
}

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

.brand-name-label {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1a0533
}

.brand-sub-label {
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.3;
    color: #7508C5;
    font-style: italic
}

.nav-deck {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0
}

.nav-accent-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px
}

.nav-accent-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #F77E05;
    flex-shrink: 0
}

.nav-accent-line {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, #F77E05, transparent);
    border-radius: 3px
}

.nav-primary-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
    align-items: flex-end
}

.nav-primary-list li {
    flex-shrink: 0
}

.nav-lnk {
    display: flex;
    align-items: center;
    height: 48px;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: #1a0533;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 3px 3px 0 0;
    position: relative;
    overflow: hidden;
    transition: color .15s cubic-bezier(0.4, 0, 0.6, 1), border-color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.nav-lnk::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #08c9b51a;
    transition: height .18s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.nav-lnk:hover::before {
    height: 100%
}

.nav-lnk:hover {
    color: #7508C5;
    border-color: #08c9b559
}

.nav-lnk span {
    position: relative;
    z-index: 1
}

.nav-lnk[data-active="true"] {
    color: #08C9B5;
    border-color: #08C9B5;
    border-bottom-color: transparent
}

.hd-deco-gem {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    opacity: .18;
    pointer-events: none
}

.site-ft {
    background: #1a0533;
    position: relative;
    overflow: hidden
}

.ft-geo-block {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #08C9B5 0%, #7508C5 50%, #F77E05 100%)
}

.ft-geo-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border: 32px solid #08c9b50f;
    border-radius: 50%;
    pointer-events: none;
    transform: translate(60px, 60px)
}

.ft-geo-accent-2 {
    position: absolute;
    top: 0;
    left: -40px;
    width: 120px;
    height: 120px;
    border: 20px solid #7508c514;
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-40px)
}

.ft-inner-pod {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 1
}

.ft-brand-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.ft-brand-label {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    text-align: center
}

.ft-brand-label span {
    color: #08C9B5
}

.ft-divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #7508C5, #08C9B5);
    border-radius: 3px
}

.ft-legal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px 24px
}

.ft-legal-nav li {
    display: flex;
    align-items: center;
    gap: 6px
}

.ft-legal-nav li:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #ffffff40;
    display: inline-block;
    margin-left: 24px
}

.ft-legal-lnk {
    font-size: 15px;
    line-height: 1.5;
    color: #ffffffa6;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color .12s cubic-bezier(0.4, 0, 0.6, 1), border-color .12s cubic-bezier(0.4, 0, 0.6, 1)
}

.ft-legal-lnk:hover {
    color: #08C9B5;
    border-bottom-color: #08C9B5
}

.ft-copy-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px
}

.ft-copy-text {
    font-size: 15px;
    line-height: 1.5;
    color: #fff6;
    text-align: center
}

.ft-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid #08c9b573;
    border-radius: 3px;
    background: #ffffff0f;
    box-shadow: 0 1px 5px -2px #08c9b50f 0 7px 22px -2px #08c9b51a;
    padding: 4px;
    flex-shrink: 0
}

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

.consent-card {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 340px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border: 2px solid #08C9B5;
    border-radius: 20px;
    box-shadow: 0 12px 40px -2px #08c9b524;
    z-index: 1500;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.consent-icon-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.consent-icon-shape {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, #08C9B5, #7508C5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.consent-icon-shape svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.consent-body-text {
    font-size: 15px;
    line-height: 1.5;
    color: #1a0533;
    margin: 0
}

.consent-settings-view {
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.consent-toggle-label {
    font-size: 15px;
    line-height: 1.3;
    color: #1a0533;
    font-weight: 700
}

.consent-toggle-sub {
    font-size: 15px;
    line-height: 1.3;
    color: #1a05338c;
    font-weight: 400;
    display: block
}

.consent-toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
    flex-shrink: 0
}

.consent-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute
}

.consent-toggle-track {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: #08c9b526;
    border: 2px solid #08C9B5;
    cursor: pointer;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.consent-toggle-track::after {
    content: '';
    position: absolute;
    left: 2px;
    top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #08C9B5;
    transition: transform .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.consent-toggle-switch input:checked+.consent-toggle-track {
    background: #08c9b54d
}

.consent-toggle-switch input:checked+.consent-toggle-track::after {
    transform: translateX(20px)
}

.consent-always-on {
    font-size: 15px;
    line-height: 1.3;
    color: #08C9B5;
    font-weight: 700;
    flex-shrink: 0
}

.consent-btn-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.consent-btn {
    flex: 1;
    min-width: 0;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    border-radius: 3px;
    border: 2px solid #08C9B5;
    background: transparent;
    color: #1a0533;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .15s cubic-bezier(0.4, 0, 0.6, 1), border-color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.consent-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #08C9B5;
    transition: height .18s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.consent-btn:hover::before {
    height: 100%
}

.consent-btn:hover {
    color: #fff
}

.consent-btn span {
    position: relative;
    z-index: 1
}

.consent-btn.secondary {
    border-color: #7508C5
}

.consent-btn.secondary::before {
    background: #7508C5
}

.consent-settings-lnk {
    font-size: 15px;
    line-height: 1.5;
    color: #7508C5;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-align: center;
    font-family: inherit;
    transition: color .12s cubic-bezier(0.4, 0, 0.6, 1)
}

.consent-settings-lnk:hover {
    color: #08C9B5
}

@media (max-width: 768px) {
    .hd-top-band {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 6px 12px
    }

    .hd-main-pod {
        flex-direction: column;
        gap: 12px;
        padding: 12px 12px 0
    }

    .brand-cell {
        flex-direction: row;
        align-items: center;
        gap: 12px;
        padding-bottom: 12px;
        padding-right: 0;
        border-right: none;
        border-bottom: 2px solid #08c9b540
    }

    .brand-cell::after {
        display: none
    }

    .brand-name-label {
        margin-top: 0;
        font-size: 20px
    }

    .brand-sub-label {
        margin-top: 0
    }

    .nav-primary-list {
        gap: 6px
    }

    .nav-lnk {
        height: 44px;
        padding: 0 12px;
        font-size: 15px
    }

    .hd-deco-gem {
        display: none
    }
}

@media (max-width: 360px) {
    .nav-lnk {
        padding: 0 6px;
        font-size: 15px
    }

    .ft-inner-pod {
        padding: 24px 12px
    }
}

.policy-container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 80px 40px
}

.policy-container h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b1b2e;
    margin-bottom: 24px;
    margin-top: 0
}

.policy-container h2 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -.015em;
    color: #1b1b2e;
    margin-top: 80px;
    margin-bottom: 24px
}

.policy-container h3 {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: #1b1b2e;
    margin-top: 40px;
    margin-bottom: 12px
}

.policy-container h4 {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -.005em;
    color: #1b1b2e;
    margin-top: 40px;
    margin-bottom: 12px
}

.policy-container h5 {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #1b1b2e;
    margin-top: 24px;
    margin-bottom: 12px
}

.policy-container h6 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #3a3a5c;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 12px
}

.policy-container p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c44;
    margin-top: 0;
    margin-bottom: 24px
}

.policy-container ul,
.policy-container ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 40px
}

.policy-container ul {
    list-style: none;
    padding-left: 0
}

.policy-container ul li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c44;
    margin-bottom: 12px
}

.policy-container ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #08C9B5
}

.policy-container ol li {
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c44;
    margin-bottom: 12px;
    padding-left: 6px
}

.policy-container ul ul,
.policy-container ol ol,
.policy-container ul ol,
.policy-container ol ul {
    margin-top: 12px;
    margin-bottom: 0
}

.policy-container ul ul li::before {
    background-color: transparent;
    border: 2px solid #08C9B5
}

.policy-container a {
    color: #7508C5;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1), text-decoration-color .14s ease-out
}

.policy-container a:hover {
    color: #08C9B5;
    text-decoration-color: #08C9B5
}

.policy-container a:visited {
    color: #5a06a0
}

.policy-container table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 1px 5px -2px #08c9b50f 0 7px 22px -2px #08c9b51a
}

.policy-container thead {
    background-color: #f0faf9
}

.policy-container thead th {
    font-size: 15px;
    line-height: 1.5;
    color: #1b1b2e;
    font-weight: 700;
    letter-spacing: .01em;
    text-align: left;
    padding: 12px 24px;
    border-bottom: 2px solid #08C9B5
}

.policy-container tbody tr {
    border-bottom: 1px solid #e8f4f2;
    transition: background-color .12s ease-out
}

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

.policy-container tbody tr:hover {
    background-color: #f7fffe
}

.policy-container td {
    font-size: 15px;
    line-height: 1.5;
    color: #2c2c44;
    padding: 12px 24px;
    vertical-align: top
}

.policy-container hr {
    border: none;
    border-top: 1px solid #d6eeec;
    margin-top: 40px;
    margin-bottom: 40px
}

.policy-container div {
    font-size: 16px;
    line-height: 1.7;
    color: #2c2c44
}

@media (max-width: 1024px) {
    .policy-container {
        padding: 80px 24px
    }

    .policy-container h1 {
        font-size: 48px
    }

    .policy-container h2 {
        font-size: 34px;
        margin-top: 80px
    }
}

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

    .policy-container h1 {
        font-size: 34px
    }

    .policy-container h2 {
        font-size: 24px;
        margin-top: 40px
    }

    .policy-container h3 {
        font-size: 20px
    }

    .policy-container h4 {
        font-size: 16px
    }

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

    .policy-container thead th,
    .policy-container td {
        padding: 12px;
        white-space: nowrap
    }
}

@media (max-width: 360px) {
    .policy-container {
        padding: 24px 12px
    }

    .policy-container h1 {
        font-size: 24px
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 40px
    }

    .policy-container h3 {
        font-size: 16px
    }

    .policy-container p,
    .policy-container ul li,
    .policy-container ol li,
    .policy-container div {
        font-size: 15px
    }
}

.lrn-prog {
    max-width: 100%;
    overflow-x: hidden
}

.lrn-prog .pg-cap {
    background: #fff;
    padding: 80px 0;
    position: relative
}

.lrn-prog .pg-cap .pg-cap-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.lrn-prog .pg-cap .img-col {
    position: relative
}

.lrn-prog .pg-cap .img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.lrn-prog .pg-cap .img-frame::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid #08C9B5;
    border-radius: 26px;
    z-index: 0;
    pointer-events: none
}

.lrn-prog .pg-cap .img-frame::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid #08c9b540;
    border-radius: 32px;
    z-index: 0;
    pointer-events: none
}

.lrn-prog .pg-cap .img-frame img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top;
    display: block;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    filter: saturate(0.75);
    transition: filter .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.lrn-prog .pg-cap .img-frame:hover img {
    filter: saturate(1)
}

.lrn-prog .pg-cap .img-grad {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to bottom, #7508c52e, transparent);
    border-radius: 20px 20px 0 0;
    z-index: 2;
    pointer-events: none
}

.lrn-prog .pg-cap .bg-num {
    position: absolute;
    bottom: -24px;
    right: -24px;
    font-size: 160px;
    font-weight: 900;
    color: #08c9b512;
    line-height: 1.1;
    user-select: none;
    pointer-events: none;
    z-index: 0;
    letter-spacing: -8px
}

.lrn-prog .pg-cap .txt-col {
    position: relative;
    z-index: 1
}

.lrn-prog .pg-cap .eyebrow {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #7508C5;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: #7508c512;
    border-radius: 3px
}

.lrn-prog .pg-cap .pg-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1a0a2e;
    margin: 0 0 24px
}

.lrn-prog .pg-cap .pg-heading .accent-word {
    position: relative;
    display: inline-block;
    color: #08C9B5
}

.lrn-prog .pg-cap .pg-heading .accent-word::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #08C9B5;
    border-radius: 3px;
    animation: underline-draw .8s cubic-bezier(0.4, 0, 0.6, 1) .4s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

.lrn-prog .pg-cap .pg-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #3a2a4e;
    margin: 0 0 40px
}

.lrn-prog .pg-cap .pg-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.lrn-prog .pg-cap .btn-prim {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #08C9B5;
    border: 3px solid #08C9B5;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: color .15s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.lrn-prog .pg-cap .btn-prim::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #08C9B5;
    transition: height .18s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: -1
}

.lrn-prog .pg-cap .btn-prim:hover {
    color: #fff
}

.lrn-prog .pg-cap .btn-prim:hover::before {
    height: 100%
}

.lrn-prog .pg-cap .btn-sec {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #7508C5;
    border: 3px solid #7508C5;
    border-radius: 3px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: transparent;
    transition: color .12s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.lrn-prog .pg-cap .btn-sec::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #7508C5;
    transition: height .22s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: -1
}

.lrn-prog .pg-cap .btn-sec:hover {
    color: #fff
}

.lrn-prog .pg-cap .btn-sec:hover::before {
    height: 100%
}

.lrn-prog .prog-det {
    background: linear-gradient(to right, #f5f0ff, #fff);
    padding: 80px 0;
    position: relative;
    border-right: 5px solid #08C9B5
}

.lrn-prog .prog-det::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 50%, #08c9b50a 0%, transparent 65%);
    pointer-events: none;
    animation: vignette-breathe 5s ease-in-out infinite
}

@keyframes vignette-breathe {

    0%,
    100% {
        opacity: .6
    }

    50% {
        opacity: 1
    }
}

.lrn-prog .prog-det .det-inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.lrn-prog .prog-det .det-top {
    text-align: center;
    margin-bottom: 80px
}

.lrn-prog .prog-det .det-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #F77E05;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.lrn-prog .prog-det .det-heading {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -.02em;
    color: #1a0a2e;
    margin: 0 0 12px
}

.lrn-prog .prog-det .det-heading .dot-acc {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #F77E05;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px
}

.lrn-prog .prog-det .det-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #3a2a4e;
    max-width: 560px;
    margin: 0 auto
}

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

.lrn-prog .prog-det .prog-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: 0 1px 5px -2px #08c9b50f 0 7px 22px -2px #08c9b51a;
    position: relative;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1), transform .15s cubic-bezier(0.4, 0, 0.6, 1);
    overflow: hidden
}

.lrn-prog .prog-det .prog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #08c9b500;
    transition: background .18s cubic-bezier(0.4, 0, 0.6, 1);
    border-radius: 20px;
    pointer-events: none
}

.lrn-prog .prog-det .prog-card:hover {
    box-shadow: 0 12px 40px -2px #08c9b524;
    transform: translateY(-4px)
}

.lrn-prog .prog-det .prog-card:hover::before {
    background: #08c9b50a
}

.lrn-prog .prog-det .prog-card.featured {
    background: linear-gradient(160deg, #7508C5 0%, #08C9B5 100%);
    color: #fff;
    box-shadow: 0 12px 40px -2px #7508c524
}

.lrn-prog .prog-det .prog-card.featured::before {
    background: #fff0
}

.lrn-prog .prog-det .prog-card.featured:hover::before {
    background: #ffffff0f
}

.lrn-prog .prog-det .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 20px;
    background: #08c9b51a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px
}

.lrn-prog .prog-det .prog-card.featured .card-icon {
    background: #ffffff2e
}

.lrn-prog .prog-det .card-icon svg {
    width: 28px;
    height: 28px
}

.lrn-prog .prog-det .card-num {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    color: #08C9B5;
    margin-bottom: 6px
}

.lrn-prog .prog-det .prog-card.featured .card-num {
    color: #fff
}

.lrn-prog .prog-det .card-label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a0a2e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.lrn-prog .prog-det .prog-card.featured .card-label {
    color: #ffffffd9
}

.lrn-prog .prog-det .card-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #5a4a6e
}

.lrn-prog .prog-det .prog-card.featured .card-desc {
    color: #fffc
}

.lrn-prog .prog-det .topics-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.lrn-prog .prog-det .topics-left {
    position: relative
}

.lrn-prog .prog-det .topics-left .pull-quote {
    float: right;
    width: 42%;
    margin: 0 0 24px 24px;
    padding: 24px;
    background: #f77e0512;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #F77E05;
    text-align: center
}

.lrn-prog .prog-det .topics-left .body-txt {
    font-size: 16px;
    line-height: 1.7;
    color: #3a2a4e;
    margin-bottom: 24px
}

.lrn-prog .prog-det .topics-right .sub-heading {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a0a2e;
    margin-bottom: 24px;
    text-align: center
}

.lrn-prog .prog-det .topics-right .sub-heading .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #08C9B5;
    border-radius: 50%;
    margin-left: 5px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.lrn-prog .prog-det .two-col-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    list-style: none;
    padding: 0;
    margin: 0
}

.lrn-prog .prog-det .two-col-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 6px;
    font-size: 15px;
    line-height: 1.5;
    color: #3a2a4e
}

.lrn-prog .prog-det .two-col-list li .li-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #08C9B5;
    margin-top: 5px
}

.lrn-prog .prog-det .divider-diamond {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 40px 0
}

.lrn-prog .prog-det .divider-diamond .d-line {
    flex: 1;
    height: 1px;
    background: #08c9b540
}

.lrn-prog .prog-det .divider-diamond .d-shape {
    width: 10px;
    height: 10px;
    background: #08C9B5;
    transform: rotate(45deg);
    border-radius: 2px;
    flex-shrink: 0
}

.lrn-prog .prog-det .rating-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    background: #08c9b50d;
    border-radius: 20px;
    box-shadow: inset 0 1px 0 #08c9b526 inset 0 -2px 0 #7508c514
}

.lrn-prog .prog-det .rating-item {
    text-align: center
}

.lrn-prog .prog-det .rating-val {
    font-size: 34px;
    font-weight: 900;
    line-height: 1.1;
    color: #7508C5;
    display: block
}

.lrn-prog .prog-det .rating-lbl {
    font-size: 15px;
    color: #5a4a6e;
    line-height: 1.5;
    display: block;
    margin-top: 6px
}

.lrn-prog .prog-det .rating-sep {
    width: 1px;
    height: 48px;
    background: #7508c526
}

.lrn-prog .prog-det .stars-row {
    display: flex;
    flex-direction: row;
    gap: 4px;
    justify-content: center;
    margin-top: 6px
}

.lrn-prog .prog-det .star-svg {
    width: 18px;
    height: 18px
}

@media (max-width: 1024px) {
    .lrn-prog .pg-cap .pg-cap-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lrn-prog .pg-cap .bg-num {
        display: none
    }

    .lrn-prog .pg-cap .img-frame img {
        height: 360px
    }

    .lrn-prog .prog-det .cards-grid {
        grid-template-columns: 1fr 1fr
    }

    .lrn-prog .prog-det .topics-area {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media (max-width: 768px) {
    .lrn-prog .pg-cap {
        padding: 40px 0
    }

    .lrn-prog .pg-cap .pg-heading {
        font-size: 34px
    }

    .lrn-prog .prog-det .cards-grid {
        grid-template-columns: 1fr
    }

    .lrn-prog .prog-det {
        padding: 40px 0
    }

    .lrn-prog .prog-det .det-top {
        margin-bottom: 40px
    }

    .lrn-prog .prog-det .rating-strip {
        flex-direction: column;
        gap: 24px
    }

    .lrn-prog .prog-det .rating-sep {
        width: 48px;
        height: 1px
    }

    .lrn-prog .prog-det .two-col-list {
        grid-template-columns: 1fr
    }

    .lrn-prog .prog-det .topics-left .pull-quote {
        float: none;
        width: 100%;
        margin: 0 0 24px
    }

    .lrn-prog .prog-det .cards-grid {
        margin-bottom: 40px
    }
}

@media (max-width: 360px) {
    .lrn-prog .pg-cap .pg-heading {
        font-size: 24px
    }

    .lrn-prog .pg-cap .pg-actions {
        flex-direction: column
    }

    .lrn-prog .prog-det .det-heading {
        font-size: 24px
    }
}

.abt-us {
    overflow-x: clip;
    background: #fff
}

.abt-us .db-intro {
    background: linear-gradient(to right, #e6faf8 0%, #fff 100%);
    padding: 80px 24px;
    position: relative
}

.abt-us .db-intro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #08C9B5, transparent)
}

.abt-us .db-intro-grid {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.abt-us .db-intro-visual {
    position: relative
}

.abt-us .db-img-primary {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
    box-shadow: 0 7px 22px -2px #08c9b51a
}

.abt-us .db-img-accent {
    position: absolute;
    bottom: -40px;
    right: -24px;
    width: 200px;
    height: 160px;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
    border: 4px solid #fff;
    box-shadow: 0 12px 40px -2px #08c9b524
}

.abt-us .db-dots-path {
    position: absolute;
    top: -24px;
    left: -24px;
    display: grid;
    grid-template-columns: repeat(5, 10px);
    gap: 8px;
    pointer-events: none
}

.abt-us .db-dots-path span {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #08C9B5;
    opacity: .35;
    display: block
}

.abt-us .db-dots-path span:nth-child(3n) {
    background: #7508C5;
    opacity: .25
}

.abt-us .db-dots-path span:nth-child(5n) {
    background: #F77E05;
    opacity: .3
}

.abt-us .db-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .db-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #7508C5;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: #7508c512;
    border-radius: 3px;
    width: fit-content
}

.abt-us .db-h1 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -.02em;
    margin: 0
}

.abt-us .db-h1 .grad-word {
    background: linear-gradient(to right, #08C9B5, #fff);
    background: linear-gradient(to right, #08C9B5 0%, #7508C5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block
}

.abt-us .db-h1 .grad-word::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #08C9B5, #7508C5);
    animation: underline-draw .9s cubic-bezier(0.4, 0, 0.6, 1) .4s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

.abt-us .db-body-group {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt-us .db-para {
    font-size: 16px;
    line-height: 1.7;
    color: #2d2d3a;
    margin: 0
}

.abt-us .db-pull {
    float: right;
    width: 42%;
    margin: 0 0 12px 24px;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #08C9B5;
    border-top: 3px solid #08C9B5;
    padding-top: 12px
}

.abt-us .db-metrics {
    display: flex;
    flex-direction: row;
    gap: 24px;
    padding-top: 12px
}

.abt-us .db-metric {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.abt-us .db-metric-num {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #7508C5;
    letter-spacing: -.02em
}

.abt-us .db-metric-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #555568
}

.abt-us .db-metric-sep {
    width: 1px;
    background: #7508c526;
    align-self: stretch
}

.abt-us .db-team {
    background: #fff;
    padding: 80px 24px;
    position: relative
}

.abt-us .db-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, #F77E05, transparent)
}

.abt-us .db-team-inner {
    max-width: 1170px;
    margin: 0 auto
}

.abt-us .db-team-head {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center
}

.abt-us .db-h2 {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -.015em;
    margin: 0
}

.abt-us .db-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 3px;
    background: #F77E05;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -3px
}

.abt-us .db-sub {
    font-size: 16px;
    line-height: 1.5;
    color: #555568;
    max-width: 520px;
    margin: 0
}

.abt-us .db-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px
}

.abt-us .db-person {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 5px -2px #08c9b50f;
    background: #f7fffe;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1), transform .15s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative
}

.abt-us .db-person:hover {
    box-shadow: 0 12px 40px -2px #08c9b524;
    transform: translateY(-4px)
}

.abt-us .db-person-img-wrap {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative
}

.abt-us .db-person-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #08c9b500;
    transition: background .18s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none
}

.abt-us .db-person:hover .db-person-img-wrap::after {
    background: #08c9b514
}

.abt-us .db-person-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-us .db-person:hover .db-person-img {
    transform: scale(1.03)
}

.abt-us .db-person-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.abt-us .db-person-name {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0
}

.abt-us .db-person-role {
    font-size: 15px;
    line-height: 1.5;
    color: #7508C5;
    font-weight: 600;
    margin: 0
}

.abt-us .db-person-note {
    font-size: 15px;
    line-height: 1.5;
    color: #555568;
    margin: 6px 0 0
}

.abt-us .db-person-dot {
    width: 8px;
    height: 8px;
    border-radius: 3px;
    background: #08C9B5;
    display: inline-block;
    margin-right: 6px;
    vertical-align: middle
}

.abt-us .db-values-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px
}

.abt-us .db-val-item {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 24px;
    border-radius: 20px;
    background: linear-gradient(to right, #08c9b50d 0%, #fff 100%);
    border: 1.5px solid #08c9b51f;
    transition: border-color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-us .db-val-item:hover {
    border-color: #08c9b559
}

.abt-us .db-val-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    background: #08c9b51f;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-us .db-val-icon svg {
    width: 20px;
    height: 20px
}

.abt-us .db-val-icon.orange {
    background: #f77e051f
}

.abt-us .db-val-icon.purple {
    background: #7508c51a
}

.abt-us .db-val-text {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.abt-us .db-val-h {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0
}

.abt-us .db-val-p {
    font-size: 15px;
    line-height: 1.5;
    color: #555568;
    margin: 0
}

.abt-us .db-bg-anim {
    animation: bg-warm-cool 8s ease-in-out infinite alternate
}

@keyframes bg-warm-cool {
    0% {
        background-color: #e6faf8
    }

    50% {
        background-color: #f0eafd
    }

    100% {
        background-color: #fff8ee
    }
}

@media (max-width: 1024px) {
    .abt-us .db-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .abt-us .db-img-accent {
        right: 12px;
        bottom: -24px;
        width: 150px;
        height: 120px
    }

    .abt-us .db-h1 {
        font-size: 48px
    }

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

@media (max-width: 768px) {
    .abt-us .db-intro {
        padding: 40px 24px
    }

    .abt-us .db-h1 {
        font-size: 34px
    }

    .abt-us .db-pull {
        float: none;
        width: 100%;
        margin: 0
    }

    .abt-us .db-metrics {
        flex-direction: column;
        gap: 12px
    }

    .abt-us .db-metric-sep {
        width: 100%;
        height: 1px;
        align-self: auto
    }

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

    .abt-us .db-values-row {
        grid-template-columns: 1fr
    }

    .abt-us .db-team {
        padding: 40px 24px
    }

    .abt-us .db-img-primary {
        height: 300px
    }

    .abt-us .db-img-accent {
        display: none
    }
}

@media (max-width: 360px) {
    .abt-us .db-h1 {
        font-size: 24px
    }

    .abt-us .db-h2 {
        font-size: 24px
    }

    .abt-us .db-metric-num {
        font-size: 24px
    }
}

.prm {
    overflow-x: hidden
}

.prm .fade-up {
    opacity: 0;
    transform: translateY(32px);
    animation: prm-rise .72s cubic-bezier(0.22, 1, 0.36, 1) forwards
}

.prm .fade-up:nth-child(1) {
    animation-delay: .08s
}

.prm .fade-up:nth-child(2) {
    animation-delay: .18s
}

.prm .fade-up:nth-child(3) {
    animation-delay: .28s
}

.prm .fade-up:nth-child(4) {
    animation-delay: .38s
}

.prm .fade-up:nth-child(5) {
    animation-delay: .48s
}

@keyframes prm-rise {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.prm .draw-line {
    display: inline-block;
    position: relative
}

.prm .draw-line::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #08C9B5;
    animation: prm-draw .9s cubic-bezier(0.22, 1, 0.36, 1) .6s forwards
}

@keyframes prm-draw {
    to {
        width: 100%
    }
}

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

.prm .sec-divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    max-width: 320px;
    padding: 24px 0
}

.prm .sec-divider span.div-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #08C9B5 50%, transparent)
}

.prm .sec-divider span.div-word {
    font-size: 15px;
    color: #08C9B5;
    letter-spacing: .08em;
    white-space: nowrap
}

.prm .txt-sel::selection {
    background: #08C9B5;
    color: #fff
}

.prm .accent-dot::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F77E05;
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px
}

.prm .hl-link {
    position: relative;
    text-decoration: none;
    color: inherit
}

.prm .hl-link::before {
    content: '';
    position: absolute;
    inset: -2px -4px;
    background: #08c9b51f;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1);
    border-radius: 3px;
    z-index: 0
}

.prm .hl-link:hover::before {
    transform: scaleX(1)
}

.prm .hl-link span {
    position: relative;
    z-index: 1
}

.prm .btn-prim {
    display: inline-block;
    position: relative;
    padding: 12px 40px;
    border: 2.5px solid #08C9B5;
    border-radius: 3px;
    background: transparent;
    color: #08C9B5;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    overflow: hidden;
    transition: color .16s ease-out, border-color .16s ease-out;
    text-decoration: none
}

.prm .btn-prim::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #08C9B5;
    transition: height .2s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.prm .btn-prim:hover::after {
    height: 100%
}

.prm .btn-prim:hover {
    color: #fff
}

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

.prm .btn-sec {
    display: inline-block;
    position: relative;
    padding: 12px 40px;
    border: 2.5px solid #7508C5;
    border-radius: 3px;
    background: transparent;
    color: #7508C5;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    overflow: hidden;
    transition: color .14s ease-out;
    text-decoration: none
}

.prm .btn-sec::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #7508C5;
    transition: height .18s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.prm .btn-sec:hover::after {
    height: 100%
}

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

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

.prm .ttl-blk {
    background: #f5f4f2;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative
}

.prm .ttl-blk .grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(#08c9b50b 1px, transparent 1px), linear-gradient(90deg, #08c9b50b 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0
}

.prm .ttl-blk .ttl-inner {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
}

.prm .ttl-blk .ttl-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    background: #08c9b51a;
    border: 1px solid #08c9b54d;
    border-radius: 3px;
    padding: 6px 12px;
    font-size: 15px;
    color: #08C9B5;
    font-weight: 600;
    letter-spacing: .06em
}

.prm .ttl-blk .ttl-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.prm .ttl-blk .ttl-h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b1b2e;
    max-width: 780px;
    margin: 0
}

.prm .ttl-blk .ttl-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #3a3a52;
    max-width: 560px;
    margin: 0
}

.prm .ttl-blk .ttl-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.prm .ttl-blk .ttl-img-row {
    width: 100%;
    margin-top: 24px;
    position: relative;
    border-radius: 20px;
    overflow: hidden
}

.prm .ttl-blk .ttl-img-row img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 20px;
    filter: brightness(0.88);
    transition: filter .2s ease-out
}

.prm .ttl-blk .ttl-img-row img:hover {
    filter: brightness(1.04)
}

.prm .ttl-blk .ttl-img-row .img-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, #f5f4f2 0%, transparent 100%);
    pointer-events: none;
    border-radius: 20px 20px 0 0
}

.prm .commit-sec {
    background: #fff;
    padding: 80px 0 40px
}

.prm .commit-sec .commit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.prm .commit-sec .commit-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .commit-sec .commit-label {
    font-size: 15px;
    color: #7508C5;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.prm .commit-sec .commit-h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    color: #1b1b2e;
    margin: 0
}

.prm .commit-sec .commit-body {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a52;
    margin: 0
}

.prm .commit-sec .commit-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .commit-sec .commit-pull {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    color: #08C9B5;
    border-top: 2px solid #08C9B5;
    padding-top: 24px;
    margin: 0
}

.prm .commit-sec .commit-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.prm .commit-sec .fact-item {
    background: #f5f4f2;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 1px 5px -2px #08c9b50f;
    transition: box-shadow .16s ease-out, background .16s ease-out
}

.prm .commit-sec .fact-item:hover {
    background: #08c9b50f;
    box-shadow: 0 7px 22px -2px #08c9b51a
}

.prm .commit-sec .fact-num {
    font-size: 34px;
    font-weight: 800;
    color: #7508C5;
    line-height: 1.1
}

.prm .commit-sec .fact-desc {
    font-size: 15px;
    color: #3a3a52;
    line-height: 1.5;
    margin: 0
}

.prm .commit-sec .commit-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px -2px #7508c524
}

.prm .commit-sec .commit-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.9);
    transition: filter .2s ease-out
}

.prm .commit-sec .commit-img-wrap img:hover {
    filter: brightness(1.05)
}

.prm .pattern-sec {
    background: linear-gradient(90deg, #08C9B5 0%, #f5f4f2 100%);
    padding: 80px 0
}

.prm .pattern-sec .pat-inner {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.prm .pattern-sec .pat-top {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    align-items: start
}

.prm .pattern-sec .pat-h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 0
}

.prm .pattern-sec .pat-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffffe6;
    margin: 0
}

.prm .pattern-sec .pat-right-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .pattern-sec .pat-quote-block {
    background: #ffffff26;
    border-radius: 20px;
    padding: 24px;
    border: 1px dashed #fff6
}

.prm .pattern-sec .pat-quote-block p {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    color: #fff;
    margin: 0 0 12px;
    font-style: italic
}

.prm .pattern-sec .pat-quote-block .pat-attr {
    font-size: 15px;
    color: #ffffffbf;
    margin: 0
}

.prm .pattern-sec .pat-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.prm .pattern-sec .pat-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 7px 22px -2px #08c9b51a;
    transition: box-shadow .2s ease-out, transform .18s ease-out
}

.prm .pattern-sec .pat-card:hover {
    box-shadow: 0 12px 40px -2px #08c9b524;
    transform: translateY(-4px)
}

.prm .pattern-sec .pat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.prm .pattern-sec .pat-card-icon svg {
    width: 22px;
    height: 22px
}

.prm .pattern-sec .pat-card-h {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b2e;
    margin: 0
}

.prm .pattern-sec .pat-card-p {
    font-size: 15px;
    line-height: 1.5;
    color: #3a3a52;
    margin: 0
}

.prm .pattern-sec .pat-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px -2px #08c9b524;
    position: relative
}

.prm .pattern-sec .pat-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: brightness(0.88);
    transition: filter .2s ease-out
}

.prm .pattern-sec .pat-img-wrap img:hover {
    filter: brightness(1.04)
}

.prm .pattern-sec .pat-img-overlay {
    position: absolute;
    inset: 0;
    background: #08c9b52e;
    pointer-events: none;
    border-radius: 20px
}

.prm .adapt-sec {
    background: #f5f4f2;
    padding: 80px 0
}

.prm .adapt-sec .adapt-layout {
    display: grid;
    grid-template-columns: 3fr 5fr;
    gap: 40px;
    align-items: start
}

.prm .adapt-sec .adapt-sticky {
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .adapt-sec .adapt-label {
    font-size: 15px;
    color: #F77E05;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase
}

.prm .adapt-sec .adapt-h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    color: #1b1b2e;
    margin: 0
}

.prm .adapt-sec .adapt-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a52;
    margin: 0
}

.prm .adapt-sec .adapt-anchor-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(90deg, #F77E05 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 22px -2px #08c9b51a
}

.prm .adapt-sec .adapt-anchor-icon svg {
    width: 40px;
    height: 40px
}

.prm .adapt-sec .adapt-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prm .adapt-sec .adapt-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: stretch
}

.prm .adapt-sec .adapt-row:hover .adapt-item {
    background: #08c9b50a
}

.prm .adapt-sec .adapt-row:hover .adapt-num-col {
    color: #08C9B5
}

.prm .adapt-sec .adapt-num-col {
    font-size: 48px;
    font-weight: 800;
    color: #08c9b52e;
    line-height: 1.1;
    min-width: 56px;
    transition: color .18s ease-out
}

.prm .adapt-sec .adapt-item {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 1px 5px -2px #08c9b50f;
    transition: background .16s ease-out, box-shadow .18s ease-out
}

.prm .adapt-sec .adapt-item:hover {
    box-shadow: 0 7px 22px -2px #08c9b51a
}

.prm .adapt-sec .adapt-item-h {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b2e;
    margin: 0
}

.prm .adapt-sec .adapt-item-p {
    font-size: 15px;
    line-height: 1.5;
    color: #3a3a52;
    margin: 0
}

.prm .adapt-sec .adapt-fact-embed {
    background: #f77e0514;
    border-radius: 3px;
    padding: 12px;
    font-size: 15px;
    color: #b85a00;
    font-weight: 600;
    line-height: 1.5;
    border: 1px dashed #f77e0566
}

.prm .range-sec {
    background: #fff;
    padding: 80px 0
}

.prm .range-sec .range-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 40px
}

.prm .range-sec .range-h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.3;
    color: #1b1b2e;
    margin: 0
}

.prm .range-sec .range-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a52;
    margin: 0
}

.prm .range-sec .range-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px
}

.prm .range-sec .rng-item {
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s ease-out
}

.prm .range-sec .rng-item::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .18s ease-out;
    pointer-events: none;
    border-radius: 20px
}

.prm .range-sec .rng-item:hover::before {
    opacity: 1
}

.prm .range-sec .rng-item.wide {
    grid-column: 1;
    grid-row: 1 / 3;
    background: #1b1b2e
}

.prm .range-sec .rng-item.wide::before {
    background: #08c9b51a
}

.prm .range-sec .rng-item.wide:hover {
    box-shadow: 0 12px 40px -2px #08c9b524
}

.prm .range-sec .rng-item.med-a {
    background: #08c9b514;
    border: 1px solid #08c9b533
}

.prm .range-sec .rng-item.med-a::before {
    background: #08c9b51f
}

.prm .range-sec .rng-item.med-b {
    background: #7508c50f;
    border: 1px solid #7508c526
}

.prm .range-sec .rng-item.med-b::before {
    background: #7508c51a
}

.prm .range-sec .rng-item.med-c {
    background: #f77e0512;
    border: 1px solid #f77e052e
}

.prm .range-sec .rng-item.med-c::before {
    background: #f77e051f
}

.prm .range-sec .rng-item.med-d {
    background: #f5f4f2;
    border: 1px solid #08c9b51a
}

.prm .range-sec .rng-item.med-d::before {
    background: #08c9b514
}

.prm .range-sec .rng-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center
}

.prm .range-sec .rng-item-icon svg {
    width: 24px;
    height: 24px
}

.prm .range-sec .rng-h {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0
}

.prm .range-sec .rng-item.wide .rng-h {
    color: #fff;
    font-size: 24px
}

.prm .range-sec .rng-item:not(.wide) .rng-h {
    color: #1b1b2e
}

.prm .range-sec .rng-p {
    font-size: 15px;
    line-height: 1.5;
    margin: 0
}

.prm .range-sec .rng-item.wide .rng-p {
    color: #ffffffc7
}

.prm .range-sec .rng-item:not(.wide) .rng-p {
    color: #3a3a52
}

.prm .range-sec .rng-item.wide .rng-big-num {
    font-size: 64px;
    font-weight: 800;
    color: #08C9B5;
    line-height: 1.1;
    margin-top: auto
}

.prm .range-sec .rng-img-row {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 12px 40px -2px #7508c524
}

.prm .range-sec .rng-img-row img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: brightness(0.88);
    transition: filter .2s ease-out
}

.prm .range-sec .rng-img-row img:hover {
    filter: brightness(1.04)
}

.prm .range-sec .rng-img-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: #1b1b2eb8;
    border-radius: 3px;
    padding: 12px 24px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5
}

@media (max-width: 1024px) {
    .prm .ttl-blk .ttl-h1 {
        font-size: 48px
    }

    .prm .commit-sec .commit-grid {
        grid-template-columns: 1fr
    }

    .prm .pattern-sec .pat-top {
        grid-template-columns: 1fr
    }

    .prm .pattern-sec .pat-cards {
        grid-template-columns: 1fr 1fr
    }

    .prm .adapt-sec .adapt-layout {
        grid-template-columns: 1fr
    }

    .prm .adapt-sec .adapt-sticky {
        position: static
    }

    .prm .range-sec .range-top {
        grid-template-columns: 1fr
    }

    .prm .range-sec .range-grid {
        grid-template-columns: 1fr 1fr
    }

    .prm .range-sec .rng-item.wide {
        grid-column: 1 / 3;
        grid-row: 1
    }
}

@media (max-width: 768px) {
    .prm .ttl-blk {
        padding-top: 40px;
        padding-bottom: 24px
    }

    .prm .ttl-blk .ttl-h1 {
        font-size: 34px
    }

    .prm .ttl-blk .ttl-img-row img {
        height: 240px
    }

    .prm .commit-sec {
        padding: 40px 0 24px
    }

    .prm .commit-sec .commit-facts {
        grid-template-columns: 1fr
    }

    .prm .pattern-sec {
        padding: 40px 0
    }

    .prm .pattern-sec .pat-cards {
        grid-template-columns: 1fr
    }

    .prm .adapt-sec {
        padding: 40px 0
    }

    .prm .adapt-sec .adapt-row {
        flex-direction: column;
        gap: 12px
    }

    .prm .adapt-sec .adapt-num-col {
        font-size: 34px;
        min-width: auto
    }

    .prm .range-sec {
        padding: 40px 0
    }

    .prm .range-sec .range-grid {
        grid-template-columns: 1fr
    }

    .prm .range-sec .rng-item.wide {
        grid-column: 1;
        grid-row: auto
    }

    .prm .range-sec .rng-item {
        padding: 24px
    }
}

@media (max-width: 360px) {
    .prm .ttl-blk .ttl-h1 {
        font-size: 24px
    }

    .prm .ttl-blk .ttl-actions {
        flex-direction: column
    }

    .prm .btn-prim,
    .prm .btn-sec {
        padding: 12px 24px;
        font-size: 15px
    }

    .prm .commit-sec .commit-h2,
    .prm .adapt-sec .adapt-h2,
    .prm .range-sec .range-h2,
    .prm .pattern-sec .pat-h2 {
        font-size: 24px
    }
}

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

.ct-us .pg-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.ct-us .animated-word {
    position: relative;
    display: inline-block
}

.ct-us .animated-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #08C9B5;
    animation: underline-draw .8s cubic-bezier(0.4, 0, 0.6, 1) .4s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

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

    60% {
        opacity: 1;
        transform: scale(1.03) translateY(-4px)
    }

    80% {
        transform: scale(0.98) translateY(2px)
    }

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

@keyframes blob-drift {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(12px, -8px) scale(1.04)
    }
}

.ct-us .reach-strip {
    background: #f4f0fc;
    padding: 80px 0;
    position: relative
}

.ct-us .reach-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #08C9B5 0%, #7508C5 60%, #F77E05 100%)
}

.ct-us .reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.ct-us .reach-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ct-us .reach-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #7508C5;
    letter-spacing: .06em;
    text-transform: uppercase
}

.ct-us .reach-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #08C9B5;
    flex-shrink: 0
}

.ct-us .reach-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1e0a3c;
    margin: 0
}

.ct-us .reach-heading .outlined {
    -webkit-text-stroke: 2px #7508C5;
    color: transparent
}

.ct-us .reach-heading .accent-dot {
    color: #F77E05;
    font-weight: 900
}

.ct-us .reach-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #3d2260;
    margin: 0;
    max-width: 420px
}

.ct-us .reach-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px
}

.ct-us .reach-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 1px 5px -2px #7508c50f 0 7px 22px -2px #7508c51a;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1), transform .15s cubic-bezier(0.4, 0, 0.6, 1);
    animation: elastic-in .7s cubic-bezier(0.4, 0, 0.6, 1) both
}

.ct-us .reach-card:nth-child(1) {
    animation-delay: .1s
}

.ct-us .reach-card:nth-child(2) {
    animation-delay: .2s
}

.ct-us .reach-card:nth-child(3) {
    animation-delay: .3s
}

.ct-us .reach-card:hover {
    box-shadow: 0 12px 40px -2px #7508c524;
    transform: translateY(-2px)
}

.ct-us .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ct-us .card-icon.teal {
    background: #08c9b51f
}

.ct-us .card-icon.purple {
    background: #7508c51a
}

.ct-us .card-icon.orange {
    background: #f77e051a
}

.ct-us .card-icon svg {
    width: 20px;
    height: 20px
}

.ct-us .card-body {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ct-us .card-label {
    font-size: 15px;
    font-weight: 700;
    color: #1e0a3c;
    line-height: 1.3
}

.ct-us .card-val {
    font-size: 15px;
    color: #3d2260;
    line-height: 1.5;
    text-decoration: none;
    transition: color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.ct-us .card-val:hover {
    color: #08C9B5
}

.ct-us .reach-right {
    position: relative
}

.ct-us .reach-right .blob-a {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 32px;
    background: #08c9b51f;
    top: -24px;
    right: -24px;
    animation: blob-drift 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0
}

.ct-us .reach-right .blob-b {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 32px;
    background: #f77e0514;
    bottom: 12px;
    left: -12px;
    animation: blob-drift 8s ease-in-out 2s infinite;
    pointer-events: none;
    z-index: 0
}

.ct-us .form-shell {
    position: relative;
    z-index: 1;
    background: #fff;
    border-radius: 32px;
    padding: 40px;
    box-shadow: 0 12px 40px -2px #08c9b524;
    animation: elastic-in .8s cubic-bezier(0.4, 0, 0.6, 1) .15s both
}

.ct-us .form-top {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px
}

.ct-us .form-heading {
    font-size: 24px;
    font-weight: 800;
    color: #1e0a3c;
    line-height: 1.3;
    margin: 0
}

.ct-us .form-heading .accent-dot {
    color: #F77E05
}

.ct-us .form-desc {
    font-size: 15px;
    color: #3d2260;
    line-height: 1.5;
    margin: 0
}

.ct-us .f-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px
}

.ct-us .f-row label {
    font-size: 15px;
    font-weight: 600;
    color: #1e0a3c;
    line-height: 1.3
}

.ct-us .f-row input[type="text"],
.ct-us .f-row input[type="email"],
.ct-us .f-row input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8dff7;
    border-radius: 20px;
    font-size: 16px;
    color: #1e0a3c;
    background: #f9f5ff;
    outline: none;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1);
    box-sizing: border-box
}

.ct-us .f-row input[type="text"]::placeholder,
.ct-us .f-row input[type="email"]::placeholder,
.ct-us .f-row input[type="tel"]::placeholder {
    color: #1e0a3c66
}

.ct-us .f-row input[type="text"]:focus,
.ct-us .f-row input[type="email"]:focus,
.ct-us .f-row input[type="tel"]:focus {
    border-color: #08C9B5;
    box-shadow: 0 1px 5px -2px #08c9b50f 0 7px 22px -2px #08c9b51a;
    background: #fff
}

.ct-us .rating-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px
}

.ct-us .rating-row>span {
    font-size: 15px;
    font-weight: 600;
    color: #1e0a3c;
    line-height: 1.3
}

.ct-us .rating-opts {
    display: flex;
    flex-direction: row;
    gap: 6px;
    flex-wrap: wrap
}

.ct-us .rating-opts input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ct-us .rating-opts label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 20px;
    border: 2px solid #e8dff7;
    font-size: 16px;
    font-weight: 700;
    color: #7508C5;
    cursor: pointer;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1), border-color .15s cubic-bezier(0.4, 0, 0.6, 1), color .15s cubic-bezier(0.4, 0, 0.6, 1);
    background: #f9f5ff;
    user-select: none
}

.ct-us .rating-opts input[type="radio"]:checked+label {
    background: #7508C5;
    border-color: #7508C5;
    color: #fff;
    box-shadow: 0 7px 22px -2px #7508c51a
}

.ct-us .rating-opts label:hover {
    background: #7508c51f;
    border-color: #7508C5
}

.ct-us .rating-labels {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 15px;
    color: #3d2260;
    opacity: .7
}

.ct-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px
}

.ct-us .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 3px;
    border: 2px solid #e8dff7;
    accent-color: #08C9B5;
    margin-top: 2px;
    cursor: pointer
}

.ct-us .privacy-row .priv-text {
    font-size: 15px;
    color: #3d2260;
    line-height: 1.5
}

.ct-us .privacy-row .priv-text a {
    color: #7508C5;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline
}

.ct-us .privacy-row .priv-text a::before {
    content: '';
    position: absolute;
    left: 50%;
    right: 50%;
    bottom: -1px;
    height: 1.5px;
    background: #7508C5;
    transition: left .18s cubic-bezier(0.4, 0, 0.6, 1), right .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.ct-us .privacy-row .priv-text a:hover::before {
    left: 0;
    right: 0
}

.ct-us .submit-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 20px;
    border: 3px solid #08C9B5;
    background: transparent;
    font-size: 16px;
    font-weight: 800;
    color: #08C9B5;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1), border-color .18s cubic-bezier(0.4, 0, 0.6, 1);
    letter-spacing: .03em
}

.ct-us .submit-btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #08C9B5;
    transition: height .18s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.ct-us .submit-btn:hover::after {
    height: 100%
}

.ct-us .submit-btn:hover {
    color: #fff;
    border-color: #08C9B5
}

.ct-us .submit-btn span {
    position: relative;
    z-index: 1
}

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

.ct-us .map-strip {
    background: #08C9B5;
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.ct-us .map-strip .fib-bg {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    opacity: .08;
    pointer-events: none
}

.ct-us .map-strip .concentric-corner {
    position: absolute;
    bottom: 24px;
    left: 24px;
    pointer-events: none
}

.ct-us .map-strip .concentric-corner span {
    display: block;
    border: 1px solid #ffffff40;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0
}

.ct-us .map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1
}

.ct-us .map-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ct-us .map-heading {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -.02em;
    margin: 0
}

.ct-us .map-heading .outlined-w {
    -webkit-text-stroke: 2px #fff;
    color: transparent
}

.ct-us .map-heading .accent-dot {
    color: #F77E05
}

.ct-us .map-body {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffffe6;
    margin: 0
}

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

.ct-us .addr-item {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ct-us .addr-item-label {
    font-size: 15px;
    font-weight: 700;
    color: #ffffffb3;
    text-transform: uppercase;
    letter-spacing: .08em
}

.ct-us .addr-item-val {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    text-decoration: none;
    font-weight: 500;
    transition: color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.ct-us .addr-item-val:hover {
    color: #F77E05
}

.ct-us .map-right {
    position: relative
}

.ct-us .img-frame {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 12px 40px -2px #08c9b524;
    position: relative;
    animation: elastic-in .9s cubic-bezier(0.4, 0, 0.6, 1) .2s both
}

.ct-us .img-frame img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    display: block
}

.ct-us .img-frame .img-tint {
    position: absolute;
    inset: 0;
    background: #7508c52e;
    border-radius: 32px;
    transition: background .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.ct-us .img-frame:hover .img-tint {
    background: #7508c514
}

.ct-us .img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: 20px;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 7px 22px -2px #7508c51a
}

.ct-us .img-badge-num {
    font-size: 34px;
    font-weight: 900;
    color: #7508C5;
    line-height: 1.1
}

.ct-us .img-badge-txt {
    font-size: 15px;
    color: #3d2260;
    line-height: 1.3
}

.ct-us .divider-thick {
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #08C9B5 0%, #7508C5 50%, #F77E05 100%);
    border: none;
    margin: 0
}

@media (max-width: 1024px) {
    .ct-us .reach-heading {
        font-size: 34px
    }

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

    .ct-us .map-heading {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .ct-us .reach-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ct-us .map-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ct-us .reach-heading {
        font-size: 34px
    }

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

    .ct-us .reach-strip {
        padding: 40px 0
    }

    .ct-us .map-strip {
        padding: 40px 0
    }

    .ct-us .reach-right .blob-a,
    .ct-us .reach-right .blob-b {
        display: none
    }
}

@media (max-width: 360px) {
    .ct-us .reach-heading {
        font-size: 24px
    }

    .ct-us .form-shell {
        padding: 24px 16px
    }

    .ct-us .rating-opts label {
        width: 36px;
        height: 36px;
        font-size: 15px
    }
}

.srvs-pg {
    overflow-x: hidden;
    position: relative
}

.srvs-pg *,
.srvs-pg ::before,
.srvs-pg ::after {
    box-sizing: border-box
}

.srvs-pg ::selection {
    background: #08C9B5;
    color: #fff
}

.srvs-pg .max-w {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px
}

.srvs-pg .geo-bg {
    position: absolute;
    border-radius: 50%;
    opacity: .045;
    pointer-events: none;
    background: #08C9B5
}

.srvs-pg .geo-bg.alt {
    background: #7508C5
}

.srvs-pg .geo-bg.sm {
    background: #F77E05
}

.srvs-pg .scallop-div {
    position: relative;
    height: 40px;
    overflow: hidden
}

.srvs-pg .scallop-div svg {
    display: block;
    width: 100%;
    height: 100%
}

.srvs-pg .scallop-div.flip {
    transform: scaleY(-1)
}

.srvs-pg .lead-blk {
    position: relative;
    background: #111118;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px
}

.srvs-pg .lead-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("../images/asset-2023-014.jpg") center/cover no-repeat;
    opacity: .18;
    filter: contrast(1.15) brightness(0.7)
}

.srvs-pg .grain-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .55;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E")
}

.srvs-pg .lead-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.srvs-pg .lead-shapes .sh1 {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px solid #08c9b51f;
    border-radius: 50%;
    top: -80px;
    right: -60px
}

.srvs-pg .lead-shapes .sh2 {
    position: absolute;
    width: 180px;
    height: 180px;
    border: 1px solid #7508c52e;
    border-radius: 50%;
    bottom: 40px;
    left: 80px
}

.srvs-pg .lead-shapes .sh3 {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 2px solid #f77e0526;
    border-radius: 3px;
    top: 60px;
    left: 40%;
    transform: rotate(22deg)
}

.srvs-pg .lead-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
}

.srvs-pg .lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 1.5px solid #08c9b566;
    border-radius: 3px;
    color: #08C9B5;
    font-size: 15px;
    letter-spacing: .04em
}

.srvs-pg .lead-h1 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #f0edf8;
    margin: 0;
    max-width: 680px
}

.srvs-pg .lead-h1 .pause-line {
    display: block;
    color: #08C9B5
}

.srvs-pg .lead-h1 .uw {
    position: relative;
    display: inline-block
}

.srvs-pg .lead-h1 .uw::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0;
    background: #F77E05;
    border-radius: 3px;
    animation: uline-draw .22s cubic-bezier(0.4, 0, 0.6, 1) .4s forwards
}

@keyframes uline-draw {
    to {
        width: 100%
    }
}

.srvs-pg .lead-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #f0edf8bf;
    max-width: 520px;
    margin: 0
}

.srvs-pg .lead-stats {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 12px
}

.srvs-pg .stat-item {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.srvs-pg .stat-num {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: #08C9B5;
    letter-spacing: -.02em
}

.srvs-pg .stat-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #f0edf899
}

.srvs-pg .wipe-reveal {
    clip-path: inset(0 100% 0 0);
    animation: wipe-in .2s cubic-bezier(0.4, 0, 0.6, 1) .1s forwards
}

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

.srvs-pg .srv-grid-blk {
    position: relative;
    background: #f5f3fb;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-left: 40px;
    overflow: hidden
}

.srvs-pg .srv-grid-blk .geo-bg {
    width: 500px;
    height: 500px;
    top: -120px;
    right: -100px
}

.srvs-pg .srv-grid-blk .geo-bg.alt {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -60px
}

.srvs-pg .srv-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end;
    margin-bottom: 40px
}

.srvs-pg .srv-eyebrow {
    font-size: 15px;
    letter-spacing: .08em;
    color: #7508C5;
    text-transform: uppercase;
    margin: 0 0 12px
}

.srvs-pg .srv-h2 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: #1a0f2e;
    margin: 0;
    font-weight: 700
}

.srvs-pg .srv-h2 .dot-acc::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #F77E05;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle
}

.srvs-pg .srv-top-right {
    font-size: 16px;
    line-height: 1.7;
    color: #3d2f5a
}

.srvs-pg .srv-top-right p {
    margin: 0
}

.srvs-pg .srv-four-col {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: stretch
}

.srvs-pg .srv-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 1px 5px -2px #08c9b50f 0 7px 22px -2px #08c9b51a;
    position: relative;
    overflow: hidden;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1), transform .15s cubic-bezier(0.4, 0, 0.6, 1);
    cursor: default
}

.srvs-pg .srv-card:hover {
    box-shadow: 0 12px 40px -2px #08c9b524;
    transform: translateY(-3px)
}

.srvs-pg .srv-card.accent-left {
    background: linear-gradient(90deg, #7508C5 0%, #08C9B5 100%);
    color: #fff;
    border-radius: 20px
}

.srvs-pg .srv-card.accent-left .srv-card-ico {
    background: #ffffff26;
    color: #fff
}

.srvs-pg .srv-card.accent-left .srv-card-h {
    color: #fff
}

.srvs-pg .srv-card.accent-left .srv-card-p {
    color: #ffffffd1
}

.srvs-pg .srv-card.accent-left .srv-tag {
    background: #ffffff2e;
    color: #fff;
    border-color: #ffffff4d
}

.srvs-pg .srv-card-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #08c9b51a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #7508C5
}

.srvs-pg .srv-card-ico svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.srvs-pg .srv-card-h {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a0f2e;
    margin: 0 0 12px
}

.srvs-pg .srv-card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #3d2f5a;
    margin: 0 0 12px
}

.srvs-pg .srv-tag-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px
}

.srvs-pg .srv-tag {
    font-size: 15px;
    padding: 4px 10px;
    border-radius: 3px;
    border: 1px solid #7508c533;
    color: #7508C5;
    background: #7508c50d
}

.srvs-pg .srv-price {
    font-size: 24px;
    font-weight: 700;
    color: #08C9B5;
    margin-top: 24px;
    line-height: 1.1
}

.srvs-pg .srv-price.inv {
    color: #fff
}

.srvs-pg .srv-price small {
    font-size: 15px;
    font-weight: 400;
    opacity: .7
}

.srvs-pg .srv-btn {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 24px;
    border-radius: 3px;
    border: 2px solid currentColor;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1);
    cursor: pointer;
    background: transparent
}

.srvs-pg .srv-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff2e;
    transform: translateY(100%);
    transition: transform .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs-pg .srv-btn:hover::before {
    transform: translateY(0)
}

.srvs-pg .srv-card-img-wrap {
    width: 100%;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px
}

.srvs-pg .srv-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.srvs-pg .cycle-hl span {
    transition: background .12s ease-out, color .12s ease-out;
    border-radius: 3px;
    padding: 0 3px
}

.srvs-pg .cycle-hl span.lit {
    background: #08c9b52e;
    color: #08C9B5
}

.srvs-pg .proc-blk {
    position: relative;
    background: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
    margin-right: 40px
}

.srvs-pg .proc-blk .geo-bg {
    width: 400px;
    height: 400px;
    top: -60px;
    left: -80px;
    opacity: .04
}

.srvs-pg .proc-blk .geo-bg.sm {
    width: 200px;
    height: 200px;
    bottom: 40px;
    right: 60px;
    opacity: .05
}

.srvs-pg .proc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.srvs-pg .proc-img-col {
    position: relative
}

.srvs-pg .proc-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px -2px #7508c524
}

.srvs-pg .proc-img-frame img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block
}

.srvs-pg .proc-img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #7508c52e 0%, transparent 60%);
    pointer-events: none
}

.srvs-pg .proc-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: 12px;
    padding: 12px 24px;
    box-shadow: 0 7px 22px -2px #08c9b51a;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.srvs-pg .proc-img-badge .big-n {
    font-size: 34px;
    font-weight: 700;
    color: #7508C5;
    line-height: 1.1
}

.srvs-pg .proc-img-badge .lbl {
    font-size: 15px;
    color: #3d2f5a;
    line-height: 1.3
}

.srvs-pg .proc-h2 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -.01em;
    font-weight: 700;
    color: #1a0f2e;
    margin: 0 0 24px
}

.srvs-pg .proc-h2 .dot-acc::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #08C9B5;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle
}

.srvs-pg .proc-lead {
    font-size: 16px;
    line-height: 1.7;
    color: #3d2f5a;
    margin: 0 0 24px
}

.srvs-pg .proc-pull {
    float: right;
    width: 44%;
    margin: 0 0 12px 24px;
    font-size: 20px;
    line-height: 1.5;
    font-weight: 700;
    color: #7508C5;
    border-top: 2px solid #08C9B5;
    padding-top: 12px
}

.srvs-pg .proc-steps {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.srvs-pg .proc-step {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 12px;
    background: #08c9b50d;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs-pg .proc-step:hover {
    background: #08c9b51a
}

.srvs-pg .step-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #7508C5;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1
}

.srvs-pg .step-txt {
    font-size: 15px;
    line-height: 1.5;
    color: #1a0f2e
}

.srvs-pg .step-txt strong {
    display: block;
    color: #1a0f2e;
    margin-bottom: 4px
}

.srvs-pg .faq-blk {
    position: relative;
    background: linear-gradient(90deg, #08C9B5 0%, #f5f3fb 100%);
    padding-top: 80px;
    padding-bottom: 80px;
    margin-left: 40px;
    overflow: hidden
}

.srvs-pg .faq-blk .geo-bg {
    width: 360px;
    height: 360px;
    top: -60px;
    right: -40px;
    opacity: .07
}

.srvs-pg .faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: start
}

.srvs-pg .faq-h2 {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a0f2e;
    margin: 0 0 12px
}

.srvs-pg .faq-h2 .dot-acc::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #F77E05;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle
}

.srvs-pg .faq-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #1a0f2e;
    margin: 0 0 24px;
    opacity: .75
}

.srvs-pg .faq-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 7px 22px -2px #08c9b51a
}

.srvs-pg .faq-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block
}

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

.srvs-pg .faq-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 5px -2px #08c9b50f
}

.srvs-pg .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1a0f2e;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs-pg .faq-q:hover {
    background: #08c9b50d
}

.srvs-pg .faq-q:focus {
    outline: 2px solid #08C9B5;
    outline-offset: -2px
}

.srvs-pg .faq-ico {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid #08C9B5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), background .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs-pg .faq-ico svg {
    width: 12px;
    height: 12px;
    stroke: #08C9B5;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs-pg .faq-item.open .faq-ico {
    transform: rotate(45deg);
    background: #08C9B5
}

.srvs-pg .faq-item.open .faq-ico svg {
    stroke: #fff
}

.srvs-pg .faq-ans {
    display: none;
    padding: 0 24px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #3d2f5a
}

.srvs-pg .faq-item.open .faq-ans {
    display: block
}

.srvs-pg .lead-cta {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 3px;
    border: 2px solid #08C9B5;
    color: #08C9B5;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1), border-color .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs-pg .lead-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #08C9B5;
    transform: translateY(100%);
    transition: transform .15s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.srvs-pg .lead-cta:hover {
    color: #fff
}

.srvs-pg .lead-cta:hover::after {
    transform: translateY(0)
}

.srvs-pg .lead-cta span {
    position: relative;
    z-index: 1
}

.srvs-pg .lead-cta svg {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round
}

.srvs-pg .hl-link {
    position: relative;
    text-decoration: none;
    color: #7508C5
}

.srvs-pg .hl-link::before {
    content: '';
    position: absolute;
    inset: -2px -4px;
    background: #7508c51a;
    border-radius: 3px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.srvs-pg .hl-link:hover::before {
    transform: scaleX(1)
}

@media (max-width: 1024px) {
    .srvs-pg .srv-grid-blk {
        margin-left: 24px
    }

    .srvs-pg .proc-blk {
        margin-right: 24px
    }

    .srvs-pg .faq-blk {
        margin-left: 24px
    }

    .srvs-pg .srv-four-col {
        grid-template-columns: 1fr 1fr
    }

    .srvs-pg .srv-top {
        grid-template-columns: 1fr
    }

    .srvs-pg .proc-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .srvs-pg .proc-img-frame img {
        height: 320px
    }

    .srvs-pg .faq-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .srvs-pg .lead-h1 {
        font-size: 48px
    }
}

@media (max-width: 768px) {
    .srvs-pg .srv-grid-blk {
        margin-left: 12px
    }

    .srvs-pg .proc-blk {
        margin-right: 12px
    }

    .srvs-pg .faq-blk {
        margin-left: 12px
    }

    .srvs-pg .lead-h1 {
        font-size: 34px
    }

    .srvs-pg .srv-four-col {
        grid-template-columns: 1fr
    }

    .srvs-pg .lead-stats {
        flex-wrap: wrap;
        gap: 24px
    }

    .srvs-pg .proc-steps {
        grid-template-columns: 1fr
    }

    .srvs-pg .proc-pull {
        float: none;
        width: 100%;
        margin: 0 0 12px
    }

    .srvs-pg .lead-blk {
        padding-top: 40px;
        padding-bottom: 40px
    }

    .srvs-pg .srv-grid-blk,
    .srvs-pg .proc-blk,
    .srvs-pg .faq-blk {
        padding-top: 40px;
        padding-bottom: 40px
    }
}

@media (max-width: 360px) {
    .srvs-pg .lead-h1 {
        font-size: 24px
    }

    .srvs-pg .srv-h2,
    .srvs-pg .proc-h2,
    .srvs-pg .faq-h2 {
        font-size: 24px
    }

    .srvs-pg .max-w {
        padding-left: 12px;
        padding-right: 12px
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    background: linear-gradient(to right, #f0fdfb, #fff)
}

.success-page .success-card {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 80px 40px;
    box-shadow: 0 7px 22px -2px #08c9b51a 0 1px 5px -2px #08c9b50f;
    text-align: center
}

.success-page .success-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #08c9b51f, #08c9b50a);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 2px solid #08c9b54d
}

.success-page .success-icon-wrap svg {
    display: block
}

.success-page .success-heading {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #111827;
    margin: 0 0 24px;
    font-weight: 700
}

.success-page .success-heading span {
    display: inline-block;
    position: relative
}

.success-page .success-heading span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #08C9B5;
    transform: scaleX(0);
    transform-origin: left center;
    animation: underline-draw .22s cubic-bezier(0.4, 0, 0.6, 1) .4s forwards
}

@keyframes underline-draw {
    to {
        transform: scaleX(1)
    }
}

.success-page .success-body {
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
    margin: 0 0 40px
}

.success-page .success-body strong {
    color: #111827;
    font-weight: 600
}

.success-page .success-divider {
    width: 40px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to right, #08C9B5, #7508C5);
    margin: 0 auto 40px
}

.success-page .success-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 40px;
    padding: 24px;
    background: #08c9b50d;
    border-radius: 12px;
    border: 1px solid #08c9b526
}

.success-page .success-meta svg {
    flex-shrink: 0
}

.success-page .success-meta-text {
    font-size: 15px;
    line-height: 1.5;
    color: #374151;
    text-align: left
}

.success-page .success-meta-text strong {
    display: block;
    color: #111827;
    font-weight: 600;
    margin-bottom: 6px
}

.success-page .success-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    padding: 16px 40px;
    border: 2.5px solid #08C9B5;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1), border-color .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.success-page .success-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #08C9B5;
    transition: height .18s cubic-bezier(0.4, 0, 0.6, 1);
    z-index: 0
}

.success-page .success-link:hover::before {
    height: 100%
}

.success-page .success-link:hover {
    color: #fff;
    border-color: #08C9B5
}

.success-page .success-link span {
    position: relative;
    z-index: 1
}

.success-page .success-link:focus-visible {
    outline: 2px solid #7508C5;
    outline-offset: 3px
}

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

    .success-page .success-card {
        padding: 40px 24px
    }

    .success-page .success-heading {
        font-size: 24px
    }
}

@media (max-width: 360px) {
    .success-page .success-card {
        padding: 40px 12px
    }

    .success-page .success-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
