html {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    font-family: 'IBM Plex Serif', Georgia, serif;
}

*:focus {
    outline: none;
    border-bottom: 4px solid #3F6BB7;
}

.hd-shell {
    background: linear-gradient(135deg, #3F6BB7 0%, #2d519a 60%, #1e3d7a 100%);
    position: relative;
    overflow: hidden;
}

.hd-shell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(63, 107, 183, 0.0) 0%, rgba(182, 211, 230, 0.07) 50%, rgba(63, 107, 183, 0.0) 100%);
    pointer-events: none;
}

.hd-plate {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2px 2fr;
    align-items: stretch;
    min-height: 96px;
}

.hd-brand-pod {
    display: flex;
    align-items: center;
    padding: 24px 48px 24px 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0 0 0 0;
    position: relative;
}

.hd-divider {
    background: linear-gradient(180deg, transparent 0%, rgba(182, 211, 230, 0.35) 30%, rgba(182, 211, 230, 0.35) 70%, transparent 100%);
    width: 2px;
    align-self: stretch;
}

.hd-right-pod {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 24px 12px 48px;
}

.hd-logo-cell {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hd-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(238, 240, 242, 0.15);
    border-radius: 3px 20px 3px 20px;
    border: 1px solid rgba(182, 211, 230, 0.4);
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07), 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    flex-shrink: 0;
}

.hd-logo-frame img {
    display: block;
    object-fit: contain;
}

.hd-contact-strip {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
}

.hd-contact-link {
    color: rgba(238, 240, 242, 0.75);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.02em;
    font-weight: 300;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-bottom: none;
    padding: 4px 0;
}

.hd-contact-link:hover {
    color: #EEF0F2;
    border-bottom: none;
}

.hd-contact-link:focus {
    border-bottom: 4px solid #B6D3E6;
}

.hd-nav-deck {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.hd-nav-item {
    color: rgba(238, 240, 242, 0.88);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.025em;
    font-weight: 400;
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid transparent;
    transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}

.hd-nav-item:hover {
    background-color: rgba(182, 211, 230, 0.15);
    border-color: rgba(182, 211, 230, 0.3);
    color: #EEF0F2;
}

.hd-nav-item:focus {
    border-bottom: 4px solid #B6D3E6;
    background-color: rgba(182, 211, 230, 0.1);
}

.hd-nav-item.active {
    background-color: rgba(182, 211, 230, 0.2);
    border-color: rgba(182, 211, 230, 0.4);
    color: #EEF0F2;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .hd-plate {
        grid-template-columns: 1fr 2px 1.5fr;
    }

    .hd-brand-pod {
        padding: 24px 24px 24px 24px;
    }

    .hd-right-pod {
        padding: 12px 24px 12px 24px;
    }
}

@media (max-width: 768px) {
    .hd-plate {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .hd-divider {
        display: none;
    }

    .hd-brand-pod {
        padding: 24px;
        border-bottom: 1px solid rgba(182, 211, 230, 0.2);
    }

    .hd-right-pod {
        padding: 12px 24px;
        gap: 12px;
    }

    .hd-contact-strip {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .hd-nav-deck {
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .hd-nav-item {
        font-size: 15px;
        padding: 4px 12px;
    }

    .hd-contact-strip {
        gap: 12px;
    }
}

.ft-shell {
    background: linear-gradient(180deg, #EEF0F2 0%, #d8dde5 40%, #b8c3d4 100%);
    padding: 48px 24px 24px;
    position: relative;
}

.ft-plate {
    max-width: 1500px;
    margin: 0 auto;
}

.ft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(63, 107, 183, 0.15);
}

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

.ft-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(63, 107, 183, 0.08);
    border-radius: 20px 3px 20px 3px;
    border: 1px solid rgba(63, 107, 183, 0.2);
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07), 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.ft-logo-frame img {
    display: block;
    object-fit: contain;
}

.ft-copy {
    font-size: 15px;
    line-height: 1.65;
    color: #3a4558;
    letter-spacing: 0.02em;
    text-align: center;
    font-weight: 300;
}

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

.ft-map-label {
    font-size: 15px;
    line-height: 1.15;
    font-weight: 600;
    color: #2d3d5c;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(63, 107, 183, 0.2);
}

.ft-map-link {
    display: block;
    color: #3a4558;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.015em;
    padding: 4px 0;
    border-bottom: none;
    transition: color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.ft-map-link:hover {
    color: #3F6BB7;
}

.ft-map-link:focus {
    border-bottom: 4px solid #3F6BB7;
    color: #3F6BB7;
}

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

.ft-contact-label {
    font-size: 15px;
    line-height: 1.15;
    font-weight: 600;
    color: #2d3d5c;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding-bottom: 4px;
    border-bottom: 2px solid rgba(63, 107, 183, 0.2);
}

.ft-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ft-contact-tag {
    font-size: 15px;
    line-height: 1.15;
    font-weight: 300;
    color: #5a6a82;
    letter-spacing: 0.03em;
}

.ft-contact-val {
    color: #3a4558;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    border-bottom: none;
    transition: color 0.6s ease-in-out;
}

.ft-contact-val:hover {
    color: #3F6BB7;
}

.ft-contact-val:focus {
    border-bottom: 4px solid #3F6BB7;
}

.ft-addr-text {
    color: #3a4558;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
}

.ft-bottom-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
}

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

.ft-legal-link {
    color: #5a6a82;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.02em;
    border-bottom: none;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ft-legal-link:hover {
    color: #3F6BB7;
}

.ft-legal-link:focus {
    border-bottom: 4px solid #3F6BB7;
}

.ft-rights {
    color: #5a6a82;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .ft-grid {
        gap: 24px;
    }
}

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

    .ft-brand-cell {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .ft-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

.ck-popup {
    position: fixed;
    top: 24px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 48px);
    background: #ffffff;
    border-radius: 3px 20px 3px 20px;
    border: 2px solid rgba(63, 107, 183, 0.25);
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
    padding: 24px;
    z-index: 8000;
    display: none;
    opacity: 0;
    transition: opacity 220ms ease-in-out;
}

.ck-popup.ck-visible {
    opacity: 1;
}

.ck-desc {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.65;
    color: #2d3d5c;
    letter-spacing: 0.015em;
    margin: 0 0 24px 0;
    font-weight: 400;
}

.ck-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.ck-btn {
    font-family: 'IBM Plex Serif', Georgia, serif;
    font-size: 15px;
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 12px 24px;
    border-radius: 3px;
    cursor: pointer;
    background: transparent;
    border: 2px solid #3F6BB7;
    color: #3F6BB7;
    transition: background-color 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    min-height: 44px;
}

.ck-btn:hover {
    background-color: #3F6BB7;
    color: #ffffff;
}

.ck-btn:focus {
    border-bottom: 4px solid #2d519a;
}

.ck-btn-decline {
    border-color: rgba(63, 107, 183, 0.4);
    color: #5a6a82;
}

.ck-btn-decline:hover {
    background-color: rgba(63, 107, 183, 0.08);
    color: #2d3d5c;
}

.rules-text {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 24px;
}

.rules-text h1 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #1b2a4a;
    padding-bottom: 24px;
    border-bottom: 2px solid #B6D3E6;
    margin-bottom: 48px;
    margin-top: 0;
}

.rules-text h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #1b2a4a;
    margin-top: 48px;
    margin-bottom: 24px;
}

.rules-text h3 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #2a3f6b;
    margin-top: 48px;
    margin-bottom: 12px;
}

.rules-text h4 {
    font-size: 20px;
    line-height: 1.65;
    letter-spacing: -0.005em;
    color: #2a3f6b;
    margin-top: 24px;
    margin-bottom: 12px;
}

.rules-text h5 {
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: #3F6BB7;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 12px;
}

.rules-text h6 {
    font-size: 15px;
    line-height: 1.65;
    letter-spacing: 0.02em;
    color: #3F6BB7;
    margin-top: 24px;
    margin-bottom: 12px;
}

