*,
*::before,
*::after {
    content: none;
    box-sizing: border-box;
}

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

.sitehead {
    position: relative;
    background: linear-gradient(160deg, #fff 0%, #EFE2ED 55%, #DEB4C6 100%);
    border-bottom: 1px solid #DEB4C6;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    overflow: hidden;
}

.sitehead::before {
    display: block;
    position: absolute;
    top: -32px;
    right: -64px;
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, rgba(195, 71, 179, 0.08) 0%, rgba(222, 180, 198, 0.12) 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.headtop {
    max-width: 1366px;
    margin: 0 auto;
    padding: 32px 32px 16px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.brandpill {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    padding: 8px 32px;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07), -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    margin-bottom: 8px;
}

.brandlogo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #EFE2ED;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    flex-shrink: 0;
}

.brandlogo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.brandname {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #2d0a28;
    margin: 0;
}

.branddesc {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: #6a1f62;
    margin: 0;
    font-style: italic;
    text-align: center;
    padding-bottom: 8px;
}

.headnav {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px 16px 32px;
    position: relative;
    z-index: 1;
}

.navlist {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 8px 0;
    border-top: 1px solid rgba(195, 71, 179, 0.15);
}

.navlist li {
    display: flex;
}

.navlist a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #2d0a28;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.navlist a:hover {
    background-color: rgba(195, 71, 179, 0.1);
    color: #C347B3;
}

.navlist a:focus {
    outline: 3px solid;
    outline-color: #C347B3;
    outline-offset: 2px;
}

.navlist .active a {
    background: #C347B3;
    color: #fff;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .headtop {
        padding: 16px 16px 8px 16px;
    }

    .headnav {
        padding: 0 16px 16px 16px;
    }

    .brandpill {
        padding: 8px 16px;
    }

    .brandname {
        font-size: 23px;
    }

    .navlist a {
        font-size: 13px;
        padding: 8px 8px;
    }
}

@media (max-width: 360px) {
    .brandname {
        font-size: 18px;
    }

    .navlist {
        gap: 4px;
    }

    .navlist a {
        font-size: 13px;
        padding: 8px 4px;
    }
}

