html {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'IBM Plex Sans', sans-serif
}

@keyframes focus-dash-spin {
    from {
        outline-offset: 2px;
        transform: rotate(0deg)
    }

    to {
        outline-offset: 2px;
        transform: rotate(360deg)
    }
}

:focus-visible {
    outline: 2px dashed #B6638F;
    outline-offset: 3px;
    animation: focus-dash-spin 3s linear infinite
}

.brand-header {
    background: linear-gradient(160deg, #fff 0%, #F0ECEC 60%, #D2BABB 100%);
    border-bottom: 1px solid #D2BABB;
    box-shadow: 2px 10px 48px 0 #b6638f21;
    position: relative;
    overflow: hidden
}

.brand-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B6638F 0%, #D2BABB 50%, #B6638F 100%);
    pointer-events: none
}

.brand-header-shell {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px
}

.brand-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 20px;
    gap: 10px
}

.brand-logo-mount {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 7px 22px 0 #b6638f17 inset 0 1px 4px 0 #d2babb4d;
    border: 1px solid #D2BABB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px
}

.brand-logo-mount img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.1;
    background: linear-gradient(120deg, #B6638F 0%, #8a3d6a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.brand-tagline {
    font-size: 15px;
    line-height: 1.5;
    color: #4a3040;
    letter-spacing: .02em;
    font-style: italic;
    opacity: .85
}

.brand-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #D2BABB 30%, #B6638F 50%, #D2BABB 70%, transparent 100%);
    margin: 0
}

.brand-nav-bar {
    padding: 10px 0 20px
}

.brand-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px
}

.brand-nav-list li {
    display: flex
}

.brand-nav-list a {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .03em;
    color: #4a3040;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background .25s ease-in-out, border-color .25s ease-in-out, color .2s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    white-space: nowrap
}

.brand-nav-list a:hover {
    background: #b6638f14;
    border-color: #D2BABB;
    color: #B6638F
}

.brand-nav-list a[aria-current="page"] {
    background: #b6638f1f;
    border-color: #B6638F;
    color: #B6638F
}

@media (max-width: 960px) {
    .brand-header-shell {
        padding: 0 20px
    }

    .brand-top {
        padding: 20px 0 10px
    }

    .brand-nav-list a {
        padding: 10px;
        font-size: 15px
    }
}

@media (max-width: 480px) {
    .brand-nav-list {
        gap: 10px
    }

    .brand-nav-list a {
        font-size: 15px;
        padding: 10px
    }

    .brand-logo-mount {
        width: 80px;
        height: 80px
    }
}

.site-footer {
    background: linear-gradient(170deg, #F0ECEC 0%, #fff 100%);
    border-top: 1px solid #D2BABB;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    font-family: 'IBM Plex Sans', sans-serif
}

.footer-shell {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 40px 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-logo-mount {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    border: 1px solid #D2BABB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px
}

.footer-logo-mount img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.footer-brand-name {
    font-size: 18px;
    font-weight: 700;
    color: #B6638F;
    letter-spacing: -.01em;
    line-height: 1.1
}

.footer-brand-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a3040;
    opacity: .8
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-col-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #B6638F;
    line-height: 1.3;
    padding-bottom: 10px;
    border-bottom: 1px solid #D2BABB
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-links a {
    font-size: 15px;
    line-height: 1.5;
    color: #4a3040;
    text-decoration: none;
    transition: color .2s ease-in-out;
    display: inline-block;
    min-height: 44px;
    display: flex;
    align-items: center
}

.footer-links a:hover {
    color: #B6638F
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0
}

.footer-contact-label {
    font-size: 15px;
    font-weight: 700;
    color: #B6638F;
    letter-spacing: .03em;
    line-height: 1.3
}

.footer-contact-val {
    font-size: 15px;
    color: #4a3040;
    line-height: 1.5;
    text-decoration: none;
    transition: color .2s ease-in-out
}

a.footer-contact-val:hover {
    color: #B6638F
}

.footer-bottom-bar {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #D2BABB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.footer-copy {
    font-size: 15px;
    color: #4a3040;
    opacity: .7;
    line-height: 1.5
}

@media (max-width: 960px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .footer-brand-col {
        grid-column: 1 / -1
    }

    .footer-shell {
        padding: 40px 20px 20px
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

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

.cookie-popup {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #D2BABB;
    box-shadow: 2px 10px 48px 0 #b6638f21;
    font-family: 'IBM Plex Sans', sans-serif;
    overflow: hidden;
    transform: translateY(-110%);
    transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.cookie-popup.visible {
    transform: translateY(0)
}

.cookie-popup-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.cookie-uses {
    font-size: 15px;
    line-height: 1.5;
    color: #4a3040;
    margin: 0;
    padding: 0;
    list-style: none
}

.cookie-uses li {
    padding: 0;
    line-height: 1.7;
    font-size: 15px;
    color: #4a3040
}

.cookie-intro {
    font-size: 15px;
    line-height: 1.5;
    color: #4a3040
}

.cookie-headline {
    font-size: 18px;
    font-weight: 700;
    color: #B6638F;
    line-height: 1.3
}

.cookie-toggles {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #D2BABB
}

.cookie-toggles.open {
    display: flex
}

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

.cookie-toggle-label {
    font-size: 15px;
    color: #4a3040;
    line-height: 1.5
}

.cookie-toggle-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #B6638F;
    cursor: pointer
}

.cookie-always-on {
    font-size: 15px;
    color: #B6638F;
    font-weight: 700
}

.cookie-btn-row {
    display: flex;
    gap: 10px
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #B6638F;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    min-height: 44px;
    transition: background .25s ease-in-out, color .25s ease-in-out, transform .15s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.3
}

.cookie-btn:hover {
    transform: scale(1.03)
}

.cookie-btn-accept {
    background: #B6638F;
    color: #fff
}

.cookie-btn-accept:hover {
    background: #8a3d6a
}

.cookie-btn-decline {
    background: #fff;
    color: #B6638F
}

.cookie-btn-decline:hover {
    background: #F0ECEC
}

.cookie-settings-link {
    font-size: 15px;
    color: #B6638F;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'IBM Plex Sans', sans-serif;
    padding: 0;
    text-align: left;
    transition: color .2s ease-in-out
}

.cookie-settings-link:hover {
    color: #8a3d6a
}

.pref-tab {
    display: none;
    position: fixed;
    bottom: 80px;
    left: 0;
    z-index: 1999;
    background: #B6638F;
    color: #fff;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    min-height: 44px;
    transition: background .25s ease-in-out, transform .15s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 7px 22px 0 #b6638f17
}

.pref-tab:hover {
    background: #8a3d6a;
    transform: scale(1.03)
}

.pref-tab.shown {
    display: flex;
    align-items: center
}

.policy-main-o {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px
}

.policy-main-o h1 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #2d1a24;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #D2BABB
}

.policy-main-o h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: -.01em;
    color: #2d1a24;
    margin-top: 80px;
    margin-bottom: 20px
}

.policy-main-o h3 {
    font-size: 18px;
    line-height: 1.3;
    letter-spacing: 0;
    color: #3d2030;
    margin-top: 40px;
    margin-bottom: 20px
}

.policy-main-o h4,
.policy-main-o h5,
.policy-main-o h6 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #3d2030;
    margin-top: 40px;
    margin-bottom: 10px
}

.policy-main-o p {
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3a2530;
    margin-bottom: 20px
}

.policy-main-o em,
.policy-main-o i {
    font-style: italic;
    color: #B6638F
}

.policy-main-o a {
    color: #B6638F;
    text-decoration: underline;
    text-decoration-color: #D2BABB;
    text-underline-offset: 3px;
    transition: color .25s ease-in-out, text-decoration-color .25s ease-in-out
}

.policy-main-o a:hover {
    color: #8a3f6a;
    text-decoration-color: #B6638F
}

.policy-main-o hr {
    border: none;
    border-top: 1px solid #D2BABB;
    margin: 80px 0;
    opacity: .6
}

.policy-main-o div {
    font-size: 18px;
    line-height: 1.7;
    color: #3a2530
}

.policy-main-o div+div {
    margin-top: 20px
}

@media (max-width: 960px) {
    .policy-main-o {
        padding: 40px 20px
    }

    .policy-main-o h1 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 20px
    }

    .policy-main-o h2 {
        font-size: 18px;
        margin-top: 40px
    }

    .policy-main-o h3,
    .policy-main-o h4,
    .policy-main-o h5,
    .policy-main-o h6 {
        font-size: 15px;
        margin-top: 20px
    }

    .policy-main-o p,
    .policy-main-o div {
        font-size: 15px;
        line-height: 1.7
    }

    .policy-main-o hr {
        margin: 40px 0
    }
}

