* {
    box-sizing: border-box
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh
}

.hd-root {
    background: linear-gradient(135deg, #fff 0%, #f5e8f0 60%, #E0B5D4 100%);
    border-bottom: 2px solid #E0B5D4;
    box-shadow: 0 4px 22px -2px #8c214414;
    position: relative
}

.hd-top-bar {
    background: #8C2144;
    padding: 4px 48px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px
}

.hd-top-bar a {
    color: #E0B5D4;
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .12s cubic-bezier(0.4, 0, 1, 1)
}

.hd-top-bar a:hover {
    color: #fff
}

.hd-top-bar a:focus {
    outline: 2px solid #E0B5D4;
    outline-offset: 2px;
    border-radius: 0
}

.hd-top-bar .hd-contact-sep {
    color: #e0b5d466;
    font-size: 14px
}

.hd-body {
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.hd-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 12px;
    text-decoration: none;
    flex-shrink: 0
}

.hd-logo-frame {
    width: 80px;
    height: 60px;
    border: 1px solid #E0B5D4;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 5px -2px #8c214414 0 0 0 2px #8c21440f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px
}

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

.hd-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.hd-brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #8C2144;
    letter-spacing: 0
}

.hd-brand-year {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    line-height: 1.6;
    color: #CA3AB1
}

.hd-nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center
}

.hd-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    line-height: 1.6;
    color: #3a1020;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 36px;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), color .15s cubic-bezier(0.4, 0, 1, 1);
    white-space: nowrap
}

.hd-nav a:hover {
    background: #8C2144;
    color: #fff
}

.hd-nav a:focus {
    outline: 2px solid #8C2144;
    outline-offset: 2px
}

.hd-nav a.active {
    background: linear-gradient(135deg, #8C2144, #CA3AB1);
    color: #fff;
    box-shadow: 0 4px 22px -2px #8c214414
}

.hd-action {
    flex-shrink: 0
}

.hd-action a {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #8C2144 0%, #CA3AB1 100%);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 22px -2px #8c214414;
    transition: box-shadow .17s cubic-bezier(0.4, 0, 1, 1), opacity .12s cubic-bezier(0.4, 0, 1, 1);
    white-space: nowrap;
    min-height: 44px
}

.hd-action a:hover {
    box-shadow: 0 10px 36px -2px #8c21441c;
    opacity: .92
}

.hd-action a:focus {
    outline: 2px solid #8C2144;
    outline-offset: 3px
}

@media (max-width: 1280px) {
    .hd-top-bar {
        padding: 4px 24px
    }

    .hd-body {
        padding: 24px;
        flex-wrap: wrap;
        gap: 12px
    }

    .hd-nav a {
        padding: 12px;
        font-size: 14px
    }
}

@media (max-width: 768px) {
    .hd-top-bar {
        padding: 4px 12px;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center
    }

    .hd-body {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .hd-nav {
        width: 100%;
        justify-content: flex-start
    }

    .hd-nav a {
        font-size: 14px;
        padding: 12px
    }

    .hd-action {
        width: 100%
    }

    .hd-action a {
        width: 100%;
        justify-content: center
    }
}

@media (max-width: 390px) {
    .hd-brand-name {
        font-size: 17px
    }

    .hd-nav a {
        padding: 12px 4px;
        font-size: 14px
    }
}

.ft-root {
    background: #1a0a10;
    background: #200d15;
    border-top: 2px solid #8C2144;
    font-family: 'Playfair Display', serif
}

.ft-upper {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 48px 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 48px;
    align-items: start
}

.ft-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ft-col-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #E0B5D4;
    margin: 0 0 12px
}

.ft-col-left nav {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ft-col-left nav a {
    color: #c9a0bb;
    font-size: 17px;
    line-height: 1.9;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.ft-col-left nav a:hover {
    color: #E0B5D4
}

.ft-col-left nav a:focus {
    outline: 2px solid #CA3AB1;
    outline-offset: 2px;
    border-radius: 0
}

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

.ft-brand-name-large {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0
}

.ft-brand-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #CA3AB1;
    max-width: 220px
}

.ft-brand-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #8C2144, #CA3AB1);
    border-radius: 0
}

.ft-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-end;
    text-align: right
}

.ft-col-right h2 {
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.2;
    color: #E0B5D4;
    margin: 0 0 12px
}

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

.ft-contact-list a,
.ft-contact-list address {
    color: #c9a0bb;
    font-size: 17px;
    line-height: 1.9;
    text-decoration: none;
    font-style: normal;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.ft-contact-list a:hover {
    color: #E0B5D4
}

.ft-contact-list a:focus {
    outline: 2px solid #CA3AB1;
    outline-offset: 2px
}

.ft-lower {
    max-width: 1500px;
    margin: 0 auto;
    padding: 24px 48px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-top: 1px solid #8c21444d
}

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

.ft-legal-nav a {
    color: #c9a0bb;
    font-size: 14px;
    line-height: 1.6;
    text-decoration: none;
    transition: color .13s cubic-bezier(0.4, 0, 1, 1)
}

.ft-legal-nav a:hover {
    color: #E0B5D4
}

.ft-legal-nav a:focus {
    outline: 2px solid #CA3AB1;
    outline-offset: 2px
}

.ft-copyright {
    color: #c9a0bb99;
    font-size: 14px;
    line-height: 1.6;
    text-align: center
}

.ft-logo-foot {
    display: flex;
    justify-content: center
}

.ft-logo-frame {
    width: 90px;
    height: 60px;
    border: 1px solid #e0b5d466;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 5px -2px #8c214414 0 0 0 2px #8c21441a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px
}

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

@media (max-width: 1280px) {
    .ft-upper {
        padding: 48px 24px 24px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto
    }

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

    .ft-lower {
        padding: 24px 24px 48px
    }
}

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

    .ft-col-right {
        align-items: flex-start;
        text-align: left
    }

    .ft-contact-list a,
    .ft-contact-list address {
        justify-content: flex-start
    }

    .ft-lower {
        padding: 24px 12px 48px
    }
}

@media (max-width: 390px) {
    .ft-brand-name-large {
        font-size: 21px
    }

    .ft-legal-nav {
        gap: 12px
    }
}

.content-policy-mz {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 24px
}

.content-policy-mz h1 {
    font-size: 70px;
    line-height: 1.2;
    color: #8C2144;
    margin-bottom: 24px;
    margin-top: 0
}

.content-policy-mz h2 {
    font-size: 38px;
    line-height: 1.2;
    color: #8C2144;
    margin-top: 48px;
    margin-bottom: 24px
}

.content-policy-mz h3 {
    font-size: 21px;
    line-height: 1.6;
    color: #8C2144;
    margin-top: 24px;
    margin-bottom: 12px
}

.content-policy-mz h4,
.content-policy-mz h5,
.content-policy-mz h6 {
    font-size: 17px;
    line-height: 1.6;
    color: #8C2144;
    margin-top: 24px;
    margin-bottom: 12px
}

.content-policy-mz p {
    font-size: 17px;
    line-height: 1.9;
    margin-top: 0;
    margin-bottom: 24px;
    color: #1b1b1b
}

.content-policy-mz ul,
.content-policy-mz ol {
    font-size: 17px;
    line-height: 1.9;
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    color: #1b1b1b
}

.content-policy-mz ul {
    list-style-type: disc
}

.content-policy-mz ol {
    list-style-type: decimal
}

.content-policy-mz li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.9
}

.content-policy-mz li:last-child {
    margin-bottom: 0
}

.content-policy-mz ul ul,
.content-policy-mz ol ol,
.content-policy-mz ul ol,
.content-policy-mz ol ul {
    margin-top: 12px;
    margin-bottom: 4px
}

.content-policy-mz em,
.content-policy-mz i {
    font-style: italic;
    color: #8C2144
}

.content-policy-mz div {
    margin-bottom: 24px
}

.content-policy-mz div:last-child {
    margin-bottom: 0
}

