* {
    box-sizing: border-box
}

body {
    margin: 0
}

.siteheader {
    position: relative;
    background: linear-gradient(135deg, #520C6C 0%, #3a0850 55%, #1e0430 100%);
    overflow: hidden
}

.siteheader::before {
    content: '';
    position: absolute;
    top: -48px;
    right: -48px;
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, #fe0d862e 0%, #00f6910f 100%);
    border-radius: 50%;
    pointer-events: none
}

.siteheader::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 30%;
    width: 180px;
    height: 180px;
    background: #00f69112;
    border-radius: 50%;
    pointer-events: none
}

.headerbox {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 0
}

.headerTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 16px;
    gap: 24px
}

.logobox {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2
}

.logoimg {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 #520c6c14 0 6px 14px 0 #520c6c17 0 0 0 3px #ffffff26;
    background: #ffffff1f;
    padding: 8px
}

.headerAccent {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex: 1
}

.headerTagline {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #ffffffb8;
    line-height: 1.4;
    letter-spacing: .04em;
    text-align: right
}

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

.headerPhone {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00F691;
    letter-spacing: .06em;
    text-decoration: none;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.headerPhone:hover {
    color: #fff
}

.headerPhoneIcon {
    color: #FE0D86;
    font-size: 16px;
    line-height: 1
}

.headerDivider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #fe0d8666 30%, #00f6914d 70%, transparent 100%)
}

.primarynav {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    overflow: hidden
}

.navitem {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffd1;
    letter-spacing: .03em;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), background .25s cubic-bezier(0.0, 0, 0.2, 1);
    white-space: nowrap;
    min-height: 44px;
    border-radius: 6px 6px 0 0
}

.navitem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, #FE0D86, #00F691);
    transform: scaleX(0);
    border-radius: 6px 6px 0 0;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.navitem:hover {
    color: #fff;
    background: #ffffff12
}

.navitem:hover::after {
    transform: scaleX(1)
}

.navitem:focus-visible {
    outline: 2px solid #00F691;
    outline-offset: 2px
}

.navicon {
    font-size: 16px;
    line-height: 1;
    color: #FE0D86;
    flex-shrink: 0;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.navitem:hover .navicon {
    color: #00F691
}

.sitefooter {
    background: linear-gradient(160deg, #3a0850 0%, #520C6C 40%, #2a0540 100%);
    position: relative;
    overflow: hidden
}

.sitefooter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FE0D86 0%, #520C6C 50%, #00F691 100%)
}

.footerbox {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px 24px
}

.footerGrid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px
}

.footerLogoCol {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.footerLogoWrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff1a;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 1px 2px 0 #520c6c14 0 6px 14px 0 #520c6c17 0 0 0 2px #ffffff1f
}

.footerLogoImg {
    display: block;
    width: 60px;
    height: 60px;
    object-fit: contain
}

.footerBrand {
    font-family: 'Work Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .02em
}

.footerDesc {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    color: #fff9;
    line-height: 1.6
}

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

.footerNavLabel {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #00F691;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 1.2
}

.footerLink {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffbf;
    text-decoration: none;
    line-height: 1.4;
    padding: 8px 0;
    min-height: 44px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footerLink:hover {
    color: #FE0D86
}

.footerLink:focus-visible {
    outline: 2px solid #00F691;
    outline-offset: 2px;
    border-radius: 6px
}

.footerLinkIcon {
    font-size: 14px;
    color: #fe0d86b3;
    flex-shrink: 0;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footerLink:hover .footerLinkIcon {
    color: #FE0D86
}

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

.contactEntry {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 8px 0
}

.contactEntryIcon {
    font-size: 16px;
    color: #FE0D86;
    flex-shrink: 0;
    margin-top: 2px
}

.contactEntryText {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffffbf;
    line-height: 1.6
}

.contactEntryLink {
    color: #ffffffbf;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.contactEntryLink:hover {
    color: #00F691
}

.contactEntryLink:focus-visible {
    outline: 2px solid #00F691;
    outline-offset: 2px;
    border-radius: 6px
}

.footerRule {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fe0d864d 30%, #00f69140 70%, transparent);
    margin-bottom: 24px
}

.footerBottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.copyright {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #ffffff73;
    line-height: 1.4
}

.footerLegal {
    display: flex;
    align-items: center;
    gap: 16px
}

.legalLink {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff80;
    text-decoration: none;
    line-height: 1.4;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.legalLink:hover {
    color: #ffffffd9
}

.legalLink:focus-visible {
    outline: 2px solid #00F691;
    outline-offset: 2px;
    border-radius: 6px
}

@media (max-width: 768px) {
    .headerTop {
        flex-wrap: wrap;
        gap: 16px
    }

    .headerAccent {
        align-items: flex-start;
        flex: none;
        width: 100%
    }

    .headerTagline {
        text-align: left
    }

    .primarynav {
        flex-wrap: wrap;
        gap: 0
    }

    .navitem {
        padding: 12px;
        font-size: 14px
    }

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

    .footerLogoCol {
        grid-column: 1 / -1
    }
}

@media (max-width: 375px) {
    .headerbox {
        padding: 0 16px
    }

    .footerbox {
        padding: 24px 16px 16px
    }

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

    .primarynav {
        gap: 0
    }

    .navitem {
        padding: 12px 8px;
        font-size: 14px
    }

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

.terms-box {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px
}

.terms-box p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
    color: #2a2030
}

.terms-box ul,
.terms-box ol {
    padding-left: 24px;
    margin-bottom: 24px
}

.terms-box ul {
    list-style: none;
    padding-left: 0
}

.terms-box ul li {
    padding-left: 16px;
    position: relative
}

.terms-box ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #520C6C
}

.terms-box ol {
    list-style: decimal
}

.terms-box li {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
    color: #2a2030
}

.terms-box em,
.terms-box i {
    font-style: italic;
    color: #520C6C
}

.terms-box a {
    color: #520C6C;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.terms-box a:hover {
    color: #FE0D86
}

.terms-box table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 1px 2px 0 #520c6c14;
    border-radius: 10px;
    overflow: hidden
}

.terms-box thead {
    background: #520C6C
}

.terms-box thead th {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 16px;
    text-align: left;
    font-weight: 600
}

.terms-box tbody tr {
    border-bottom: 1px solid #520c6c14;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.terms-box tbody tr:last-child {
    border-bottom: none
}

.terms-box tbody tr:hover {
    background: #520c6c0a
}

.terms-box td {
    padding: 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #2a2030;
    vertical-align: top
}

.terms-box hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, #520c6c2e, #fe0d861f, #520c6c0a);
    margin: 48px 0
}

.terms-box div {
    font-size: 16px;
    line-height: 1.6
}

@media (max-width: 768px) {
    .terms-box {
        padding: 24px 16px
    }

    .terms-box table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 6px
    }

    .terms-box thead th,
    .terms-box td {
        padding: 16px 8px
    }
}

@media (max-width: 375px) {

    .terms-box p,
    .terms-box li,
    .terms-box td,
    .terms-box div {
        font-size: 14px
    }
}

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

.ctus .reach {
    padding: 48px 24px;
    background: linear-gradient(160deg, #520c6c0f 0%, #520c6c05 60%, #fe0d860a 100%);
    position: relative
}

.ctus .reach::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #520C6C 0%, #FE0D86 100%)
}

.ctus .reach-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 48px;
    align-items: start
}