@media (max-width: 480px) {
    .policy-main-o {
        padding: 40px 10px
    }

    .policy-main-o h2 {
        margin-top: 40px
    }
}

.lp-det {
    background: #fff;
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: clip
}

.lp-det .pg-band {
    height: 4px;
    background: linear-gradient(143deg, #B6638F, #D2BABB)
}

.lp-det .cover-area {
    position: relative;
    padding: 40px 80px;
    background: #F0ECEC;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center
}

.lp-det .cover-img-wrap {
    width: 100%;
    max-width: 960px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 48px 0 #b6638f21;
    margin-bottom: 40px;
    position: relative
}

.lp-det .cover-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block
}

.lp-det .cover-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, #b6638f38, transparent);
    pointer-events: none
}

.lp-det .cover-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center
}

.lp-det .meta-pill {
    background: #fff;
    border: 1px solid #D2BABB;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 1.3;
    color: #3d2030;
    box-shadow: 2px 3px 6px 0 #b6638f0f
}

.lp-det .meta-pill strong {
    color: #B6638F;
    font-weight: 700
}

.lp-det .cover-h {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #2a1520;
    font-weight: 800;
    max-width: 860px;
    margin-bottom: 20px
}

.lp-det .cover-h em {
    font-style: normal;
    text-decoration: underline;
    text-decoration-color: #B6638F;
    text-underline-offset: 6px
}

.lp-det .cover-sub {
    font-size: 18px;
    line-height: 1.5;
    color: #5a3a48;
    max-width: 640px;
    margin-bottom: 40px
}

.lp-det .cover-actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.lp-det .btn-enroll {
    background: linear-gradient(143deg, #B6638F, #c97aa4);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px 40px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: .01em
}

.lp-det .btn-enroll:hover {
    transform: scale(1.04);
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.lp-det .btn-enroll:focus {
    outline: 2px solid #B6638F;
    outline-offset: 3px
}

.lp-det .btn-print {
    background: #fff;
    color: #B6638F;
    border: 2px solid #B6638F;
    border-radius: 8px;
    padding: 20px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    transition: transform .28s ease-in-out, background .28s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center
}

.lp-det .btn-print:hover {
    transform: scale(1.06);
    background: #F0ECEC
}

.lp-det .btn-print svg {
    width: 22px;
    height: 22px;
    fill: #B6638F
}

.lp-det .divider-band {
    height: 6px;
    background: linear-gradient(143deg, #D2BABB, #B6638F);
    border: none;
    margin: 0
}

.lp-det .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: #2a1520;
    padding: 0 80px
}

.lp-det .stat-cell {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #d2babb26;
    position: relative;
    overflow: hidden
}

.lp-det .stat-cell:last-child {
    border-right: none
}

.lp-det .stat-cell::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #B6638F;
    border-radius: 8px
}

.lp-det .stat-num {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
    background: linear-gradient(143deg, #D2BABB, #B6638F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block
}

.lp-det .stat-label {
    font-size: 15px;
    line-height: 1.5;
    color: #D2BABB;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-top: 10px;
    display: block
}

.lp-det .body-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    padding: 80px;
    align-items: start;
    background: #fff
}

.lp-det .desc-col {
    min-width: 0
}

.lp-det .desc-col .desc-body {
    font-size: 18px;
    line-height: 1.7;
    color: #3d2030
}

.lp-det .desc-col .desc-body p {
    margin-bottom: 20px
}

.lp-det .desc-col .desc-body h2 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a1520;
    margin-bottom: 10px;
    margin-top: 40px;
    letter-spacing: -.01em
}

.lp-det .desc-col .desc-body h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #B6638F;
    margin-bottom: 10px;
    margin-top: 20px
}

.lp-det .desc-col .desc-body ol {
    padding-left: 20px;
    margin-bottom: 20px
}

.lp-det .desc-col .desc-body li {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.5;
    color: #3d2030
}

.lp-det .desc-col .desc-body details {
    border: 1px solid #D2BABB;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden
}

.lp-det .desc-col .desc-body summary {
    padding: 20px;
    font-size: 18px;
    font-weight: 600;
    color: #2a1520;
    cursor: pointer;
    background: #F0ECEC;
    list-style: none;
    transition: background .35s ease-in-out
}

.lp-det .desc-col .desc-body summary:hover {
    background: #e8e0e2
}

.lp-det .desc-col .desc-body details[open] summary {
    border-bottom: 1px solid #D2BABB
}

.lp-det .desc-col .desc-body details> :not(summary) {
    padding: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #3d2030
}

.lp-det .desc-col .desc-body cite {
    font-style: italic;
    color: #B6638F;
    font-size: 15px
}

.lp-det .sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 20px
}

.lp-det .price-card {
    background: linear-gradient(143deg, #2a1520, #3d2030);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 2px 10px 48px 0 #b6638f21;
    box-shadow: inset 0 1px 0 #d2babb2e 2px 10px 48px 0 #b6638f21;
    text-align: center
}

.lp-det .price-amount {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
    background: linear-gradient(143deg, #D2BABB, #B6638F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px
}

.lp-det .price-note {
    font-size: 15px;
    line-height: 1.5;
    color: #D2BABB;
    margin-bottom: 20px
}

.lp-det .seats-bar-wrap {
    background: #d2babb26;
    border-radius: 8px;
    height: 8px;
    margin-bottom: 10px;
    overflow: hidden
}

.lp-det .seats-bar {
    height: 100%;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    border-radius: 8px;
    width: 60%;
    transition: width .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-det .seats-txt {
    font-size: 15px;
    color: #D2BABB;
    margin-bottom: 20px;
    display: block
}

.lp-det .btn-enroll-side {
    width: 100%;
    background: linear-gradient(143deg, #B6638F, #c97aa4);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 20px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-det .btn-enroll-side:hover {
    transform: scale(1.03);
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.lp-det .btn-enroll-side:focus {
    outline: 2px solid #D2BABB;
    outline-offset: 3px
}

.lp-det .info-card {
    background: #F0ECEC;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 3px 6px 0 #b6638f0f
}

.lp-det .info-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #D2BABB;
    font-size: 15px;
    line-height: 1.5
}

.lp-det .info-row:last-child {
    border-bottom: none
}

.lp-det .info-row .ir-label {
    color: #5a3a48;
    font-weight: 500
}

.lp-det .info-row .ir-val {
    color: #2a1520;
    font-weight: 700;
    text-align: right
}

.lp-det .prog-area {
    background: #F0ECEC;
    padding: 80px;
    border-top: 4px solid #B6638F;
    border-bottom: 4px solid #D2BABB
}

.lp-det .prog-head {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a1520;
    margin-bottom: 40px;
    letter-spacing: -.01em
}

.lp-det .prog-body {
    max-width: 860px
}

.lp-det .prog-body p {
    font-size: 18px;
    line-height: 1.7;
    color: #3d2030;
    margin-bottom: 20px
}

.lp-det .prog-body h2 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a1520;
    margin-bottom: 10px;
    margin-top: 40px
}

.lp-det .prog-body h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #B6638F;
    margin-bottom: 10px;
    margin-top: 20px
}

.lp-det .prog-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
    counter-reset: prog-counter;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.lp-det .prog-body ol li {
    counter-increment: prog-counter;
    font-size: 18px;
    line-height: 1.5;
    color: #3d2030;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    position: relative
}

.lp-det .prog-body ol li::before {
    content: counter(prog-counter);
    min-width: 32px;
    height: 32px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.lp-det .prog-body blockquote {
    border-left: none;
    background: linear-gradient(143deg, #b6638f14, #d2babb1f);
    border-radius: 8px;
    padding: 20px 40px;
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.7;
    color: #2a1520;
    font-style: italic
}

.lp-det .prog-body figure {
    margin: 20px 0
}

.lp-det .prog-body figcaption {
    font-size: 15px;
    color: #5a3a48;
    margin-top: 10px;
    font-style: italic
}

.lp-det .prog-body em {
    color: #B6638F;
    font-style: italic
}

.lp-det .prog-body cite {
    font-style: italic;
    color: #B6638F;
    font-size: 15px
}

.lp-det .steps-area {
    padding: 80px;
    background: #fff
}

.lp-det .steps-head {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a1520;
    margin-bottom: 40px;
    letter-spacing: -.01em
}

.lp-det .steps-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.lp-det .steps-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 2px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    z-index: 0
}

.lp-det .step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1
}

.lp-det .step-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    box-shadow: inset 0 1px 0 #ffffff40 2px 7px 22px 0 #b6638f17;
    flex-shrink: 0
}

.lp-det .step-icon svg {
    width: 26px;
    height: 26px;
    fill: #fff
}

.lp-det .step-num {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    color: #B6638F;
    letter-spacing: .06em;
    margin-bottom: 10px
}

.lp-det .step-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a1520;
    margin-bottom: 10px
}