@media (max-width: 768px) {
    .content-policy-mz {
        padding: 24px 12px
    }

    .content-policy-mz h1 {
        font-size: 38px
    }

    .content-policy-mz h2 {
        font-size: 21px;
        margin-top: 24px
    }

    .content-policy-mz h3 {
        font-size: 17px
    }
}

@media (max-width: 390px) {
    .content-policy-mz h1 {
        font-size: 21px
    }

    .content-policy-mz h2 {
        font-size: 17px
    }

    .content-policy-mz p,
    .content-policy-mz ul,
    .content-policy-mz ol,
    .content-policy-mz li {
        font-size: 14px
    }
}

.ctus-pg {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.ctus-pg .grad-div {
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #8C2144 30%, #CA3AB1 70%, transparent 100%);
    margin: 0
}

.ctus-pg .reach-band {
    padding: 96px 48px;
    background: conic-gradient(from 210deg at 80% 50%, #E0B5D4 0deg, #fff 60deg, #fff 300deg, #E0B5D4 360deg);
    position: relative
}

.ctus-pg .reach-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, #8C2144 0%, transparent 55%);
    opacity: .04;
    animation: bg-fade 6s ease-in-out infinite;
    pointer-events: none
}

@keyframes bg-fade {

    0%,
    100% {
        opacity: .04
    }

    50% {
        opacity: .09
    }
}

.ctus-pg .reach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.ctus-pg .reach-left {
    padding-right: 24px
}

.ctus-pg .reach-label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    color: #8C2144;
    border: 1px solid #8C2144;
    border-radius: 36px;
    padding: 4px 12px;
    margin-bottom: 24px
}

.ctus-pg .reach-h1 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b0a0f;
    margin: 0 0 24px
}

.ctus-pg .reach-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #2a1018;
    margin: 0 0 48px
}

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

.ctus-pg .contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 5px -2px #8c214414;
    text-decoration: none;
    color: #1b0a0f;
    font-size: 17px;
    line-height: 1.6;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.ctus-pg .contact-item:hover {
    box-shadow: 0 4px 22px -2px #8c214414;
    transform: translateX(4px)
}

.ctus-pg .contact-item .ci-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #E0B5D4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctus-pg .contact-item .ci-icon i {
    color: #8C2144;
    font-size: 17px
}

.ctus-pg .contact-item .ci-text {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ctus-pg .contact-item .ci-lbl {
    font-size: 14px;
    color: #8C2144;
    line-height: 1.2
}

.ctus-pg .contact-item .ci-val {
    font-size: 17px;
    color: #1b0a0f;
    line-height: 1.2
}

.ctus-pg .reach-right {
    position: relative
}

.ctus-pg .form-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 36px -2px #8c21441c;
    padding: 48px;
    position: relative
}

.ctus-pg .form-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 48px;
    right: 48px;
    height: 3px;
    background: linear-gradient(90deg, #8C2144, #CA3AB1);
    border-radius: 0 0 12px 12px
}

.ctus-pg .form-h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
    color: #1b0a0f;
    margin: 0 0 24px
}

.ctus-pg .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.ctus-pg .form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px
}

.ctus-pg .form-field label {
    font-size: 14px;
    line-height: 1.2;
    color: #8C2144;
    font-weight: 600
}

.ctus-pg .form-field input[type="text"],
.ctus-pg .form-field input[type="email"] {
    padding: 12px;
    border: 1px solid #E0B5D4;
    border-radius: 12px;
    font-size: 17px;
    line-height: 1.6;
    color: #1b0a0f;
    background: #fff;
    outline: none;
    transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .18s cubic-bezier(0.4, 0, 1, 1);
    width: 100%;
    box-sizing: border-box
}

.ctus-pg .form-field input[type="text"]::placeholder,
.ctus-pg .form-field input[type="email"]::placeholder {
    color: #b88aa0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.ctus-pg .form-field input[type="text"]:focus,
.ctus-pg .form-field input[type="email"]:focus {
    border-color: #8C2144;
    box-shadow: inset 0 2px 6px #8c214414
}

.ctus-pg .size-label {
    font-size: 14px;
    line-height: 1.2;
    color: #8C2144;
    font-weight: 600;
    margin-bottom: 12px;
    display: block
}

.ctus-pg .size-opts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px
}

.ctus-pg .size-opts input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ctus-pg .size-opts label {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid #E0B5D4;
    border-radius: 36px;
    font-size: 14px;
    line-height: 1.6;
    color: #2a1018;
    cursor: pointer;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), border-color .12s cubic-bezier(0.4, 0, 1, 1), color .12s cubic-bezier(0.4, 0, 1, 1)
}

.ctus-pg .size-opts input[type="radio"]:checked+label {
    background: #8C2144;
    border-color: #8C2144;
    color: #fff
}

.ctus-pg .size-opts label:hover {
    border-color: #CA3AB1;
    color: #CA3AB1
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 12px;
    background: #fdf6fa;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px #8c21440f
}

.ctus-pg .privacy-row input[type="checkbox"] {
    margin-top: 4px;
    accent-color: #8C2144;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    cursor: pointer
}

.ctus-pg .privacy-row span {
    font-size: 14px;
    line-height: 1.9;
    color: #2a1018
}

.ctus-pg .privacy-row span a {
    color: #8C2144;
    text-decoration: underline;
    transition: color .1s cubic-bezier(0.4, 0, 1, 1)
}

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

.ctus-pg .submit-btn {
    type: submit;
    background: #8C2144;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 48px;
    font-size: 17px;
    line-height: 1.6;
    cursor: pointer;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .18s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 4px 22px -2px #8c214414;
    width: 100%
}

.ctus-pg .submit-btn:hover {
    background: #CA3AB1;
    box-shadow: 0 10px 36px -2px #8c21441c
}

.ctus-pg .submit-btn:focus {
    outline: 2px solid #CA3AB1;
    outline-offset: 2px
}

.ctus-pg .submit-btn:active {
    background: #6b1833
}

@keyframes shake-once {

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

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

    40% {
        transform: translateX(6px)
    }

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

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

.ctus-pg .submit-btn:invalid,
.ctus-pg form:invalid .submit-btn:active {
    animation: shake-once .18s cubic-bezier(0.4, 0, 1, 1)
}

.ctus-pg .addr-band {
    padding: 48px 48px 96px;
    background: #fff;
    position: relative
}

.ctus-pg .addr-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, #E0B5D4 0%, transparent 45%);
    opacity: .18;
    animation: bg-fade 6s ease-in-out infinite;
    pointer-events: none
}

.ctus-pg .addr-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.ctus-pg .addr-photo-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px -2px #ca3ab11c;
    position: relative
}

.ctus-pg .addr-photo-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(0.95)
}

.ctus-pg .addr-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: right
}

.ctus-pg .addr-h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b0a0f;
    margin: 0
}

.ctus-pg .addr-text {
    font-size: 17px;
    line-height: 1.9;
    color: #2a1018;
    margin: 0
}

.ctus-pg .addr-facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.ctus-pg .addr-fact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fdf6fa;
    border-radius: 12px;
    box-shadow: 0 3px 5px -2px #8c214414;
    min-width: 280px
}

.ctus-pg .addr-fact .af-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #E0B5D4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctus-pg .addr-fact .af-icon i {
    color: #8C2144;
    font-size: 17px
}

.ctus-pg .addr-fact .af-txt {
    font-size: 17px;
    color: #1b0a0f;
    line-height: 1.6
}

.ctus-pg .corner-br {
    position: absolute;
    pointer-events: none
}

.ctus-pg .corner-br.top-left {
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border-top: 2px solid #CA3AB1;
    border-left: 2px solid #CA3AB1;
    border-radius: 0 0 0 0
}

.ctus-pg .corner-br.bottom-right {
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    border-bottom: 2px solid #CA3AB1;
    border-right: 2px solid #CA3AB1
}

.ctus-pg .char-hover span {
    display: inline;
    transition: color .1s cubic-bezier(0.4, 0, 1, 1)
}

.ctus-pg .char-hover:hover span:nth-child(1) {
    color: #8C2144
}

.ctus-pg .char-hover:hover span:nth-child(2) {
    color: #8C2144;
    transition-delay: .02s
}