.ctus .reach-details {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .reach-label {
    font-size: 14px;
    letter-spacing: .12em;
    color: #520C6C;
    text-transform: uppercase;
    font-weight: 600
}

.ctus .reach-heading {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b0d24;
    margin: 0;
    position: relative;
    display: inline-block
}

.ctus .reach-heading .uline {
    position: relative;
    display: inline-block
}

.ctus .reach-heading .uline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FE0D86;
    animation: drawline .8s cubic-bezier(0.0, 0, 0.2, 1) .4s forwards
}

@keyframes drawline {
    to {
        width: 100%
    }
}

.ctus .reach-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2447;
    margin: 0
}

.ctus .reach-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px
}

.ctus .reach-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 #520c6c14 0 6px 14px 0 #520c6c17;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .reach-item:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f;
    transform: translateY(-2px)
}

.ctus .reach-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(145deg, #520c6c1a 0%, #fe0d8614 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctus .reach-icon svg {
    width: 20px;
    height: 20px
}

.ctus .reach-item-label {
    font-size: 14px;
    color: #7a5e8a;
    letter-spacing: .06em;
    margin: 0 0 4px
}

.ctus .reach-item-val {
    font-size: 16px;
    color: #1b0d24;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    word-break: break-word
}

.ctus .reach-item-val a {
    color: #1b0d24;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .reach-item-val a:hover {
    color: #FE0D86
}

.ctus .reach-img {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 14px 0 #520c6c17 0 10px 52px 0 #520c6c1f
}

.ctus .reach-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 16px
}

.ctus .reach-img-overlay {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(180deg, #520c6c0a 0%, #520c6c2e 100%);
    pointer-events: none
}

.ctus .reach-img .corner-deco {
    position: absolute;
    top: 16px;
    right: 16px;
    pointer-events: none
}

.ctus .reach-img .corner-deco span {
    display: block;
    border: 1.5px solid #ffffff80;
    border-radius: 6px;
    position: absolute
}

.ctus .reach-img .corner-deco span:nth-child(1) {
    width: 32px;
    height: 32px;
    top: 0;
    right: 0
}

.ctus .reach-img .corner-deco span:nth-child(2) {
    width: 48px;
    height: 48px;
    top: -8px;
    right: -8px
}

.ctus .reach-img .corner-deco span:nth-child(3) {
    width: 64px;
    height: 64px;
    top: -16px;
    right: -16px
}

.ctus .formsec {
    padding: 48px 24px;
    background: #fff;
    position: relative
}

.ctus .formsec::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, #00F691 0%, #520C6C 100%)
}

.ctus .formsec-inner {
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 48px;
    align-items: start
}

.ctus .formpanel {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 #520c6c14 0 6px 14px 0 #520c6c17;
    padding: 48px;
    position: relative
}

.ctus .formpanel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #520C6C 0%, #FE0D86 55%, #00F691 100%);
    border-radius: 16px 16px 0 0
}

.ctus .form-top {
    margin-bottom: 24px
}

.ctus .form-htag {
    font-size: 20px;
    font-weight: 700;
    color: #1b0d24;
    margin: 0 0 8px;
    line-height: 1.4;
    padding-left: 16px;
    border-left: 4px solid #520C6C
}

.ctus .form-sub {
    font-size: 14px;
    color: #7a5e8a;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px
}

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

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

.ctus .fg label {
    font-size: 14px;
    font-weight: 600;
    color: #3a2447;
    letter-spacing: .04em
}

.ctus .fg input[type="text"],
.ctus .fg input[type="email"],
.ctus .fg input[type="tel"] {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #d8c8e4;
    border-radius: 10px;
    font-size: 16px;
    color: #1b0d24;
    background: #fdf9ff;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    outline: none;
    box-shadow: inset 0 4px 8px 0 #520c6c0a
}

.ctus .fg input[type="text"]:focus,
.ctus .fg input[type="email"]:focus,
.ctus .fg input[type="tel"]:focus {
    border-color: #520C6C;
    box-shadow: inset 0 4px 8px 0 #520c6c14 0 0 0 3px #520c6c1a
}

.ctus .fg input::placeholder {
    font-size: 14px;
    color: #b09cbf
}

.ctus .fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ctus .radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus .radio-group-label {
    font-size: 14px;
    font-weight: 600;
    color: #3a2447;
    letter-spacing: .04em
}

.ctus .radio-opts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.ctus .radio-opts label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid #d8c8e4;
    border-radius: 44px;
    font-size: 14px;
    color: #3a2447;
    cursor: pointer;
    background: #fdf9ff;
    transition: border-color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400
}

.ctus .radio-opts input[type="radio"] {
    accent-color: #520C6C;
    width: 16px;
    height: 16px;
    cursor: pointer
}

.ctus .radio-opts label:has(input[type="radio"]:checked) {
    border-color: #520C6C;
    background: #520c6c12;
    color: #520C6C;
    font-weight: 600
}

.ctus .radio-opts label:hover {
    border-color: #FE0D86;
    background: #fe0d860a
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #520c6c08;
    border-radius: 10px;
    border: 1px solid #520c6c14
}

.ctus .privacy-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #520C6C;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px
}

.ctus .privacy-row span {
    font-size: 14px;
    color: #3a2447;
    line-height: 1.6
}

.ctus .privacy-row span a {
    color: #520C6C;
    text-decoration: underline;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .privacy-row span a:hover {
    color: #FE0D86
}

.ctus .submitbtn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: #520C6C;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-transform: lowercase;
    letter-spacing: .03em;
    box-shadow: 0 6px 14px 0 #520c6c17;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start
}

.ctus .submitbtn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, #fe0d86e6 0%, #00f691b3 100%);
    transform: skewX(-20deg);
    transition: left .28s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none
}

.ctus .submitbtn:hover::before {
    left: 120%
}

.ctus .submitbtn span {
    position: relative;
    z-index: 1
}

.ctus .submitbtn:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f;
    transform: translateY(-1px)
}

.ctus .submitbtn:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px 0 #520c6c14
}

.ctus .submitbtn:focus-visible {
    outline: 3px solid #00F691;
    outline-offset: 3px
}

.ctus .aside-info {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .aside-block {
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(155deg, #520c6c0d 0%, #fe0d8608 100%);
    position: relative
}

.ctus .aside-block .num-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 44px;
    background: #520C6C;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px
}

.ctus .aside-block h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1b0d24;
    margin: 0 0 8px;
    line-height: 1.4;
    padding-left: 14px;
    border-left: 3px solid #FE0D86
}

.ctus .aside-block p {
    font-size: 14px;
    color: #4a3558;
    line-height: 1.6;
    margin: 0
}

.ctus .aside-hours {
    padding: 24px;
    background: #520C6C;
    border-radius: 16px
}

.ctus .aside-hours h5 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.4
}

.ctus .hours-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #ffffff1f
}

.ctus .hours-row:last-child {
    border-bottom: none
}

.ctus .hours-day {
    font-size: 14px;
    color: #ffffffb3
}

.ctus .hours-time {
    font-size: 14px;
    color: #00F691;
    font-weight: 600
}

.ctus .diag-texture {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.ctus .diag-texture svg {
    width: 100%;
    height: 100%
}

.ctus .aside-block> :not(.diag-texture) {
    position: relative;
    z-index: 1
}

@media (max-width: 1366px) {
    .ctus .reach-heading {
        font-size: 48px
    }
}

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

    .ctus .formsec-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ctus .reach-heading {
        font-size: 36px
    }

    .ctus .formpanel {
        padding: 24px
    }

    .ctus .fg-row {
        grid-template-columns: 1fr
    }

    .ctus .radio-opts {
        flex-direction: column
    }
}