.lp-det .step-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #5a3a48
}

.lp-det .three-col {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: start;
    padding: 80px;
    background: #F0ECEC;
    border-top: 4px solid #D2BABB;
    border-bottom: 4px solid #B6638F
}

.lp-det .col-side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lp-det .col-center {
    width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.lp-det .skill-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 3px 6px 0 #b6638f0f
}

.lp-det .skill-card h5 {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a1520;
    margin-bottom: 10px
}

.lp-det .skill-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #5a3a48;
    margin: 0
}

.lp-det .center-badge {
    background: linear-gradient(143deg, #2a1520, #3d2030);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    box-shadow: inset 0 1px 0 #d2babb26 2px 7px 22px 0 #b6638f17;
    width: 100%
}

.lp-det .center-badge .cb-label {
    font-size: 15px;
    color: #D2BABB;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block
}

.lp-det .center-badge .cb-val {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 800;
    color: #fff;
    display: block
}

.lp-det .center-badge .cb-sub {
    font-size: 15px;
    color: #D2BABB;
    margin-top: 10px;
    display: block
}

.lp-det .center-link {
    display: block;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    width: 100%;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    transition: transform .28s ease-in-out, box-shadow .28s ease-in-out
}

.lp-det .center-link:hover {
    transform: scale(1.04);
    box-shadow: 2px 7px 22px 0 #b6638f17
}

.lp-det .anim-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
    border-radius: 8px
}

.lp-det .anim-zone {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 48px;
    background: #b6638f12;
    animation: zone-drift 12s ease-in-out infinite alternate
}

.lp-det .anim-zone.az2 {
    background: #d2babb17;
    width: 200px;
    height: 200px;
    animation: zone-drift2 16s ease-in-out infinite alternate;
    right: 10%;
    bottom: 10%
}

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

    50% {
        transform: translate(40px, 20px) scale(1.1)
    }

    100% {
        transform: translate(20px, 40px) scale(0.95)
    }
}

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

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

    100% {
        transform: translate(-10px, 30px) scale(0.92)
    }
}

.lp-det .cover-area {
    position: relative
}

.lp-det .cover-area .anim-bg {
    border-radius: 0
}

@media (max-width: 960px) {
    .lp-det .cover-area {
        padding: 40px 20px
    }

    .lp-det .cover-h {
        font-size: 22px
    }

    .lp-det .body-grid {
        grid-template-columns: 1fr;
        padding: 40px 20px
    }

    .lp-det .sidebar {
        position: static
    }

    .lp-det .stats-row {
        padding: 0 20px;
        grid-template-columns: 1fr
    }

    .lp-det .stat-cell {
        border-right: none;
        border-bottom: 1px solid #d2babb26
    }

    .lp-det .prog-area {
        padding: 40px 20px
    }

    .lp-det .steps-area {
        padding: 40px 20px
    }

    .lp-det .steps-track {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .lp-det .steps-track::before {
        display: none
    }

    .lp-det .three-col {
        grid-template-columns: 1fr;
        padding: 40px 20px
    }

    .lp-det .col-center {
        width: 100%
    }
}

@media (max-width: 480px) {
    .lp-det .cover-h {
        font-size: 22px
    }

    .lp-det .stat-num {
        font-size: 22px
    }

    .lp-det .steps-track {
        grid-template-columns: 1fr
    }

    .lp-det .price-amount {
        font-size: 22px
    }
}

@media (min-width: 1440px) {
    .lp-det .body-grid {
        grid-template-columns: 1fr 420px
    }
}

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

.lp-prog .pg-band {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px
}

@keyframes blurIn {
    from {
        filter: blur(8px);
        opacity: 0
    }

    to {
        filter: blur(0);
        opacity: 1
    }
}

.lp-prog .reveal-1 {
    animation: blurIn .4s cubic-bezier(0.4, 0, 0.2, 1) both
}

.lp-prog .reveal-2 {
    animation: blurIn .5s cubic-bezier(0.4, 0, 0.2, 1) .12s both
}

.lp-prog .reveal-3 {
    animation: blurIn .55s cubic-bezier(0.4, 0, 0.2, 1) .22s both
}

.lp-prog .split-top {
    display: grid;
    grid-template-columns: 40% 60%;
    min-height: 480px;
    position: relative
}

.lp-prog .split-img-side {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 48px 0
}

.lp-prog .split-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) brightness(0.92)
}

.lp-prog .split-img-side::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(143deg, #b6638f47 0%, transparent 70%);
    pointer-events: none
}

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

.lp-prog .split-text-side {
    padding: 80px 80px 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.lp-prog .blob-a {
    position: absolute;
    width: 320px;
    height: 260px;
    background: linear-gradient(143deg, #b6638f21, #d2babb17);
    border-radius: 48px;
    top: -40px;
    right: -60px;
    filter: blur(40px);
    pointer-events: none
}

.lp-prog .blob-b {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(143deg, #d2babb26, transparent);
    border-radius: 48px;
    bottom: 20px;
    left: 20px;
    filter: blur(30px);
    pointer-events: none
}

.lp-prog .serif-strokes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px
}

.lp-prog .serif-strokes span {
    display: block;
    height: 2px;
    background: #B6638F;
    border-radius: 8px
}

.lp-prog .serif-strokes span:nth-child(1) {
    width: 40px
}

.lp-prog .serif-strokes span:nth-child(2) {
    width: 28px;
    opacity: .6
}

.lp-prog .serif-strokes span:nth-child(3) {
    width: 18px;
    opacity: .35
}

.lp-prog .hero-kicker {
    font-size: 15px;
    letter-spacing: .12em;
    color: #B6638F;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3
}

.lp-prog .hero-h1 {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1a0d14;
    margin-bottom: 20px;
    font-weight: 800
}

.lp-prog .hero-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #3d2233;
    max-width: 480px;
    margin-bottom: 40px
}

.lp-prog .pull-quote {
    border-top: 2px solid #D2BABB;
    padding-top: 20px;
    font-size: 22px;
    line-height: 1.3;
    color: #B6638F;
    font-style: italic;
    letter-spacing: -.01em;
    max-width: 420px
}

.lp-prog .curve-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-top: -2px
}

.lp-prog .curve-div svg {
    display: block;
    width: 100%
}

.lp-prog .grid-strip {
    background: #F0ECEC;
    padding: 80px 0;
    position: relative
}

.lp-prog .grid-strip-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px
}

.lp-prog .strip-heading {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: #1a0d14;
    font-weight: 800;
    margin-bottom: 10px
}

.lp-prog .strip-sub {
    font-size: 18px;
    line-height: 1.5;
    color: #3d2233;
    margin-bottom: 40px
}

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

.lp-prog .prog-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: box-shadow .28s ease-in-out, transform .25s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: inherit;
    position: relative
}

.lp-prog .prog-card:hover {
    box-shadow: 2px 10px 48px 0 #b6638f21;
    transform: translateY(-4px)
}

.lp-prog .prog-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(135deg, #b6638f12 0px, #b6638f12 2px, transparent 2px, transparent 12px);
    opacity: 0;
    transition: opacity .28s ease-in-out;
    pointer-events: none;
    border-radius: 8px
}