.ctus-pg .char-hover:hover span:nth-child(3) {
    color: #8C2144;
    transition-delay: .04s
}

.ctus-pg .char-hover:hover span:nth-child(4) {
    color: #8C2144;
    transition-delay: .06s
}

.ctus-pg .char-hover:hover span:nth-child(5) {
    color: #8C2144;
    transition-delay: .08s
}

.ctus-pg .char-hover:hover span:nth-child(6) {
    color: #8C2144;
    transition-delay: .1s
}

.ctus-pg .char-hover:hover span:nth-child(7) {
    color: #CA3AB1;
    transition-delay: .12s
}

.ctus-pg .char-hover:hover span:nth-child(8) {
    color: #CA3AB1;
    transition-delay: .14s
}

.ctus-pg .char-hover:hover span:nth-child(9) {
    color: #CA3AB1;
    transition-delay: .16s
}

.ctus-pg .char-hover:hover span:nth-child(10) {
    color: #CA3AB1;
    transition-delay: .18s
}

.ctus-pg .char-hover:hover span:nth-child(11) {
    color: #CA3AB1;
    transition-delay: .2s
}

@media (max-width: 1280px) {
    .ctus-pg .reach-h1 {
        font-size: 38px
    }

    .ctus-pg .form-card {
        padding: 24px
    }

    .ctus-pg .addr-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .ctus-pg .reach-band {
        padding: 48px 24px
    }

    .ctus-pg .reach-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ctus-pg .reach-left {
        padding-right: 0
    }

    .ctus-pg .reach-h1 {
        font-size: 38px
    }

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

    .ctus-pg .addr-band {
        padding: 48px 24px
    }

    .ctus-pg .addr-inner {
        grid-template-columns: 1fr
    }

    .ctus-pg .addr-photo-wrap {
        display: none
    }

    .ctus-pg .addr-details {
        text-align: left;
        align-items: flex-start
    }

    .ctus-pg .addr-facts {
        align-items: flex-start
    }

    .ctus-pg .addr-fact {
        min-width: unset;
        width: 100%
    }
}

@media (max-width: 390px) {
    .ctus-pg .reach-band {
        padding: 24px 12px
    }

    .ctus-pg .reach-h1 {
        font-size: 21px
    }

    .ctus-pg .form-h2 {
        font-size: 21px
    }

    .ctus-pg .form-card {
        padding: 12px
    }

    .ctus-pg .addr-band {
        padding: 24px 12px
    }

    .ctus-pg .addr-h2 {
        font-size: 21px
    }

    .ctus-pg .size-opts {
        gap: 4px
    }

    .ctus-pg .submit-btn {
        padding: 12px 24px
    }
}

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

.proc-pg .geo-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.proc-pg .geo-bg::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 36px;
    border: 1px solid #8c21440f;
    transform: rotate(18deg)
}

.proc-pg .geo-bg::after {
    content: '';
    position: absolute;
    bottom: 15%;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 36px;
    border: 1px solid #ca3ab10d;
    transform: rotate(-12deg)
}

.proc-pg .geo-circ {
    position: absolute;
    border-radius: 36px;
    border: 1px solid #8c21440a;
    pointer-events: none
}

.proc-pg .geo-circ.c1 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 5%;
    transform: rotate(30deg)
}

.proc-pg .geo-circ.c2 {
    width: 140px;
    height: 140px;
    top: 25%;
    right: 8%;
    transform: rotate(-20deg)
}

.proc-pg .vignette-anim {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    animation: vign-pulse 5s ease-in-out infinite alternate;
    background: radial-gradient(ellipse at 50% 50%, transparent 55%, #8c214412 100%)
}

@keyframes vign-pulse {
    0% {
        opacity: .4
    }

    100% {
        opacity: 1
    }
}

.proc-pg .title-blk {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 48px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch
}

.proc-pg .title-blk::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #8C2144 0%, #CA3AB1 100%);
    border-radius: 0 0 12px 12px
}

.proc-pg .t-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-left: 48px
}

.proc-pg .t-text .pg-label {
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600
}

.proc-pg .t-text h1 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 800;
    color: #1a0a10;
    margin: 0
}

.proc-pg .t-text h1 .h1-break {
    display: block;
    color: #CA3AB1;
    font-weight: 300
}

.proc-pg .t-text .t-sub {
    font-size: 21px;
    line-height: 1.6;
    color: #3a1520;
    max-width: 480px
}

.proc-pg .t-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 480px
}

.proc-pg .t-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.proc-pg .t-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, #8c214473 0%, transparent 100%);
    pointer-events: none
}

.proc-pg .divider-word {
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 1
}

.proc-pg .divider-word::before,
.proc-pg .divider-word::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #8c21442e
}

.proc-pg .divider-word span {
    font-size: 14px;
    color: #8C2144;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: .1em;
    text-transform: uppercase
}

.proc-pg .steps-blk {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 48px;
    margin-left: 96px
}

.proc-pg .steps-blk .blk-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid #8c21441f
}

.proc-pg .steps-blk .blk-head h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a0a10;
    margin: 0
}

.proc-pg .steps-blk .blk-head .head-note {
    font-size: 17px;
    line-height: 1.6;
    color: #3a1520;
    text-align: right
}

.proc-pg .step-list {
    display: flex;
    flex-direction: column;
    gap: 0
}

.proc-pg .step-item {
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 48px;
    align-items: start;
    padding: 48px 0;
    border-bottom: 1px solid #8c214414;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1)
}

.proc-pg .step-item:last-child {
    border-bottom: none
}

.proc-pg .step-num {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 4px
}

.proc-pg .step-num .num-int {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 800;
    color: #8C2144;
    display: block
}

.proc-pg .step-num .num-frac {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 300;
    color: #CA3AB1;
    display: block;
    margin-top: -12px
}

.proc-pg .step-body {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.proc-pg .step-body h3 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a0a10;
    margin: 0
}

.proc-pg .step-body p {
    font-size: 17px;
    line-height: 1.6;
    color: #3a1520;
    margin: 0
}

.proc-pg .step-body p+p {
    margin-top: 12px
}

.proc-pg .step-detail {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.proc-pg .step-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    background: #8c21440f;
    border-radius: 36px;
    padding: 4px 12px;
    font-weight: 600;
    align-self: flex-start
}

.proc-pg .step-note {
    font-size: 14px;
    line-height: 1.9;
    color: #5a2535;
    background: #e0b5d42e;
    border-radius: 12px;
    padding: 12px;
    box-shadow: inset 0 3px 6px #8c21440f
}

.proc-pg .accent-band {
    background: conic-gradient(from 200deg at 20% 60%, #8C2144 0deg, #CA3AB1 80deg, #E0B5D4 160deg, #8C2144 360deg);
    padding: 48px;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.proc-pg .accent-band-in {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.proc-pg .accent-band-in .band-left h3 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff;
    margin: 0 0 12px
}

.proc-pg .accent-band-in .band-left p {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffffe0;
    margin: 0
}

.proc-pg .accent-band-in .band-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

.proc-pg .band-stat {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px
}

.proc-pg .band-stat .bs-int {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff
}

.proc-pg .band-stat .bs-frac {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
    color: #ffffffa6
}

.proc-pg .band-stat .bs-label {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffbf;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-left: 4px
}

.proc-pg .res-blk {
    position: relative;
    z-index: 1;
    background: #fdf5f9;
    padding: 96px 48px
}

.proc-pg .res-blk-in {
    max-width: 1500px;
    margin: 0 auto;
    margin-right: 96px
}

.proc-pg .res-blk h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a0a10;
    margin: 0 0 48px;
    text-align: right
}

.proc-pg .two-col-div {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 48px;
    align-items: start
}

.proc-pg .col-divider {
    background: #8c214426;
    align-self: stretch
}

.proc-pg .feat-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.proc-pg .feat-col .fc-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 5px -2px #8c214414;
    transition: box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.proc-pg .feat-col .fc-item:hover {
    box-shadow: 0 4px 22px -2px #8c214414
}

.proc-pg .feat-col .fc-item .fi-label {
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em
}

.proc-pg .feat-col .fc-item h4 {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a0a10;
    margin: 4px 0
}

.proc-pg .feat-col .fc-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #3a1520;
    margin: 0
}