@media (max-width: 375px) {
    .ctus .reach {
        padding: 24px 16px
    }

    .ctus .formsec {
        padding: 24px 16px
    }

    .ctus .reach-heading {
        font-size: 28px
    }

    .ctus .formpanel {
        padding: 16px
    }
}

@keyframes desat {

    0%,
    100% {
        filter: saturate(1)
    }

    50% {
        filter: saturate(0.7)
    }
}

.ctus .formsec {
    animation: desat 8s cubic-bezier(0.0, 0, 0.2, 1) infinite
}

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

.prtl .inner-cap {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px
}

.prtl .tblock {
    position: relative;
    padding-top: 96px;
    padding-bottom: 48px;
    background-color: #f4f0f7;
    overflow: hidden
}

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

.prtl .tblock-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.prtl .tblock-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prtl .tblock-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .12em;
    color: #520C6C;
    text-transform: uppercase;
    font-weight: 600
}

.prtl .tblock-h1 {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a0525;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.prtl .tblock-h1 span.line1 {
    font-weight: 500;
    color: #520C6C;
    opacity: .7
}

.prtl .tblock-h1 span.line2 {
    font-weight: 700;
    color: #2a0a36
}

.prtl .tblock-h1 span.line3 {
    font-weight: 800;
    color: #520C6C;
    position: relative;
    display: inline-block
}

.prtl .tblock-h1 span.line3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: #FE0D86;
    border-radius: 6px;
    animation: underlineDraw .8s cubic-bezier(0.0, 0, 0.2, 1) .4s forwards
}

@keyframes underlineDraw {
    to {
        width: 100%
    }
}

.prtl .tblock-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3d1a50;
    max-width: 520px;
    margin: 0
}

.prtl .tblock-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap
}

.prtl .btn-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #520C6C;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 44px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .04em;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 14px 0 #520c6c17
}

.prtl .btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FE0D86 0%, #520C6C 100%);
    opacity: 0;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 44px
}

.prtl .btn-primary:hover::before {
    opacity: 1
}

.prtl .btn-primary:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f
}

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

.prtl .btn-outline {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #520C6C;
    font-size: 14px;
    line-height: 1.4;
    border-radius: 44px;
    border: 2px solid #520C6C;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .04em;
    position: relative;
    overflow: hidden;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtl .btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #520C6C 0%, #FE0D86 100%);
    opacity: 0;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtl .btn-outline:hover::before {
    opacity: 1
}

.prtl .btn-outline:hover {
    color: #fff;
    border-color: transparent
}

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

.prtl .tblock-imgwrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 10px 52px 0 #520c6c1f
}

.prtl .tblock-imgwrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.prtl .tblock-imgwrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #520c6c2e 0%, #520c6c0a 60%, #00f69114 100%);
    mix-blend-mode: multiply
}

.prtl .tblock-geo {
    position: absolute;
    bottom: -48px;
    left: -48px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient(160deg, #fe0d8614 0%, #fe0d8605 100%);
    pointer-events: none
}

.prtl .divider {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0 24px;
    max-width: 1170px;
    margin: 0 auto
}

.prtl .divider-track {
    height: 1px;
    width: 100%;
    background: repeating-linear-gradient(to right, #520C6C 0px, #520C6C 4px, transparent 4px, transparent 8px, #FE0D86 8px, #FE0D86 10px, transparent 10px, transparent 16px);
    opacity: .2
}

.prtl .numblock {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #fff
}

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

.prtl .numblock-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prtl .numblock-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #FE0D86;
    font-weight: 600
}

.prtl .numblock-heading {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #2a0a36;
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid #520C6C
}

.prtl .numblock-body {
    font-size: 16px;
    line-height: 1.6;
    color: #3d1a50;
    margin: 0
}

.prtl .numblock-pull {
    font-size: 20px;
    line-height: 1.4;
    color: #520C6C;
    font-weight: 600;
    font-style: italic;
    padding: 16px;
    background: linear-gradient(160deg, #520c6c0d 0%, #520c6c05 100%);
    border-radius: 10px
}

.prtl .numblock-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.prtl .numcard {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: 10px;
    background: linear-gradient(160deg, #520c6c0a 0%, #520c6c03 100%);
    box-shadow: 0 1px 2px 0 #520c6c14;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtl .numcard:hover {
    box-shadow: 0 6px 14px 0 #520c6c17;
    transform: translateY(-2px)
}

.prtl .numcard.accent {
    background: #520C6C;
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
    gap: 24px
}

.prtl .numcard-val {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 800;
    color: #520C6C;
    letter-spacing: -.02em
}

.prtl .numcard.accent .numcard-val {
    color: #00F691
}

.prtl .numcard-unit {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #FE0D86
}

.prtl .numcard.accent .numcard-unit {
    color: #ffffffb3
}

.prtl .numcard-desc {
    font-size: 14px;
    line-height: 1.4;
    color: #6a3a80
}

.prtl .numcard.accent .numcard-desc {
    color: #ffffffd9;
    font-size: 16px;
    line-height: 1.6
}

.prtl .numcard-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.prtl .fieldblock {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #2a0a36;
    position: relative;
    overflow: hidden
}

.prtl .fieldblock-bg {
    position: absolute;
    inset: 0;
    background-image: url(./graphics_directory/2025_11-2025_09-4.jpg);
    background-size: cover;
    background-position: center;
    opacity: .12;
    pointer-events: none
}

.prtl .fieldblock-geo {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: linear-gradient(160deg, #00f69114 0%, #00f69105 100%);
    pointer-events: none
}

.prtl .fieldblock-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 48px;
    align-items: start
}

.prtl .fieldblock-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prtl .fieldblock-label {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #00F691;
    font-weight: 600
}

.prtl .fieldblock-heading {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid #00F691
}

.prtl .fieldblock-body {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffc7;
    margin: 0
}

.prtl .fieldblock-body2 {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffc7;
    margin: 0
}

.prtl .rescard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.prtl .rescard {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: 10px;
    background: #ffffff0f;
    border: 1px solid #ffffff1a;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtl .rescard:hover {
    background: #ffffff1a;
    border-color: #00f6914d
}

.prtl .rescard-type {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #00F691;
    font-weight: 600
}

.prtl .rescard-name {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #fff
}

.prtl .rescard-size {
    font-size: 14px;
    line-height: 1.4;
    color: #ffffff80
}

.prtl .rescard-dl {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #00F691;
    text-decoration: none;
    font-weight: 600;
    margin-top: 8px;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtl .rescard-dl:hover {
    opacity: .7
}

.prtl .rescard-dl svg {
    flex-shrink: 0
}

.prtl .teamblock {
    padding-top: 48px;
    padding-bottom: 48px;
    background: linear-gradient(160deg, #520c6c0a 0%, #fe0d8608 100%)
}

.prtl .teamblock-heading {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #2a0a36;
    margin: 0 0 8px;
    padding-left: 16px;
    border-left: 3px solid #FE0D86
}

.prtl .teamblock-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #3d1a50;
    margin: 0 0 48px
}

.prtl .teamblock-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    align-items: start
}

.prtl .teamcard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 2px 0 #520c6c14;
    transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtl .teamcard:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f
}

.prtl .teamcard.wide {
    grid-column: span 2;
    flex-direction: row;
    gap: 24px
}

.prtl .teamcard-portrait {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 6px 14px 0 #520c6c17
}

.prtl .teamcard-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.prtl .teamcard-noportrait {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(160deg, #520C6C 0%, #FE0D86 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700
}

.prtl .teamcard-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.prtl .teamcard-name {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #2a0a36;
    margin: 0
}

.prtl .teamcard-role {
    font-size: 14px;
    line-height: 1.4;
    color: #520C6C;
    font-weight: 600;
    letter-spacing: .06em
}

.prtl .teamcard-bio {
    font-size: 14px;
    line-height: 1.6;
    color: #3d1a50;
    margin: 0
}

.prtl .teamcard-img {
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    width: 180px;
    height: 180px
}

.prtl .teamcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.prtl .journeyblock {
    padding-top: 48px;
    padding-bottom: 48px;
    background: #fff
}

.prtl .journeyblock-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px
}

.prtl .journeyblock-heading {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #2a0a36;
    margin: 0;
    padding-left: 16px;
    border-left: 3px solid #520C6C
}

.prtl .journeyblock-body {
    font-size: 16px;
    line-height: 1.6;
    color: #3d1a50;
    margin: 0
}

.prtl .journeyblock-pull {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 600;
    color: #FE0D86;
    font-style: italic;
    margin: 0
}

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

.prtl .phasecard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px;
    border-radius: 10px;
    border: 1px solid #520c6c1f;
    background: linear-gradient(160deg, #520c6c08 0%, #520c6c03 100%);
    position: relative;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.prtl .phasecard:hover {
    border-color: #520c6c4d;
    box-shadow: 0 6px 14px 0 #520c6c17
}

.prtl .phasecard-num {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 800;
    color: #520c6c14;
    letter-spacing: -.04em;
    position: absolute;
    top: 8px;
    right: 16px;
    pointer-events: none
}

.prtl .phasecard-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(160deg, #520c6c1f 0%, #fe0d8614 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconFloat 3s cubic-bezier(0.0, 0, 0.2, 1) infinite alternate
}

@keyframes iconFloat {
    0% {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-5px)
    }
}

.prtl .phasecard:nth-child(2) .phasecard-icon {
    animation-delay: .4s
}

.prtl .phasecard:nth-child(3) .phasecard-icon {
    animation-delay: .8s
}

.prtl .phasecard:nth-child(4) .phasecard-icon {
    animation-delay: 1.2s
}

.prtl .phasecard-heading {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #2a0a36;
    margin: 0
}

.prtl .phasecard-body {
    font-size: 14px;
    line-height: 1.6;
    color: #3d1a50;
    margin: 0
}

.prtl .journeyblock-img {
    margin-top: 48px;
    border-radius: 16px;
    overflow: hidden;
    height: 280px;
    position: relative;
    box-shadow: 0 10px 52px 0 #520c6c1f
}

.prtl .journeyblock-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.prtl .journeyblock-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #520c6c80 0%, #520c6c1a 60%)
}

.prtl .journeyblock-img-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    color: #fff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    max-width: 480px
}