.lp-prog .prog-card:hover::after {
    opacity: 1
}

.lp-prog .card-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    flex-shrink: 0
}

.lp-prog .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

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

.lp-prog .card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(143deg, #b6638f2e 0%, transparent 60%);
    pointer-events: none
}

.lp-prog .card-level {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #B6638F;
    color: #fff;
    font-size: 15px;
    padding: 4px 12px;
    border-radius: 36px;
    letter-spacing: .06em;
    z-index: 1
}

.lp-prog .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px
}

.lp-prog .card-title {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a0d14;
    letter-spacing: -.01em
}

.lp-prog .card-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #4a2f3d;
    flex: 1
}

.lp-prog .card-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #F0ECEC
}

.lp-prog .meta-chip {
    font-size: 15px;
    color: #5a3a4a;
    background: #F0ECEC;
    border-radius: 8px;
    padding: 4px 10px;
    line-height: 1.3
}

.lp-prog .card-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px 20px
}

.lp-prog .card-price {
    font-size: 22px;
    font-weight: 800;
    color: #B6638F;
    letter-spacing: -.02em;
    line-height: 1.1
}

.lp-prog .card-seats {
    font-size: 15px;
    color: #6b3a52;
    line-height: 1.3
}

.lp-prog .card-cta {
    display: inline-block;
    background: #B6638F;
    color: #fff;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .04em;
    transition: background .22s ease-in-out, transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-prog .card-cta:hover {
    background: #9a4f78;
    transform: scale(1.04)
}

.lp-prog .steps-strip {
    background: #fff;
    padding: 80px 0 60px
}

.lp-prog .steps-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 38% 62%;
    gap: 80px;
    align-items: start
}

.lp-prog .steps-label {
    font-size: 15px;
    letter-spacing: .1em;
    color: #B6638F;
    text-transform: uppercase;
    margin-bottom: 20px
}

.lp-prog .steps-h2 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.025em;
    color: #1a0d14;
    margin-bottom: 20px
}

.lp-prog .steps-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #3d2233
}

.lp-prog .step-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 20px
}

.lp-prog .step-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    position: relative;
    padding-bottom: 40px
}

.lp-prog .step-item:last-child {
    padding-bottom: 0
}

.lp-prog .step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.lp-prog .step-num {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    position: relative;
    z-index: 1
}

.lp-prog .step-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, #D2BABB, transparent);
    margin-top: 6px
}

.lp-prog .step-item:last-child .step-line {
    display: none
}

.lp-prog .step-content {
    padding-top: 10px
}

.lp-prog .step-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a0d14;
    line-height: 1.3;
    margin-bottom: 10px;
    letter-spacing: -.01em
}

.lp-prog .step-text {
    font-size: 15px;
    line-height: 1.7;
    color: #4a2f3d
}

.lp-prog .accent-band {
    background: linear-gradient(143deg, #B6638F 0%, #D2BABB 60%, #F0ECEC 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden
}

.lp-prog .accent-band-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center
}

.lp-prog .accent-stat {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff2e;
    border-radius: 8px;
    backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 0 #fff6 2px 7px 22px 0 #b6638f17;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.lp-prog .accent-stat:hover {
    transform: translateY(-4px)
}

.lp-prog .stat-val {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #fff;
    display: block
}

.lp-prog .stat-desc {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffffe0;
    margin-top: 10px;
    display: block
}

.lp-prog .faq-strip {
    background: #F0ECEC;
    padding: 80px 0
}

.lp-prog .faq-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.lp-prog .faq-heading {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.025em;
    color: #1a0d14;
    margin-bottom: 20px
}

.lp-prog .faq-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #3d2233
}

.lp-prog .faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.lp-prog .faq-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 3px 6px 0 #b6638f0f
}

.lp-prog .faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #1a0d14;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
    transition: color .22s ease-in-out
}

.lp-prog .faq-q:hover {
    color: #B6638F
}

.lp-prog .faq-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative
}

.lp-prog .faq-icon::before,
.lp-prog .faq-icon::after {
    content: '';
    position: absolute;
    background: #B6638F;
    border-radius: 8px;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1), opacity .28s ease-in-out
}

.lp-prog .faq-icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.lp-prog .faq-icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)
}

.lp-prog .faq-item.open .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0
}

.lp-prog .faq-ans {
    display: none;
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: #4a2f3d
}

.lp-prog .faq-item.open .faq-ans {
    display: block
}

@media (max-width: 960px) {
    .lp-prog .split-top {
        grid-template-columns: 1fr
    }

    .lp-prog .split-img-side {
        height: 300px;
        border-radius: 0 0 48px 48px
    }

    .lp-prog .split-text-side {
        padding: 40px
    }

    .lp-prog .hero-h1 {
        font-size: 58px
    }

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

    .lp-prog .steps-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lp-prog .steps-h2 {
        font-size: 40px
    }

    .lp-prog .accent-band-inner {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .lp-prog .faq-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lp-prog .faq-heading {
        font-size: 40px
    }

    .lp-prog .strip-heading {
        font-size: 40px
    }
}

@media (max-width: 480px) {

    .lp-prog .pg-band,
    .lp-prog .grid-strip-inner,
    .lp-prog .steps-inner,
    .lp-prog .accent-band-inner,
    .lp-prog .faq-inner {
        padding: 0 20px
    }

    .lp-prog .split-text-side {
        padding: 40px 20px
    }

    .lp-prog .hero-h1 {
        font-size: 40px
    }

    .lp-prog .prog-grid {
        grid-template-columns: 1fr
    }

    .lp-prog .strip-heading,
    .lp-prog .steps-h2,
    .lp-prog .faq-heading {
        font-size: 32px
    }

    .lp-prog .stat-val {
        font-size: 40px
    }
}

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

.abt-pg ::selection {
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #1a0a12
}

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

.abt-hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    min-height: 420px;
    background: linear-gradient(143deg, #2a0f1c 0%, #4a1a30 60%, #B6638F 100%);
    position: relative
}

.abt-hero__dot-grid {
    position: absolute;
    inset: 0;
    width: 55%;
    background-image: radial-gradient(circle, #b6638f40 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none
}

.abt-hero__text {
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1
}

.abt-hero__label {
    font-size: 15px;
    letter-spacing: .12em;
    color: #D2BABB;
    opacity: .85;
    text-transform: uppercase
}

.abt-hero__h1 {
    font-size: 72px;
    line-height: 1.1;
    letter-spacing: -.03em;
    font-weight: 800;
    color: #F0ECEC;
    margin: 0;
    position: relative;
    display: inline-block;
    overflow: hidden
}

.abt-hero__h1-main,
.abt-hero__h1-alt {
    display: block;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), opacity .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-hero__h1-alt {
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(100%);
    opacity: 0;
    background: linear-gradient(143deg, #D2BABB, #B6638F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap
}

.abt-hero__h1:hover .abt-hero__h1-main {
    transform: translateY(-100%);
    opacity: 0
}

.abt-hero__h1:hover .abt-hero__h1-alt {
    transform: translateY(0);
    opacity: 1
}

.abt-hero__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #F0ECEC;
    text-decoration: none;
    border: 1px solid #d2babb59;
    padding: 10px 20px;
    border-radius: 8px;
    width: fit-content;
    transition: background .25s ease-in-out, border-color .25s ease-in-out
}

.abt-hero__link:hover {
    background: #b6638f33;
    border-color: #D2BABB
}

.abt-hero__img-col {
    position: relative;
    overflow: hidden
}

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

.abt-hero__img-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #2a0f1c 0%, transparent 45%);
    pointer-events: none
}

.abt-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 419px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent #b6638f4d;
    pointer-events: none
}

.abt-story {
    background: #F0ECEC;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative
}

.abt-story::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent #D2BABB transparent transparent;
    pointer-events: none
}

.abt-story__img-wrap {
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 2px 10px 48px 0 #b6638f21;
    aspect-ratio: 4/3
}

.abt-story__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-story__img-wrap:hover img {
    transform: scale(1.04)
}

.abt-story__copy {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.abt-story__h2 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #2a0f1c;
    margin: 0
}