.proc-pg .res-cards {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.proc-pg .res-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 3px 5px -2px #8c214414;
    transition: box-shadow .16s ease-in
}

.proc-pg .res-card:hover {
    box-shadow: 0 10px 36px -2px #8c21441c
}

.proc-pg .rc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #8c214414;
    display: flex;
    align-items: center;
    justify-content: center
}

.proc-pg .rc-icon svg {
    width: 20px;
    height: 20px
}

.proc-pg .rc-body .rc-name {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 600;
    color: #1a0a10;
    display: block
}

.proc-pg .rc-body .rc-type {
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    display: block
}

.proc-pg .rc-meta {
    font-size: 14px;
    line-height: 1.6;
    color: #5a2535;
    font-weight: 600;
    background: #e0b5d440;
    border-radius: 36px;
    padding: 4px 12px
}

.proc-pg .rev-blk {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 48px;
    margin-left: 48px
}

.proc-pg .rev-blk h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a0a10;
    margin: 0 0 48px
}

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

.proc-pg .rev-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 22px -2px #8c214414
}

.proc-pg .rev-card .rv-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.proc-pg .rev-card .rv-portrait {
    width: 56px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0
}

.proc-pg .rev-card .rv-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.proc-pg .rev-card .rv-meta .rv-name {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a0a10;
    display: block
}

.proc-pg .rev-card .rv-meta .rv-city {
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    display: block
}

.proc-pg .rev-card .rv-stars {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.proc-pg .rev-card .rv-stars svg {
    width: 16px;
    height: 16px
}

.proc-pg .rev-card .rv-text {
    font-size: 17px;
    line-height: 1.6;
    color: #3a1520;
    margin: 0
}

.proc-pg .rv-no-portrait {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    border-radius: 12px;
    background: #e0b5d426;
    box-shadow: 0 3px 5px -2px #8c214414
}

.proc-pg .rv-no-portrait .rv-meta .rv-name {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 700;
    color: #1a0a10;
    display: block
}

.proc-pg .rv-no-portrait .rv-meta .rv-city {
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    display: block
}

.proc-pg .rv-no-portrait .rv-stars {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.proc-pg .rv-no-portrait .rv-stars svg {
    width: 16px;
    height: 16px
}

.proc-pg .rv-no-portrait .rv-text {
    font-size: 17px;
    line-height: 1.6;
    color: #3a1520;
    margin: 0
}

.proc-pg .wave-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 48px;
    border-radius: 12px;
    background: #8C2144;
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 4px 22px -2px #8c214414
}

.proc-pg .wave-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: #ca3ab159;
    transform: skewX(-20deg);
    transition: left .18s cubic-bezier(0.4, 0, 1, 1)
}

.proc-pg .wave-btn:hover::before {
    left: 160%
}

.proc-pg .wave-btn:hover {
    background: #7a1c3a
}

.proc-pg .wave-btn:focus {
    outline: 3px solid #CA3AB1;
    outline-offset: 2px
}

@media (max-width: 1280px) {
    .proc-pg .title-blk {
        padding: 96px 24px 48px
    }

    .proc-pg .steps-blk {
        margin-left: 24px;
        padding: 96px 24px
    }

    .proc-pg .res-blk {
        padding: 96px 24px
    }

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

    .proc-pg .rev-blk {
        margin-left: 24px;
        padding: 96px 24px
    }

    .proc-pg .accent-band {
        padding: 48px 24px
    }
}

@media (max-width: 768px) {
    .proc-pg .title-blk {
        grid-template-columns: 1fr;
        padding: 48px 24px
    }

    .proc-pg .t-img-wrap {
        display: none
    }

    .proc-pg .t-text {
        padding-left: 24px
    }

    .proc-pg .t-text h1 {
        font-size: 38px
    }

    .proc-pg .steps-blk {
        margin-left: 0;
        padding: 48px 24px
    }

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

    .proc-pg .steps-blk .blk-head .head-note {
        text-align: left
    }

    .proc-pg .step-item {
        grid-template-columns: 60px 1fr;
        gap: 24px
    }

    .proc-pg .step-detail {
        grid-column: 1 / -1
    }

    .proc-pg .accent-band-in {
        grid-template-columns: 1fr
    }

    .proc-pg .accent-band-in .band-right {
        align-items: flex-start
    }

    .proc-pg .res-blk-in {
        margin-right: 0
    }

    .proc-pg .two-col-div {
        grid-template-columns: 1fr
    }

    .proc-pg .col-divider {
        display: none
    }

    .proc-pg .rev-blk {
        margin-left: 0;
        padding: 48px 24px
    }

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

    .proc-pg .divider-word {
        padding: 0 24px
    }
}

@media (max-width: 390px) {
    .proc-pg .t-text h1 {
        font-size: 38px
    }

    .proc-pg .step-item {
        grid-template-columns: 1fr
    }

    .proc-pg .step-num .num-int {
        font-size: 38px
    }
}

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

.entr-pg ::selection {
    background: #8C2144;
    color: #fff
}

.entr-pg .ttl-blk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
    padding: 96px 48px;
    position: relative
}

.entr-pg .ttl-blk .circ-deco {
    position: absolute;
    border-radius: 36px;
    pointer-events: none;
    overflow: hidden
}

.entr-pg .ttl-blk .circ-deco-a {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: conic-gradient(from 45deg, #8c214412, #ca3ab10d, #e0b5d414, #8c21440a);
    top: -48px;
    right: 0;
    pointer-events: none
}

.entr-pg .ttl-blk .circ-deco-b {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(from 200deg, #ca3ab10f, #e0b5d417, #8c21440d);
    bottom: 24px;
    left: 12px;
    pointer-events: none
}

.entr-pg .ttl-txt {
    z-index: 1
}

.entr-pg .ttl-txt .pre-lbl {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    border: 1px solid #8c214440;
    border-radius: 36px;
    padding: 4px 24px;
    margin-bottom: 24px
}

.entr-pg .ttl-txt h1 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 24px
}

.entr-pg .ttl-txt .sub-stmt {
    font-size: 21px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 48px
}

.entr-pg .ttl-txt .act-btn {
    display: inline-block;
    background: #8C2144;
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    padding: 12px 48px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 4px 22px -2px #8c214414
}

.entr-pg .ttl-txt .act-btn:hover {
    background: #CA3AB1;
    box-shadow: 0 10px 36px -2px #8c21441c
}

.entr-pg .ttl-txt .act-btn:focus {
    outline: 2px solid #CA3AB1;
    outline-offset: 3px
}

.entr-pg .ttl-img-wrap {
    position: relative;
    z-index: 1
}

.entr-pg .ttl-img-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 36px -2px #8c21441c
}

.entr-pg .ttl-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.entr-pg .ttl-img-frame .img-overlay {
    position: absolute;
    inset: 0;
    background: #8c214438;
    border-radius: 12px
}

.entr-pg .divider-band {
    height: 4px;
    background: linear-gradient(108deg, #8C2144 0%, #CA3AB1 55%, #E0B5D4 100%);
    margin: 0 48px;
    border-radius: 36px
}

.entr-pg .outcome-sec {
    padding: 96px 48px;
    background: #f5edf1;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 48px;
    align-items: start
}

.entr-pg .outcome-sec .out-lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 12px
}

.entr-pg .outcome-sec h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0
}

.entr-pg .outcome-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.entr-pg .out-item {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 5px -2px #8c214414;
    transition: box-shadow .15s cubic-bezier(0.4, 0, 1, 1), transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.entr-pg .out-item:hover {
    box-shadow: 0 10px 36px -2px #8c21441c;
    transform: translateY(-3px)
}

.entr-pg .out-item .oi-num {
    font-size: 38px;
    font-weight: 700;
    color: #E0B5D4;
    line-height: 1.2;
    margin-bottom: 4px
}

.entr-pg .out-item h4 {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 4px
}

.entr-pg .out-item p {
    font-size: 14px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0
}

.entr-pg .sit-sec {
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.entr-pg .sit-sec .sit-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px
}

.entr-pg .sit-sec h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
    color: #1b1b1b;
    margin: 0;
    max-width: 480px
}