.sitefooter {
    background: linear-gradient(170deg, #2d0a28 0%, #1a0618 100%);
    color: #EFE2ED;
    position: relative;
}

.footergrid {
    max-width: 1366px;
    margin: 0 auto;
    padding: 64px 32px 32px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
}

.footercell {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footercell.tall {
    grid-row: span 2;
}

.footerlogosep {
    width: 100%;
    border: none;
    border-top: 1px solid rgba(222, 180, 198, 0.25);
    margin: 0 0 16px 0;
}

.footerlogobox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.footerlogoimg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #EFE2ED;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07), 0 0 0 2px rgba(195, 71, 179, 0.18);
    flex-shrink: 0;
}

.footerlogoimg img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.footerbrand {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.1;
    color: #fff;
}

.footertagline {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: #DEB4C6;
    font-style: italic;
}

.footercontact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.contactitem {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #EFE2ED;
}

.contactitem svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contactitem a {
    color: #DEB4C6;
    text-decoration: none;
    transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.contactitem a:hover {
    color: #fff;
}

.contactitem a:focus {
    outline: 2px solid #C347B3;
    outline-offset: 2px;
    border-radius: 1px;
}

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

.footernavlabel {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: #C347B3;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footernav a {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #EFE2ED;
    text-decoration: none;
    border-radius: 4px;
    padding: 4px 0;
    transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footernav a:hover {
    color: #C347B3;
}

.footernav a:focus {
    outline: 2px solid #C347B3;
    outline-offset: 2px;
}

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

.footerlegal a {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #DEB4C6;
    text-decoration: underline;
    border-radius: 1px;
    transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    display: flex;
    align-items: center;
}

.footerlegal a:hover {
    color: #fff;
}

.footerlegal a:focus {
    outline: 2px solid #C347B3;
    outline-offset: 2px;
}

.footerbottom {
    max-width: 1366px;
    margin: 0 auto;
    padding: 16px 32px 32px 32px;
    border-top: 1px solid rgba(222, 180, 198, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.copyright {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: rgba(239, 226, 237, 0.6);
}

.footeraddr {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: rgba(239, 226, 237, 0.5);
    font-style: normal;
}

@media (max-width: 1024px) {
    .footergrid {
        grid-template-columns: 1fr 1fr;
        padding: 32px 32px 32px 32px;
    }

    .footercell.tall {
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .footergrid {
        grid-template-columns: 1fr;
        padding: 32px 16px 16px 16px;
        gap: 32px;
    }

    .footerbottom {
        padding: 16px 16px 32px 16px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 360px) {
    .footergrid {
        padding: 16px 8px 8px 8px;
        gap: 16px;
    }

    .footerbottom {
        padding: 16px 8px 16px 8px;
    }
}

.cookiebar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: #2d0a28;
    border-top: 1px solid rgba(195, 71, 179, 0.3);
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.cookieinner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: flex-start;
    gap: 32px;
    flex-wrap: wrap;
}

.cookietextblock {
    flex: 1;
    min-width: 0;
}

.cookieheadline {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #fff;
    margin: 0 0 8px 0;
}

.cookiedesc {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #DEB4C6;
    margin: 0 0 8px 0;
}

.cookiedatalist {
    list-style: none;
    margin: 0 0 8px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cookiedatalist li {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #EFE2ED;
    padding-left: 16px;
    position: relative;
}

.cookiedatalist li::before {
    display: block;
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: #C347B3;
    border-radius: 50%;
}

.cookiesettingsbtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #DEB4C6;
    text-decoration: underline;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.cookiesettingsbtn:hover {
    color: #fff;
}

.cookiesettingsbtn:focus {
    outline: 2px solid #C347B3;
    outline-offset: 2px;
    border-radius: 1px;
}

.cookietoggles {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(195, 71, 179, 0.2);
}

.togglerow {
    display: flex;
    align-items: center;
    gap: 8px;
}

.togglerow label {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #EFE2ED;
    cursor: pointer;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.togglerow input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #C347B3;
    cursor: pointer;
}

.cookieactions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
    flex-shrink: 0;
}

.cookieacceptbtn {
    background: #C347B3;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 8px 32px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    min-height: 44px;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookieacceptbtn:hover {
    background-color: #a83099;
}

.cookieacceptbtn:active {
    transform: scale(0.97);
}

.cookieacceptbtn:focus {
    outline: 2px solid #EFE2ED;
    outline-offset: 2px;
}

.cookierejectbtn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #DEB4C6;
    text-decoration: underline;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookierejectbtn:hover {
    color: #fff;
}

.cookierejectbtn:focus {
    outline: 2px solid #C347B3;
    outline-offset: 2px;
    border-radius: 1px;
}

@media (max-width: 640px) {
    .cookieinner {
        padding: 16px;
        flex-direction: column;
        gap: 16px;
    }

    .cookieactions {
        width: 100%;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .cookieacceptbtn {
        flex: 1;
    }
}

.text-policy {
    max-width: 1366px;
    margin: 0 auto;
    padding: 64px 32px;
    color: #2a1a27;
    line-height: 1.8;
    font-size: 15px;
    letter-spacing: 0.01em;
}

.text-policy h1 {
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #1e0f1b;
    margin-bottom: 32px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 1px solid #DEB4C6;
}

.text-policy h2 {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #1e0f1b;
    margin-top: 64px;
    margin-bottom: 16px;
}

.text-policy h3 {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: 0.015em;
    color: #2a1a27;
    margin-top: 32px;
    margin-bottom: 16px;
}

.text-policy h4 {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.015em;
    color: #2a1a27;
    margin-top: 32px;
    margin-bottom: 8px;
}

.text-policy h5 {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: #3d2438;
    text-transform: uppercase;
    margin-top: 32px;
    margin-bottom: 8px;
}

.text-policy h6 {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: #3d2438;
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 8px;
}

.text-policy strong,
.text-policy b {
    font-weight: 700;
    color: #1e0f1b;
}

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

.text-policy hr {
    border: none;
    border-top: 1px solid #EFE2ED;
    margin: 64px 0;
    height: 0;
}

.text-policy div {
    margin-bottom: 16px;
}

.text-policy div.notice {
    background-color: #EFE2ED;
    border-radius: 4px;
    padding: 16px 32px;
    margin: 32px 0;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
}

.text-policy div.highlight {
    background-color: #fff8fe;
    border-radius: 4px;
    padding: 16px 32px;
    margin: 32px 0;
    box-shadow: -1px 6px 22px 0 rgba(222, 180, 198, 0.09);
}

@media (max-width: 1024px) {
    .text-policy {
        padding: 64px 32px;
    }

    .text-policy h1 {
        font-size: 32px;
    }

    .text-policy h2 {
        font-size: 23px;
    }

    .text-policy h3 {
        font-size: 18px;
    }
}

@media (max-width: 640px) {
    .text-policy {
        padding: 32px 16px;
    }

    .text-policy h1 {
        font-size: 23px;
        margin-bottom: 16px;
    }

    .text-policy h2 {
        font-size: 18px;
        margin-top: 32px;
    }

    .text-policy h3 {
        font-size: 15px;
        margin-top: 32px;
    }

    .text-policy h4,
    .text-policy h5,
    .text-policy h6 {
        font-size: 13px;
    }

    .text-policy div.notice,
    .text-policy div.highlight {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .text-policy {
        padding: 32px 8px;
    }

    .text-policy h1 {
        font-size: 18px;
    }

    .text-policy h2 {
        font-size: 15px;
    }

    .text-policy h3,
    .text-policy h4,
    .text-policy h5,
    .text-policy h6 {
        font-size: 13px;
    }
}

.lprog {
    max-width: 100%;
    overflow-x: clip;
}

.lprog .inner-bound {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.lprog .titblock {
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
    position: relative;
}

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

.lprog .titblock .dot-scatter span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #C347B3;
    opacity: 0.13;
}

.lprog .titblock .dot-scatter span:nth-child(1) {
    top: 12%;
    left: 8%;
}

.lprog .titblock .dot-scatter span:nth-child(2) {
    top: 28%;
    left: 18%;
}

.lprog .titblock .dot-scatter span:nth-child(3) {
    top: 55%;
    left: 5%;
}

.lprog .titblock .dot-scatter span:nth-child(4) {
    top: 70%;
    left: 22%;
}

.lprog .titblock .dot-scatter span:nth-child(5) {
    top: 18%;
    left: 42%;
}

.lprog .titblock .dot-scatter span:nth-child(6) {
    top: 80%;
    left: 38%;
}

.lprog .titblock .dot-scatter span:nth-child(7) {
    top: 40%;
    left: 60%;
}

.lprog .titblock .dot-scatter span:nth-child(8) {
    top: 65%;
    left: 75%;
}

.lprog .titblock .dot-scatter span:nth-child(9) {
    top: 10%;
    left: 82%;
}

.lprog .titblock .dot-scatter span:nth-child(10) {
    top: 88%;
    left: 90%;
}

.lprog .titblock .dot-scatter span:nth-child(11) {
    top: 35%;
    left: 95%;
}

.lprog .titblock .dot-scatter span:nth-child(12) {
    top: 50%;
    left: 30%;
}

.lprog .titblock .tit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: end;
    position: relative;
    z-index: 1;
}

.lprog .titblock .tit-left {
    padding-top: 64px;
}

.lprog .titblock .tit-tag {
    display: inline-block;
    background: #EFE2ED;
    color: #7a2070;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 4px 16px;
    border-radius: 4px;
    margin-bottom: 32px;
}

.lprog .titblock .tit-h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #2a0a28;
    margin-bottom: 32px;
    animation: slideup 0.25s cubic-bezier(0.0, 0, 0.2, 1) both;
}

.lprog .titblock .tit-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3d1a3b;
    margin-bottom: 32px;
    max-width: 420px;
    animation: slideup 0.22s cubic-bezier(0.0, 0, 0.2, 1) 0.08s both;
}

.lprog .titblock .tit-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: #C347B3;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideup 0.2s cubic-bezier(0.0, 0, 0.2, 1) 0.15s both;
}

.lprog .titblock .tit-link:hover {
    background: #a83598;
}

.lprog .titblock .tit-link:active {
    transform: scale(0.97);
}

.lprog .titblock .tit-imgwrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
    animation: slideup 0.28s cubic-bezier(0.0, 0, 0.2, 1) 0.05s both;
}

.lprog .titblock .tit-imgwrap img {
    width: 100%;
    max-width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(0px);
}

.lprog .titblock .tit-imgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, rgba(239, 226, 237, 0) 60%, rgba(239, 226, 237, 0.45) 100%);
    pointer-events: none;
}

.lprog .stroke-deco {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    bottom: 32px;
    right: 32px;
    pointer-events: none;
}

.lprog .stroke-deco span {
    display: block;
    height: 2px;
    background: #DEB4C6;
    border-radius: 1px;
    opacity: 0.7;
}

.lprog .stroke-deco span:nth-child(1) {
    width: 32px;
}

.lprog .stroke-deco span:nth-child(2) {
    width: 24px;
}

.lprog .stroke-deco span:nth-child(3) {
    width: 16px;
}

.lprog .stroke-deco span:nth-child(4) {
    width: 8px;
}

@keyframes slideup {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.lprog .wave-div1 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.lprog .modblock {
    background: linear-gradient(233deg, #EFE2ED 30%, #fff 100%);
    padding-top: 64px;
    padding-bottom: 64px;
}

.lprog .modblock .mod-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #C347B3;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lprog .modblock .mod-heading {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #2a0a28;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    max-width: 680px;
}

.lprog .modblock .mod-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.lprog .modblock .mod-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07), -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    box-sizing: border-box;
    position: relative;
    transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.lprog .modblock .mod-card:hover {
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.lprog .modblock .mod-card.right {
    text-align: right;
}

.lprog .modblock .mod-num {
    font-size: 62px;
    font-weight: 900;
    color: #EFE2ED;
    line-height: 1.1;
    letter-spacing: 0.01em;
    position: absolute;
    top: 16px;
    left: 16px;
    pointer-events: none;
    user-select: none;
}

.lprog .modblock .mod-card.right .mod-num {
    left: auto;
    right: 16px;
}

.lprog .modblock .mod-card-body {
    position: relative;
    z-index: 1;
}

.lprog .modblock .mod-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2a0a28;
    line-height: 1.35;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.lprog .modblock .mod-card-text {
    font-size: 15px;
    line-height: 1.55;
    color: #4a2a48;
    letter-spacing: 0.01em;
}

.lprog .modblock .mod-card-badge {
    display: inline-block;
    background: #EFE2ED;
    color: #7a2070;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    margin-bottom: 16px;
}

.lprog .modblock .mod-wide-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.lprog .modblock .mod-wide-card {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    box-sizing: border-box;
}

.lprog .modblock .mod-wide-card .mod-num {
    font-size: 62px;
    font-weight: 900;
    color: #EFE2ED;
    line-height: 1.1;
    position: absolute;
    top: 16px;
    left: 16px;
    pointer-events: none;
    user-select: none;
}

.lprog .modblock .mod-wide-card {
    position: relative;
}

.lprog .modblock .mod-wide-card .mod-card-body {
    position: relative;
    z-index: 1;
}

.lprog .wave-div2 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.lprog .teamblock {
    background: #fff;
    padding-top: 64px;
    padding-bottom: 64px;
}

.lprog .teamblock .team-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #C347B3;
    text-transform: uppercase;
    margin-bottom: 16px;
    text-align: right;
}

.lprog .teamblock .team-heading {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #2a0a28;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    text-align: right;
}

.lprog .teamblock .team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

.lprog .teamblock .team-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    background: #fff;
    display: flex;
    flex-direction: column;
}