@media (max-width: 1366px) {
    .prtl .tblock-h1 {
        font-size: 52px
    }

    .prtl .tblock-grid {
        grid-template-columns: 1fr 360px
    }
}

@media (max-width: 768px) {
    .prtl .tblock {
        padding-top: 48px;
        padding-bottom: 24px
    }

    .prtl .tblock-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .prtl .tblock-imgwrap {
        aspect-ratio: 3/2;
        max-height: 260px
    }

    .prtl .tblock-h1 {
        font-size: 36px
    }

    .prtl .numblock-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .prtl .fieldblock-inner {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .prtl .rescard-grid {
        grid-template-columns: 1fr
    }

    .prtl .teamblock-layout {
        grid-template-columns: 1fr
    }

    .prtl .teamcard.wide {
        grid-column: span 1;
        flex-direction: column
    }

    .prtl .teamcard-img {
        width: 100%;
        height: 180px
    }

    .prtl .phasegrid {
        grid-template-columns: 1fr 1fr
    }

    .prtl .journeyblock-top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .prtl .numblock-right {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 375px) {
    .prtl .tblock-h1 {
        font-size: 28px
    }

    .prtl .numcard.accent {
        flex-direction: column;
        gap: 8px
    }

    .prtl .phasegrid {
        grid-template-columns: 1fr
    }

    .prtl .numblock-right {
        grid-template-columns: 1fr
    }

    .prtl .teamcard.wide {
        flex-direction: column
    }
}

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

.abtu .pgwrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.abtu .sec1 {
    padding: 48px 0 80px;
    position: relative;
    background: linear-gradient(180deg, #520c6c12 0%, #520c6c03 60%, #fff 100%)
}

.abtu .sec1-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.abtu .sec1-bg svg {
    position: absolute;
    top: -40px;
    right: -80px;
    width: 600px;
    opacity: .13
}

.abtu .sec1-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start
}

.abtu .sec1-imgcard {
    position: relative
}

.abtu .sec1-imgcard .imgframe {
    width: 100%;
    aspect-ratio: 7/9;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 14px 0 #520c6c17
}

.abtu .sec1-imgcard .imgframe img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #e8ddef
}

.abtu .sec1-imgcard .imglabel {
    margin-top: 16px;
    padding: 16px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 #520c6c14
}

.abtu .sec1-imgcard .imglabel .ilyear {
    font-size: 14px;
    letter-spacing: .08em;
    color: #520c6c8c;
    display: block;
    margin-bottom: 8px
}

.abtu .sec1-imgcard .imglabel .ilstat {
    font-size: 20px;
    font-weight: 700;
    color: #520C6C;
    line-height: 1.2
}

.abtu .sec1-imgcard .imglabel .ilsub {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-top: 8px
}

.abtu .sec1-text {
    padding-top: 8px
}

.abtu .sec1-text .tagmark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    letter-spacing: .1em;
    color: #FE0D86;
    margin-bottom: 16px
}

.abtu .sec1-text .tagmark span {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #FE0D86
}

.abtu .sec1-text h1 {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a0a22;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.abtu .sec1-text h1 .underword {
    position: relative;
    white-space: nowrap
}

.abtu .sec1-text h1 .underword::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 4px;
    width: 0;
    background: #00F691;
    border-radius: 6px;
    animation: drawline .9s cubic-bezier(0.0, 0, 0.2, 1) .5s forwards
}

@keyframes drawline {
    to {
        width: 100%
    }
}

.abtu .sec1-text .tagline {
    font-size: 20px;
    line-height: 1.6;
    color: #2c1340;
    margin: 0 0 24px;
    max-width: 560px
}

.abtu .sec1-text .bodyp {
    font-size: 16px;
    line-height: 1.9;
    color: #3b2450;
    margin: 0 0 24px;
    max-width: 560px
}

.abtu .sec1-text .actlinks {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap
}

.abtu .sec1-text .actlinks a {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 44px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abtu .sec1-text .actlinks .aprimary {
    background: #520C6C;
    color: #fff
}

.abtu .sec1-text .actlinks .aprimary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FE0D86 0%, #520C6C 60%);
    opacity: 0;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 44px
}

.abtu .sec1-text .actlinks .aprimary:hover::before {
    opacity: 1
}

.abtu .sec1-text .actlinks .aprimary span {
    position: relative;
    z-index: 1
}

.abtu .sec1-text .actlinks .asecond {
    background: transparent;
    color: #520C6C;
    border: 2px solid #520C6C;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abtu .sec1-text .actlinks .asecond:hover {
    background: #520C6C;
    color: #fff;
    border-color: #520C6C
}