.entr-pg .sit-sec .sit-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    max-width: 420px;
    margin: 0;
    text-align: right
}

.entr-pg .sit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.entr-pg .sit-card {
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #8c21441f;
    transition: border-color .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1), transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.entr-pg .sit-card:hover {
    border-color: #ca3ab14d;
    box-shadow: 0 4px 22px -2px #8c214414;
    transform: translateY(-3px)
}

.entr-pg .sit-card .sc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: conic-gradient(from 90deg, #8C2144, #CA3AB1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.entr-pg .sit-card .sc-icon i {
    color: #fff;
    font-size: 17px
}

.entr-pg .sit-card h5 {
    font-size: 17px;
    line-height: 1.6;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 4px
}

.entr-pg .sit-card p {
    font-size: 14px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0
}

.entr-pg .divider-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 48px
}

.entr-pg .divider-dots span {
    display: block;
    border-radius: 50%
}

.entr-pg .divider-dots span:nth-child(1) {
    width: 6px;
    height: 6px;
    background: #8C2144
}

.entr-pg .divider-dots span:nth-child(2) {
    width: 10px;
    height: 10px;
    background: #CA3AB1
}

.entr-pg .divider-dots span:nth-child(3) {
    width: 6px;
    height: 6px;
    background: #E0B5D4
}

.entr-pg .adapt-sec {
    padding: 96px 48px;
    background: #1b1b1b;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.entr-pg .adapt-sec .adapt-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px -2px #8c21441c
}

.entr-pg .adapt-sec .adapt-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block
}

.entr-pg .adapt-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entr-pg .adapt-txt .adp-lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #E0B5D4
}

.entr-pg .adapt-txt h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.entr-pg .adapt-txt .adp-body {
    font-size: 17px;
    line-height: 1.9;
    color: #ccc;
    margin: 0
}

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

.entr-pg .adapt-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.9;
    color: #ccc
}

.entr-pg .adapt-list li .al-num {
    font-size: 14px;
    font-weight: 700;
    color: #CA3AB1;
    min-width: 24px;
    text-align: right
}

.entr-pg .patt-sec {
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.entr-pg .patt-sec .patt-head {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px
}

.entr-pg .patt-sec h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0
}

.entr-pg .patt-sec .ph-sub {
    font-size: 17px;
    line-height: 1.9;
    color: #4a4a4a;
    margin: 0
}

.entr-pg .patt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.entr-pg .patt-quote {
    background: #f5edf1;
    border-radius: 12px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: inset 0 4px 6px #8c21440f
}

.entr-pg .patt-quote .pq-txt {
    font-size: 17px;
    line-height: 1.9;
    color: #2a2a2a;
    margin: 0;
    font-style: italic
}

.entr-pg .patt-quote .pq-person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.entr-pg .patt-quote .pq-img {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0
}

.entr-pg .patt-quote .pq-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.entr-pg .patt-quote .pq-name {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0
}

.entr-pg .patt-quote .pq-role {
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    margin: 0
}

.entr-pg .patt-quote.right {
    text-align: right
}

.entr-pg .patt-quote.right .pq-person {
    flex-direction: row-reverse
}

.entr-pg .patt-quote.right .pq-name {
    text-align: right
}

.entr-pg .rel-sec {
    padding: 96px 48px;
    background: linear-gradient(108deg, #f5edf1 0%, #fff 60%, #f9f0f5 100%);
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start
}

.entr-pg .rel-txt {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entr-pg .rel-txt h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
    color: #1b1b1b;
    margin: 0
}

.entr-pg .rel-txt .rl-body {
    font-size: 17px;
    line-height: 1.9;
    color: #3a3a3a;
    margin: 0
}

.entr-pg .rel-stats {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entr-pg .stat-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 5px -2px #8c214414;
    transition: box-shadow .17s cubic-bezier(0.4, 0, 1, 1), transform .13s cubic-bezier(0.4, 0, 1, 1)
}

.entr-pg .stat-row:hover {
    box-shadow: 0 4px 22px -2px #8c214414;
    transform: translateY(-2px)
}

.entr-pg .stat-row .sr-val {
    font-size: 38px;
    font-weight: 700;
    color: #8C2144;
    line-height: 1.2
}

.entr-pg .stat-row .sr-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    text-align: right;
    max-width: 180px
}

.entr-pg .rel-img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 22px -2px #8c214414;
    margin-top: 24px
}

.entr-pg .rel-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block
}

.entr-pg .rel-cta-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.entr-pg .btn-prim {
    display: inline-block;
    background: #8C2144;
    color: #fff !important;
    font-size: 17px;
    line-height: 1.6;
    padding: 12px 48px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 4px 22px -2px #8c214414
}

.entr-pg .btn-prim:hover {
    background: #CA3AB1;
    box-shadow: 0 10px 36px -2px #8c21441c
}

.entr-pg .btn-prim:focus {
    outline: 2px solid #CA3AB1;
    outline-offset: 3px
}

.entr-pg .btn-sec {
    display: inline-block;
    background: transparent;
    color: #8C2144;
    font-size: 17px;
    line-height: 1.6;
    padding: 12px 48px;
    border-radius: 12px;
    border: 2px solid #8C2144;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s cubic-bezier(0.4, 0, 1, 1), color .15s cubic-bezier(0.4, 0, 1, 1)
}

.entr-pg .btn-sec:hover {
    background: #8C2144;
    color: #fff
}

.entr-pg .btn-sec:focus {
    outline: 2px solid #CA3AB1;
    outline-offset: 3px
}

@keyframes shake-once {
    0% {
        transform: translateX(0)
    }

    20% {
        transform: translateX(-5px)
    }

    40% {
        transform: translateX(5px)
    }

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

    80% {
        transform: translateX(3px)
    }

    100% {
        transform: translateX(0)
    }
}

.entr-pg .btn-shake {
    animation: shake-once .35s cubic-bezier(0.4, 0, 1, 1)
}

@media (max-width: 1280px) {
    .entr-pg .ttl-blk {
        padding: 96px 24px;
        gap: 48px
    }

    .entr-pg .ttl-txt h1 {
        font-size: 38px
    }

    .entr-pg .outcome-sec {
        padding: 96px 24px
    }

    .entr-pg .sit-sec {
        padding: 96px 24px
    }

    .entr-pg .adapt-sec {
        padding: 96px 24px
    }

    .entr-pg .patt-sec {
        padding: 96px 24px
    }

    .entr-pg .rel-sec {
        padding: 96px 24px
    }

    .entr-pg .divider-band {
        margin: 0 24px
    }
}