.abt-story__accent {
    display: inline-block;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-story__p {
    font-size: 18px;
    line-height: 1.7;
    color: #3d1a28;
    margin: 0
}

.abt-story__stat-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-top: 20px
}

.abt-story__ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px
}

.abt-ring-svg {
    width: 88px;
    height: 88px
}

.abt-ring-svg circle.track {
    fill: none;
    stroke: #D2BABB;
    stroke-width: 6;
    opacity: .3
}

.abt-ring-svg circle.fill {
    fill: none;
    stroke: #B6638F;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-pg .abt-ring-svg circle.fill.animated {
    stroke-dashoffset: var(--offset)
}

.abt-ring-val {
    font-size: 22px;
    font-weight: 700;
    color: #2a0f1c;
    line-height: 1.3
}

.abt-ring-lbl {
    font-size: 15px;
    color: #6b3050;
    line-height: 1.3;
    text-align: center
}

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

.abt-team__hd {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px
}

.abt-team__h2 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #2a0f1c;
    margin: 0
}

.abt-team__sub {
    font-size: 18px;
    line-height: 1.5;
    color: #5a2a3c;
    max-width: 420px;
    margin: 0
}

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

.abt-person {
    border-radius: 36px;
    background: #F0ECEC;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    transition: box-shadow .28s ease-in-out, transform .28s ease-in-out
}

.abt-person:hover {
    box-shadow: 2px 7px 22px 0 #b6638f17;
    transform: translateY(-4px)
}

.abt-person__img-wrap {
    border-radius: 36px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 2px 7px 22px 0 #b6638f17
}

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

.abt-person__name {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #2a0f1c;
    margin: 10px 0 0
}

.abt-person__role {
    font-size: 15px;
    line-height: 1.3;
    color: #B6638F;
    font-weight: 600;
    letter-spacing: .06em
}

.abt-person__bio {
    font-size: 15px;
    line-height: 1.7;
    color: #4a2030;
    margin: 0
}

.abt-process {
    background: linear-gradient(143deg, #3d1a28 0%, #6b2040 100%);
    padding: 80px;
    position: relative;
    overflow: hidden
}

.abt-process__corner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 60px 60px 0 0;
    border-color: #b6638f33 transparent transparent;
    pointer-events: none
}

.abt-process__h2 {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #F0ECEC;
    margin: 0 0 40px
}

.abt-process__steps {
    display: flex;
    flex-direction: row;
    gap: 0;
    position: relative
}

.abt-process__steps::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 36px;
    right: 36px;
    height: 2px;
    background: linear-gradient(to right, #B6638F, #D2BABB, #B6638F);
    z-index: 0
}

.abt-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
    padding: 0 10px
}

.abt-step__num {
    width: 72px;
    height: 72px;
    border-radius: 36px;
    background: #B6638F;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    box-shadow: 2px 7px 22px 0 #b6638f4d inset 0 2px 8px #ffffff26;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s ease-in-out;
    flex-shrink: 0
}

.abt-step:hover .abt-step__num {
    transform: scale(1.12);
    box-shadow: 2px 10px 48px 0 #b6638f66 inset 0 2px 10px #fff3
}

.abt-step__body {
    text-align: center
}

.abt-step__h4 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #F0ECEC;
    margin: 0 0 10px
}

.abt-step__p {
    font-size: 15px;
    line-height: 1.7;
    color: #D2BABB;
    margin: 0
}

@keyframes elasticIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95)
    }

    60% {
        opacity: 1;
        transform: translateY(-8px) scale(1.02)
    }

    80% {
        transform: translateY(4px) scale(0.99)
    }

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

.abt-hero__text {
    animation: elasticIn .7s cubic-bezier(0.4, 0, 0.2, 1) both
}

.abt-hero__img-col {
    animation: elasticIn .85s .15s cubic-bezier(0.4, 0, 0.2, 1) both
}

.abt-story__img-wrap {
    animation: elasticIn .6s .1s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-play-state: paused
}

.abt-story__copy {
    animation: elasticIn .6s .25s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-play-state: paused
}

.abt-person {
    animation: elasticIn .55s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-play-state: paused
}

.abt-step {
    animation: elasticIn .5s cubic-bezier(0.4, 0, 0.2, 1) both;
    animation-play-state: paused
}

.abt-pg .in-view {
    animation-play-state: running
}

@media (max-width: 960px) {
    .abt-hero {
        grid-template-columns: 1fr
    }

    .abt-hero__img-col {
        height: 280px
    }

    .abt-hero__text {
        padding: 40px
    }

    .abt-hero__h1 {
        font-size: 58px
    }

    .abt-story {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px
    }

    .abt-story__h2 {
        font-size: 40px
    }

    .abt-team {
        padding: 40px
    }

    .abt-team__h2 {
        font-size: 40px
    }

    .abt-team__grid {
        grid-template-columns: 1fr 1fr
    }

    .abt-process {
        padding: 40px
    }

    .abt-process__h2 {
        font-size: 40px
    }

    .abt-process__steps {
        flex-direction: column;
        gap: 20px
    }

    .abt-process__steps::before {
        top: 0;
        bottom: 0;
        left: 36px;
        right: auto;
        width: 2px;
        height: auto
    }

    .abt-step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left
    }

    .abt-step__body {
        text-align: left
    }
}

@media (max-width: 480px) {
    .abt-hero__text {
        padding: 40px 20px
    }

    .abt-hero__h1 {
        font-size: 40px
    }

    .abt-story {
        padding: 40px 20px
    }

    .abt-story__h2 {
        font-size: 36px
    }

    .abt-story__stat-row {
        gap: 20px
    }

    .abt-team {
        padding: 40px 20px
    }

    .abt-team__hd {
        flex-direction: column;
        align-items: flex-start
    }

    .abt-team__grid {
        grid-template-columns: 1fr
    }

    .abt-process {
        padding: 40px 20px
    }

    .abt-process__h2 {
        font-size: 36px
    }
}

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

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

.ctc-pg ::selection {
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #1a0010
}

.ctc-pg .upper-zone {
    max-width: 1600px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.ctc-pg .zone-left {
    position: relative
}

.ctc-pg .math-bg {
    position: absolute;
    top: -20px;
    right: -40px;
    font-size: 220px;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1.5px #D2BABB;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    opacity: .35
}

.ctc-pg .zone-left-inner {
    position: relative;
    z-index: 1
}

.ctc-pg .pg-label {
    font-size: 15px;
    letter-spacing: .12em;
    color: #B6638F;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block
}

.ctc-pg .pg-heading {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #1b0d14;
    font-weight: 800;
    margin: 0 0 20px
}

.ctc-pg .pg-sub {
    font-size: 18px;
    line-height: 1.7;
    color: #3d2030;
    margin: 0 0 40px;
    max-width: 420px
}

.ctc-pg .contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ctc-pg .c-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #F0ECEC;
    border-radius: 8px;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    transition: box-shadow .25s ease-in-out, transform .25s ease-in-out;
    animation: settle .4s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ctc-pg .c-card:nth-child(2) {
    animation-delay: .08s
}

.ctc-pg .c-card:nth-child(3) {
    animation-delay: .16s
}

@keyframes settle {
    from {
        opacity: 0;
        transform: scale(0.95)
    }

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

.ctc-pg .c-card:hover {
    box-shadow: 2px 7px 22px 0 #b6638f17;
    transform: translateY(-2px)
}

.ctc-pg .c-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctc-pg .c-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff
}

.ctc-pg .c-info {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ctc-pg .c-info-label {
    font-size: 15px;
    color: #8a5570;
    letter-spacing: .06em;
    text-transform: uppercase
}

.ctc-pg .c-info-val {
    font-size: 18px;
    line-height: 1.3;
    color: #1b0d14;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease-in-out
}

.ctc-pg .c-info-val:hover {
    color: #B6638F
}

.ctc-pg .zone-right {
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 10px 48px 0 #b6638f21;
    padding: 40px;
    animation: settle .35s cubic-bezier(0.4, 0, 0.2, 1) .1s both
}

.ctc-pg .form-heading {
    font-size: 22px;
    line-height: 1.3;
    color: #1b0d14;
    font-weight: 700;
    margin: 0 0 10px
}

.ctc-pg .form-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #5a3347;
    margin: 0 0 40px
}

.ctc-pg .f-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px
}