.rules-text p {
    font-size: 16px;
    line-height: 1.65;
    color: #1b2a4a;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 72ch;
}

.rules-text ul {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
}

.rules-text ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter;
}

.rules-text ul li {
    font-size: 16px;
    line-height: 1.65;
    color: #1b2a4a;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    max-width: 72ch;
}

.rules-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #3F6BB7;
}

.rules-text ol li {
    font-size: 16px;
    line-height: 1.65;
    color: #1b2a4a;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    max-width: 72ch;
    counter-increment: policy-counter;
}

.rules-text ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 15px;
    color: #3F6BB7;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.rules-text ul ul,
.rules-text ol ol,
.rules-text ul ol,
.rules-text ol ul {
    margin-top: 12px;
    margin-bottom: 0;
    padding-left: 24px;
}

.rules-text em {
    font-style: italic;
    color: #2a3f6b;
}

.rules-text i {
    font-style: italic;
    color: #2a3f6b;
}

.rules-text a {
    color: #3F6BB7;
    text-decoration: underline;
    text-decoration-color: #B6D3E6;
    text-underline-offset: 3px;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1), text-decoration-color 0.45s ease-in-out;
}

.rules-text a:hover {
    color: #1b2a4a;
    text-decoration-color: #3F6BB7;
}

.rules-text a:focus-visible {
    outline: 2px solid #3F6BB7;
    outline-offset: 3px;
    border-radius: 3px;
}

.rules-text hr {
    border: none;
    border-top: 1px solid #B6D3E6;
    margin-top: 48px;
    margin-bottom: 48px;
    background: none;
}