@media (max-width: 768px) {
    .entr-pg .ttl-blk {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .entr-pg .ttl-img-wrap {
        display: none
    }

    .entr-pg .ttl-txt h1 {
        font-size: 38px
    }

    .entr-pg .ttl-txt .sub-stmt {
        font-size: 17px
    }

    .entr-pg .outcome-sec {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .entr-pg .outcome-items {
        grid-template-columns: 1fr
    }

    .entr-pg .sit-sec {
        padding: 48px 24px;
        gap: 24px
    }

    .entr-pg .sit-sec .sit-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .entr-pg .sit-sec .sit-desc {
        text-align: left
    }

    .entr-pg .sit-grid {
        grid-template-columns: 1fr
    }

    .entr-pg .adapt-sec {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .entr-pg .adapt-sec .adapt-img-wrap {
        display: none
    }

    .entr-pg .patt-sec {
        padding: 48px 24px;
        gap: 24px
    }

    .entr-pg .patt-grid {
        grid-template-columns: 1fr
    }

    .entr-pg .patt-quote.right {
        text-align: left
    }

    .entr-pg .patt-quote.right .pq-person {
        flex-direction: row
    }

    .entr-pg .patt-quote.right .pq-name {
        text-align: left
    }

    .entr-pg .rel-sec {
        grid-template-columns: 1fr;
        padding: 48px 24px;
        gap: 24px
    }

    .entr-pg .rel-img-wrap {
        display: none
    }

    .entr-pg .divider-band {
        margin: 0 24px
    }
}

@media (max-width: 390px) {
    .entr-pg .ttl-txt h1 {
        font-size: 38px
    }

    .entr-pg .ttl-txt .act-btn {
        padding: 12px 24px;
        font-size: 14px
    }

    .entr-pg .btn-prim,
    .entr-pg .btn-sec {
        padding: 12px 24px;
        font-size: 14px
    }

    .entr-pg .patt-quote {
        padding: 24px
    }
}

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

.abt-pg .reveal-words span {
    display: inline-block;
    opacity: 0;
    transform: translateY(12px);
    animation: word-in .15s cubic-bezier(0.4, 0, 1, 1) forwards
}

.abt-pg .reveal-words span:nth-child(1) {
    animation-delay: .05s
}

.abt-pg .reveal-words span:nth-child(2) {
    animation-delay: .1s
}

.abt-pg .reveal-words span:nth-child(3) {
    animation-delay: .15s
}

.abt-pg .reveal-words span:nth-child(4) {
    animation-delay: .2s
}

.abt-pg .reveal-words span:nth-child(5) {
    animation-delay: .25s
}

.abt-pg .reveal-words span:nth-child(6) {
    animation-delay: .3s
}

.abt-pg .reveal-words span:nth-child(7) {
    animation-delay: .35s
}

.abt-pg .reveal-words span:nth-child(8) {
    animation-delay: .4s
}

@keyframes word-in {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.abt-pg .pg-lead {
    position: relative;
    text-align: center;
    padding: 96px 48px;
    background: #fff
}

.abt-pg .pg-lead__bg-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 260px;
    font-weight: 900;
    color: #E0B5D4;
    opacity: .18;
    line-height: 1.2;
    pointer-events: none;
    user-select: none;
    white-space: nowrap
}

.abt-pg .pg-lead__label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
    color: #8C2144;
    border: 1px solid #8C2144;
    border-radius: 36px;
    padding: 4px 24px;
    margin-bottom: 24px;
    position: relative
}

.abt-pg .pg-lead__h1 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 900;
    color: #1b1b1b;
    margin: 0 0 24px;
    position: relative
}

.abt-pg .pg-lead__desc {
    font-size: 21px;
    line-height: 1.6;
    color: #3a3a3a;
    max-width: 620px;
    margin: 0 auto;
    position: relative
}

.abt-pg .curve-div {
    line-height: 0;
    background: #fff
}

.abt-pg .curve-div svg {
    display: block;
    width: 100%
}

.abt-pg .story-band {
    background: #f5edf2;
    padding: 96px 48px
}

.abt-pg .story-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start
}

.abt-pg .story-band__img-col {
    position: relative
}

.abt-pg .story-band__img-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 36px -2px #8c21441c
}

.abt-pg .story-band__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-pg .story-band__corner-acc {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    background: conic-gradient(from 200deg at 100% 100%, #8C2144, #CA3AB1, #E0B5D4);
    border-radius: 0 0 12px 0;
    z-index: 1
}

.abt-pg .story-band__txt-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .story-band__h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0
}

.abt-pg .story-band__sub {
    font-size: 21px;
    font-weight: 300;
    line-height: 1.6;
    color: #5a2040;
    margin: 0
}

.abt-pg .story-band__para {
    font-size: 17px;
    line-height: 1.9;
    color: #2e2e2e;
    margin: 0
}

.abt-pg .story-band__para+.story-band__para {
    padding-top: 4px
}

.abt-pg .story-band__para .para-num {
    font-weight: 700;
    color: #8C2144;
    margin-right: 4px
}

.abt-pg .metrics-band {
    background: #1b1b1b;
    padding: 96px 48px;
    position: relative
}

.abt-pg .metrics-band__bg-img {
    position: absolute;
    inset: 0;
    background-image: url(./photo_storage/2024_08_19big16a.jpg);
    background-size: cover;
    background-position: center;
    opacity: .12;
    border-radius: 0
}

.abt-pg .metrics-band__inner {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.abt-pg .metrics-band__narr {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .metrics-band__h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    margin: 0
}

.abt-pg .metrics-band__txt {
    font-size: 17px;
    line-height: 1.9;
    color: #d4c0cc;
    margin: 0
}

.abt-pg .metrics-band__table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px
}

.abt-pg .metrics-band__table th {
    font-size: 14px;
    color: #E0B5D4;
    text-align: left;
    padding: 4px 0;
    border-bottom: 1px solid #ca3ab14d
}

.abt-pg .metrics-band__table td {
    font-size: 17px;
    color: #fff;
    padding: 12px 0 4px;
    vertical-align: top
}

.abt-pg .metrics-band__table td.val-label {
    font-size: 14px;
    color: #d4c0cc;
    padding-bottom: 12px
}

.abt-pg .metrics-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt-pg .metric-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-pg .metric-row__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline
}

.abt-pg .metric-row__label {
    font-size: 14px;
    color: #E0B5D4;
    line-height: 1.6
}

.abt-pg .metric-row__val {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2
}

.abt-pg .metric-row__bar-track {
    height: 6px;
    background: #e0b5d433;
    border-radius: 36px;
    overflow: hidden
}

.abt-pg .metric-row__bar-fill {
    height: 100%;
    border-radius: 36px;
    background: linear-gradient(90deg, #8C2144, #CA3AB1);
    transition: width .18s cubic-bezier(0.4, 0, 1, 1)
}

.abt-pg .team-contact-band {
    background: #fff;
    padding: 96px 48px
}

.abt-pg .team-contact-band__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.abt-pg .team-col {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.abt-pg .team-col__h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0 0 4px
}

.abt-pg .team-col__sub {
    font-size: 17px;
    font-weight: 300;
    color: #5a2040;
    line-height: 1.6;
    margin: 0
}

.abt-pg .team-cards {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .team-card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    background: #f5edf2;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 5px -2px #8c214414
}

.abt-pg .team-card__portrait {
    width: 88px;
    height: 123px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0
}

.abt-pg .team-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-pg .team-card__info {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-pg .team-card__name {
    font-size: 17px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2
}

.abt-pg .team-card__role {
    font-size: 14px;
    color: #8C2144;
    line-height: 1.6
}

.abt-pg .team-card__quote {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.9;
    margin: 4px 0 0
}

.abt-pg .contact-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .contact-col__h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1.2;
    margin: 0
}

.abt-pg .contact-col__desc {
    font-size: 17px;
    color: #3a3a3a;
    line-height: 1.9;
    margin: 0
}

.abt-pg .contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt-pg .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.abt-pg .form-field {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-pg .form-field label {
    font-size: 14px;
    color: #5a2040;
    line-height: 1.6
}

.abt-pg .form-field input,
.abt-pg .form-field select {
    border: 1px solid #d4b8c8;
    border-radius: 12px;
    padding: 12px;
    font-size: 17px;
    color: #1b1b1b;
    background: #fdf8fb;
    outline: none;
    transition: border-color .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .12s cubic-bezier(0.4, 0, 1, 1)
}

.abt-pg .form-field input::placeholder {
    color: #b08fa0;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap
}

.abt-pg .form-field input:focus,
.abt-pg .form-field select:focus {
    border-color: #8C2144;
    box-shadow: 0 0 0 3px #8c21441f
}

.abt-pg .form-field select {
    appearance: none;
    cursor: pointer
}

.abt-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

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

.abt-pg .privacy-row label {
    font-size: 14px;
    color: #3a3a3a;
    line-height: 1.6
}

.abt-pg .privacy-row label a {
    color: #8C2144;
    text-decoration: underline;
    transition: color .1s ease-in
}

.abt-pg .privacy-row label a:hover {
    color: #CA3AB1
}

.abt-pg .submit-btn {
    background: #8C2144;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 48px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 4px 22px -2px #8c214414;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s ease-in
}

.abt-pg .submit-btn:hover {
    background: #CA3AB1;
    box-shadow: 0 10px 36px -2px #8c21441c
}

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

.abt-pg .submit-btn:active {
    background: #6e1935
}

.abt-pg .submit-btn.shake {
    animation: btn-shake .18s cubic-bezier(0.4, 0, 1, 1)
}

@keyframes btn-shake {

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

    25% {
        transform: translateX(-6px)
    }

    75% {
        transform: translateX(6px)
    }
}

.abt-pg .dir-arrow {
    position: absolute;
    right: 48px;
    bottom: 48px;
    opacity: .22;
    pointer-events: none
}

@media (max-width: 768px) {
    .abt-pg .pg-lead {
        padding: 48px 24px
    }

    .abt-pg .pg-lead__h1 {
        font-size: 38px
    }

    .abt-pg .pg-lead__bg-num {
        font-size: 120px
    }

    .abt-pg .story-band {
        padding: 48px 24px
    }

    .abt-pg .story-band__grid {
        grid-template-columns: 1fr
    }

    .abt-pg .story-band__img-col {
        display: none
    }

    .abt-pg .metrics-band {
        padding: 48px 24px
    }

    .abt-pg .metrics-band__inner {
        grid-template-columns: 1fr
    }

    .abt-pg .team-contact-band {
        padding: 48px 24px
    }

    .abt-pg .team-contact-band__inner {
        grid-template-columns: 1fr
    }

    .abt-pg .form-row {
        grid-template-columns: 1fr
    }
}

@media (max-width: 390px) {
    .abt-pg .pg-lead__h1 {
        font-size: 38px
    }

    .abt-pg .pg-lead__desc {
        font-size: 17px
    }

    .abt-pg .story-band__h2 {
        font-size: 21px
    }

    .abt-pg .metrics-band__h2 {
        font-size: 21px
    }

    .abt-pg .team-col__h2 {
        font-size: 21px
    }

    .abt-pg .submit-btn {
        width: 100%;
        text-align: center
    }
}

@media (min-width: 1280px) {
    .abt-pg .story-band__img-wrap img {
        height: 520px
    }
}

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

.srvs-pg .reveal-clip {
    animation: clipReveal .7s cubic-bezier(0.4, 0, 1, 1) forwards
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 100% 0 0)
    }

    to {
        clip-path: inset(0 0% 0 0)
    }
}