.ctc-pg .f-label {
    font-size: 15px;
    color: #3d2030;
    font-weight: 600;
    letter-spacing: .03em
}

.ctc-pg .f-input {
    padding: 10px 20px;
    border: 1.5px solid #D2BABB;
    border-radius: 8px;
    font-size: 18px;
    color: #1b0d14;
    background: #fff;
    transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out;
    outline: none;
    width: 100%
}

.ctc-pg .f-input::placeholder {
    font-style: italic;
    opacity: .55;
    color: #8a5570
}

.ctc-pg .f-input:focus {
    border-color: #B6638F;
    box-shadow: inset 0 0 0 3px #b6638f14
}

.ctc-pg .radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px
}

.ctc-pg .radio-group-label {
    font-size: 15px;
    color: #3d2030;
    font-weight: 600;
    letter-spacing: .03em;
    margin-bottom: 10px;
    display: block
}

.ctc-pg .radio-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap
}

.ctc-pg .r-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1.5px solid #D2BABB;
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
    transition: border-color .25s ease-in-out, background .25s ease-in-out;
    flex: 1;
    min-width: 140px
}

.ctc-pg .r-opt:hover {
    border-color: #B6638F;
    background: #F0ECEC
}

.ctc-pg .r-opt input[type="radio"] {
    accent-color: #B6638F;
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.ctc-pg .r-opt-text {
    font-size: 15px;
    color: #1b0d14;
    line-height: 1.3
}

.ctc-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding: 20px;
    background: #F0ECEC;
    border-radius: 8px
}

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

.ctc-pg .privacy-text {
    font-size: 15px;
    line-height: 1.5;
    color: #3d2030
}

.ctc-pg .privacy-text a {
    color: #B6638F;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s ease-in-out
}

.ctc-pg .privacy-text a:hover {
    opacity: .75
}

.ctc-pg .submit-btn {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 7px 22px 0 #b6638f17;
    position: relative;
    overflow: hidden
}

.ctc-pg .submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff0;
    transition: background .25s ease-in-out;
    border-radius: 8px
}

.ctc-pg .submit-btn:hover {
    transform: scale(1.025);
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.ctc-pg .submit-btn:hover::before {
    background: #ffffff1a
}

.ctc-pg .submit-btn:focus {
    outline: 2px solid #B6638F;
    outline-offset: 3px
}

.ctc-pg .submit-btn:active {
    transform: scale(0.99)
}

.ctc-pg .lower-zone {
    background: #F0ECEC;
    padding: 80px 40px
}

.ctc-pg .lower-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 0.6fr;
    gap: 40px;
    align-items: center
}

.ctc-pg .img-col {
    position: relative;
    border-radius: 8px;
    overflow: hidden
}

.ctc-pg .img-col img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    box-shadow: 2px 7px 22px 0 #b6638f17
}

.ctc-pg .img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, #1b0d14a6, transparent);
    border-radius: 0 0 8px 8px;
    pointer-events: none
}

.ctc-pg .img-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600
}

.ctc-pg .mid-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
    border-left: none;
    position: relative
}

.ctc-pg .mid-col::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(143deg, #B6638F, transparent);
    border-radius: 36px
}

.ctc-pg .mid-heading {
    font-size: 22px;
    line-height: 1.3;
    color: #1b0d14;
    font-weight: 700;
    margin: 0
}

.ctc-pg .mid-body {
    font-size: 15px;
    line-height: 1.7;
    color: #3d2030;
    margin: 0
}

.ctc-pg .hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0
}

.ctc-pg .hours-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 15px;
    color: #3d2030;
    padding: 10px 0;
    border-bottom: 1px solid #D2BABB
}

.ctc-pg .hours-list li:last-child {
    border-bottom: none
}

.ctc-pg .h-day {
    font-weight: 600;
    color: #1b0d14
}

.ctc-pg .h-time {
    color: #B6638F
}

.ctc-pg .stat-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch
}

.ctc-pg .stat-item {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: settle .4s cubic-bezier(0.4, 0, 0.2, 1) both;
    transition: box-shadow .3s ease-in-out
}

.ctc-pg .stat-item:hover {
    box-shadow: 2px 7px 22px 0 #b6638f17
}

.ctc-pg .stat-num {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -.03em;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ctc-pg .stat-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #5a3347
}

@media (max-width: 960px) {
    .ctc-pg .upper-zone {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 20px
    }

    .ctc-pg .math-bg {
        font-size: 140px;
        opacity: .2
    }

    .ctc-pg .lower-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ctc-pg .lower-zone {
        padding: 40px 20px
    }

    .ctc-pg .stat-col {
        flex-direction: row;
        flex-wrap: wrap
    }

    .ctc-pg .stat-item {
        flex: 1;
        min-width: 140px
    }

    .ctc-pg .mid-col {
        padding-left: 20px
    }
}

@media (max-width: 480px) {
    .ctc-pg .pg-heading {
        font-size: 22px
    }

    .ctc-pg .zone-right {
        padding: 20px
    }

    .ctc-pg .radio-row {
        flex-direction: column
    }

    .ctc-pg .math-bg {
        display: none
    }

    .ctc-pg .stat-num {
        font-size: 22px
    }
}

@media (min-width: 1440px) {
    .ctc-pg .upper-zone {
        gap: 80px
    }
}

.spnsr {
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: clip
}

.spnsr ::selection {
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #1a0a11
}

.spnsr input::placeholder,
.spnsr textarea::placeholder {
    font-style: italic;
    opacity: .55
}

.spnsr .top-band {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 40px;
    padding: 80px 80px 40px;
    background: #fff;
    align-items: start
}

.spnsr .img-col {
    position: relative
}

.spnsr .img-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.spnsr .img-frame img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: saturate(1.3) hue-rotate(0deg) blur(3px);
    transition: filter .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.spnsr .img-frame:hover img {
    filter: saturate(1.1) blur(0px)
}

.spnsr .bracket-tl,
.spnsr .bracket-br {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none
}

.spnsr .bracket-tl {
    top: -8px;
    left: -8px;
    border-top: 2px solid #B6638F;
    border-left: 2px solid #B6638F;
    border-radius: 8px 0 0 0
}

.spnsr .bracket-br {
    bottom: -8px;
    right: -8px;
    border-bottom: 2px solid #B6638F;
    border-right: 2px solid #B6638F;
    border-radius: 0 0 8px 0
}