.abtu .sec2 {
    padding: 80px 0 48px;
    background: #fff;
    position: relative
}

.abtu .sec2-divider {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 0
}

.abtu .sec2-divider svg {
    display: block;
    width: 100%
}

.abtu .sec2-inner {
    position: relative
}

.abtu .sec2-inner::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    width: 420px;
    height: 420px;
    transform: translateX(-50%);
    background: #520c6c0e;
    border-radius: 44px;
    animation: breathspot 6s cubic-bezier(0.0, 0, 0.2, 1) infinite alternate;
    pointer-events: none;
    z-index: 0
}

@keyframes breathspot {
    0% {
        transform: translateX(-50%) scale(0.88);
        opacity: .7
    }

    100% {
        transform: translateX(-50%) scale(1.1);
        opacity: 1
    }
}

.abtu .sec2-toprow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1
}

.abtu .sec2-toprow .valcard {
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 14px 0 #520c6c17;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.abtu .sec2-toprow .valcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #520C6C;
    border-radius: 6px 0 0 6px;
    transition: width .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abtu .sec2-toprow .valcard:hover::before {
    width: 8px
}

.abtu .sec2-toprow .valcard:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f;
    transform: translateY(-4px)
}

.abtu .sec2-toprow .valcard h4 {
    font-size: 16px;
    font-weight: 700;
    color: #520C6C;
    margin: 0 0 8px;
    line-height: 1.4
}

.abtu .sec2-toprow .valcard p {
    font-size: 14px;
    line-height: 1.9;
    color: #3b2450;
    margin: 0
}

.abtu .sec2-profile {
    display: grid;
    grid-template-columns: 3fr 5fr;
    gap: 48px;
    align-items: start;
    position: relative;
    z-index: 1;
    margin-bottom: 48px
}

.abtu .sec2-profile .profleft {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abtu .sec2-profile .profleft .profcard {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 2px 0 #520c6c14
}

.abtu .sec2-profile .profleft .profcard .profimg {
    width: 80px;
    height: 103px;
    flex-shrink: 0;
    overflow: hidden;
    background: #e4d7ee
}

.abtu .sec2-profile .profleft .profcard .profimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.abtu .sec2-profile .profleft .profcard .profmeta {
    flex: 1
}

.abtu .sec2-profile .profleft .profcard .profmeta .pname {
    font-size: 16px;
    font-weight: 700;
    color: #1a0a22;
    line-height: 1.4
}

.abtu .sec2-profile .profleft .profcard .profmeta .prole {
    font-size: 14px;
    color: #FE0D86;
    margin: 4px 0 8px;
    letter-spacing: .04em
}

.abtu .sec2-profile .profleft .profcard .profmeta .pquote {
    font-size: 14px;
    color: #3b2450;
    line-height: 1.6;
    font-style: italic
}

.abtu .sec2-profile .profright {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abtu .sec2-profile .profright h2 {
    font-size: 20px;
    font-weight: 800;
    color: #1a0a22;
    margin: 0 0 8px;
    line-height: 1.4;
    position: relative;
    padding-left: 16px
}

.abtu .sec2-profile .profright h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: calc(100% - 4px);
    background: #00F691;
    border-radius: 6px
}

.abtu .sec2-profile .profright .textpull {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    align-items: start
}

.abtu .sec2-profile .profright .textpull .pullbody {
    font-size: 16px;
    line-height: 1.9;
    color: #3b2450
}

.abtu .sec2-profile .profright .textpull .pullbody p {
    margin: 0 0 16px
}

.abtu .sec2-profile .profright .textpull .pullbody p:last-child {
    margin: 0
}

.abtu .sec2-profile .profright .textpull .pullquote {
    background: linear-gradient(180deg, #fe0d8614 0%, #fe0d8605 100%);
    border-radius: 10px;
    padding: 24px 16px;
    font-size: 20px;
    font-weight: 700;
    color: #520C6C;
    line-height: 1.4;
    text-align: center
}

.abtu .sec2-timeline {
    position: relative;
    z-index: 1
}

.abtu .sec2-timeline h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a0a22;
    margin: 0 0 24px;
    padding-left: 16px;
    position: relative;
    line-height: 1.4
}

.abtu .sec2-timeline h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 4px;
    height: calc(100% - 4px);
    background: #FE0D86;
    border-radius: 6px
}

.abtu .tltrack {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0;
    overflow: hidden
}

.abtu .tltrack::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #520C6C 0%, #FE0D86 50%, #00F691 100%);
    z-index: 0
}

.abtu .tlpoint {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1
}

.abtu .tlpoint .tlnub {
    width: 40px;
    height: 40px;
    border-radius: 44px;
    background: #fff;
    border: 3px solid #520C6C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #520C6C;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), color .22s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 1px 2px 0 #520c6c14
}

.abtu .tlpoint:hover .tlnub {
    background: #520C6C;
    color: #fff
}

.abtu .tlpoint .tlcard {
    margin-top: 16px;
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 14px 0 #520c6c17;
    text-align: center;
    width: 100%;
    max-width: 180px;
    transition: box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.abtu .tlpoint:hover .tlcard {
    box-shadow: 0 10px 52px 0 #520c6c1f;
    transform: translateY(-4px)
}

.abtu .tlpoint .tlcard .tlyear {
    font-size: 14px;
    font-weight: 700;
    color: #FE0D86;
    letter-spacing: .08em;
    margin-bottom: 8px
}

.abtu .tlpoint .tlcard h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a0a22;
    margin: 0 0 8px;
    line-height: 1.4
}

.abtu .tlpoint .tlcard p {
    font-size: 14px;
    color: #3b2450;
    line-height: 1.6;
    margin: 0
}

.abtu .sec2-imgrow {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    position: relative;
    z-index: 1
}

.abtu .sec2-imgrow .imgslot {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 14px 0 #520c6c17;
    background: #e4d7ee
}

.abtu .sec2-imgrow .imgslot img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s cubic-bezier(0.0, 0, 0.2, 1)
}

.abtu .sec2-imgrow .imgslot:hover img {
    transform: scale(1.04)
}

.abtu .sec2-imgrow .imgslot.wide {
    grid-column: span 2
}

.abtu .sec2-imgrow .imgslot.wide img {
    aspect-ratio: 8/3
}