.lprog .teamblock .team-portrait {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%;
}

.lprog .teamblock .team-info {
    padding: 16px 32px 32px;
    flex: 1;
}

.lprog .teamblock .team-name {
    font-size: 18px;
    font-weight: 700;
    color: #2a0a28;
    line-height: 1.35;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.lprog .teamblock .team-role {
    font-size: 13px;
    color: #C347B3;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
}

.lprog .teamblock .team-bio {
    font-size: 15px;
    line-height: 1.55;
    color: #4a2a48;
    letter-spacing: 0.01em;
}

.lprog .teamblock .metrics-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid #EFE2ED;
}

.lprog .teamblock .metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.lprog .teamblock .metric-ring {
    position: relative;
    width: 80px;
    height: 80px;
}

.lprog .teamblock .metric-ring svg {
    width: 80px;
    height: 80px;
    transform: rotate(-90deg);
}

.lprog .teamblock .metric-ring .ring-bg {
    fill: none;
    stroke: #EFE2ED;
    stroke-width: 6;
}

.lprog .teamblock .metric-ring .ring-fill {
    fill: none;
    stroke: #C347B3;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 220;
    stroke-dashoffset: 220;
    transition: stroke-dashoffset 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.lprog .teamblock .metric-ring .ring-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #2a0a28;
    letter-spacing: 0.01em;
}

.lprog .teamblock .metric-label {
    font-size: 13px;
    color: #7a2070;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
}

.lprog .teamblock .metric-item:hover .ring-fill {
    stroke-dashoffset: var(--ring-offset);
}

.lprog .teamblock .metric-item .ring-fill {
    stroke-dashoffset: var(--ring-offset);
}

.lprog .wave-div3 {
    display: block;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.lprog .tlblock {
    background: #2a0a28;
    padding-top: 64px;
    padding-bottom: 64px;
    position: relative;
}

.lprog .tlblock .tl-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #DEB4C6;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.lprog .tlblock .tl-heading {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #DEB4C6;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    max-width: 600px;
}

.lprog .tlblock .tl-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.lprog .tlblock .tl-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #DEB4C6;
    letter-spacing: 0.01em;
    margin-bottom: 32px;
    column-count: 2;
    column-gap: 32px;
}

.lprog .tlblock .tl-cta {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #2a0a28;
    background: #DEB4C6;
    padding: 16px 32px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: -1px 6px 22px 0 rgba(222, 180, 198, 0.09);
    transition: background-color 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.lprog .tlblock .tl-cta:hover {
    background: #C347B3;
    color: #fff;
}

.lprog .tlblock .tl-cta:active {
    transform: scale(0.97);
}

.lprog .tlblock .tl-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.lprog .tlblock .tl-step {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 32px;
    position: relative;
}

.lprog .tlblock .tl-step:last-child {
    padding-bottom: 0;
}

.lprog .tlblock .tl-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lprog .tlblock .tl-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #C347B3;
    flex-shrink: 0;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    margin-top: 4px;
}

.lprog .tlblock .tl-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(233deg, #C347B3 0%, #2a0a28 100%);
    min-height: 32px;
    margin-top: 4px;
    border-radius: 1px;
}

.lprog .tlblock .tl-step:last-child .tl-line {
    display: none;
}

.lprog .tlblock .tl-step-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.lprog .tlblock .tl-step-text {
    font-size: 15px;
    line-height: 1.55;
    color: #DEB4C6;
    letter-spacing: 0.01em;
}

.lprog .tlblock .tl-step-num {
    font-size: 13px;
    font-weight: 700;
    color: #C347B3;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.lprog .tlblock .frosted-badge {
    display: inline-block;
    background: rgba(222, 180, 198, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(222, 180, 198, 0.22);
    border-radius: 4px;
    padding: 4px 16px;
    font-size: 13px;
    color: #DEB4C6;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .lprog .titblock .tit-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lprog .titblock .tit-left {
        padding-top: 0;
    }

    .lprog .titblock .tit-h1 {
        font-size: 45px;
    }

    .lprog .modblock .mod-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lprog .modblock .mod-wide-row {
        grid-template-columns: 1fr;
    }

    .lprog .teamblock .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lprog .teamblock .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .lprog .tlblock .tl-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .lprog .tlblock .tl-desc {
        column-count: 1;
    }
}

@media (max-width: 640px) {
    .lprog .inner-bound {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lprog .titblock .tit-h1 {
        font-size: 32px;
    }

    .lprog .modblock .mod-heading,
    .lprog .teamblock .team-heading,
    .lprog .tlblock .tl-heading {
        font-size: 32px;
    }

    .lprog .modblock .mod-grid {
        grid-template-columns: 1fr;
    }

    .lprog .teamblock .team-grid {
        grid-template-columns: 1fr;
    }

    .lprog .teamblock .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .lprog .titblock .tit-imgwrap img {
        height: 260px;
    }
}

@media (max-width: 360px) {
    .lprog .titblock .tit-h1 {
        font-size: 23px;
    }

    .lprog .teamblock .metrics-row {
        grid-template-columns: 1fr 1fr;
    }
}

.qzpg {
    max-width: 100%;
    overflow-x: clip;
}

.qzpg .qz-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px;
}

.qzpg .dots-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}

.qzpg .dots-row span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C347B3;
    display: block;
    opacity: 0.45;
}

.qzpg .dots-row span:nth-child(2) {
    opacity: 0.65;
}

.qzpg .dots-row span:nth-child(3) {
    opacity: 0.85;
}

.qzpg .dots-row span:nth-child(4) {
    opacity: 0.55;
}

.qzpg .dots-row span:nth-child(5) {
    opacity: 0.35;
}

.qzpg .title-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}

.qzpg .title-left {
    background: #1b0a18;
    padding: 64px 48px 64px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.qzpg .title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 80px;
    height: 100%;
    background: #1b0a18;
    clip-path: ellipse(40px 60px at 0% 50%);
    z-index: 2;
}

.qzpg .title-dot-scatter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.qzpg .title-dot-scatter circle {
    fill: #C347B3;
    opacity: 0.08;
}

.qzpg .title-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #DEB4C6;
    margin-bottom: 16px;
    font-weight: 600;
}

.qzpg .title-h1 {
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #EFE2ED;
    margin-bottom: 16px;
    position: relative;
    z-index: 3;
}

.qzpg .title-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #c9a8bf;
    max-width: 380px;
    position: relative;
    z-index: 3;
}

.qzpg .title-right {
    background: #EFE2ED;
    padding: 64px 32px 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative;
    z-index: 1;
}

.qzpg .title-img-wrap {
    width: 100%;
    height: 340px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.qzpg .title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: crisp-edges;
    filter: contrast(1.06) saturate(1.08);
}

.qzpg .title-meta {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
}

.qzpg .title-meta-item {
    font-size: 13px;
    color: #5a3a52;
    letter-spacing: 0.02em;
}

.qzpg .title-meta-item strong {
    color: #C347B3;
}

.qzpg .quiz-area {
    background: #fff;
    padding: 64px 0;
}

.qzpg .quiz-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 32px;
    align-items: start;
}

.qzpg .quiz-sidebar {
    background: linear-gradient(233deg, #C347B3 0%, #EFE2ED 80%);
    border-radius: 4px;
    padding: 32px 16px;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    position: sticky;
    top: 32px;
}

.qzpg .sidebar-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1b0a18;
    margin-bottom: 16px;
}

.qzpg .sidebar-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qzpg .prog-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.qzpg .prog-item:hover {
    background: rgba(195, 71, 179, 0.12);
}