.spnsr .channel-shift {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(143deg, #b6638f2e 0%, transparent 60%);
    pointer-events: none
}

.spnsr .text-col {
    padding: 20px 0 0 20px
}

.spnsr .label-dot {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.spnsr .dot {
    width: 10px;
    height: 10px;
    border-radius: 48px;
    background: #B6638F;
    flex-shrink: 0
}

.spnsr .label-dot span {
    font-size: 15px;
    letter-spacing: .08em;
    color: #B6638F;
    font-weight: 600;
    text-transform: uppercase
}

.spnsr .pg-heading {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 800;
    color: #1a0510;
    margin-bottom: 20px
}

.spnsr .pg-heading span {
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.spnsr .lead-text {
    font-size: 18px;
    line-height: 1.7;
    color: #3a1a2a;
    max-width: 560px;
    margin-bottom: 40px
}

.spnsr .thesis-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.spnsr .thesis-list li {
    font-size: 15px;
    line-height: 1.5;
    color: #3a1a2a;
    padding: 10px 20px;
    background: #F0ECEC;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px
}

.spnsr .thesis-list li::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #B6638F;
    margin-top: 6px;
    flex-shrink: 0
}

.spnsr .divider-mono {
    text-align: center;
    padding: 20px 0;
    position: relative
}

.spnsr .divider-mono::before,
.spnsr .divider-mono::after {
    content: '';
    position: absolute;
    top: 50%;
    height: 1px;
    width: calc(50% - 40px);
    background: linear-gradient(143deg, #D2BABB, transparent)
}

.spnsr .divider-mono::before {
    left: 0
}

.spnsr .divider-mono::after {
    right: 0;
    transform: scaleX(-1)
}

.spnsr .mono-sym {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    color: #D2BABB;
    letter-spacing: -.03em;
    line-height: 1.1;
    width: 48px;
    height: 48px;
    border: 1px solid #D2BABB;
    border-radius: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.spnsr .formats-band {
    padding: 40px 80px 80px;
    background: linear-gradient(143deg, #F0ECEC 0%, #fff 100%)
}

.spnsr .formats-band .band-head {
    margin-bottom: 40px
}

.spnsr .formats-band .band-head h2 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a0510;
    letter-spacing: .01em
}

.spnsr .formats-band .band-head p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a2535;
    margin-top: 10px;
    max-width: 700px
}

.spnsr .formats-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    align-items: start
}

.spnsr .fmt-card {
    border-radius: 8px;
    padding: 40px;
    position: relative;
    transition: box-shadow .28s ease-in-out, transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.spnsr .fmt-card:hover {
    transform: translateY(-4px);
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.spnsr .fmt-card.wide {
    background: #1a0510;
    box-shadow: 2px 7px 22px 0 #b6638f17
}

.spnsr .fmt-card.mid {
    background: #fff;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    border: 1px solid #D2BABB
}

.spnsr .fmt-card.slim {
    background: #B6638F;
    box-shadow: 2px 7px 22px 0 #b6638f17
}

.spnsr .fmt-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px
}

.spnsr .fmt-tag .dot {
    flex-shrink: 0
}

.spnsr .fmt-card.wide .fmt-tag .dot {
    background: #B6638F
}

.spnsr .fmt-card.mid .fmt-tag .dot {
    background: #B6638F
}

.spnsr .fmt-card.slim .fmt-tag .dot {
    background: #fff
}

.spnsr .fmt-tag span {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase
}

.spnsr .fmt-card.wide .fmt-tag span {
    color: #D2BABB
}

.spnsr .fmt-card.mid .fmt-tag span {
    color: #B6638F
}

.spnsr .fmt-card.slim .fmt-tag span {
    color: #fff
}

.spnsr .fmt-card h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px
}

.spnsr .fmt-card.wide h3 {
    color: #fff
}

.spnsr .fmt-card.mid h3 {
    color: #1a0510
}

.spnsr .fmt-card.slim h3 {
    color: #fff
}

.spnsr .fmt-card p {
    font-size: 15px;
    line-height: 1.7
}

.spnsr .fmt-card.wide p {
    color: #D2BABB
}

.spnsr .fmt-card.mid p {
    color: #3a1a2a
}

.spnsr .fmt-card.slim p {
    color: #ffffffe0
}

.spnsr .fmt-detail {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.spnsr .fmt-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.5
}

.spnsr .fmt-card.wide .fmt-row {
    color: #F0ECEC
}

.spnsr .fmt-card.mid .fmt-row {
    color: #3a1a2a
}

.spnsr .fmt-card.slim .fmt-row {
    color: #fff
}

.spnsr .fmt-row-dot {
    width: 5px;
    height: 5px;
    border-radius: 48px;
    flex-shrink: 0
}

.spnsr .fmt-card.wide .fmt-row-dot {
    background: #B6638F
}

.spnsr .fmt-card.mid .fmt-row-dot {
    background: #B6638F
}

.spnsr .fmt-card.slim .fmt-row-dot {
    background: #ffffffb3
}

.spnsr .fmt-card.wide .corner-curve {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 0 8px 0
}

.spnsr .fmt-card.wide .corner-curve svg {
    display: block
}

.spnsr .contact-band {
    padding: 80px;
    background: #fff;
    position: relative
}

.spnsr .contact-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80px;
    right: 80px;
    height: 1px;
    background: linear-gradient(143deg, #B6638F, #D2BABB, transparent)
}

.spnsr .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.spnsr .contact-left h2 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a0510;
    letter-spacing: -.02em;
    margin-bottom: 20px
}

.spnsr .contact-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #3a1a2a;
    margin-bottom: 40px
}

.spnsr .contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.spnsr .contact-item {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.spnsr .contact-item-label {
    font-size: 15px;
    font-weight: 600;
    color: #B6638F;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px
}

.spnsr .contact-item-label .dot {
    flex-shrink: 0
}

.spnsr .contact-item-val {
    font-size: 18px;
    line-height: 1.5;
    color: #1a0510;
    font-weight: 500;
    padding-left: 20px
}

.spnsr .contact-item-val a {
    color: #1a0510;
    text-decoration: none;
    border-bottom: 1px solid #D2BABB;
    transition: color .25s ease-in-out, border-color .25s ease-in-out
}

.spnsr .contact-item-val a:hover {
    color: #B6638F;
    border-color: #B6638F
}

.spnsr .contact-right {
    padding: 40px;
    background: #F0ECEC;
    border-radius: 8px;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    position: relative
}

.spnsr .contact-right h3 {
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
    color: #1a0510;
    margin-bottom: 10px
}

.spnsr .contact-right .sub-note {
    font-size: 15px;
    line-height: 1.5;
    color: #4a2535;
    margin-bottom: 40px
}

.spnsr .info-rows {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.spnsr .info-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid #D2BABB
}

.spnsr .info-row:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.spnsr .info-row-key {
    font-size: 15px;
    font-weight: 600;
    color: #B6638F;
    line-height: 1.5
}

.spnsr .info-row-val {
    font-size: 15px;
    line-height: 1.7;
    color: #3a1a2a
}

.spnsr .corner-curve-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    pointer-events: none;
    overflow: hidden;
    border-radius: 0 8px 0 0
}

.spnsr .icon-spin {
    display: inline-block;
    animation: settle-spin 1.2s cubic-bezier(0.4, 0, 0.2, 1) .5s 1 forwards
}