@media (max-width: 1366px) {
    .abtu .sec1-grid {
        grid-template-columns: 240px 1fr;
        gap: 32px
    }

    .abtu .sec1-text h1 {
        font-size: 48px
    }

    .abtu .tlpoint .tlcard {
        max-width: 150px
    }
}

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

    .abtu .sec1-imgcard {
        display: grid;
        grid-template-columns: 140px 1fr;
        gap: 16px;
        align-items: start
    }

    .abtu .sec1-imgcard .imgframe {
        aspect-ratio: 7/9
    }

    .abtu .sec1-text h1 {
        font-size: 36px
    }

    .abtu .sec2-toprow {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .abtu .sec2-profile {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abtu .sec2-profile .profright .textpull {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .abtu .tltrack {
        flex-direction: column;
        gap: 16px
    }

    .abtu .tltrack::before {
        top: 0;
        left: 20px;
        right: auto;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, #520C6C 0%, #FE0D86 50%, #00F691 100%)
    }

    .abtu .tlpoint {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px
    }

    .abtu .tlpoint .tlcard {
        margin-top: 0;
        max-width: 100%;
        text-align: left
    }

    .abtu .sec2-imgrow {
        grid-template-columns: 1fr 1fr;
        gap: 16px
    }

    .abtu .sec2-imgrow .imgslot.wide {
        grid-column: span 2
    }

    .abtu .sec2-imgrow .imgslot.wide img {
        aspect-ratio: 2/1
    }
}

@media (max-width: 375px) {
    .abtu .pgwrap {
        padding: 0 16px
    }

    .abtu .sec1-imgcard {
        grid-template-columns: 1fr
    }

    .abtu .sec1-text h1 {
        font-size: 28px
    }

    .abtu .sec2-imgrow {
        grid-template-columns: 1fr
    }

    .abtu .sec2-imgrow .imgslot.wide {
        grid-column: span 1
    }

    .abtu .sec2-imgrow .imgslot.wide img {
        aspect-ratio: 4/3
    }

    .abtu .sec1-text .actlinks {
        flex-direction: column;
        align-items: flex-start
    }
}

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

.proc .schema-data {
    display: none
}

.proc .ptop {
    padding: 48px 24px;
    max-width: 1170px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: center;
    position: relative
}

.proc .ptop-label {
    font-size: 14px;
    letter-spacing: .12em;
    color: #520C6C;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
    font-weight: 600
}

.proc .ptop-label::after {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background: #FE0D86;
    vertical-align: middle;
    margin-left: 8px
}

.proc .ptop-h1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1b0a22;
    font-weight: 800;
    margin: 0 0 24px
}

.proc .ptop-h1 .accword {
    position: relative;
    display: inline-block;
    color: #520C6C
}

.proc .ptop-h1 .accword::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 3px;
    background: #FE0D86;
    animation: drawline .6s cubic-bezier(0.0, 0, 0.2, 1) .4s forwards
}

@keyframes drawline {
    to {
        width: 100%
    }
}

.proc .ptop-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2045;
    max-width: 540px;
    margin: 0
}

.proc .ptop-imgbox {
    position: relative;
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
    overflow: hidden;
    border-radius: 10px
}

.proc .ptop-imgbox img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    opacity: .55;
    display: block;
    animation: imgscale .7s cubic-bezier(0.0, 0, 0.2, 1) both
}

@keyframes imgscale {
    from {
        transform: scale(0.97)
    }

    to {
        transform: scale(1)
    }
}

.proc .ptop-corner {
    position: absolute;
    pointer-events: none
}

.proc .ptop-corner.tl {
    top: 16px;
    left: 16px;
    width: 48px;
    height: 48px;
    border-top: 2px solid #520C6C;
    border-left: 2px solid #520C6C;
    border-radius: 6px 0 0 0
}

.proc .ptop-corner.br {
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-bottom: 1px solid #FE0D86;
    border-right: 1px solid #FE0D86;
    border-radius: 0 0 6px 0
}

.proc .divider-a {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px
}

.proc .divider-a span {
    display: block;
    height: 1px;
    background: #520C6C;
    opacity: .18
}

.proc .divider-a span:nth-child(1) {
    flex: 1;
    height: 1px
}

.proc .divider-a span:nth-child(2) {
    flex: 2;
    height: 2px;
    opacity: .28
}

.proc .divider-a span:nth-child(3) {
    flex: 4;
    height: 3px;
    opacity: .38
}

.proc .psteps {
    background: #f5f0f8;
    padding: 48px 24px
}

.proc .psteps-inner {
    max-width: 1170px;
    margin: 0 auto
}

.proc .psteps-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start
}

.proc .psteps-headline {
    font-size: 20px;
    line-height: 1.4;
    color: #1b0a22;
    font-weight: 700;
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 4px solid #520C6C
}

.proc .psteps-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2045;
    margin: 0
}

.proc .psteps-accent {
    font-size: 20px;
    line-height: 1.4;
    color: #520C6C;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    padding-top: 8px
}

.proc .steplist {
    display: flex;
    flex-direction: column;
    gap: 0
}

.proc .steprow {
    display: grid;
    grid-template-columns: 64px 1fr 320px;
    gap: 24px;
    align-items: stretch;
    padding: 24px 0;
    border-top: 1px solid #520c6c1f;
    opacity: 0;
    animation: fadeup .25s cubic-bezier(0.0, 0, 0.2, 1) forwards
}

.proc .steprow:nth-child(1) {
    animation-delay: .05s
}

.proc .steprow:nth-child(2) {
    animation-delay: .12s
}

.proc .steprow:nth-child(3) {
    animation-delay: .19s
}

.proc .steprow:nth-child(4) {
    animation-delay: .26s
}

.proc .steprow:nth-child(5) {
    animation-delay: .33s
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

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

.proc .steprow:last-child {
    border-bottom: 1px solid #520c6c1f
}

.proc .stepnum {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 800;
    color: #520c6c1f;
    text-align: center;
    padding-top: 4px
}

.proc .stepcontent {
    padding: 8px 0
}

.proc .steph {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #1b0a22;
    margin: 0 0 8px;
    padding-left: 16px;
    border-left: 3px solid #FE0D86
}

.proc .stepp {
    font-size: 14px;
    line-height: 1.9;
    color: #3a2045;
    margin: 0;
    padding-left: 16px
}

.proc .steptag {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 1px 2px 0 #520c6c14 0 6px 14px 0 #520c6c17;
    align-self: center
}

.proc .tagline {
    font-size: 14px;
    letter-spacing: .08em;
    color: #520C6C;
    text-transform: uppercase;
    font-weight: 600
}

.proc .tagval {
    font-size: 16px;
    color: #1b0a22;
    line-height: 1.4;
    font-weight: 500
}

.proc .divider-b {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 8px
}

.proc .divider-b span {
    display: block;
    background: #FE0D86;
    opacity: .2
}

.proc .divider-b span:nth-child(1) {
    flex: 4;
    height: 3px
}

.proc .divider-b span:nth-child(2) {
    flex: 2;
    height: 2px;
    opacity: .14
}

.proc .divider-b span:nth-child(3) {
    flex: 1;
    height: 1px;
    opacity: .1
}

.proc .pteam {
    padding: 48px 24px;
    max-width: 1170px;
    margin: 0 auto
}

.proc .pteam-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
    align-items: start
}

.proc .pteam-labelbox {
    position: sticky;
    top: 24px
}

.proc .pteam-smalllabel {
    font-size: 14px;
    letter-spacing: .1em;
    color: #FE0D86;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 16px
}

.proc .pteam-h {
    font-size: 20px;
    line-height: 1.4;
    color: #1b0a22;
    font-weight: 700;
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 4px solid #00F691
}

.proc .pteam-note {
    font-size: 14px;
    line-height: 1.9;
    color: #3a2045;
    margin: 0
}

.proc .pteam-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.proc .personcard {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 2px 0 #520c6c14 0 6px 14px 0 #520c6c17;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.proc .personcard:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f
}

.proc .personcard-img {
    width: 100%;
    aspect-ratio: 5/7;
    overflow: hidden
}

.proc .personcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.proc .personcard:hover .personcard-img img {
    transform: scale(1.04)
}

.proc .personcard-body {
    padding: 16px
}

.proc .personcard-name {
    font-size: 16px;
    font-weight: 700;
    color: #1b0a22;
    margin: 0 0 8px
}

.proc .personcard-role {
    font-size: 14px;
    color: #520C6C;
    font-weight: 600;
    margin: 0 0 8px
}

.proc .personcard-bio {
    font-size: 14px;
    line-height: 1.9;
    color: #3a2045;
    margin: 0
}

.proc .diagram-strip {
    background: #1b0a22;
    padding: 48px 24px;
    position: relative
}