@media (max-width: 768px) {
    .rules-text {
        padding: 48px 24px;
    }

    .rules-text h1 {
        font-size: 34px;
    }

    .rules-text h2 {
        font-size: 24px;
    }

    .rules-text h3 {
        font-size: 20px;
    }

    .rules-text h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .rules-text {
        padding: 24px 12px;
    }

    .rules-text h1 {
        font-size: 24px;
        margin-bottom: 24px;
        padding-bottom: 12px;
    }

    .rules-text h2 {
        font-size: 20px;
        margin-top: 24px;
    }

    .rules-text h3 {
        font-size: 16px;
        margin-top: 24px;
    }

    .rules-text hr {
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.lpd {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.lpd .prog-hero {
    position: relative;
    padding: 96px 48px;
    background: linear-gradient(135deg, #3F6BB7 0%, #B6D3E6 55%, #EEF0F2 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.lpd .prog-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(63, 107, 183, 0.08);
    pointer-events: none;
}

.lpd .prog-hero::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 10%;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(182, 211, 230, 0.15);
    pointer-events: none;
}

.lpd .hero-text {
    position: relative;
    z-index: 1;
}

.lpd .hero-text h1 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
    background: linear-gradient(to left, transparent, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lpd .hero-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.lpd .meta-chip {
    font-size: 15px;
    line-height: 1.65;
    color: #2a4a80;
    padding: 4px 12px;
    border: 2px solid rgba(63, 107, 183, 0.35);
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.02em;
}

.lpd .hero-tagline {
    font-size: 16px;
    line-height: 1.65;
    color: #2a3f60;
    margin: 0 0 48px 0;
}

.lpd .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.lpd .btn-primary {
    font-size: 16px;
    line-height: 1.15;
    padding: 12px 24px;
    border: 3px solid #3F6BB7;
    border-radius: 3px;
    background: #3F6BB7;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.01em;
    transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease-in-out;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.lpd .btn-primary:hover {
    background: #2a4a80;
    border-color: #2a4a80;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

.lpd .btn-primary:focus {
    outline: 3px solid #B6D3E6;
    outline-offset: 2px;
}

.lpd .btn-primary.shake {
    animation: btn-shake 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes btn-shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.lpd .btn-outline {
    font-size: 16px;
    line-height: 1.15;
    padding: 12px 24px;
    border: 3px solid #3F6BB7;
    border-radius: 3px;
    background: transparent;
    color: #3F6BB7;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.01em;
    transition: background 0.6s cubic-bezier(0.22, 1, 0.36, 1), color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.lpd .btn-outline:hover {
    background: #EEF0F2;
    color: #2a4a80;
}

.lpd .btn-outline:focus {
    outline: 3px solid #B6D3E6;
    outline-offset: 2px;
}

.lpd .hero-img-wrap {
    position: relative;
    z-index: 1;
}

.lpd .hero-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center top;
    clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
    border-radius: 3px;
    display: block;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

.lpd .prog-detail {
    padding: 96px 48px;
    background: #EEF0F2;
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.lpd .prog-detail::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.85) 0%, rgba(182, 211, 230, 0.18) 100%);
    pointer-events: none;
}

.lpd .detail-body {
    position: relative;
    z-index: 1;
}

.lpd .detail-body h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    background: linear-gradient(to left, transparent, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lpd .detail-body h3 {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #2a4a80;
    margin: 24px 0 12px 0;
}

.lpd .detail-body p {
    font-size: 16px;
    line-height: 1.65;
    color: #1e2d45;
    margin: 0 0 24px 0;
}

.lpd .detail-body mark {
    background: rgba(63, 107, 183, 0.12);
    color: #1e2d45;
    border-radius: 3px;
    padding: 0 4px;
}

.lpd .detail-body ol {
    margin: 0 0 24px 0;
    padding-left: 24px;
}

.lpd .detail-body ol li {
    font-size: 16px;
    line-height: 1.65;
    color: #1e2d45;
    margin-bottom: 12px;
    padding-left: 4px;
}

.lpd .detail-body ul {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.lpd .detail-body ul li {
    font-size: 16px;
    line-height: 1.65;
    color: #1e2d45;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.lpd .detail-body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3F6BB7;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
}

.lpd .detail-body dl {
    margin: 0 0 24px 0;
}

.lpd .detail-body dt {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 700;
    color: #2a4a80;
    margin-top: 12px;
}

.lpd .detail-body dd {
    font-size: 16px;
    line-height: 1.65;
    color: #1e2d45;
    margin: 0 0 4px 24px;
}

.lpd .detail-body figure {
    margin: 24px 0;
}

.lpd .detail-body figcaption {
    font-size: 15px;
    line-height: 1.65;
    color: #3F6BB7;
    margin-top: 4px;
}

.lpd .detail-body blockquote {
    border-left: 4px solid #3F6BB7;
    border-top: 1px solid rgba(63, 107, 183, 0.2);
    padding: 12px 24px;
    margin: 24px 0;
    background: rgba(182, 211, 230, 0.15);
    border-radius: 3px;
}

.lpd .detail-body blockquote p {
    margin: 0;
    font-style: italic;
    color: #2a4a80;
}

.lpd .detail-body cite {
    font-size: 15px;
    color: #3F6BB7;
    display: block;
    margin-top: 4px;
}

.lpd .prog-stages h2 {
    font-size: 24px;
    line-height: 1.15;
    color: #2a4a80;
    margin: 0 0 24px 0;
}

.lpd .prog-stages h3 {
    font-size: 20px;
    line-height: 1.15;
    color: #2a4a80;
    margin: 12px 0 4px 0;
}

.lpd .prog-stages p {
    font-size: 15px;
    line-height: 1.65;
    color: #1e2d45;
    margin: 0 0 12px 0;
}

.lpd .prog-stages strong {
    color: #2a4a80;
}

.lpd .prog-stages ul {
    margin: 0 0 12px 0;
    padding-left: 0;
    list-style: none;
}

.lpd .prog-stages ul li {
    font-size: 15px;
    line-height: 1.65;
    color: #1e2d45;
    padding-left: 20px;
    position: relative;
    margin-bottom: 4px;
}

.lpd .prog-stages ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B6D3E6;
}

.lpd .prog-stages dl {
    margin: 0 0 12px 0;
}

.lpd .prog-stages dt {
    font-size: 15px;
    font-weight: 700;
    color: #2a4a80;
    line-height: 1.65;
}

.lpd .prog-stages dd {
    font-size: 15px;
    color: #1e2d45;
    line-height: 1.65;
    margin: 0 0 4px 12px;
}

.lpd .price-card {
    position: sticky;
    top: 24px;
    z-index: 2;
    background: #fff;
    border-radius: 20px;
    padding: 48px 24px;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
    border: 2px solid rgba(63, 107, 183, 0.12);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lpd .price-amount {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #3F6BB7;
    font-weight: 700;
}

.lpd .price-terms {
    font-size: 15px;
    line-height: 1.65;
    color: #2a4a80;
    border-top: 1px solid rgba(63, 107, 183, 0.15);
    padding-top: 12px;
}

.lpd .price-dur {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    font-size: 15px;
    line-height: 1.65;
    color: #1e2d45;
}

.lpd .dur-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.lpd .price-views {
    font-size: 15px;
    line-height: 1.65;
    color: #2a4a80;
    padding: 4px 12px;
    border: 1px solid rgba(63, 107, 183, 0.2);
    border-radius: 3px;
    background: rgba(182, 211, 230, 0.1);
    display: inline-block;
}

.lpd .price-readtime {
    font-size: 15px;
    line-height: 1.65;
    color: #2a4a80;
}

.lpd .stages-col {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 48px 24px;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.lpd .scroll-top {
    position: fixed;
    bottom: 48px;
    right: 48px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #3F6BB7;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.13);
    text-decoration: none;
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease-in-out;
    border: 2px solid rgba(63, 107, 183, 0.3);
}

.lpd .scroll-top:hover {
    background: #2a4a80;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.18);
}

.lpd .scroll-top:focus {
    outline: 3px solid #B6D3E6;
    outline-offset: 2px;
}

.lpd .scroll-top svg {
    display: block;
}

.lpd .connector-line {
    display: block;
    width: 2px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(63, 107, 183, 0.35), transparent);
    margin: 0 auto 24px auto;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .lpd .prog-hero {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px;
    }

    .lpd .prog-detail {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px;
    }

    .lpd .price-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .lpd .prog-hero {
        padding: 48px 24px;
    }

    .lpd .hero-text h1 {
        font-size: 34px;
    }

    .lpd .hero-img-wrap img {
        height: 260px;
    }

    .lpd .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .lpd .hero-meta {
        gap: 12px;
    }

    .lpd .scroll-top {
        bottom: 24px;
        right: 24px;
    }
}

@media (max-width: 480px) {
    .lpd .prog-hero {
        padding: 48px 12px;
    }

    .lpd .prog-detail {
        padding: 48px 12px;
    }

    .lpd .hero-text h1 {
        font-size: 24px;
    }

    .lpd .price-amount {
        font-size: 34px;
    }
}

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

.abt-us .reveal {
    opacity: 0;
    transform: translateY(32px);
    animation: slideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.abt-us .reveal-2 {
    opacity: 0;
    transform: translateY(24px);
    animation: slideUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.abt-us .reveal-3 {
    opacity: 0;
    transform: translateY(18px);
    animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.28s forwards;
}

.abt-us .reveal-4 {
    opacity: 0;
    transform: translateY(12px);
    animation: slideUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.42s forwards;
}

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

.abt-us .split-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    position: relative;
}

.abt-us .split-left {
    background: #3F6BB7;
    padding: 96px 48px 48px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.abt-us .split-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(63, 107, 183, 0.0) 0%, rgba(0, 30, 80, 0.38) 100%);
    pointer-events: none;
}

.abt-us .dot-scatter {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.abt-us .dot-scatter span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 20px;
    background: rgba(182, 211, 230, 0.18);
}

.abt-us .split-left .pg-label {
    font-size: 15px;
    letter-spacing: 0.12em;
    color: rgba(182, 211, 230, 0.7);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.abt-us .split-left .pg-h1 {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 24px;
    background: linear-gradient(to left, rgba(182, 211, 230, 0.55), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.abt-us .split-left .pg-desc {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(238, 240, 242, 0.88);
    margin-bottom: 48px;
    max-width: 380px;
}

.abt-us .split-links {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.abt-us .lnk-primary {
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid #fff;
    border-radius: 3px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-us .lnk-primary:active {
    background: #fff;
    color: #3F6BB7;
}

.abt-us .lnk-primary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.abt-us .lnk-secondary {
    display: inline-block;
    padding: 12px 24px;
    border: 3px solid rgba(182, 211, 230, 0.55);
    border-radius: 3px;
    color: rgba(238, 240, 242, 0.9);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: border-color 0.45s ease-in-out, color 0.45s ease-in-out;
}

.abt-us .lnk-secondary:hover {
    border-color: rgba(182, 211, 230, 0.9);
    color: #fff;
}

.abt-us .split-right {
    position: relative;
    overflow: hidden;
}

.abt-us .split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.abt-us .img-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 38%, rgba(20, 35, 65, 0.55) 100%);
    pointer-events: none;
}

.abt-us .split-divider {
    height: 8px;
    background: linear-gradient(to left, #B6D3E6, rgba(182, 211, 230, 0));
}

.abt-us .identity-band {
    background: #EEF0F2;
    padding: 96px 48px;
    position: relative;
}

.abt-us .identity-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(63, 107, 183, 0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 100% 100%, rgba(63, 107, 183, 0.05) 0%, transparent 55%);
    pointer-events: none;
}

.abt-us .id-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

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

.abt-us .id-eyebrow {
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #3F6BB7;
    text-transform: uppercase;
    font-weight: 700;
}

.abt-us .id-h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.abt-us .id-body {
    font-size: 16px;
    line-height: 1.65;
    color: #2a3a52;
}

.abt-us .id-stat-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-top: 12px;
}

.abt-us .stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-left: 4px solid #B6D3E6;
    border-top: 1px solid rgba(63, 107, 183, 0.15);
    padding: 12px 24px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-left-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-us .stat-item:hover {
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    border-left-color: #3F6BB7;
}

.abt-us .stat-num {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.04em;
    color: #3F6BB7;
    font-weight: 800;
}

.abt-us .stat-label {
    font-size: 15px;
    line-height: 1.65;
    color: #5a6a82;
}

.abt-us .band-divider {
    height: 6px;
    background: linear-gradient(to left, rgba(63, 107, 183, 0), #3F6BB7);
}

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

.abt-us .tile-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.032;
}

.abt-us .tile-pattern svg {
    width: 100%;
    height: 100%;
}

.abt-us .timeline-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(20, 35, 65, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 100% 100%, rgba(20, 35, 65, 0.06) 0%, transparent 40%);
    pointer-events: none;
}

.abt-us .tl-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-us .tl-header {
    text-align: center;
    margin-bottom: 48px;
}

.abt-us .tl-h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px 0;
}

.abt-us .tl-sub {
    font-size: 16px;
    line-height: 1.65;
    color: #4a5a72;
    max-width: 520px;
    margin: 0 auto;
}

.abt-us .tl-track {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    align-items: flex-start;
}

.abt-us .tl-track::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(to right, #3F6BB7, #B6D3E6);
    z-index: 0;
}

.abt-us .tl-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

.abt-us .tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 3px solid #3F6BB7;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07), inset 0 0 0 4px rgba(63, 107, 183, 0.08);
    transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    margin-bottom: 24px;
}

.abt-us .tl-dot:hover {
    background: #3F6BB7;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09), inset 0 0 0 4px rgba(182, 211, 230, 0.3);
}

.abt-us .tl-dot-num {
    font-size: 15px;
    font-weight: 800;
    color: #3F6BB7;
    line-height: 1.15;
    transition: color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-us .tl-dot:hover .tl-dot-num {
    color: #fff;
}

.abt-us .tl-card {
    background: #EEF0F2;
    border-radius: 3px;
    padding: 24px;
    width: 90%;
    border-top: 3px solid #B6D3E6;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), border-top-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-us .tl-card:hover {
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    border-top-color: #3F6BB7;
}

.abt-us .tl-year {
    font-size: 20px;
    font-weight: 800;
    color: #3F6BB7;
    line-height: 1.15;
    margin-bottom: 4px;
}

.abt-us .tl-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #2a3a52;
    margin-bottom: 4px;
    line-height: 1.65;
}

.abt-us .tl-card-text {
    font-size: 15px;
    line-height: 1.65;
    color: #5a6a82;
}

.abt-us .team-band {
    background: #EEF0F2;
    padding: 48px 48px 96px;
    position: relative;
}

.abt-us .team-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 100%, rgba(63, 107, 183, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(63, 107, 183, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.abt-us .team-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-us .team-h3 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 48px 0;
    text-align: center;
}

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

.abt-us .team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-us .team-card:hover {
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
    transform: translateY(-4px);
}

.abt-us .team-img-wrap {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.abt-us .team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.abt-us .team-card:hover .team-img-wrap img {
    transform: scale(1.04);
}

.abt-us .team-img-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(20, 35, 65, 0.32) 100%);
    pointer-events: none;
}

.abt-us .team-info {
    padding: 24px;
}

.abt-us .team-name {
    font-size: 20px;
    font-weight: 700;
    color: #2a3a52;
    line-height: 1.15;
    margin-bottom: 4px;
}

.abt-us .team-role {
    font-size: 15px;
    color: #3F6BB7;
    font-weight: 600;
    margin-bottom: 12px;
}

.abt-us .team-bio {
    font-size: 15px;
    line-height: 1.65;
    color: #5a6a82;
}

.abt-us .outlined-shape {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border: 2px solid rgba(63, 107, 183, 0.1);
    border-radius: 32px;
    pointer-events: none;
    z-index: 0;
}

@media (max-width: 1024px) {
    .abt-us .split-screen {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .abt-us .split-left {
        padding: 96px 48px 48px;
    }

    .abt-us .split-right {
        height: 360px;
    }

    .abt-us .id-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-us .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .abt-us .tl-track {
        flex-direction: column;
        gap: 24px;
    }

    .abt-us .tl-track::before {
        display: none;
    }

    .abt-us .tl-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
    }

    .abt-us .tl-dot {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .abt-us .tl-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .abt-us .split-left {
        padding: 96px 24px 48px;
    }

    .abt-us .split-left .pg-h1 {
        font-size: 48px;
    }

    .abt-us .identity-band {
        padding: 48px 24px;
    }

    .abt-us .id-h2 {
        font-size: 34px;
    }

    .abt-us .timeline-band {
        padding: 48px 24px;
    }

    .abt-us .team-band {
        padding: 48px 24px 96px;
    }

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

    .abt-us .split-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .abt-us .split-left .pg-h1 {
        font-size: 34px;
    }

    .abt-us .stat-num {
        font-size: 34px;
    }
}

.ct-us {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.ct-us .pg-strip {
    display: flex;
    flex-direction: row;
    min-height: 520px;
    background: #fff;
    position: relative;
}

.ct-us .pg-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.ct-us .img-rail {
    width: 220px;
    min-width: 180px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.ct-us .img-rail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    animation: img-fade 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes img-fade {
    from {
        opacity: 0;
        transform: scale(1.04);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.ct-us .img-rail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, #fff 100%);
    pointer-events: none;
}

.ct-us .strip-text {
    flex: 1;
    padding: 96px 96px 96px 48px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ct-us .strip-text h1 {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0 0 24px 0;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-us .kw-underline {
    text-decoration: underline;
    text-decoration-color: #B6D3E6;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.ct-us .strip-text p {
    font-size: 20px;
    line-height: 1.65;
    color: #2a2a2a;
    max-width: 560px;
    margin: 0 0 24px 0;
}

.ct-us .concentric-deco {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 90px;
    height: 90px;
    pointer-events: none;
}

.ct-us .concentric-deco span {
    position: absolute;
    border: 1px solid #B6D3E6;
    border-radius: 3px;
}

.ct-us .concentric-deco span:nth-child(1) {
    inset: 0;
    opacity: 0.25;
}

.ct-us .concentric-deco span:nth-child(2) {
    inset: 12px;
    opacity: 0.35;
}

.ct-us .concentric-deco span:nth-child(3) {
    inset: 24px;
    opacity: 0.5;
}

.ct-us .concentric-deco span:nth-child(4) {
    inset: 36px;
    opacity: 0.7;
}

.ct-us .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 96px 96px;
    background: linear-gradient(to bottom, #EEF0F2, #f5f7f9);
    animation: desat-cycle 8s ease-in-out infinite alternate;
    position: relative;
}

@keyframes desat-cycle {
    0% {
        filter: saturate(1);
    }

    50% {
        filter: saturate(0.55);
    }

    100% {
        filter: saturate(1);
    }
}

.ct-us .info-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #3F6BB7, #B6D3E6, transparent);
}

.ct-us .reach-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ct-us .reach-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(182, 211, 230, 0.12));
    pointer-events: none;
}

.ct-us .reach-card h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-us .reach-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0;
}

.ct-us .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-us .contact-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
}

.ct-us .c-dot {
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #3F6BB7;
    flex-shrink: 0;
    margin-top: 6px;
}

.ct-us .contact-list a {
    color: #3F6BB7;
    text-decoration: none;
    border-bottom: 1px solid rgba(63, 107, 183, 0.3);
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ct-us .contact-list a:hover {
    color: #2a4f8a;
    border-bottom-color: #2a4f8a;
}

.ct-us .status-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.ct-us .status-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 48px;
    background: linear-gradient(to bottom, transparent, rgba(63, 107, 183, 0.06));
    pointer-events: none;
}

.ct-us .status-card h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-us .status-card p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0;
}

.ct-us .progress-narrative {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ct-us .prog-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
}

.ct-us .prog-bar-wrap {
    flex: 1;
    height: 6px;
    background: #EEF0F2;
    border-radius: 3px;
    overflow: hidden;
}

.ct-us .prog-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(to right, #3F6BB7, #B6D3E6);
    transition: width 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.ct-us .prog-label {
    font-size: 15px;
    color: #3F6BB7;
    min-width: 36px;
    text-align: right;
}

.ct-us .prog-name {
    min-width: 120px;
    font-size: 15px;
    color: #2a2a2a;
}

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

.ct-us .form-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 96px;
    right: 96px;
    height: 1px;
    background: linear-gradient(to right, #3F6BB7, #B6D3E6, transparent);
}

.ct-us .form-panel h3 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin: 0 0 12px 0;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ct-us .form-panel p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a2a;
    margin: 0 0 48px 0;
    max-width: 600px;
}

.ct-us .cf {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 860px;
}

.ct-us .cf-full {
    grid-column: 1 / -1;
}

.ct-us .field-grp {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ct-us .field-grp label {
    font-size: 15px;
    line-height: 1.65;
    color: #3F6BB7;
    letter-spacing: 0.02em;
}

.ct-us .field-grp input,
.ct-us .field-grp textarea,
.ct-us .field-grp select {
    border: 2px solid #EEF0F2;
    border-radius: 3px;
    padding: 12px;
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a2a;
    background: #fff;
    outline: none !important;
    transition: border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

.ct-us .field-grp input::placeholder,
.ct-us .field-grp textarea::placeholder {
    color: rgba(42, 42, 42, 0.4);
}

.ct-us .field-grp input:focus,
.ct-us .field-grp textarea:focus,
.ct-us .field-grp select:focus {
    border-color: #3F6BB7;
    box-shadow: inset 0 0 0 2px rgba(63, 107, 183, 0.08), 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.ct-us .field-grp textarea {
    resize: vertical;
    min-height: 120px;
}

.ct-us .field-grp select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233F6BB7' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.ct-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    grid-column: 1 / -1;
    margin-top: 4px;
}

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

.ct-us .privacy-row span {
    font-size: 15px;
    line-height: 1.65;
    color: #2a2a2a;
}

.ct-us .privacy-row a {
    color: #3F6BB7;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ct-us .submit-row {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.ct-us .btn-send {
    border: 2px solid #3F6BB7;
    border-radius: 3px;
    background: transparent;
    color: #3F6BB7;
    font-size: 16px;
    line-height: 1.65;
    padding: 12px 48px;
    cursor: pointer;
    transition: background 0.55s cubic-bezier(0.22, 1, 0.36, 1), color 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    letter-spacing: 0.04em;
}

.ct-us .btn-send:hover {
    background: #3F6BB7;
    color: #fff;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

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

.ct-us .btn-send:active {
    background: #2a4f8a;
    border-color: #2a4f8a;
    color: #fff;
}

@keyframes shake-once {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.ct-us .btn-send.shake {
    animation: shake-once 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.ct-us .form-note {
    font-size: 15px;
    line-height: 1.65;
    color: #888;
}

@media (max-width: 1024px) {
    .ct-us .strip-text {
        padding: 48px 48px 48px 24px;
    }

    .ct-us .strip-text h1 {
        font-size: 48px;
    }

    .ct-us .info-grid {
        padding: 48px;
        gap: 24px;
    }

    .ct-us .form-panel {
        padding: 48px;
    }

    .ct-us .form-panel::before {
        left: 48px;
        right: 48px;
    }
}

@media (max-width: 768px) {
    .ct-us .pg-strip {
        flex-direction: column;
    }

    .ct-us .img-rail {
        width: 100%;
        height: 220px;
    }

    .ct-us .img-rail::after {
        background: linear-gradient(to bottom, transparent 60%, #fff 100%);
    }

    .ct-us .strip-text {
        padding: 48px 24px;
    }

    .ct-us .strip-text h1 {
        font-size: 34px;
    }

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

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

    .ct-us .cf-full {
        grid-column: 1;
    }

    .ct-us .privacy-row {
        grid-column: 1;
    }

    .ct-us .submit-row {
        grid-column: 1;
        flex-direction: column;
        align-items: flex-start;
    }

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

    .ct-us .form-panel::before {
        left: 24px;
        right: 24px;
    }

    .ct-us .form-panel h3 {
        font-size: 34px;
    }

    .ct-us .reach-card {
        padding: 24px;
    }

    .ct-us .status-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .ct-us .strip-text h1 {
        font-size: 34px;
    }

    .ct-us .strip-text p {
        font-size: 16px;
    }

    .ct-us .reach-card h2,
    .ct-us .status-card h2 {
        font-size: 24px;
    }

    .ct-us .prog-name {
        min-width: 80px;
        font-size: 15px;
    }
}

.strt {
    max-width: 1500px;
    margin: 0 auto;
    overflow-x: clip;
}

.strt .frm-img {
    position: relative;
    width: 340px;
    height: 400px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09), 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

.strt .frm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.strt .frm-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: 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.06'/%3E%3C/svg%3E");
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

.strt .frm-border {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(63, 107, 183, 0.18);
    border-radius: 32px;
    pointer-events: none;
}

.strt .frm-border::after {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(182, 211, 230, 0.25);
    border-radius: 28px;
    pointer-events: none;
}

.strt .eyebrow {
    display: inline-block;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: #3F6BB7;
    border: 2px solid #3F6BB7;
    border-radius: 3px;
    padding: 4px 12px;
    margin-bottom: 24px;
    font-weight: 600;
}

.strt .lede-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    padding: 96px 48px 48px 48px;
    position: relative;
}

.strt .lede-text {
    flex: 1;
    padding-top: 48px;
}

.strt .lede-h1 {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    background: linear-gradient(to left, transparent, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strt .math-sym {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 220px;
    line-height: 1.15;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(63, 107, 183, 0.08);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.strt .lede-text h1,
.strt .lede-text .eyebrow {
    position: relative;
    z-index: 1;
}

.strt .noise-bg {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

.strt .sec-team {
    background: #EEF0F2;
    padding: 48px 48px;
    position: relative;
}

.strt .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.strt .team-img-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strt .team-img-pair {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.strt .t-img {
    flex: 1;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07), 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.strt .t-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.88;
    transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.strt .t-img img:hover {
    opacity: 1;
}

.strt .t-img-wide {
    height: 260px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07), 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.strt .t-img-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    opacity: 0.88;
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.strt .t-img-wide img:hover {
    opacity: 1;
}

.strt .team-text h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(to left, transparent, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.strt .team-text p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a3a52;
    margin-bottom: 12px;
}

.strt .prof-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.strt .prof-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    border: 1.5px solid rgba(63, 107, 183, 0.12);
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.strt .prof-card:hover {
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    border-color: rgba(63, 107, 183, 0.28);
}

.strt .prof-card h5 {
    font-size: 16px;
    line-height: 1.15;
    color: #3F6BB7;
    margin-bottom: 4px;
    font-weight: 700;
}

.strt .prof-card span {
    font-size: 15px;
    color: #5a6e8a;
    line-height: 1.65;
}

.strt .sec-value {
    padding: 96px 48px;
    background: #1a2e52;
    position: relative;
}

.strt .val-inner {
    display: flex;
    flex-direction: row;
    gap: 96px;
    align-items: flex-start;
}

.strt .val-left {
    flex: 1;
}

.strt .val-left h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(to left, transparent, #B6D3E6, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.strt .val-left p {
    font-size: 16px;
    line-height: 1.65;
    color: #c8d8ea;
    margin-bottom: 12px;
}

.strt .stats-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 48px;
}

.strt .stat-box {
    flex: 1;
    background: rgba(63, 107, 183, 0.18);
    border: 1.5px solid rgba(182, 211, 230, 0.22);
    border-radius: 20px;
    padding: 24px;
    box-shadow: inset 0 1px 8px rgba(182, 211, 230, 0.08);
}

.strt .stat-num {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #B6D3E6;
    font-weight: 700;
    display: block;
}

.strt .stat-label {
    font-size: 15px;
    color: #8aafc8;
    line-height: 1.65;
    margin-top: 4px;
    display: block;
}

.strt .val-right {
    width: 340px;
    flex-shrink: 0;
}

.strt .val-img-stack {
    position: relative;
    height: 420px;
}

.strt .vi-back {
    position: absolute;
    top: 0;
    left: 24px;
    right: 0;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    opacity: 0.55;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

.strt .vi-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.strt .vi-front {
    position: absolute;
    top: 48px;
    left: 0;
    right: 24px;
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

.strt .vi-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.strt .val-ind {
    margin-top: 24px;
    background: rgba(63, 107, 183, 0.22);
    border-radius: 20px;
    padding: 24px;
    border: 1.5px solid rgba(182, 211, 230, 0.18);
}

.strt .val-ind-bar {
    height: 6px;
    background: rgba(182, 211, 230, 0.18);
    border-radius: 3px;
    margin-top: 12px;
    overflow: hidden;
}

.strt .val-ind-fill {
    height: 100%;
    background: linear-gradient(to left, transparent, #B6D3E6, #3F6BB7);
    border-radius: 3px;
    animation: barfill 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes barfill {
    from {
        width: 0%;
    }

    to {
        width: 78%;
    }
}

.strt .val-ind p {
    font-size: 15px;
    color: #8aafc8;
    line-height: 1.65;
    margin: 0;
}

.strt .val-ind strong {
    color: #B6D3E6;
}

.strt .sec-grad {
    padding: 96px 48px;
    background: #fff;
    position: relative;
}

.strt .grad-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: start;
}

.strt .grad-text h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.025em;
    background: linear-gradient(to left, transparent, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.strt .grad-text p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a3a52;
    margin-bottom: 12px;
}

.strt .tag-cluster {
    margin-top: 48px;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.strt .tag-item {
    display: inline-block;
    font-size: 15px;
    color: #3F6BB7;
    border: 2px solid #3F6BB7;
    border-radius: 20px;
    padding: 4px 12px;
    background: #fff;
    cursor: default;
    transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center bottom;
}

.strt .tag-cluster:hover .tag-item {
    transform: translateY(-4px) rotate(-3deg);
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    background: #EEF0F2;
}

.strt .tag-cluster:hover .tag-item:nth-child(2) {
    transform: translateY(-8px) rotate(2deg);
}

.strt .tag-cluster:hover .tag-item:nth-child(3) {
    transform: translateY(-6px) rotate(-1.5deg);
}

.strt .tag-cluster:hover .tag-item:nth-child(4) {
    transform: translateY(-10px) rotate(3deg);
}

.strt .tag-cluster:hover .tag-item:nth-child(5) {
    transform: translateY(-5px) rotate(-2deg);
}

.strt .tag-cluster:hover .tag-item:nth-child(6) {
    transform: translateY(-9px) rotate(1.5deg);
}

.strt .tag-item:hover {
    background: #3F6BB7 !important;
    color: #fff !important;
    transform: translateY(-12px) rotate(0deg) !important;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13) !important;
}

.strt .grad-img-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strt .gi-top {
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.strt .gi-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.strt .gi-top:hover img {
    transform: scale(1.03);
}

.strt .gi-accent {
    background: #EEF0F2;
    border-radius: 20px;
    padding: 24px;
    border: 1.5px solid rgba(63, 107, 183, 0.1);
}

.strt .gi-accent p {
    font-size: 20px;
    line-height: 1.65;
    color: #3F6BB7;
    font-weight: 600;
    margin: 0;
}

.strt .accent-big {
    font-size: 34px;
    line-height: 1.15;
    color: #3F6BB7;
    font-weight: 700;
    display: block;
    letter-spacing: -0.02em;
}

.strt .list-bullets {
    list-style: none;
    padding: 0;
    margin: 24px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.strt .list-bullets li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.65;
    color: #2a3a52;
}

.strt .list-bullets li::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 3px;
    background: #3F6BB7;
    flex-shrink: 0;
    margin-top: 5px;
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-48px);
    }

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

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(48px);
    }

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

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

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

.strt .lede-text {
    animation: slideLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.strt .frm-img {
    animation: slideRight 0.65s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.strt .team-text {
    animation: slideLeft 0.6s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

.strt .team-img-col {
    animation: slideRight 0.65s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

.strt .val-left {
    animation: slideLeft 0.65s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

.strt .val-right {
    animation: slideRight 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

.strt .grad-text {
    animation: slideLeft 0.6s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

.strt .grad-img-col {
    animation: slideUp 0.65s 0.25s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-play-state: paused;
}

.strt .anim-run {
    animation-play-state: running;
}

@media (max-width: 1024px) {
    .strt .lede-row {
        flex-direction: column;
        padding: 48px 24px 48px 24px;
        gap: 24px;
    }

    .strt .frm-img {
        width: 100%;
        height: 300px;
    }

    .strt .lede-h1 {
        font-size: 48px;
    }

    .strt .math-sym {
        font-size: 140px;
    }

    .strt .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .strt .val-inner {
        flex-direction: column;
        gap: 48px;
    }

    .strt .val-right {
        width: 100%;
    }

    .strt .val-img-stack {
        height: 320px;
    }

    .strt .grad-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .strt .sec-team,
    .strt .sec-value,
    .strt .sec-grad {
        padding: 48px 24px;
    }
}

@media (max-width: 768px) {
    .strt .lede-h1 {
        font-size: 34px;
    }

    .strt .team-text h2,
    .strt .val-left h2,
    .strt .grad-text h2 {
        font-size: 34px;
    }

    .strt .stats-row {
        flex-direction: column;
        gap: 12px;
    }

    .strt .team-img-pair {
        flex-direction: column;
    }

    .strt .t-img {
        height: 180px;
    }

    .strt .math-sym {
        font-size: 100px;
    }
}

@media (max-width: 480px) {
    .strt .lede-row {
        padding: 24px 12px;
    }

    .strt .sec-team,
    .strt .sec-value,
    .strt .sec-grad {
        padding: 48px 12px;
    }

    .strt .lede-h1 {
        font-size: 24px;
    }

    .strt .eyebrow {
        font-size: 15px;
    }
}

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

.lrn-prog .prog-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

@keyframes geo-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes inner-glow {

    0%,
    100% {
        box-shadow: inset 0 0 40px 0 rgba(63, 107, 183, 0.06);
    }

    50% {
        box-shadow: inset 0 0 80px 0 rgba(63, 107, 183, 0.14);
    }
}

@keyframes accent-pulse {

    0%,
    100% {
        border-color: #3F6BB7;
    }

    50% {
        border-color: #B6D3E6;
    }
}

@keyframes shake-invalid {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-6px);
    }

    40% {
        transform: translateX(6px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.lrn-prog .pg-intro {
    position: relative;
    padding: 96px 0 48px;
    background: #EEF0F2;
}

.lrn-prog .pg-intro::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, #B6D3E6, transparent);
    opacity: 0.28;
    pointer-events: none;
}

.lrn-prog .pg-intro-geo {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border: 2px solid rgba(63, 107, 183, 0.12);
    border-radius: 32px;
    animation: geo-rotate 28s linear infinite;
    pointer-events: none;
    overflow: hidden;
}

.lrn-prog .pg-intro-geo::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border: 1px solid rgba(63, 107, 183, 0.08);
    border-radius: 20px;
}

.lrn-prog .pg-intro-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.lrn-prog .pg-intro-left {
    flex: 0 0 60%;
}

.lrn-prog .pg-intro-stripe {
    width: 48px;
    height: 4px;
    background: linear-gradient(to right, #B6D3E6, transparent);
    border-radius: 3px;
    margin-bottom: 24px;
}

.lrn-prog .pg-intro-h1 {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px;
}

.lrn-prog .pg-intro-sub {
    font-size: 20px;
    line-height: 1.65;
    color: #2a3a52;
    margin: 0 0 24px;
}

.lrn-prog .pg-intro-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
}

.lrn-prog .pg-intro-badge {
    font-size: 15px;
    line-height: 1.15;
    color: #3F6BB7;
    border: 2px solid #3F6BB7;
    border-radius: 3px;
    padding: 4px 12px;
    animation: accent-pulse 3.5s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.lrn-prog .pg-intro-count {
    font-size: 15px;
    line-height: 1.15;
    color: #4a5568;
}

.lrn-prog .pg-intro-right {
    flex: 0 0 40%;
    position: relative;
}

.lrn-prog .pg-intro-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
    position: relative;
}

.lrn-prog .pg-intro-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #B6D3E6, transparent);
    opacity: 0.22;
    pointer-events: none;
}

.lrn-prog .pg-intro-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: sepia(0.18) contrast(1.06) brightness(0.96);
}

.lrn-prog .cards-area {
    padding: 96px 0;
    background: #fff;
    position: relative;
}

.lrn-prog .cards-area-label {
    font-size: 15px;
    letter-spacing: 0.08em;
    color: #3F6BB7;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lrn-prog .cards-area-heading {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 48px;
}

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

.lrn-prog .prog-card {
    border-radius: 20px;
    border: 2px solid #EEF0F2;
    background: #fff;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease-in-out, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lrn-prog .prog-card:hover {
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
    border-color: #B6D3E6;
    transform: translateY(-4px);
}

.lrn-prog .prog-card.featured {
    grid-column: span 2;
    flex-direction: row;
}

.lrn-prog .card-img-wrap {
    overflow: hidden;
    position: relative;
}

.lrn-prog .prog-card:not(.featured) .card-img-wrap {
    height: 180px;
}

.lrn-prog .prog-card.featured .card-img-wrap {
    flex: 0 0 44%;
    min-height: 280px;
}

.lrn-prog .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

.lrn-prog .card-title {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: #1e2d45;
    margin: 0;
}

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

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

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

.lrn-prog .card-meta-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.lrn-prog .card-price-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    border-top: 1px solid #EEF0F2;
    padding-top: 12px;
}

.lrn-prog .card-price {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #3F6BB7;
    font-weight: 700;
}

.lrn-prog .card-price-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #5a6a82;
}

.lrn-prog .card-cta {
    display: inline-block;
    margin-top: 4px;
    padding: 12px 24px;
    border: 2px solid #3F6BB7;
    border-radius: 3px;
    color: #3F6BB7;
    font-size: 16px;
    line-height: 1.15;
    text-decoration: none;
    background: transparent;
    transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    align-self: flex-start;
}

.lrn-prog .card-cta:hover {
    background: #3F6BB7;
    color: #fff;
}

.lrn-prog .card-views {
    font-size: 15px;
    line-height: 1.15;
    color: #5a6a82;
}

.lrn-prog .approach-area {
    padding: 96px 0;
    background: #EEF0F2;
    position: relative;
    animation: inner-glow 7s ease-in-out infinite;
}

.lrn-prog .approach-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 107, 183, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 107, 183, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    opacity: 0.6;
}

.lrn-prog .approach-inner {
    position: relative;
    z-index: 1;
}

.lrn-prog .approach-heading {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 12px;
}

.lrn-prog .approach-sub {
    font-size: 20px;
    line-height: 1.65;
    color: #2a3a52;
    margin: 0 0 48px;
    max-width: 640px;
}

.lrn-prog .approach-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lrn-prog .step-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
}

.lrn-prog .step-item.right {
    flex-direction: row-reverse;
}

.lrn-prog .step-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 3px;
    border: 2px solid #3F6BB7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    line-height: 1.15;
    color: #3F6BB7;
    background: #fff;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.lrn-prog .step-body {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    border: 1px solid rgba(63, 107, 183, 0.08);
}

.lrn-prog .step-title {
    font-size: 20px;
    line-height: 1.15;
    color: #1e2d45;
    margin: 0 0 12px;
}

.lrn-prog .step-text {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a60;
    margin: 0;
}

.lrn-prog .metrics-area {
    padding: 96px 0 48px;
    background: #fff;
}

.lrn-prog .metrics-heading {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 48px;
}

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

.lrn-prog .metric-card {
    border-radius: 20px;
    padding: 24px;
    background: #EEF0F2;
    border: 1px solid rgba(63, 107, 183, 0.1);
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
    transition: box-shadow 0.5s ease-in-out;
}

.lrn-prog .metric-card:hover {
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.lrn-prog .metric-val {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #3F6BB7;
    display: block;
    margin-bottom: 4px;
}

.lrn-prog .metric-label {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a60;
}

.lrn-prog .img-feature-area {
    padding: 48px 0 96px;
    background: #fff;
}

.lrn-prog .img-feature-split {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
}

.lrn-prog .img-feature-visual {
    flex: 0 0 40%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

.lrn-prog .img-feature-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    filter: blur(0px) contrast(1.04) brightness(0.98);
}

.lrn-prog .img-feature-text {
    flex: 1;
}

.lrn-prog .img-feature-h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    background: linear-gradient(to left, #B6D3E6, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px;
}

.lrn-prog .img-feature-p {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a60;
    margin: 0 0 24px;
}

.lrn-prog .img-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lrn-prog .img-feature-list li {
    font-size: 16px;
    line-height: 1.65;
    color: #2a3a52;
    padding-left: 24px;
    position: relative;
}

.lrn-prog .img-feature-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #3F6BB7;
}

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

    .lrn-prog .prog-card.featured {
        grid-column: span 2;
    }

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

    .lrn-prog .pg-intro-h1 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .lrn-prog .pg-intro-split {
        flex-direction: column;
    }

    .lrn-prog .pg-intro-left,
    .lrn-prog .pg-intro-right {
        flex: unset;
        width: 100%;
    }

    .lrn-prog .pg-intro-h1 {
        font-size: 34px;
    }

    .lrn-prog .card-grid {
        grid-template-columns: 1fr;
    }

    .lrn-prog .prog-card.featured {
        grid-column: span 1;
        flex-direction: column;
    }

    .lrn-prog .prog-card.featured .card-img-wrap {
        flex: unset;
        height: 200px;
        min-height: unset;
    }

    .lrn-prog .img-feature-split {
        flex-direction: column;
    }

    .lrn-prog .img-feature-visual {
        flex: unset;
        width: 100%;
    }

    .lrn-prog .approach-heading,
    .lrn-prog .cards-area-heading,
    .lrn-prog .img-feature-h2 {
        font-size: 34px;
    }

    .lrn-prog .step-item.right {
        flex-direction: row;
    }

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

@media (max-width: 480px) {
    .lrn-prog .pg-intro {
        padding: 48px 0 24px;
    }

    .lrn-prog .cards-area,
    .lrn-prog .approach-area,
    .lrn-prog .metrics-area,
    .lrn-prog .img-feature-area {
        padding: 48px 0;
    }

    .lrn-prog .metrics-grid {
        grid-template-columns: 1fr;
    }

    .lrn-prog .pg-intro-h1 {
        font-size: 34px;
    }

    .lrn-prog .metric-val {
        font-size: 34px;
    }
}

.accred {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0;
    overflow-x: clip;
}

.accred .fade-in {
    opacity: 0;
    animation: acFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.accred .fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.accred .fade-in:nth-child(2) {
    animation-delay: 0.22s;
}

.accred .fade-in:nth-child(3) {
    animation-delay: 0.34s;
}

.accred .fade-in:nth-child(4) {
    animation-delay: 0.46s;
}

.accred .fade-in:nth-child(5) {
    animation-delay: 0.58s;
}

@keyframes acFadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

.accred .pg-title {
    padding: 96px 48px;
    position: relative;
    background: #fff;
    border-bottom: 1px solid #B6D3E6;
}

.accred .pg-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(63, 107, 183, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(63, 107, 183, 0.06) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.accred .title-grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.accred .title-img-col {
    flex: 0 0 320px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
}

.accred .title-img-col img {
    width: 320px;
    height: 400px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 20px;
}

.accred .title-img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 30, 60, 0.72) 0%, transparent 55%);
    border-radius: 20px;
    pointer-events: none;
}

.accred .title-img-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #3F6BB7;
    color: #fff;
    font-size: 15px;
    padding: 4px 12px;
    border-radius: 3px;
    z-index: 2;
    letter-spacing: 0.04em;
    border: 2px solid rgba(182, 211, 230, 0.4);
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
}

.accred .title-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 12px;
}

.accred .title-eyebrow {
    font-size: 15px;
    letter-spacing: 0.1em;
    color: #3F6BB7;
    text-transform: uppercase;
    font-weight: 700;
    border-left: 3px solid #B6D3E6;
    border-top: 1px solid #B6D3E6;
    padding: 4px 12px;
    border-radius: 3px;
    display: inline-block;
    background: #EEF0F2;
}

.accred .title-h1 {
    font-size: 64px;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin: 0;
    background: linear-gradient(to left, transparent, #B6D3E6 30%, #3F6BB7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accred .title-accent {
    font-size: 20px;
    line-height: 1.65;
    color: #2a3a5c;
    max-width: 560px;
}

.accred .title-accent strong {
    color: #3F6BB7;
    font-weight: 700;
}

.accred .title-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.accred .meta-pill {
    font-size: 15px;
    color: #2a3a5c;
    background: #EEF0F2;
    border: 1.5px solid #B6D3E6;
    border-radius: 3px;
    padding: 4px 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: background 0.45s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.accred .meta-pill:hover {
    background: #B6D3E6;
    border-color: #3F6BB7;
}

.accred .detail-section {
    padding: 96px 48px;
    background: linear-gradient(to top, #EEF0F2 0%, #fff 100%);
    position: relative;
}

.accred .detail-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='52'%3E%3Cpolygon points='30,2 58,17 58,47 30,62 2,47 2,17' fill='none' stroke='rgba(63,107,183,0.05)' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 52px;
    pointer-events: none;
}

.accred .detail-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
}

.accred .detail-main {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.accred .detail-sidebar {
    flex: 0 0 33%;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accred .divider-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.accred .divider-text::before,
.accred .divider-text::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #B6D3E6;
}

.accred .divider-text span {
    font-size: 15px;
    color: #3F6BB7;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
}

.accred .block-h2 {
    font-size: 48px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    background: linear-gradient(to left, transparent, #B6D3E6 20%, #3F6BB7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accred .block-h3 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0 0 12px 0;
    background: linear-gradient(to left, transparent, #B6D3E6 25%, #3F6BB7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.accred .block-h4 {
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 0 0 12px 0;
    color: #2a3a5c;
}

.accred .block-h5 {
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: 0em;
    margin: 0 0 4px 0;
    color: #3F6BB7;
    font-weight: 700;
}

.accred .prose {
    font-size: 16px;
    line-height: 1.65;
    color: #2a3a5c;
    margin: 0 0 12px 0;
}

.accred .prose-sm {
    font-size: 15px;
    line-height: 1.65;
    color: #3d4f6b;
    margin: 0 0 12px 0;
}

.accred .accred-table-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    border: 1.5px solid #B6D3E6;
}

.accred .accred-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.accred .accred-table thead tr {
    background: #3F6BB7;
    color: #fff;
}

.accred .accred-table thead th {
    padding: 12px 24px;
    text-align: left;
    font-weight: 700;
    letter-spacing: 0.04em;
    font-size: 15px;
}

.accred .accred-table tbody tr {
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-bottom: 1px solid #EEF0F2;
}

.accred .accred-table tbody tr:nth-child(even) {
    background: #EEF0F2;
}

.accred .accred-table tbody tr:nth-child(odd) {
    background: #fff;
}

.accred .accred-table tbody tr:hover {
    background: #B6D3E6 !important;
}

.accred .accred-table tbody td {
    padding: 12px 24px;
    color: #2a3a5c;
    line-height: 1.65;
    vertical-align: top;
}

.accred .accred-table tbody td:first-child {
    font-weight: 700;
    color: #3F6BB7;
    white-space: nowrap;
}

.accred .status-badge {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 3px;
    letter-spacing: 0.03em;
}

.accred .status-badge.active {
    background: #e6f0fb;
    color: #3F6BB7;
    border: 1.5px solid #B6D3E6;
}

.accred .status-badge.review {
    background: #f5f0e6;
    color: #7a6030;
    border: 1.5px solid #d4c080;
}

.accred .multi-level {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accred .level-block {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    border: 1.5px solid #B6D3E6;
    padding: 24px;
    position: relative;
    transition: box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.accred .level-block:hover {
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
    border-color: #3F6BB7;
}

.accred .level-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #3F6BB7, #B6D3E6);
    border-radius: 3px 0 0 3px;
}

.accred .level-tag {
    position: absolute;
    top: -1px;
    right: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #3F6BB7;
    padding: 4px 12px;
    border-radius: 0 0 3px 3px;
    letter-spacing: 0.04em;
    box-shadow: 0 1px 3px -1px rgba(63, 107, 183, 0.07);
}

.accred .level-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accred .level-list li {
    font-size: 15px;
    line-height: 1.65;
    color: #3d4f6b;
    padding-left: 20px;
    position: relative;
}

.accred .level-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 3px;
    background: #3F6BB7;
}

.accred .sidebar-card {
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    border: 1.5px solid #B6D3E6;
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.accred .sidebar-card:hover {
    box-shadow: 0 9px 52px -1px rgba(63, 107, 183, 0.13);
}

.accred .sidebar-card-tag {
    position: absolute;
    top: -1px;
    right: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #3F6BB7;
    background: #EEF0F2;
    border: 1.5px solid #B6D3E6;
    border-top: none;
    padding: 4px 12px;
    border-radius: 0 0 3px 3px;
    letter-spacing: 0.03em;
}

.accred .rating-display {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #EEF0F2;
    border-radius: 3px;
    border: 1px solid #B6D3E6;
}

.accred .rating-num {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #3F6BB7;
    letter-spacing: -0.03em;
}

.accred .rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.accred .rating-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
}

.accred .star {
    width: 16px;
    height: 16px;
    display: block;
}

.accred .rating-count {
    font-size: 15px;
    color: #3d4f6b;
}

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

.accred .contact-list li {
    font-size: 15px;
    line-height: 1.65;
    color: #2a3a5c;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.accred .contact-list li strong {
    color: #3F6BB7;
    min-width: 60px;
    font-weight: 700;
}

.accred .contact-list a {
    color: #3F6BB7;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out;
}

.accred .contact-list a:hover {
    color: #2a3a5c;
}

.accred .inset-glow {
    box-shadow:
        0 1px 3px -1px rgba(63, 107, 183, 0.07),
        inset 0 1px 8px 0 rgba(182, 211, 230, 0.35);
}

@media (max-width: 1024px) {
    .accred .title-grid {
        flex-direction: column;
        gap: 24px;
    }

    .accred .title-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .accred .title-img-col img {
        width: 100%;
        height: 280px;
    }

    .accred .title-h1 {
        font-size: 48px;
    }

    .accred .detail-inner {
        flex-direction: column;
    }

    .accred .detail-sidebar {
        flex: 0 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .accred .pg-title {
        padding: 48px 24px;
    }

    .accred .detail-section {
        padding: 48px 24px;
    }

    .accred .title-h1 {
        font-size: 34px;
    }

    .accred .block-h2 {
        font-size: 34px;
    }

    .accred .block-h3 {
        font-size: 24px;
    }

    .accred .title-meta {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .accred .pg-title {
        padding: 48px 12px;
    }

    .accred .detail-section {
        padding: 48px 12px;
    }

    .accred .title-h1 {
        font-size: 24px;
    }

    .accred .block-h2 {
        font-size: 24px;
    }

    .accred .accred-table thead th,
    .accred .accred-table tbody td {
        padding: 12px;
        font-size: 15px;
    }
}

.success-pg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 24px;
    background: #EEF0F2;
}

.success-pg .msg-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    max-width: 560px;
    width: 100%;
    box-shadow: 0 6px 22px -1px rgba(63, 107, 183, 0.09);
    border-top: 4px solid #3F6BB7;
    text-align: center;
}

.success-pg .msg-card .icon-wrap {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 32px;
    background: #EEF0F2;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 3px -1px rgba(63, 107, 183, 0.13);
}

.success-pg .msg-card .icon-wrap svg {
    display: block;
}

.success-pg .msg-card .msg-title {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 12px;
    background: linear-gradient(to left, transparent, #3F6BB7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-pg .msg-card .msg-body {
    font-size: 16px;
    line-height: 1.65;
    color: #2c3a52;
    margin: 0 0 24px;
}

.success-pg .msg-card .msg-body span {
    color: #3F6BB7;
    font-weight: 600;
}

.success-pg .msg-card .back-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: 0.03em;
    color: #3F6BB7;
    background: #ffffff;
    border: 2px solid #3F6BB7;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: pointer;
}

.success-pg .msg-card .back-btn:hover,
.success-pg .msg-card .back-btn:focus {
    background: #3F6BB7;
    color: #ffffff;
    outline: none;
}

.success-pg .msg-card .back-btn:focus-visible {
    outline: 2px solid #3F6BB7;
    outline-offset: 3px;
}

.success-pg .msg-card .divider-line {
    border: none;
    border-top: 1px solid #B6D3E6;
    margin: 24px 0;
}

.success-pg .msg-card .contact-note {
    font-size: 15px;
    line-height: 1.65;
    color: #4a5568;
    margin: 0;
}

.success-pg .msg-card .contact-note a {
    color: #3F6BB7;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.45s ease-in-out;
}

.success-pg .msg-card .contact-note a:hover {
    color: #2a4f9a;
}

@media (max-width: 480px) {
    .success-pg {
        padding: 48px 12px;
    }

    .success-pg .msg-card {
        padding: 24px;
    }

    .success-pg .msg-card .msg-title {
        font-size: 24px;
    }
}