@keyframes outlineFlicker {

    0%,
    100% {
        outline-color: transparent
    }

    48% {
        outline-color: transparent
    }

    50% {
        outline-color: #8c21442e
    }

    52% {
        outline-color: transparent
    }

    80% {
        outline-color: transparent
    }

    82% {
        outline-color: #8c21441f
    }

    84% {
        outline-color: transparent
    }
}

@keyframes shakeBtn {

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

    20% {
        transform: translateX(-5px)
    }

    40% {
        transform: translateX(5px)
    }

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

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

.srvs-pg .btn-shake:invalid,
.srvs-pg .btn-shake.shaking {
    animation: shakeBtn .18s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg ::selection {
    background: #8C2144;
    color: #fff
}

.srvs-pg a {
    color: #8C2144;
    text-decoration: none;
    transition: color .14s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg a:hover {
    color: #CA3AB1
}

.srvs-pg .badge-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 36px;
    background: #8C2144;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 2;
    box-shadow: 0 3px 5px -2px #8c214414
}

.srvs-pg .tag-lbl {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 36px;
    background: #E0B5D4;
    color: #3a0a1e;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 24px
}

.srvs-pg .grid-bg-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(#8c21440a 1px, transparent 1px), linear-gradient(90deg, #8c21440a 1px, transparent 1px);
    background-size: 48px 48px;
    border-radius: 0
}

.srvs-pg .circ-deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.srvs-pg .pg-top {
    position: relative;
    padding: 96px 48px;
    background: #fff;
    overflow: hidden
}

.srvs-pg .pg-top__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.srvs-pg .pg-top__txt {
    max-width: 580px
}

.srvs-pg .pg-top__eyebrow {
    font-size: 14px;
    line-height: 1.2;
    color: #8C2144;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block
}

.srvs-pg .pg-top__h1 {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b0a12;
    margin-bottom: 24px
}

.srvs-pg .pg-top__desc {
    font-size: 21px;
    line-height: 1.6;
    color: #3a1220;
    margin-bottom: 0
}

.srvs-pg .pg-top__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
    position: relative
}

.srvs-pg .img-mosaic__a {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 260px
}

.srvs-pg .img-mosaic__b {
    grid-column: 1;
    grid-row: 2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 180px
}

.srvs-pg .img-mosaic__c {
    grid-column: 2;
    grid-row: 2;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 180px
}

.srvs-pg .img-mosaic__a img,
.srvs-pg .img-mosaic__b img,
.srvs-pg .img-mosaic__c img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg .img-mosaic__a:hover img,
.srvs-pg .img-mosaic__b:hover img,
.srvs-pg .img-mosaic__c:hover img {
    transform: scale(1.05)
}

.srvs-pg .img-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, transparent 40%, #1c050f73 100%);
    pointer-events: none;
    border-radius: 12px
}

.srvs-pg .pg-top__circ1 {
    width: 340px;
    height: 340px;
    background: #ca3ab10d;
    top: -96px;
    left: -96px
}

.srvs-pg .pg-top__circ2 {
    width: 200px;
    height: 200px;
    background: #8c21440a;
    bottom: -48px;
    right: 200px
}

.srvs-pg .pg-top__circ3 {
    width: 120px;
    height: 120px;
    background: #e0b5d42e;
    top: 48px;
    right: 96px
}

.srvs-pg .svc-list {
    padding: 96px 48px;
    background: #fdf5f9;
    position: relative
}

.srvs-pg .svc-list__cross-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 22px, #8c21440d 22px, #8c21440d 23px), repeating-linear-gradient(90deg, transparent, transparent 22px, #8c21440d 22px, #8c21440d 23px)
}

.srvs-pg .svc-list__hd {
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px
}

.srvs-pg .svc-list__h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b0a12;
    max-width: 500px
}

.srvs-pg .svc-list__sub {
    font-size: 17px;
    line-height: 1.6;
    color: #5a2035;
    max-width: 340px;
    text-align: right
}

.srvs-pg .svc-cards {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
    position: relative;
    z-index: 1
}

.srvs-pg .svc-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 22px -2px #8c214414;
    position: relative;
    outline: 2px solid transparent;
    animation: outlineFlicker 5.2s 1.4s infinite;
    transition: box-shadow .14s cubic-bezier(0.4, 0, 1, 1), transform .12s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg .svc-card:hover {
    box-shadow: 0 10px 36px -2px #8c21441c;
    transform: translateY(-3px)
}

.srvs-pg .svc-card.featured {
    background: conic-gradient(from 220deg at 80% 20%, #8C2144 0deg, #CA3AB1 80deg, #E0B5D4 160deg, #fff 200deg, #fff 360deg);
    color: #fff
}

.srvs-pg .svc-card.featured .svc-card__h3 {
    color: #fff
}

.srvs-pg .svc-card.featured .svc-card__body {
    color: #ffffffeb
}

.srvs-pg .svc-card.featured .svc-card__num {
    color: #fff9
}

.srvs-pg .svc-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.srvs-pg .svc-card__icon svg {
    width: 36px;
    height: 36px
}

.srvs-pg .svc-card__h3 {
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b0a12;
    margin-bottom: 12px
}

.srvs-pg .svc-card__body {
    font-size: 17px;
    line-height: 1.6;
    color: #3a1220;
    margin-bottom: 24px
}

.srvs-pg .svc-card__num {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 800;
    color: #8c214414;
    position: absolute;
    bottom: 12px;
    right: 24px;
    pointer-events: none;
    user-select: none
}

.srvs-pg .svc-card__tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 36px;
    background: #e0b5d466;
    color: #8C2144;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600
}

.srvs-pg .svc-card.featured .svc-card__tag {
    background: #ffffff38;
    color: #fff
}