.proc .diagram-strip::before {
    content: '"';
    position: absolute;
    top: -24px;
    left: 48px;
    font-size: 200px;
    line-height: 1;
    color: #520c6c2e;
    font-weight: 800;
    pointer-events: none;
    overflow: hidden;
    max-height: 180px;
    display: block
}

.proc .diagram-inner {
    max-width: 1170px;
    margin: 0 auto
}

.proc .diagram-h {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    margin: 0 0 8px;
    padding-left: 16px;
    border-left: 4px solid #00F691
}

.proc .diagram-sub {
    font-size: 14px;
    line-height: 1.9;
    color: #ffffffa6;
    margin: 0 0 48px;
    padding-left: 20px
}

.proc .diag-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: center
}

.proc .diagnode {
    background: #ffffff0f;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid #ffffff1a;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.proc .diagnode:hover {
    background: #520c6c59;
    border-color: #fe0d8666
}

.proc .diagnode-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center
}

.proc .diagnode-icon svg {
    width: 32px;
    height: 32px
}

.proc .diagnode-label {
    font-size: 14px;
    font-weight: 700;
    color: #00F691;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin: 0 0 8px
}

.proc .diagnode-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffbf;
    margin: 0
}

.proc .diagconn {
    display: flex;
    align-items: center;
    justify-content: center
}

.proc .connsvg {
    width: 32px;
    height: 16px;
    display: block
}

.proc .diag-lower {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.proc .diagfact {
    border-radius: 10px;
    padding: 16px 24px;
    background: #00f69114;
    border: 1px solid #00f69133;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.proc .diagfact-num {
    font-size: 66px;
    line-height: 1.2;
    font-weight: 800;
    color: #00F691;
    flex-shrink: 0
}

.proc .diagfact-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffbf;
    margin: 0
}

.proc .imgbg-strip {
    position: relative;
    overflow: hidden
}

.proc .imgbg-strip img.bgimg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0
}

.proc .imgbg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #520c6ceb 0%, #520c6cb8 60%, #fe0d868c 100%);
    z-index: 1
}

.proc .imgbg-content {
    position: relative;
    z-index: 2;
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.proc .imgbg-h {
    font-size: 20px;
    line-height: 1.4;
    color: #fff;
    font-weight: 700;
    margin: 0 0 16px;
    padding-left: 16px;
    border-left: 4px solid #00F691
}

.proc .imgbg-p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffd9;
    margin: 0 0 24px
}

.proc .imgbg-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.proc .imgbg-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.proc .li-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: #00F691;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px
}

.proc .li-icon svg {
    width: 14px;
    height: 14px
}

.proc .li-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffd9
}

.proc .imgbg-cta-box {
    background: #ffffff14;
    border: 1px solid #ffffff29;
    border-radius: 16px;
    padding: 48px 24px;
    text-align: center;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
}

.proc .imgbg-cta-label {
    font-size: 14px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #00F691;
    font-weight: 600;
    display: block;
    margin-bottom: 16px
}

.proc .imgbg-cta-h {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px
}

.proc .imgbg-cta-p {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffb3;
    margin: 0 0 24px
}

.proc .btn-primary {
    display: inline-block;
    padding: 16px 48px;
    background: #FE0D86;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 44px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 14px 0 #fe0d8617;
    text-transform: lowercase
}

.proc .btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, transparent 40%, #520c6cb3 50%, transparent 60%);
    transform: translateX(-100%) translateY(-100%);
    transition: transform .28s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.proc .btn-primary:hover::before {
    transform: translateX(0) translateY(0)
}

.proc .btn-primary:focus {
    outline: 3px solid #00F691;
    outline-offset: 3px
}

@media (max-width: 1366px) {
    .proc .ptop-h1 {
        font-size: 66px
    }
}

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

    .proc .ptop-h1 {
        font-size: 20px
    }

    .proc .ptop-imgbox {
        display: none
    }

    .proc .psteps-header {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .proc .steprow {
        grid-template-columns: 40px 1fr;
        gap: 16px
    }

    .proc .steptag {
        display: none
    }

    .proc .stepnum {
        font-size: 20px
    }

    .proc .pteam-top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .proc .pteam-cards {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .proc .diag-grid {
        grid-template-columns: 1fr 1fr
    }

    .proc .diagconn {
        display: none
    }

    .proc .diag-lower {
        grid-template-columns: 1fr
    }

    .proc .imgbg-content {
        grid-template-columns: 1fr;
        gap: 24px
    }
}

@media (max-width: 375px) {
    .proc .ptop {
        padding: 24px 16px
    }

    .proc .psteps {
        padding: 24px 16px
    }

    .proc .pteam {
        padding: 24px 16px
    }

    .proc .diagram-strip {
        padding: 24px 16px
    }

    .proc .diag-grid {
        grid-template-columns: 1fr
    }

    .proc .diag-lower {
        grid-template-columns: 1fr
    }
}

.srvcpg {
    overflow-x: hidden
}

.srvcpg .stripebg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0
}

.srvcpg .stripebg::before {
    content: "";
    position: absolute;
    inset: -100%;
    background: repeating-linear-gradient(118deg, transparent, transparent 38px, #520c6c0a 38px, #520c6c0a 40px);
    animation: stripeMove 18s linear infinite
}

@keyframes stripeMove {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(80px, 80px)
    }
}

.srvcpg .titblock {
    position: relative;
    background: #f4f0f7;
    padding: 48px 0
}

.srvcpg .titblock::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(105deg, #520c6c2e 0%, #fe0d868c 52%, #00f69138 100%)
}

.srvcpg .titinner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.srvcpg .titcurve {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.srvcpg .titcurve svg {
    width: 100%;
    height: 100%
}

.srvcpg .tittext {
    position: relative;
    z-index: 1
}

.srvcpg .titlabel {
    display: inline-block;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #520C6C;
    background: #520c6c14;
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 16px
}

.srvcpg .tith1 {
    font-size: 66px;
    line-height: 1.2;
    color: #1e0a28;
    margin-bottom: 24px;
    position: relative
}

.srvcpg .tith1 .gradword {
    position: relative;
    display: inline-block;
    background: linear-gradient(112deg, #520C6C 0%, #FE0D86 60%, #520C6C 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.srvcpg .tith1 .gradword::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #520C6C, #FE0D86);
    border-radius: 6px;
    animation: underlineDraw .8s cubic-bezier(0.0, 0, 0.2, 1) .4s forwards
}

@keyframes underlineDraw {
    to {
        width: 100%
    }
}

.srvcpg .titdesc {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2245;
    max-width: 480px
}

.srvcpg .titimgwrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    z-index: 1
}

.srvcpg .titimgwrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 16px
}

.srvcpg .titimgwrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, #520c6c8c 0%, #520c6c2e 55%, transparent 100%);
    border-radius: 16px;
    pointer-events: none
}

.srvcpg .imgoverlaytxt {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .06em;
    text-transform: uppercase
}

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

.srvcpg .detailblock {
    background: #fff;
    padding: 48px 0
}

.srvcpg .detailinner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

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

.srvcpg .detailleft {
    position: relative
}

.srvcpg .detailh2 {
    font-size: 20px;
    line-height: 1.4;
    color: #1e0a28;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 16px;
    border-radius: 0;
    position: relative
}

.srvcpg .detailh2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: linear-gradient(180deg, #520C6C 0%, #FE0D86 100%);
    border-radius: 6px
}

.srvcpg .detailp {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2245;
    margin-bottom: 16px
}