.qzpg .prog-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #C347B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #C347B3;
    flex-shrink: 0;
    transition: background 0.18s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.qzpg .prog-item.answered .prog-num {
    background: #C347B3;
    color: #fff;
}

.qzpg .prog-label {
    font-size: 13px;
    color: #2e1428;
    line-height: 1.35;
}

.qzpg .quiz-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.qzpg .quiz-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.qzpg .q-card {
    background: #fff;
    border-radius: 4px;
    padding: 32px;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07), -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    box-shadow: inset 0 2px 8px 0 rgba(195, 71, 179, 0.06), -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    position: relative;
}

.qzpg .q-number {
    font-size: 62px;
    font-weight: 900;
    color: #EFE2ED;
    line-height: 1.1;
    position: absolute;
    top: 16px;
    right: 24px;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
}

.qzpg .q-text {
    font-size: 18px;
    line-height: 1.55;
    color: #1b0a18;
    font-weight: 600;
    margin-bottom: 16px;
    max-width: 82%;
    letter-spacing: 0.01em;
}

.qzpg .q-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.qzpg .q-option {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.qzpg .q-option label {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 4px;
    border: 1.5px solid #DEB4C6;
    width: 100%;
    font-size: 15px;
    line-height: 1.55;
    color: #2e1428;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.qzpg .q-option label::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #EFE2ED;
    transition: height 0.22s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
}

.qzpg .q-option label:hover::before {
    height: 100%;
}

.qzpg .q-option label span {
    position: relative;
    z-index: 1;
}

.qzpg .q-option input[type="radio"] {
    margin-top: 2px;
    accent-color: #C347B3;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.qzpg .q-option label:hover {
    border-color: #C347B3;
}

.qzpg .q-option input[type="radio"]:checked+span {
    font-weight: 600;
    color: #1b0a18;
}

.qzpg .quiz-submit-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    padding-top: 8px;
}

.qzpg .btn-submit {
    background: #C347B3;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.qzpg .btn-submit:hover {
    background: #a8339a;
}

.qzpg .btn-submit:active {
    transform: scale(0.97);
}

.qzpg .btn-submit:focus-visible {
    outline: 2px solid #C347B3;
    outline-offset: 3px;
}

.qzpg .quiz-note {
    font-size: 13px;
    color: #7a5070;
    letter-spacing: 0.01em;
}

.qzpg .howit {
    background: linear-gradient(233deg, #2a0d25 0%, #EFE2ED 100%);
    padding: 64px 0;
}

.qzpg .howit-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 32px;
}

.qzpg .howit-h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #EFE2ED;
    letter-spacing: 0.01em;
}

.qzpg .howit-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #c9a8bf;
    max-width: 380px;
    text-align: right;
}

.qzpg .timeline-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.qzpg .timeline-list::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #C347B3 0%, #EFE2ED 100%);
    border-radius: 1px;
}

.qzpg .tl-item {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    padding: 24px 0;
    position: relative;
}

.qzpg .tl-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #C347B3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    font-weight: 900;
    color: #C347B3;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    transition: background 0.25s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.qzpg .tl-item:hover .tl-dot {
    background: #C347B3;
    color: #fff;
}

.qzpg .tl-body {
    flex: 1;
    padding-top: 8px;
}

.qzpg .tl-h {
    font-size: 18px;
    font-weight: 700;
    color: #EFE2ED;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.qzpg .tl-p {
    font-size: 15px;
    line-height: 1.55;
    color: #c9a8bf;
}

.qzpg .topics {
    background: #fff;
    padding: 64px 0;
}

.qzpg .topics-head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 32px;
}

.qzpg .topics-h2 {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #1b0a18;
    letter-spacing: 0.01em;
}

.qzpg .topics-intro {
    max-width: 420px;
    font-size: 15px;
    line-height: 1.55;
    color: #5a3a52;
    text-align: right;
}

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

.qzpg .topic-card {
    border-radius: 4px;
    padding: 24px;
    background: #EFE2ED;
    box-shadow: inset 0 2px 8px 0 rgba(195, 71, 179, 0.06);
    position: relative;
    transition: box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid transparent;
}

.qzpg .topic-card:hover {
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
    border-color: #C347B3;
}