.srvs-pg .stats-band {
    padding: 96px 48px;
    background: #fff;
    position: relative
}

.srvs-pg .stats-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.srvs-pg .stats-band__left {
    position: relative
}

.srvs-pg .stats-band__h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 300;
    color: #1b0a12;
    margin-bottom: 24px
}

.srvs-pg .stats-band__h2 strong {
    font-weight: 800;
    color: #8C2144
}

.srvs-pg .stats-band__body {
    font-size: 17px;
    line-height: 1.9;
    color: #3a1220;
    margin-bottom: 48px
}

.srvs-pg .stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px
}

.srvs-pg .stat-item {
    padding: 24px;
    border-radius: 12px;
    background: #fdf5f9;
    box-shadow: inset 0 3px 6px #8c21440f;
    position: relative
}

.srvs-pg .stat-item__val {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #8C2144;
    display: block;
    margin-bottom: 4px
}

.srvs-pg .stat-item__lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #5a2035
}

.srvs-pg .progress-bars {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srvs-pg .prog-row {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.srvs-pg .prog-row__lbl {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 1.2;
    color: #3a1220
}

.srvs-pg .prog-row__pct {
    font-weight: 700;
    color: #8C2144
}

.srvs-pg .prog-track {
    height: 8px;
    background: #8c21441a;
    border-radius: 36px;
    overflow: hidden
}

.srvs-pg .prog-fill {
    height: 100%;
    border-radius: 36px;
    background: linear-gradient(90deg, #8C2144, #CA3AB1);
    transition: width .16s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg .stats-band__right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.srvs-pg .proof-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 220px;
    box-shadow: 0 4px 22px -2px #8c214414
}

.srvs-pg .proof-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .16s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg .proof-card:hover img {
    transform: scale(1.04)
}

.srvs-pg .proof-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, transparent 40%, #8c21448c 100%);
    pointer-events: none
}

.srvs-pg .proof-card__caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600
}

.srvs-pg .review-strip {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: #fdf5f9;
    border-radius: 12px;
    box-shadow: 0 3px 5px -2px #8c214414
}

.srvs-pg .review-strip__portrait {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 22px -2px #8c214414
}

.srvs-pg .review-strip__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.srvs-pg .review-strip__txt {
    flex: 1
}

.srvs-pg .review-strip__quote {
    font-size: 17px;
    line-height: 1.6;
    color: #1b0a12;
    font-style: italic;
    margin-bottom: 4px
}

.srvs-pg .review-strip__name {
    font-size: 14px;
    line-height: 1.2;
    color: #8C2144;
    font-weight: 600
}

.srvs-pg .faq-band {
    padding: 96px 48px;
    background: #E0B5D4;
    position: relative
}

.srvs-pg .faq-band__circ1 {
    width: 420px;
    height: 420px;
    background: #8c214412;
    top: -96px;
    right: -96px
}

.srvs-pg .faq-band__circ2 {
    width: 180px;
    height: 180px;
    background: #ca3ab114;
    bottom: 48px;
    left: 48px
}

.srvs-pg .faq-band__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start
}

.srvs-pg .faq-band__lft {
    position: sticky;
    top: 24px
}

.srvs-pg .faq-band__h2 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b0a12;
    margin-bottom: 24px
}

.srvs-pg .faq-band__desc {
    font-size: 17px;
    line-height: 1.6;
    color: #3a0a1e
}

.srvs-pg .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}

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

.srvs-pg .faq-item__toggle {
    display: none
}

.srvs-pg .faq-item__lbl {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    color: #1b0a12;
    user-select: none;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1);
    gap: 12px
}

.srvs-pg .faq-item__lbl:hover {
    background: #e0b5d433
}

.srvs-pg .faq-item__arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .14s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg .faq-item__toggle:checked~.faq-item__lbl .faq-item__arrow {
    transform: rotate(180deg)
}

.srvs-pg .faq-item__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .16s cubic-bezier(0.4, 0, 1, 1)
}

.srvs-pg .faq-item__toggle:checked~.faq-item__body {
    max-height: 400px
}

.srvs-pg .faq-item__ans {
    padding: 0 24px 24px;
    font-size: 17px;
    line-height: 1.9;
    color: #3a1220
}

@media (max-width: 1280px) {
    .srvs-pg .pg-top__h1 {
        font-size: 38px
    }

    .srvs-pg .svc-cards {
        grid-template-columns: 1fr 1fr
    }

    .srvs-pg .svc-cards .svc-card:last-child {
        grid-column: 1 / 3
    }
}

@media (max-width: 768px) {
    .srvs-pg .pg-top {
        padding: 48px 24px
    }

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

    .srvs-pg .pg-top__imgs {
        display: none
    }

    .srvs-pg .pg-top__h1 {
        font-size: 38px
    }

    .srvs-pg .svc-list {
        padding: 48px 24px
    }

    .srvs-pg .svc-list__hd {
        flex-direction: column;
        align-items: flex-start
    }

    .srvs-pg .svc-list__sub {
        text-align: left
    }

    .srvs-pg .svc-cards {
        grid-template-columns: 1fr
    }

    .srvs-pg .svc-cards .svc-card:last-child {
        grid-column: auto
    }

    .srvs-pg .stats-band {
        padding: 48px 24px
    }

    .srvs-pg .stats-band__grid {
        grid-template-columns: 1fr
    }

    .srvs-pg .stats-row {
        grid-template-columns: 1fr 1fr
    }

    .srvs-pg .proof-card {
        display: none
    }

    .srvs-pg .faq-band {
        padding: 48px 24px
    }

    .srvs-pg .faq-band__inner {
        grid-template-columns: 1fr
    }

    .srvs-pg .faq-band__lft {
        position: static
    }
}

@media (max-width: 390px) {
    .srvs-pg .pg-top {
        padding: 48px 12px
    }

    .srvs-pg .svc-list {
        padding: 48px 12px
    }

    .srvs-pg .stats-band {
        padding: 48px 12px
    }

    .srvs-pg .stats-row {
        grid-template-columns: 1fr
    }

    .srvs-pg .faq-band {
        padding: 48px 12px
    }

    .srvs-pg .pg-top__h1 {
        font-size: 38px
    }
}

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

.succ-page .succ-card {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border: 1.5px solid #E0B5D4;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 4px 22px -2px #8c214414;
    text-align: center
}

.succ-page .succ-card .succ-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    width: 64px;
    height: 64px;
    border-radius: 36px;
    background: linear-gradient(135deg, #E0B5D4 0%, #CA3AB1 100%)
}

.succ-page .succ-card .succ-icon svg {
    display: block
}

.succ-page .succ-card .succ-heading {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #8C2144;
    margin: 0 0 12px
}

.succ-page .succ-card .succ-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #3a1020;
    margin: 0 0 24px
}

.succ-page .succ-card .succ-detail {
    font-size: 14px;
    line-height: 1.9;
    color: #5a2035;
    margin: 0 0 48px;
    padding: 12px 24px;
    background: #fdf4f8;
    border-radius: 12px;
    box-shadow: inset 0 3px 6px -2px #ca3ab112
}

.succ-page .succ-card .succ-btn {
    display: inline-block;
    padding: 12px 48px;
    background: #8C2144;
    color: #fff;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background .12s cubic-bezier(0.4, 0, 1, 1), box-shadow .15s cubic-bezier(0.4, 0, 1, 1);
    box-shadow: 0 3px 5px -2px #8c214414
}

.succ-page .succ-card .succ-btn:hover {
    background: #CA3AB1;
    box-shadow: 0 10px 36px -2px #8c21441c
}

.succ-page .succ-card .succ-btn:focus {
    outline: 2px solid #8C2144;
    outline-offset: 3px
}

.succ-page .succ-card .succ-btn:active {
    background: #6a1833
}

@media (max-width: 390px) {
    .succ-page {
        padding: 48px 12px
    }

    .succ-page .succ-card {
        padding: 24px 12px
    }

    .succ-page .succ-card .succ-heading {
        font-size: 21px
    }

    .succ-page .succ-card .succ-btn {
        width: 100%;
        text-align: center
    }
}