.srvcpg .detailp:last-child {
    margin-bottom: 0
}

.srvcpg .svclist {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srvcpg .svcitem {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    background: #f9f6fc;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 1px 2px 0 #520c6c14;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvcpg .svcitem:hover {
    background: #f0e8f8;
    box-shadow: 0 6px 14px 0 #520c6c17
}

.srvcpg .svcicon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #520c6c1f 0%, #fe0d861a 100%);
    display: flex;
    align-items: center;
    justify-content: center
}

.srvcpg .svcicon svg {
    width: 22px;
    height: 22px
}

.srvcpg .svcitemtxt {
    flex: 1
}

.srvcpg .svcitemh {
    font-size: 16px;
    line-height: 1.4;
    color: #1e0a28;
    font-weight: 700;
    margin-bottom: 8px
}

.srvcpg .svcitemdesc {
    font-size: 14px;
    line-height: 1.6;
    color: #5c4370
}

.srvcpg .detailright {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srvcpg .pullcard {
    background: linear-gradient(120deg, #520C6C 0%, #7a1b9e 100%);
    border-radius: 16px;
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 52px 0 #520c6c1f
}

.srvcpg .pullcard::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 44px;
    background: #fe0d862e;
    pointer-events: none
}

.srvcpg .pullquote {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    position: relative;
    z-index: 1
}

.srvcpg .pullsub {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffd1;
    position: relative;
    z-index: 1
}

.srvcpg .minicard {
    background: #fff;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 6px 14px 0 #fe0d8617;
    border-top: 3px solid #FE0D86
}

.srvcpg .minicardh {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #FE0D86;
    font-weight: 700;
    margin-bottom: 8px
}

.srvcpg .minicardtxt {
    font-size: 14px;
    line-height: 1.6;
    color: #3a2245
}

.srvcpg .faqblock {
    background: #f4f0f7;
    padding: 48px 0;
    position: relative;
    overflow: hidden
}

.srvcpg .faqblock::before {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(105deg, #00f69138 0%, #fe0d8670 52%, #520c6c2e 100%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0
}

.srvcpg .faqinner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.srvcpg .faqheadrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px
}

.srvcpg .faqh2 {
    font-size: 20px;
    line-height: 1.4;
    color: #1e0a28;
    font-weight: 700;
    padding-left: 16px;
    position: relative
}

.srvcpg .faqh2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: linear-gradient(180deg, #FE0D86 0%, #520C6C 100%);
    border-radius: 6px
}

.srvcpg .faqintro {
    font-size: 16px;
    line-height: 1.6;
    color: #5c4370
}

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

.srvcpg .faqitem {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 2px 0 #520c6c14;
    overflow: hidden
}

.srvcpg .faqitem summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #1e0a28;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none
}

.srvcpg .faqitem summary::-webkit-details-marker {
    display: none
}

.srvcpg .faqitem summary:hover {
    color: #520C6C;
    background: #f9f6fc
}

.srvcpg .faqitem[open] summary {
    color: #520C6C;
    background: #f0e8f8
}

.srvcpg .faqarrow {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #520c6c14;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvcpg .faqitem[open] .faqarrow {
    background: #520c6c29;
    transform: rotate(180deg)
}

.srvcpg .faqbody {
    padding: 0 24px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #3a2245
}

.srvcpg .faqteamrow {
    margin-top: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.srvcpg .teamcard {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 6px 14px 0 #520c6c17;
    position: relative;
    overflow: hidden
}

.srvcpg .teamcard::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #520C6C, #FE0D86, #00F691);
    opacity: 0;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvcpg .teamcard:hover::after {
    opacity: 1
}

.srvcpg .teamthumb {
    width: 64px;
    height: 64px;
    border-radius: 44px;
    overflow: hidden;
    flex-shrink: 0
}

.srvcpg .teamthumb img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    object-position: top;
    display: block
}

.srvcpg .teamtxt {
    flex: 1
}

.srvcpg .teamname {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
    color: #1e0a28;
    margin-bottom: 8px
}

.srvcpg .teamrole {
    font-size: 14px;
    line-height: 1.4;
    color: #FE0D86;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px
}

.srvcpg .teamquote {
    font-size: 14px;
    line-height: 1.6;
    color: #5c4370
}

.srvcpg .svgoutline {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    pointer-events: none;
    z-index: 2
}

.srvcpg .svgoutline rect {
    fill: none;
    stroke: #FE0D86;
    stroke-width: 2;
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    border-radius: 16px;
    rx: 16;
    ry: 16;
    animation: drawOutline 1.2s cubic-bezier(0.0, 0, 0.2, 1) .3s forwards
}

@keyframes drawOutline {
    to {
        stroke-dashoffset: 0
    }
}

.srvcpg .btnprimary {
    display: inline-block;
    padding: 16px 24px;
    background: #520C6C;
    color: #fff;
    font-size: 16px;
    line-height: 1.4;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 14px 0 #520c6c17;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.srvcpg .btnprimary::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(115deg, transparent 0%, #fe0d868c 50%, transparent 100%);
    transform: skewX(-18deg);
    transition: left .28s cubic-bezier(0.0, 0, 0.2, 1)
}

.srvcpg .btnprimary:hover::before {
    left: 120%
}

.srvcpg .btnprimary:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f;
    color: #fff
}

.srvcpg .btnprimary:focus {
    outline: 3px solid #00F691;
    outline-offset: 3px
}

@media (max-width: 1366px) {
    .srvcpg .tith1 {
        font-size: 48px
    }
}

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

    .srvcpg .titimgwrap {
        order: -1
    }

    .srvcpg .tith1 {
        font-size: 36px
    }

    .srvcpg .detailgrid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .srvcpg .faqheadrow {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px
    }

    .srvcpg .faqteamrow {
        grid-template-columns: 1fr;
        gap: 16px
    }
}

@media (max-width: 375px) {

    .srvcpg .titinner,
    .srvcpg .detailinner,
    .srvcpg .faqinner {
        padding: 0 16px
    }

    .srvcpg .tith1 {
        font-size: 28px
    }

    .srvcpg .teamcard {
        flex-direction: column
    }
}

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

.successPage .successWrap {
    max-width: 520px;
    width: 100%;
    text-align: center
}

.successPage .successIcon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, #00f6911f 0%, #00f6910a 100%);
    box-shadow: 0 6px 14px 0 #520c6c17
}

.successPage .successIcon svg {
    display: block
}

.successPage .successHeading {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    color: #520C6C;
    margin: 0 0 16px;
    letter-spacing: .01em
}

.successPage .successText {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 24px
}

.successPage .successDivider {
    width: 48px;
    height: 3px;
    border-radius: 6px;
    background: linear-gradient(90deg, #520C6C 0%, #FE0D86 100%);
    margin: 0 auto 24px
}

.successPage .successBack {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: .04em;
    color: #fff;
    background: #520C6C;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 6px 14px 0 #520c6c17;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .26s cubic-bezier(0.0, 0, 0.2, 1)
}

.successPage .successBack::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FE0D86 0%, #520C6C 100%);
    opacity: 0;
    transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px
}

.successPage .successBack:hover::before {
    opacity: 1
}

.successPage .successBack:hover {
    box-shadow: 0 10px 52px 0 #520c6c1f
}

.successPage .successBackLabel {
    position: relative;
    z-index: 1
}

@media (max-width: 375px) {
    .successPage {
        padding: 48px 16px
    }

    .successPage .successHeading {
        font-size: 20px
    }
}