.qzpg .topic-card-border {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    pointer-events: none;
    border: 0px solid #C347B3;
    transition: border-width 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.qzpg .topic-card:hover .topic-card-border {
    border-width: 2px;
}

.qzpg .topic-num {
    font-size: 45px;
    font-weight: 900;
    color: rgba(195, 71, 179, 0.14);
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.qzpg .topic-h {
    font-size: 15px;
    font-weight: 700;
    color: #1b0a18;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}

.qzpg .topic-p {
    font-size: 13px;
    line-height: 1.55;
    color: #5a3a52;
}

.qzpg .topics-cols {
    column-count: 2;
    column-gap: 32px;
    margin-top: 32px;
}

.qzpg .topics-body {
    font-size: 15px;
    line-height: 1.8;
    color: #2e1428;
    break-inside: avoid;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .qzpg .title-split {
        grid-template-columns: 1fr;
    }

    .qzpg .title-left::after {
        display: none;
    }

    .qzpg .title-left {
        padding: 64px 32px;
    }

    .qzpg .title-right {
        padding: 32px;
    }

    .qzpg .quiz-layout {
        grid-template-columns: 1fr;
    }

    .qzpg .quiz-sidebar {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .qzpg .sidebar-progress {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .qzpg .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .qzpg .howit-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .qzpg .howit-desc {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .qzpg .qz-inner {
        padding: 0 16px;
    }

    .qzpg .title-h1 {
        font-size: 32px;
    }

    .qzpg .topics-grid {
        grid-template-columns: 1fr;
    }

    .qzpg .topics-head {
        flex-direction: column;
    }

    .qzpg .topics-intro {
        text-align: left;
        max-width: 100%;
    }

    .qzpg .topics-cols {
        column-count: 1;
    }

    .qzpg .q-text {
        max-width: 100%;
        font-size: 15px;
    }

    .qzpg .q-number {
        font-size: 45px;
        top: 8px;
        right: 12px;
    }

    .qzpg .quiz-area {
        padding: 32px 0;
    }

    .qzpg .howit {
        padding: 32px 0;
    }

    .qzpg .topics {
        padding: 32px 0;
    }

    .qzpg .howit-h2,
    .qzpg .topics-h2 {
        font-size: 23px;
    }
}

@media (max-width: 360px) {
    .qzpg .title-h1 {
        font-size: 23px;
    }

    .qzpg .btn-submit {
        padding: 12px 16px;
        font-size: 13px;
    }
}

.abtus {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

.abtus .seg {
    width: 100%;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.abtus .topband {
    width: 100%;
    background: #f5eef3;
    position: relative;
    padding-top: 64px;
    padding-bottom: 0;
    overflow: hidden;
}

.abtus .topband .seg {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.abtus .topband-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image:
        repeating-linear-gradient(233deg,
            rgba(195, 71, 179, 0.04) 0px,
            rgba(195, 71, 179, 0.04) 1px,
            transparent 1px,
            transparent 18px);
    z-index: 0;
}

.abtus .topband-textarea {
    position: relative;
    z-index: 1;
    padding-bottom: 32px;
}

.abtus .topband-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #C347B3;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgba(195, 71, 179, 0.08);
    padding: 4px 16px;
    border-radius: 4px;
}

.abtus .topband-h1 {
    font-size: 62px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #2d1a2b;
    margin: 0 0 16px 0;
    max-width: 820px;
}

.abtus .topband-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a2238;
    max-width: 560px;
    letter-spacing: 0.01em;
}

.abtus .topband-imgrow {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px;
    margin-top: 32px;
}

.abtus .topband-imgwrap {
    width: 55%;
    max-width: 640px;
    border-radius: 4px 4px 0 0;
    overflow: hidden;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.abtus .topband-imgwrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(100%);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.abtus .topband-imgwrap:hover img {
    transform: translateX(-4px);
}

.abtus .topband-aside {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 32px;
}

.abtus .topband-stat {
    background: #fff;
    border-radius: 4px;
    padding: 16px 32px;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abtus .topband-stat .stnum {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: #C347B3;
    letter-spacing: 0.01em;
}

.abtus .topband-stat .stlbl {
    font-size: 13px;
    line-height: 1.35;
    color: #5a3d56;
    letter-spacing: 0.02em;
}

.abtus .whoblock {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    background: #fff;
    position: relative;
}

.abtus .whoblock .seg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.abtus .who-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abtus .who-heading {
    font-size: 32px;
    line-height: 1.35;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #2d1a2b;
    letter-spacing: 0.01em;
    margin: 0;
}

.abtus .who-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abtus .who-para {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2238;
    letter-spacing: 0.01em;
    margin: 0;
}

.abtus .who-imgwrap {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    position: relative;
}

.abtus .who-imgwrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.28s cubic-bezier(0.0, 0, 0.2, 1);
}

.abtus .who-imgwrap:hover img {
    transform: translateY(-6px);
}

.abtus .who-numlist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.abtus .who-numlist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #3a2238;
    letter-spacing: 0.01em;
}

.abtus .who-numlist li .numprefix {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: rgba(195, 71, 179, 0.12);
    min-width: 48px;
    text-align: right;
    letter-spacing: 0.01em;
    flex-shrink: 0;
}

.abtus .who-numlist li .numtext {
    padding-top: 8px;
}

.abtus .teamblock {
    width: 100%;
    padding-top: 64px;
    padding-bottom: 64px;
    position: relative;
    background: #EFE2ED;
}

.abtus .teamblock-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
}

.abtus .teamblock .seg {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.abtus .team-toprow {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.abtus .team-heading {
    font-size: 32px;
    line-height: 1.35;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #2d1a2b;
    letter-spacing: 0.01em;
    margin: 0;
    max-width: 480px;
}

.abtus .team-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2238;
    max-width: 380px;
    text-align: right;
    letter-spacing: 0.01em;
    margin: 0;
}

.abtus .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

.abtus .team-card {
    background: #fff;
    border-radius: 4px;
    padding: 32px;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09),
        inset 0 1px 4px 0 rgba(222, 180, 198, 0.18);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.abtus .team-card:hover {
    transform: translateY(-4px);
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14),
        inset 0 1px 4px 0 rgba(222, 180, 198, 0.18);
}

.abtus .team-portrait {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
}

.abtus .team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abtus .team-portrait-placeholder {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(233deg, #DEB4C6 30%, #EFE2ED 100%);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abtus .team-portrait-placeholder svg {
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.abtus .team-name {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #2d1a2b;
    letter-spacing: 0.01em;
    margin: 0;
}

.abtus .team-role {
    font-size: 13px;
    line-height: 1.35;
    color: #C347B3;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin: 0;
}

.abtus .team-bio {
    font-size: 15px;
    line-height: 1.55;
    color: #5a3d56;
    letter-spacing: 0.01em;
    margin: 0;
}

.abtus .team-statcard {
    grid-column: span 1;
    background: linear-gradient(233deg, #C347B3 20%, #DEB4C6 100%);
    border-radius: 4px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
    min-height: 280px;
}

.abtus .team-statcard .splitzone {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 16px;
}

.abtus .team-statcard .splitzone:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.abtus .team-statcard .zone-num {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.01em;
}

.abtus .team-statcard .zone-label {
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 0.02em;
}

.abtus .timeline-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.abtus .timeline-heading {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 700;
    color: #2d1a2b;
    letter-spacing: 0.01em;
    margin: 0;
}

.abtus .tl-items {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 32px;
}

.abtus .tl-items::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(233deg, #C347B3 20%, #DEB4C6 100%);
    border-radius: 1px;
}

.abtus .tl-item {
    position: relative;
    padding: 16px 0 16px 32px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.abtus .tl-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 22px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #C347B3;
    background: #EFE2ED;
    box-shadow: 0 0 0 3px rgba(195, 71, 179, 0.12);
}

.abtus .tl-year {
    font-size: 13px;
    font-weight: 700;
    color: #C347B3;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.abtus .tl-event {
    font-size: 15px;
    line-height: 1.55;
    color: #3a2238;
    letter-spacing: 0.01em;
}

.abtus .ring-accent {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.abtus .ring-accent svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.abtus .ring-accent .rnum {
    font-size: 18px;
    font-weight: 800;
    color: #2d1a2b;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(var(--offset, 0px));
    }

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

.abtus .anim1 {
    animation: revealUp 0.25s cubic-bezier(0.4, 0, 0.2, 1) both;
    --offset: 16px;
}

.abtus .anim2 {
    animation: revealUp 0.28s cubic-bezier(0.4, 0, 0.2, 1) 0.08s both;
    --offset: 28px;
}

.abtus .anim3 {
    animation: revealUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.16s both;
    --offset: 44px;
}

@keyframes bounceIn {
    0% {
        transform: translateY(32px);
        opacity: 0;
    }

    60% {
        transform: translateY(-6px);
        opacity: 1;
    }

    80% {
        transform: translateY(3px);
    }

    100% {
        transform: translateY(0);
    }
}

.abtus .bounce-load {
    animation: bounceIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) 0.1s both;
}

.abtus .divider-arc {
    width: 100%;
    height: 32px;
    background: #fff;
    clip-path: ellipse(55% 100% at 50% 0%);
}

.abtus .divider-flat {
    width: 100%;
    height: 4px;
    background: linear-gradient(233deg, #C347B3 20%, #DEB4C6 100%);
}

.abtus .scalelink {
    color: #C347B3;
    text-decoration: underline;
    font-weight: 600;
    transition: font-size 0.18s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.abtus .scalelink:hover {
    font-size: 16px;
    color: #9a2f8e;
}

@media (max-width: 1024px) {
    .abtus .topband-h1 {
        font-size: 45px;
    }

    .abtus .topband-imgwrap {
        width: 60%;
    }

    .abtus .whoblock .seg {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .abtus .who-body {
        grid-template-columns: 1fr 1fr;
    }

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

    .abtus .team-statcard {
        grid-column: span 2;
        min-height: auto;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .abtus .team-toprow {
        flex-direction: column;
        align-items: flex-start;
    }

    .abtus .team-desc {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .abtus .seg {
        padding-left: 16px;
        padding-right: 16px;
    }

    .abtus .topband-h1 {
        font-size: 32px;
    }

    .abtus .topband-imgrow {
        flex-direction: column;
    }

    .abtus .topband-imgwrap {
        width: 100%;
    }

    .abtus .topband-aside {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .abtus .topband-stat {
        flex: 1;
        min-width: 140px;
    }

    .abtus .who-body {
        grid-template-columns: 1fr;
    }

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

    .abtus .team-statcard {
        grid-column: span 1;
    }

    .abtus .team-toprow {
        gap: 16px;
    }

    .abtus .who-imgwrap img {
        height: 260px;
    }
}

@media (max-width: 360px) {
    .abtus .topband-h1 {
        font-size: 23px;
    }

    .abtus .topband-sub {
        font-size: 15px;
    }

    .abtus .who-heading,
    .abtus .team-heading {
        font-size: 23px;
    }
}

.prm {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip;
}

.prm .divider {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 32px;
}

.prm .divider span {
    display: block;
    height: 1px;
    background: #DEB4C6;
    opacity: 0.5;
}

.prm .diag-reveal {
    opacity: 0;
    transform: translate(-12px, 12px);
    animation: diagIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.prm .diag-reveal:nth-child(1) {
    animation-delay: 0.05s;
}

.prm .diag-reveal:nth-child(2) {
    animation-delay: 0.12s;
}

.prm .diag-reveal:nth-child(3) {
    animation-delay: 0.19s;
}

.prm .diag-reveal:nth-child(4) {
    animation-delay: 0.26s;
}

@keyframes diagIn {
    to {
        opacity: 1;
        transform: translate(0, 0);
    }
}

.prm .titleblock {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.prm .titleblock .imgzone {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.prm .titleblock .imgzone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prm .titleblock .imgzone .imgfade {
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, rgba(239, 226, 237, 0) 30%, rgba(239, 226, 237, 0.95) 100%);
}

.prm .titleblock .textzone {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 64px 64px 32px;
    background: #EFE2ED;
    position: relative;
}

.prm .titleblock .prob {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: #7a4a6e;
    margin-bottom: 16px;
    font-weight: 500;
}

.prm .titleblock .mainhead {
    font-size: 45px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 2px #C347B3;
    margin-bottom: 16px;
}

.prm .titleblock .subhead {
    font-size: 23px;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #2d1a28;
    font-weight: 600;
    margin-bottom: 32px;
}

.prm .titleblock .tagrow {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.prm .titleblock .tag {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 13px;
    letter-spacing: 0.02em;
    font-weight: 600;
    background: #C347B3;
    color: #fff;
}

.prm .titleblock .tag.soft {
    background: #DEB4C6;
    color: #2d1a28;
}

.prm .community {
    background: #fff;
    padding: 64px 32px;
    position: relative;
}

.prm .community .geo-bg {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1px solid rgba(195, 71, 179, 0.07);
    pointer-events: none;
    overflow: hidden;
}

.prm .community .geo-bg2 {
    position: absolute;
    bottom: 20px;
    left: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 1px solid rgba(222, 180, 198, 0.1);
    pointer-events: none;
    overflow: hidden;
}

.prm .community .comgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1366px;
    align-items: center;
}

.prm .community .comleft {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prm .community .seclab {
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #C347B3;
    font-weight: 700;
    text-transform: uppercase;
}

.prm .community .seclab span {
    color: #C347B3;
}

.prm .community .sechead {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #2d1a28;
}

.prm .community .secdesc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.prm .community .secdesc p {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2235;
    letter-spacing: 0.01em;
}

.prm .community .comright {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
}

.prm .community .comright img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prm .community .iconpair {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.prm .community .iconpair .icoitem {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #7a4a6e;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.prm .community .iconpair .icosvg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.prm .belong {
    background: linear-gradient(233deg, #2d1a28 30%, #4a1e40 100%);
    padding: 64px 32px;
    position: relative;
}

.prm .belong .geo3 {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(222, 180, 198, 0.1);
    pointer-events: none;
    overflow: hidden;
}

.prm .belong .belonginner {
    max-width: 1366px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: start;
}

.prm .belong .blhead {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #EFE2ED;
    position: sticky;
    top: 32px;
}

.prm .belong .blright {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.prm .belong .blrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.prm .belong .blcard {
    background: rgba(239, 226, 237, 0.06);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid rgba(222, 180, 198, 0.15);
    box-shadow: inset -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .belong .blcard:hover {
    background: rgba(239, 226, 237, 0.1);
}

.prm .belong .blcard .cardnum {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(222, 180, 198, 0.18);
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 8px;
}

.prm .belong .blcard .cardtitle {
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #EFE2ED;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.prm .belong .blcard p {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(239, 226, 237, 0.7);
    letter-spacing: 0.01em;
}

.prm .belong .blcard.notfit {
    border-color: rgba(195, 71, 179, 0.2);
}

.prm .belong .blcard.notfit .cardtitle {
    color: #DEB4C6;
}

.prm .gap {
    background: #EFE2ED;
    padding: 64px 32px;
    position: relative;
}

.prm .gap .gapinner {
    max-width: 1366px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.prm .gap .gaptop {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: end;
}

.prm .gap .gaphead {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #2d1a28;
}

.prm .gap .gapright {
    text-align: right;
}

.prm .gap .gapright p {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2235;
    letter-spacing: 0.01em;
}

.prm .gap .gapbody {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.prm .gap .gapitem {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    position: relative;
    transition: box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.prm .gap .gapitem:hover {
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
}

.prm .gap .gapitem .gnum {
    font-size: 62px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(195, 71, 179, 0.09);
    letter-spacing: 0.01em;
    display: block;
}

.prm .gap .gapitem .gtitle {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #2d1a28;
    letter-spacing: 0.01em;
    margin-bottom: 8px;
}

.prm .gap .gapitem p {
    font-size: 13px;
    line-height: 1.55;
    color: #5a3550;
    letter-spacing: 0.01em;
}

.prm .gap .gapimg {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.prm .gap .gapimg img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prm .exptime {
    background: #fff;
    padding: 64px 32px;
    position: relative;
}

.prm .exptime .geo4 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(195, 71, 179, 0.06);
    pointer-events: none;
    overflow: hidden;
}

.prm .exptime .expinner {
    max-width: 1366px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.prm .exptime .expleft {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prm .exptime .exphead {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #2d1a28;
}

.prm .exptime .expdesc {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.prm .exptime .expdesc p {
    font-size: 15px;
    line-height: 1.55;
    color: #3d2235;
    letter-spacing: 0.01em;
}

.prm .exptime .expimg {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    margin-top: 16px;
}

.prm .exptime .expimg img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prm .exptime .expright {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.prm .exptime .milehead {
    font-size: 15px;
    font-weight: 700;
    color: #2d1a28;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.prm .exptime .milelist {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.prm .exptime .milelist::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(233deg, #C347B3 30%, #DEB4C6 100%);
}

.prm .exptime .mileitem {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    padding-bottom: 32px;
    position: relative;
}

.prm .exptime .mileitem:last-child {
    padding-bottom: 0;
}

.prm .exptime .milemark {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EFE2ED;
    border: 2px solid #C347B3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.prm .exptime .milemark svg {
    width: 18px;
    height: 18px;
}

.prm .exptime .milecontent {
    padding-top: 8px;
    flex: 1;
}

.prm .exptime .milecontent .mileperiod {
    font-size: 13px;
    color: #C347B3;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.prm .exptime .milecontent .miletitle {
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #2d1a28;
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}

.prm .exptime .milecontent p {
    font-size: 13px;
    line-height: 1.55;
    color: #5a3550;
    letter-spacing: 0.01em;
}

.prm .scale {
    background: linear-gradient(233deg, #C347B3 30%, #9b2e8e 100%);
    padding: 64px 32px;
    position: relative;
}

.prm .scale .geo5 {
    position: absolute;
    top: -30px;
    right: 120px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    overflow: hidden;
}

.prm .scale .geo6 {
    position: absolute;
    bottom: -60px;
    left: 60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    overflow: hidden;
}

.prm .scale .scaleinner {
    max-width: 1366px;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.prm .scale .scaletop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: end;
}

.prm .scale .scalehead {
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #fff;
}

.prm .scale .scaledesc {
    text-align: right;
}

.prm .scale .scaledesc p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

.prm .scale .numgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.prm .scale .numcard {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: inset -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    transition: background 0.22s cubic-bezier(0.0, 0, 0.2, 1);
}

.prm .scale .numcard:hover {
    background: rgba(255, 255, 255, 0.16);
}

.prm .scale .numcard .bignum {
    font-size: 45px;
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.01em;
    display: block;
}

.prm .scale .numcard .numlabel {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
    font-weight: 600;
    margin-top: 8px;
}

.prm .scale .scalebot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.prm .scale .scalebot .botimg {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.prm .scale .scalebot .botimg img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prm .scale .scalebot .bottext {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.prm .scale .scalebot .bottext p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
}

.prm .scale .scalebot .expertcard {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
}

.prm .scale .scalebot .expertcard .expertrow {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.prm .scale .scalebot .expertcard .portrait {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.prm .scale .scalebot .expertcard .portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.prm .scale .scalebot .expertcard .expertname {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
}

.prm .scale .scalebot .expertcard .expertrole {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.01em;
}

.prm .scale .scalebot .expertcard blockquote {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0;
    font-style: italic;
}

@media (max-width: 1024px) {
    .prm .titleblock {
        grid-template-columns: 1fr;
    }

    .prm .titleblock .imgzone {
        height: 320px;
    }

    .prm .titleblock .textzone {
        padding: 32px;
    }

    .prm .community .comgrid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .prm .belong .belonginner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .prm .belong .blhead {
        position: static;
    }

    .prm .belong .blrow {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .prm .gap .gaptop {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .prm .gap .gapbody {
        grid-template-columns: 1fr 1fr;
    }

    .prm .exptime .expinner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .prm .exptime .expdesc {
        grid-template-columns: 1fr;
    }

    .prm .scale .scaletop {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .prm .scale .scaledesc {
        text-align: left;
    }

    .prm .scale .numgrid {
        grid-template-columns: 1fr 1fr;
    }

    .prm .scale .scalebot {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .prm .titleblock .mainhead {
        font-size: 32px;
    }

    .prm .titleblock .subhead {
        font-size: 18px;
    }

    .prm .titleblock .textzone {
        padding: 32px 16px;
    }

    .prm .community {
        padding: 32px 16px;
    }

    .prm .community .secdesc {
        grid-template-columns: 1fr;
    }

    .prm .belong {
        padding: 32px 16px;
    }

    .prm .gap {
        padding: 32px 16px;
    }

    .prm .gap .gapbody {
        grid-template-columns: 1fr;
    }

    .prm .exptime {
        padding: 32px 16px;
    }

    .prm .scale {
        padding: 32px 16px;
    }

    .prm .scale .numgrid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .prm .scale .numcard {
        padding: 16px;
    }

    .prm .scale .numcard .bignum {
        font-size: 32px;
    }

    .prm .community .iconpair {
        flex-wrap: wrap;
    }
}

@media (max-width: 360px) {
    .prm .titleblock .mainhead {
        font-size: 23px;
    }

    .prm .scale .numgrid {
        grid-template-columns: 1fr;
    }
}

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

.ctus .pgeinner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 32px;
}

.ctus .fadein {
    animation: fadeBlur 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeBlur {
    from {
        opacity: 0;
        filter: blur(6px);
        transform: translateY(12px);
    }

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

.ctus .fadein2 {
    animation: fadeBlur 0.55s 0.18s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ctus .fadein3 {
    animation: fadeBlur 0.6s 0.32s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.ctus .topband {
    background: linear-gradient(233deg, #EFE2ED 18%, #fff 72%);
    padding: 64px 0 32px;
    position: relative;
}

.ctus .topband .pgeinner {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 64px;
}

.ctus .topband .leftcol {
    flex: 1 1 0;
    min-width: 0;
}

.ctus .topband .rightcol {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.ctus .topband .bgnum {
    font-size: 62px;
    font-weight: 900;
    color: #DEB4C6;
    opacity: 0.22;
    line-height: 1.1;
    letter-spacing: 0.01em;
    user-select: none;
    pointer-events: none;
    position: absolute;
    right: 48px;
    top: 16px;
}

.ctus .topband .prelabel {
    font-size: 13px;
    letter-spacing: 0.02em;
    color: #C347B3;
    font-weight: 600;
    line-height: 1.55;
    margin-bottom: 8px;
}

.ctus .topband .pagetitle {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: transparent;
    -webkit-text-stroke: 2px #C347B3;
    margin: 0 0 16px;
}

.ctus .topband .subdesc {
    font-size: 18px;
    line-height: 1.55;
    color: #3a2535;
    letter-spacing: 0.01em;
    max-width: 480px;
}

.ctus .topband .quickinfo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.ctus .topband .qirow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.35;
    color: #3a2535;
    letter-spacing: 0.01em;
}

.ctus .topband .qirow .qlabel {
    color: #888;
    font-size: 13px;
}

.ctus .topband .qirow .qval {
    color: #3a2535;
    font-weight: 600;
}

.ctus .topband .qirow .qcolon {
    color: #C347B3;
    font-weight: 700;
}

.ctus .topband .dashedbadge {
    border: 2px dashed #DEB4C6;
    border-radius: 10px;
    padding: 16px 32px;
    background: rgba(239, 226, 237, 0.45);
    box-shadow: -1px 1px 4px 0 rgba(195, 71, 179, 0.07);
    text-align: right;
    max-width: 320px;
}

.ctus .topband .dashedbadge .dbtext {
    font-size: 13px;
    color: #7a4a72;
    line-height: 1.55;
    letter-spacing: 0.01em;
}

.ctus .topband .dashedbadge .dbstrong {
    font-size: 15px;
    font-weight: 700;
    color: #C347B3;
    display: block;
    margin-top: 4px;
}

.ctus .svgdivider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
}

.ctus .formblock {
    background: #fff;
    padding: 64px 0 32px;
}

.ctus .formblock .pgeinner {
    display: grid;
    grid-template-columns: 1fr 1.45fr;
    gap: 64px;
    align-items: start;
}

.ctus .formblock .formleft {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ctus .formblock .formleft .flhead {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    color: transparent;
    -webkit-text-stroke: 1.5px #3a2535;
    letter-spacing: 0.01em;
}

.ctus .formblock .formleft .fldesc {
    font-size: 15px;
    line-height: 1.8;
    color: #3a2535;
    letter-spacing: 0.01em;
}

.ctus .formblock .formleft .steplist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .formblock .formleft .steplist li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.55;
    color: #3a2535;
    letter-spacing: 0.01em;
}

.ctus .formblock .formleft .steplist .snum {
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #DEB4C6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: #C347B3;
    position: relative;
    background: #fff;
}

.ctus .formblock .formleft .steplist .snum svg {
    position: absolute;
    top: -2px;
    left: -2px;
    width: 40px;
    height: 40px;
    pointer-events: none;
}

.ctus .formblock .formleft .steplist .stext {
    padding-top: 8px;
}

.ctus .formblock .formright {
    background: #EFE2ED;
    border-radius: 10px;
    padding: 32px;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09), inset 0 2px 8px 0 rgba(195, 71, 179, 0.07);
}

.ctus .formblock .formright .cform {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .formblock .formright .fgroup {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus .formblock .formright .flb {
    font-size: 13px;
    font-weight: 600;
    color: #7a4a72;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.ctus .formblock .formright .finput {
    background: #fff;
    border: 1.5px solid #DEB4C6;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 15px;
    color: #3a2535;
    line-height: 1.55;
    letter-spacing: 0.01em;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 4px 0 rgba(195, 71, 179, 0.06);
}

.ctus .formblock .formright .finput::placeholder {
    color: #3a2535;
    opacity: 0.4;
}

.ctus .formblock .formright .finput:focus {
    border-color: #C347B3;
    box-shadow: 0 0 0 3px rgba(195, 71, 179, 0.13), inset 0 1px 4px 0 rgba(195, 71, 179, 0.06);
}

.ctus .formblock .formright .fselect {
    background: #fff;
    border: 1.5px solid #DEB4C6;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 15px;
    color: #3a2535;
    line-height: 1.55;
    letter-spacing: 0.01em;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 4px 0 rgba(195, 71, 179, 0.06);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23C347B3' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

.ctus .formblock .formright .fselect:focus {
    border-color: #C347B3;
    box-shadow: 0 0 0 3px rgba(195, 71, 179, 0.13), inset 0 1px 4px 0 rgba(195, 71, 179, 0.06);
}

.ctus .formblock .formright .ftextarea {
    background: #fff;
    border: 1.5px solid #DEB4C6;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 15px;
    color: #3a2535;
    line-height: 1.55;
    letter-spacing: 0.01em;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 4px 0 rgba(195, 71, 179, 0.06);
}

.ctus .formblock .formright .ftextarea::placeholder {
    color: #3a2535;
    opacity: 0.4;
}

.ctus .formblock .formright .ftextarea:focus {
    border-color: #C347B3;
    box-shadow: 0 0 0 3px rgba(195, 71, 179, 0.13), inset 0 1px 4px 0 rgba(195, 71, 179, 0.06);
}

.ctus .formblock .formright .privrow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #7a4a72;
    line-height: 1.55;
    letter-spacing: 0.01em;
    margin-top: 4px;
}

.ctus .formblock .formright .privrow input[type="checkbox"] {
    flex: 0 0 auto;
    margin-top: 2px;
    accent-color: #C347B3;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.ctus .formblock .formright .privrow a {
    color: #C347B3;
    text-decoration: underline;
    font-weight: 600;
    transition: font-size 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.ctus .formblock .formright .privrow a:hover {
    font-size: 14px;
}

.ctus .formblock .formright .submitbtn {
    background: #C347B3;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), transform 0.15s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
    line-height: 1.35;
    outline: none;
}

.ctus .formblock .formright .submitbtn:hover {
    background: #a83299;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.ctus .formblock .formright .submitbtn:active {
    transform: scale(0.97);
    background: #9b2e8e;
}

.ctus .formblock .formright .submitbtn:focus-visible {
    outline: 2px solid #C347B3;
    outline-offset: 3px;
}

.ctus .detailsblock {
    padding: 64px 0;
    position: relative;
    background: linear-gradient(233deg, #EFE2ED 12%, #fff 68%);
}

.ctus .detailsblock .pgeinner {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.ctus .detailsblock .dcard {
    background: #fff;
    border-radius: 10px;
    padding: 32px;
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09), inset 0 2px 6px 0 rgba(195, 71, 179, 0.06);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ctus .detailsblock .dcard.accent {
    background: #C347B3;
    color: #fff;
}

.ctus .detailsblock .dcard .dcicon {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
}

.ctus .detailsblock .dcard .dctitle {
    font-size: 23px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.5px #C347B3;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.ctus .detailsblock .dcard.accent .dctitle {
    -webkit-text-stroke: 1.5px #fff;
}

.ctus .detailsblock .dcard .dcrow {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ctus .detailsblock .dcard .dclabel {
    font-size: 13px;
    color: #888;
    letter-spacing: 0.02em;
    line-height: 1.35;
}

.ctus .detailsblock .dcard.accent .dclabel {
    color: rgba(255, 255, 255, 0.7);
}

.ctus .detailsblock .dcard .dcval {
    font-size: 15px;
    font-weight: 600;
    color: #3a2535;
    line-height: 1.35;
    letter-spacing: 0.01em;
}

.ctus .detailsblock .dcard.accent .dcval {
    color: #fff;
}

.ctus .detailsblock .dcard .dccolon {
    color: #C347B3;
    font-weight: 700;
}

.ctus .detailsblock .dcard.accent .dccolon {
    color: #EFE2ED;
}

.ctus .detailsblock .dcard .dclink {
    font-size: 15px;
    font-weight: 600;
    color: #C347B3;
    text-decoration: none;
    letter-spacing: 0.01em;
    line-height: 1.35;
    transition: font-size 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.ctus .detailsblock .dcard.accent .dclink {
    color: #EFE2ED;
}

.ctus .detailsblock .dcard .dclink:hover {
    font-size: 16px;
}

.ctus .detailsblock .dcard .dcdesc {
    font-size: 15px;
    line-height: 1.8;
    color: #3a2535;
    letter-spacing: 0.01em;
}

.ctus .detailsblock .dcard.accent .dcdesc {
    color: rgba(255, 255, 255, 0.9);
}

.ctus .detailsblock .dcard .hourslist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus .detailsblock .dcard .hourslist li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 13px;
    color: #3a2535;
    line-height: 1.35;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(195, 71, 179, 0.1);
    padding-bottom: 8px;
}

.ctus .detailsblock .dcard .hourslist li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.ctus .detailsblock .dcard .hourslist .hday {
    color: #7a4a72;
    font-weight: 600;
}

.ctus .detailsblock .dcard .hourslist .htime {
    color: #3a2535;
}

@keyframes gradangle {
    0% {
        background: linear-gradient(233deg, #EFE2ED 12%, #fff 68%);
    }

    33% {
        background: linear-gradient(260deg, #EFE2ED 18%, #fff 72%);
    }

    66% {
        background: linear-gradient(210deg, #DEB4C6 10%, #fff 65%);
    }

    100% {
        background: linear-gradient(233deg, #EFE2ED 12%, #fff 68%);
    }
}

.ctus .detailsblock {
    animation: gradangle 9s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@media (max-width: 1024px) {
    .ctus .topband .pgeinner {
        flex-direction: column;
        gap: 32px;
        align-items: flex-start;
    }

    .ctus .topband .rightcol {
        align-items: flex-start;
        width: 100%;
    }

    .ctus .topband .dashedbadge {
        text-align: left;
        max-width: 100%;
    }

    .ctus .topband .quickinfo {
        align-items: flex-start;
    }

    .ctus .formblock .pgeinner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .ctus .detailsblock .pgeinner {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .ctus .detailsblock .dcard:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .ctus .topband {
        padding: 32px 0 16px;
    }

    .ctus .topband .pgeinner {
        padding: 0 16px;
    }

    .ctus .topband .pagetitle {
        font-size: 32px;
    }

    .ctus .topband .bgnum {
        font-size: 45px;
        right: 16px;
        top: 8px;
    }

    .ctus .formblock {
        padding: 32px 0;
    }

    .ctus .formblock .pgeinner {
        padding: 0 16px;
    }

    .ctus .detailsblock {
        padding: 32px 0;
    }

    .ctus .detailsblock .pgeinner {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .ctus .detailsblock .dcard:first-child {
        grid-column: auto;
    }

    .ctus .formblock .formright {
        padding: 16px;
    }
}

@media (max-width: 360px) {
    .ctus .topband .pagetitle {
        font-size: 23px;
    }

    .ctus .pgeinner {
        padding: 0 8px;
    }
}

.successPage {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
    background: #ffffff;
}

.successPage .successWrap {
    max-width: 560px;
    width: 100%;
    text-align: center;
    padding: 64px 32px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.successPage .iconCircle {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    background: #EFE2ED;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.successPage .iconCircle svg {
    display: block;
}

.successPage .successTitle {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #1b0d1a;
    margin: 0 0 16px;
}

.successPage .successSub {
    font-size: 18px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    color: #3d1f3a;
    margin: 0 0 32px;
}

.successPage .successDivider {
    width: 48px;
    height: 4px;
    border-radius: 1px;
    background: linear-gradient(233deg, #C347B3 30%, #DEB4C6 100%);
    margin: 0 auto 32px;
}

.successPage .successNote {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.02em;
    color: #5c3558;
    margin: 0 0 32px;
    padding: 16px;
    background: #EFE2ED;
    border-radius: 4px;
}

.successPage .successNote strong {
    color: #C347B3;
}

.successPage .backBtn {
    display: inline-block;
    padding: 16px 32px;
    background: #C347B3;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.35;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid #C347B3;
    transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.0, 0, 0.2, 1);
    box-shadow: -1px 6px 22px 0 rgba(195, 71, 179, 0.09);
}

.successPage .backBtn:hover {
    background: #ffffff;
    color: #C347B3;
    box-shadow: -1px 9px 60px 0 rgba(195, 71, 179, 0.14);
}

.successPage .backBtn:active {
    transform: scale(0.97);
}

.successPage .backBtn:focus-visible {
    outline: 2px solid #C347B3;
    outline-offset: 4px;
}

@media (max-width: 640px) {
    .successPage {
        padding: 32px 16px;
    }

    .successPage .successWrap {
        padding: 32px 16px;
    }

    .successPage .successTitle {
        font-size: 23px;
    }

    .successPage .successSub {
        font-size: 15px;
    }
}