@keyframes settle-spin {
    0% {
        transform: rotate(0deg)
    }

    70% {
        transform: rotate(380deg)
    }

    85% {
        transform: rotate(350deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

@media (max-width: 960px) {
    .spnsr .top-band {
        grid-template-columns: 1fr;
        padding: 40px 40px 20px;
        gap: 20px
    }

    .spnsr .img-frame img {
        height: 280px
    }

    .spnsr .pg-heading {
        font-size: 40px
    }

    .spnsr .formats-band {
        padding: 40px
    }

    .spnsr .formats-grid {
        grid-template-columns: 1fr
    }

    .spnsr .contact-band {
        padding: 40px
    }

    .spnsr .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .spnsr .contact-left h2 {
        font-size: 40px
    }
}

@media (max-width: 480px) {
    .spnsr .top-band {
        padding: 20px 20px 10px
    }

    .spnsr .pg-heading {
        font-size: 30px
    }

    .spnsr .formats-band {
        padding: 20px
    }

    .spnsr .contact-band {
        padding: 20px
    }

    .spnsr .fmt-card {
        padding: 20px
    }

    .spnsr .contact-right {
        padding: 20px
    }

    .spnsr .info-row {
        grid-template-columns: 1fr;
        gap: 10px
    }
}

.rt {
    max-width: 1600px;
    margin: 0 auto;
    overflow-x: clip;
    background: #fff
}

.rt ::selection {
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #1a0010;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #1a0010
}

.rt .t-split {
    display: grid;
    grid-template-columns: 60fr 40fr;
    min-height: 520px
}

.rt .t-left {
    background: #B6638F;
    padding: 80px 40px 40px 80px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.rt .t-left::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-top: 2px solid #ffffff80;
    border-left: 2px solid #ffffff80;
    border-radius: 8px 0 0 0;
    pointer-events: none
}

.rt .t-left::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-bottom: 2px solid #ffffff4d;
    border-right: 2px solid #ffffff4d;
    border-radius: 0 0 8px 0;
    pointer-events: none
}

.rt .t-num {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #ffffff2e;
    display: block;
    margin-bottom: 10px
}

.rt .t-head {
    font-size: 58px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #fff;
    margin: 0 0 20px
}

.rt .t-sub {
    font-size: 18px;
    line-height: 1.5;
    color: #ffffffd1;
    max-width: 460px;
    margin: 0
}

.rt .t-right {
    background: #D2BABB;
    position: relative;
    overflow: hidden
}

.rt .t-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.rt .t-img-bracket::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-top: 2px solid #fff9;
    border-left: 2px solid #fff9;
    border-radius: 8px 0 0 0;
    z-index: 2;
    pointer-events: none
}

.rt .t-img-bracket::after {
    content: "";
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-bottom: 2px solid #fff6;
    border-right: 2px solid #fff6;
    border-radius: 0 0 8px 0;
    z-index: 2;
    pointer-events: none
}

.rt .proof-belt {
    background: #F0ECEC;
    padding: 40px 80px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr 2px 1fr;
    gap: 40px;
    align-items: center
}

.rt .proof-div {
    background: linear-gradient(143deg, #B6638F, transparent);
    width: 2px;
    height: 80px;
    border-radius: 8px
}

.rt .proof-item {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.rt .proof-kpi {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.rt .proof-label {
    font-size: 15px;
    line-height: 1.5;
    color: #3d2030;
    letter-spacing: .02em
}

.rt .proof-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #5a3d4a
}

.rt .voices {
    display: grid;
    grid-template-columns: 40fr 60fr;
    background: #fff
}

.rt .voices-img {
    position: relative;
    overflow: hidden
}

.rt .voices-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 2px 7px 22px 0 #b6638f17
}

.rt .voices-list {
    padding: 80px 80px 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.rt .voices-eyebrow {
    font-size: 15px;
    letter-spacing: .12em;
    color: #B6638F;
    text-transform: uppercase;
    font-weight: 700
}

.rt .voices-head {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #2a1520;
    margin: 0
}

.rt .voice-card {
    background: #F0ECEC;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    transition: box-shadow .25s ease-in-out, transform .25s ease-in-out
}

.rt .voice-card:hover {
    box-shadow: 2px 7px 22px 0 #b6638f17;
    transform: translateY(-2px) scale(1.01)
}

.rt .voice-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #3d2030;
    margin: 0 0 10px;
    font-style: italic
}

.rt .voice-who {
    font-size: 15px;
    font-weight: 700;
    color: #B6638F;
    letter-spacing: .04em
}

.rt .voice-role {
    font-size: 15px;
    color: #7a5060
}

.rt .mirror {
    background: #B6638F;
    padding: 80px;
    position: relative;
    overflow: hidden
}

.rt .mirror-bg-anim {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 40%, #ffffff14 0%, transparent 60%);
    animation: mirrorlight 8s ease-in-out infinite alternate;
    pointer-events: none
}

@keyframes mirrorlight {
    0% {
        background: radial-gradient(circle at 20% 40%, #ffffff14 0%, transparent 60%)
    }

    100% {
        background: radial-gradient(circle at 75% 65%, #ffffff1a 0%, transparent 55%)
    }
}

.rt .mirror-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1
}

.rt .mirror-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rt .mirror-head {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin: 0;
    letter-spacing: -.3px
}

.rt .mirror-body {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffd9;
    margin: 0
}

.rt .mirror-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.rt .mirror-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.rt .mirror-img:hover img {
    transform: scale(1.04)
}

.rt .mirror-scenario {
    background: #ffffff1f;
    border-radius: 8px;
    padding: 20px;
    box-shadow: inset 0 1px 8px 0 #ffffff1a
}

.rt .mirror-scenario p {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffe6;
    margin: 0
}

.rt .invest {
    padding: 80px;
    background: #fff;
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 40px;
    align-items: start
}

.rt .invest-left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rt .invest-head {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #2a1520;
    margin: 0
}

.rt .invest-body {
    font-size: 18px;
    line-height: 1.5;
    color: #5a3d4a;
    margin: 0
}

.rt .invest-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0
}

.rt .invest-list li {
    font-size: 15px;
    line-height: 1.5;
    color: #3d2030;
    padding: 10px 20px;
    background: #F0ECEC;
    border-radius: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    box-shadow: 2px 3px 6px 0 #b6638f0f;
    transition: background .25s ease-in-out
}

.rt .invest-list li:hover {
    background: #D2BABB
}

.rt .invest-dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #B6638F;
    flex-shrink: 0
}

.rt .invest-right {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.rt .invest-card {
    background: #F0ECEC;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    position: relative
}

.rt .invest-card::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    width: 28px;
    height: 28px;
    border-top: 2px solid #B6638F;
    border-left: 2px solid #B6638F;
    border-radius: 8px 0 0 0;
    pointer-events: none
}

.rt .invest-card::after {
    content: "";
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-bottom: 2px solid #D2BABB;
    border-right: 2px solid #D2BABB;
    border-radius: 0 0 8px 0;
    pointer-events: none
}

.rt .invest-price-label {
    font-size: 15px;
    color: #7a5060;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 10px
}

.rt .invest-price {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 10px
}

.rt .invest-price-note {
    font-size: 15px;
    line-height: 1.5;
    color: #5a3d4a;
    margin: 0
}

.rt .invest-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #B6638F;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: .04em;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    transition: background .28s cubic-bezier(0.4, 0, 0.2, 1), transform .18s ease-in-out, box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    width: 100%
}

.rt .invest-cta:hover {
    background: #9e4d79;
    transform: scale(1.03);
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.rt .invest-cta:focus {
    outline: 3px solid #B6638F;
    outline-offset: 3px
}

.rt .divider-lr {
    height: 2px;
    background: linear-gradient(to right, #B6638F, transparent);
    border: none;
    margin: 0
}

@media (max-width: 960px) {
    .rt .t-split {
        grid-template-columns: 1fr
    }

    .rt .t-right {
        height: 320px
    }

    .rt .t-left {
        padding: 80px 40px 40px
    }

    .rt .t-head {
        font-size: 40px
    }

    .rt .proof-belt {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 20px
    }

    .rt .proof-div {
        width: 80px;
        height: 2px
    }

    .rt .voices {
        grid-template-columns: 1fr
    }

    .rt .voices-img {
        height: 280px
    }

    .rt .voices-list {
        padding: 40px
    }

    .rt .mirror-inner {
        grid-template-columns: 1fr
    }

    .rt .mirror {
        padding: 40px
    }

    .rt .invest {
        grid-template-columns: 1fr;
        padding: 40px
    }

    .rt .invest-head {
        font-size: 40px
    }
}

@media (max-width: 480px) {
    .rt .t-head {
        font-size: 32px
    }

    .rt .t-left {
        padding: 40px 20px 20px
    }

    .rt .proof-belt {
        padding: 20px
    }

    .rt .voices-list {
        padding: 20px
    }

    .rt .mirror {
        padding: 20px
    }

    .rt .invest {
        padding: 20px
    }

    .rt .invest-head {
        font-size: 28px
    }
}

.success-pg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #F0ECEC
}

.success-pg .success-card {
    background: #fff;
    border-radius: 48px;
    box-shadow: 2px 10px 48px 0 #b6638f21;
    padding: 80px;
    max-width: 640px;
    width: 100%;
    text-align: center
}

.success-pg .success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 40px;
    display: block
}

.success-pg .success-heading {
    font-size: 58px;
    line-height: 1.1;
    letter-spacing: -.02em;
    font-weight: 700;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px
}

.success-pg .success-sub {
    font-size: 18px;
    line-height: 1.5;
    color: #3d2b35;
    margin-bottom: 40px
}

.success-pg .success-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    border-radius: 8px;
    margin: 0 auto 40px
}

.success-pg .success-note {
    font-size: 15px;
    line-height: 1.7;
    color: #5c4450;
    margin-bottom: 40px
}

.success-pg .success-btn {
    display: inline-block;
    background: linear-gradient(143deg, #B6638F, #D2BABB);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 20px 40px;
    border-radius: 36px;
    text-decoration: none;
    box-shadow: 2px 7px 22px 0 #b6638f17;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s ease-in-out
}

.success-pg .success-btn:hover {
    transform: scale(1.04);
    box-shadow: 2px 10px 48px 0 #b6638f21
}

.success-pg .success-btn:focus {
    outline: 2px solid #B6638F;
    outline-offset: 4px
}

@media (max-width: 960px) {
    .success-pg .success-card {
        padding: 80px 40px
    }

    .success-pg .success-heading {
        font-size: 58px
    }
}

@media (max-width: 480px) {
    .success-pg {
        padding: 40px 10px
    }

    .success-pg .success-card {
        padding: 40px 20px;
        border-radius: 36px
    }

    .success-pg .success-heading {
        font-size: 22px
    }
}