@import "https://cdn.jsdelivr.net/npm/@fontsource/manrope@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/manrope@latest/700.css";

html {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
    color: #1a1a2e
}

.site-head {
    background: linear-gradient(160deg, #2a1a1e 0%, #3d1f27 55%, #4a2530 100%);
    position: relative;
    overflow: hidden
}

.site-head::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #b335462e 0%, transparent 60%);
    pointer-events: none
}

.site-head__accent {
    position: absolute;
    top: -32px;
    right: 80px;
    width: 180px;
    height: 180px;
    border-radius: 48px;
    background: #c47c6114;
    transform: rotate(24deg);
    pointer-events: none
}

.site-head__accent--two {
    top: auto;
    bottom: -48px;
    right: 240px;
    width: 120px;
    height: 120px;
    border-radius: 32px;
    background: #b335461a;
    transform: rotate(-15deg)
}

.head-top {
    max-width: 1600px;
    margin: 0 auto;
    padding: 32px 48px 16px;
    display: flex;
    align-items: center;
    gap: 16px
}

.brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.brand-box__img-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c;
    border: 1.5px solid #ffffffd9;
    overflow: hidden;
    flex-shrink: 0
}

.brand-box__img-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block
}

.brand-box__name {
    font-size: 16px;
    font-weight: 700;
    color: #E1D6CB;
    letter-spacing: .12em;
    text-transform: uppercase;
    line-height: 1.2;
    white-space: nowrap
}

.head-top__divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent, #e1d6cb40, transparent);
    flex-shrink: 0;
    margin: 0 8px
}

.head-top__tagline {
    font-size: 16px;
    color: #e1d6cba6;
    line-height: 1.6;
    font-style: italic
}

.head-nav-row {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 48px 24px;
    border-top: 1px solid #e1d6cb1a;
    margin-top: 16px;
    padding-top: 20px
}

.head-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center
}

.head-nav__item {
    position: relative
}

.head-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 700;
    color: #e1d6cbcc;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: color .18s ease-out, border-color .15s ease-out, background .15s ease-out;
    white-space: nowrap;
    min-height: 44px;
    line-height: 1.2;
    position: relative;
    overflow: hidden
}

.head-nav__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b335468c
}

.head-nav__link:hover {
    color: #E1D6CB;
    border-color: #b3354666;
    background: #b335461f
}

.head-nav__link--active {
    color: #E1D6CB;
    background: #b3354633;
    border-color: #b3354659
}

.head-nav__dot {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 48px;
    background: #B33546;
    margin-left: 8px;
    flex-shrink: 0;
    align-self: center
}

@media (max-width: 1024px) {
    .head-top {
        padding: 24px 32px 12px
    }

    .head-nav-row {
        padding: 16px 32px 20px;
        margin-top: 12px
    }

    .head-top__tagline {
        display: none
    }

    .head-top__divider {
        display: none
    }
}

@media (max-width: 768px) {
    .head-top {
        padding: 16px 16px 8px
    }

    .head-nav-row {
        padding: 12px 16px 16px;
        margin-top: 8px
    }

    .head-nav__link {
        padding: 10px 12px;
        font-size: 16px
    }
}

@media (max-width: 375px) {
    .head-nav {
        gap: 4px
    }

    .head-nav__link {
        padding: 10px
    }
}

.site-foot {
    background: linear-gradient(135deg, #1e1015 0%, #2a1a1e 60%, #321d22 100%);
    position: relative;
    overflow: hidden
}

.site-foot__depth-char {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    font-weight: 700;
    color: #b335460f;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -.05em
}

.foot-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 32px 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1
}

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

.foot-brand__img-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c;
    border: 1.5px solid #fffc;
    overflow: hidden;
    flex-shrink: 0
}

.foot-brand__img-wrap img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block
}

.foot-brand__label {
    font-size: 16px;
    font-weight: 700;
    color: #E1D6CB;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.2
}

.foot-sep {
    width: 1px;
    height: 36px;
    background: #e1d6cb26;
    flex-shrink: 0
}

.foot-contacts {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;
    flex: 1
}

.foot-contacts__item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #e1d6cbb8;
    font-size: 16px;
    line-height: 1.6;
    transition: color .18s ease-out;
    min-height: 44px
}

.foot-contacts__item:hover {
    color: #E1D6CB
}

.foot-contacts__item:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b335468c;
    border-radius: 8px
}

.foot-contacts__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: .75
}

.foot-contacts__addr {
    color: #e1d6cb8c;
    font-size: 16px;
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 8px
}

.foot-contacts__addr-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: .6
}

.foot-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0
}

.foot-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end
}

.foot-nav__link {
    font-size: 16px;
    color: #e1d6cb8c;
    text-decoration: none;
    transition: color .15s ease-out;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 4px 0
}

.foot-nav__link:hover {
    color: #C47C61
}

.foot-nav__link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b335468c;
    border-radius: 8px
}

.foot-copy {
    font-size: 16px;
    color: #e1d6cb59;
    line-height: 1.6;
    white-space: nowrap
}

@media (max-width: 1024px) {
    .foot-inner {
        padding: 24px 32px;
        gap: 16px
    }

    .foot-sep {
        display: none
    }
}

@media (max-width: 768px) {
    .foot-inner {
        padding: 24px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .foot-right {
        align-items: flex-start;
        width: 100%
    }

    .foot-nav {
        justify-content: flex-start
    }

    .foot-contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .site-foot__depth-char {
        font-size: 120px;
        right: -10px
    }
}

@media (max-width: 375px) {
    .foot-inner {
        padding: 16px
    }
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    background: #2a1a1e;
    border-top: 1px solid #b335464d;
    box-shadow: 0 8px 48px -1px #b3354624;
    opacity: 0;
    transition: opacity .22s ease-out
}

.consent-bar--visible {
    opacity: 1
}

.consent-bar__inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 32px
}

.consent-bar__text {
    flex: 1;
    font-size: 16px;
    color: #e1d6cbcc;
    line-height: 1.6;
    min-width: 240px
}

.consent-bar__text a {
    color: #C47C61;
    text-decoration: underline
}

.consent-bar__text a:hover {
    color: #E1D6CB
}

.consent-bar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0
}

.consent-bar__accept {
    font-size: 16px;
    font-weight: 700;
    color: #E1D6CB;
    background: #B33546;
    border: none;
    border-radius: 8px;
    padding: 12px 32px;
    cursor: pointer;
    min-height: 44px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background .18s ease-out;
    position: relative
}

.consent-bar__accept::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color .15s ease-out
}

.consent-bar__accept:hover::after {
    border-color: #E1D6CB
}

.consent-bar__accept:hover {
    background: #9b2d3c
}

.consent-bar__accept:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b335468c
}

.consent-bar__decline {
    font-size: 16px;
    color: #e1d6cb8c;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 12px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color .15s ease-out
}

.consent-bar__decline:hover {
    color: #E1D6CB
}

.consent-bar__decline:focus {
    outline: none;
    box-shadow: 0 0 0 3px #b335468c;
    border-radius: 8px
}

@media (max-width: 768px) {
    .consent-bar__inner {
        padding: 16px;
        flex-direction: column;
        align-items: flex-start
    }

    .consent-bar__actions {
        width: 100%;
        justify-content: flex-start
    }
}

@media (max-width: 375px) {
    .consent-bar__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

.terms-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
    background: #fff;
    color: #2a2a2e
}

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

.terms-section ul,
.terms-section ol {
    margin: 16px 0 32px;
    padding-left: 32px
}

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

.terms-section ul li {
    position: relative;
    padding-left: 32px;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
    color: #2a2a2e
}

.terms-section ul li::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #B33546;
    box-shadow: 0 2px 2px -1px #b3354614
}

.terms-section ol {
    list-style: none;
    counter-reset: policy-counter;
    padding-left: 0
}

.terms-section ol li {
    position: relative;
    padding-left: 40px;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 8px;
    color: #2a2a2e;
    counter-increment: policy-counter
}

.terms-section ol li::before {
    content: counter(policy-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #B33546, #C47C61);
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px -1px #b335461c
}

.terms-section ul ul,
.terms-section ol ol,
.terms-section ul ol,
.terms-section ol ul {
    margin: 8px 0 8px 16px
}

.terms-section ul ul li::before {
    background: #C47C61;
    width: 6px;
    height: 6px;
    top: 13px
}

.terms-section strong,
.terms-section b {
    font-weight: 700;
    color: #1b1b20
}

.terms-section em,
.terms-section i {
    font-style: italic;
    color: #3d3d45
}

.terms-section div {
    margin-bottom: 32px
}

.terms-section div p:last-child {
    margin-bottom: 0
}

@media (max-width: 1024px) {
    .terms-section {
        padding: 48px 32px
    }
}

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

    .terms-section p {
        font-size: 16px;
        line-height: 1.9
    }

    .terms-section ul li,
    .terms-section ol li {
        font-size: 16px
    }

    .terms-section ol li {
        padding-left: 36px
    }
}

@media (max-width: 375px) {
    .terms-section {
        padding: 32px 12px
    }

    .terms-section ul li {
        padding-left: 24px
    }

    .terms-section ul li::before {
        left: 4px
    }
}

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

.upd__hero {
    padding: 48px 48px 32px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    background: linear-gradient(to left, #C47C61 0%, transparent 70%), #f5f0eb;
    position: relative
}

.upd__hero-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 32px
}

.upd__hero-img-col {
    flex: 0 0 48%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end
}

.upd__hero-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px -1px #b3354624;
    width: 100%
}

.upd__hero-img-wrap img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 20px
}

.upd__scanline {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    pointer-events: none;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, #b335460f 3px, #b335460f 4px);
    z-index: 1
}

.upd__shape-a {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 48px;
    border: 2px solid #b3354621;
    top: -24px;
    left: -32px;
    pointer-events: none;
    z-index: 0;
    transform: rotate(18deg)
}

.upd__shape-b {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 32px;
    background: #c47c6117;
    bottom: 32px;
    left: -48px;
    pointer-events: none;
    z-index: 0;
    transform: rotate(-10deg)
}

.upd__tag {
    display: inline-block;
    background: #B33546;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 8px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    width: fit-content
}

.upd__h1 {
    font-size: 60px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 800;
    text-shadow: 0 2px 2px -1px #b3354614;
    margin: 0
}

.upd__meta-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center
}

.upd__meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #555
}

.upd__meta-item svg {
    flex-shrink: 0
}

.upd__price-badge {
    margin-top: 16px;
    background: #fff;
    border-radius: 20px;
    padding: 16px 32px;
    box-shadow: 0 6px 20px -1px #b335461c;
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: fit-content
}

.upd__price-val {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: #B33546
}

.upd__price-note {
    font-size: 16px;
    line-height: 1.6;
    color: #777
}

.upd__cta-btn {
    display: inline-block;
    background: #B33546;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 12px;
    border: 2px solid #B33546;
    cursor: pointer;
    text-decoration: none;
    margin-top: 8px;
    width: fit-content;
    position: relative;
    overflow: hidden;
    transition: color .18s ease-out, background .18s ease-out, border-color .18s ease-out;
    box-shadow: 0 6px 20px -1px #b335461c
}

.upd__cta-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #fff;
    opacity: 0;
    transition: opacity .15s ease-out;
    pointer-events: none
}

.upd__cta-btn:hover {
    background: #fff;
    color: #B33546;
    border-color: #B33546
}

.upd__cta-btn:hover::after {
    opacity: 1
}

.upd__cta-btn:focus {
    outline: 3px solid #C47C61;
    outline-offset: 3px
}

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

.upd__divider-tri svg {
    display: block;
    width: 100%
}

.upd__desc {
    padding: 48px 48px 32px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    background: #fff;
    align-items: flex-start
}

.upd__desc-aside {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 8px;
    position: sticky;
    top: 32px
}

.upd__aside-label {
    font-size: 16px;
    line-height: 1.6;
    color: #B33546;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    border-top: 2px solid #E1D6CB;
    padding-top: 8px
}

.upd__aside-val {
    font-size: 16px;
    line-height: 1.9;
    color: #333
}

.upd__desc-body {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.upd__desc-body h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 700;
    text-shadow: 0 2px 2px -1px #b3354614;
    margin: 0
}

.upd__desc-body p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin: 0
}

.upd__desc-body ul {
    margin: 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.upd__desc-body ul li {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    list-style: none;
    padding-left: 16px;
    position: relative
}

.upd__desc-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #C47C61
}

.upd__desc-body blockquote {
    border-radius: 12px;
    background: #f5f0eb;
    padding: 16px 32px;
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    box-shadow: 0 2px 2px -1px #b3354614
}

.upd__desc-body strong {
    color: #B33546
}

.upd__desc-body mark {
    background: linear-gradient(to left, #C47C61, #E1D6CB);
    color: #1b1b1b;
    border-radius: 4px;
    padding: 0 4px
}

.upd__desc-body a {
    color: #B33546;
    text-decoration-style: dotted;
    text-decoration-color: #C47C61;
    transition: color .14s ease-out
}

.upd__desc-body a:hover {
    color: #C47C61
}

.upd__desc-body dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.upd__desc-body dt {
    font-weight: 700;
    color: #B33546;
    font-size: 16px;
    line-height: 1.6
}

.upd__desc-body dd {
    margin-left: 16px;
    font-size: 16px;
    line-height: 1.9;
    color: #444
}

.upd__desc-body figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden
}

.upd__desc-body figcaption {
    font-size: 16px;
    line-height: 1.6;
    color: #888;
    font-style: italic;
    padding-top: 8px
}

.upd__desc-body details {
    border-radius: 12px;
    background: #f5f0eb;
    padding: 12px 16px
}

.upd__desc-body summary {
    font-weight: 700;
    color: #B33546;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6
}

.upd__divider-wave {
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.upd__prog {
    padding: 48px;
    background: linear-gradient(to left, #c47c6121 0%, transparent 80%), #f5f0eb;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.upd__prog-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 32px
}

.upd__prog-h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 700;
    text-shadow: 0 2px 2px -1px #b3354614;
    margin: 0;
    flex: 1 1 0
}

.upd__prog-accent {
    width: 80px;
    height: 4px;
    border-radius: 8px;
    background: linear-gradient(to left, #C47C61, #B33546);
    margin-bottom: 12px;
    flex-shrink: 0
}

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

.upd__prog-body h2 {
    font-size: 24px;
    line-height: 1.2;
    color: #B33546;
    font-weight: 700;
    margin: 0
}

.upd__prog-body p {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin: 0
}

.upd__prog-body ul {
    margin: 0;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none
}

.upd__prog-body ul li {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    padding-left: 24px;
    position: relative
}

.upd__prog-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 10px;
    height: 10px;
    border-radius: 8px;
    background: #B33546
}

.upd__prog-body strong {
    color: #B33546
}

.upd__prog-body mark {
    background: linear-gradient(to left, #C47C61, #E1D6CB);
    color: #1b1b1b;
    border-radius: 4px;
    padding: 0 4px
}

.upd__prog-body blockquote {
    border-radius: 12px;
    background: #fff;
    padding: 16px 32px;
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    box-shadow: 0 2px 2px -1px #b3354614
}

.upd__prog-body dl {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.upd__prog-body dt {
    font-weight: 700;
    color: #B33546;
    font-size: 16px;
    line-height: 1.6
}

.upd__prog-body dd {
    margin-left: 16px;
    font-size: 16px;
    line-height: 1.9;
    color: #444
}

.upd__prog-body figure {
    margin: 0;
    border-radius: 12px;
    overflow: hidden
}

.upd__prog-body figcaption {
    font-size: 16px;
    line-height: 1.6;
    color: #888;
    font-style: italic;
    padding-top: 8px
}

.upd__prog-body details {
    border-radius: 12px;
    background: #fff;
    padding: 12px 16px
}

.upd__prog-body summary {
    font-weight: 700;
    color: #B33546;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6
}

.upd__glass {
    padding: 48px;
    background: #e1d6cb73;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-top: 1px solid #c47c612e;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: stretch
}

.upd__glass-left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.upd__glass-h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 2px -1px #b3354614
}

.upd__glass-text {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    margin: 0
}

.upd__glass-right {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.upd__enroll-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 8px 48px -1px #b3354624;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.upd__enroll-price {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: #B33546
}

.upd__enroll-note {
    font-size: 16px;
    line-height: 1.6;
    color: #777;
    margin: 0
}

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

.upd__enroll-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #444
}

.upd__enroll-dot {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    background: #C47C61;
    flex-shrink: 0
}

.upd__enroll-btn {
    display: block;
    background: #B33546;
    color: #fff;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 12px;
    border: 2px solid #B33546;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: color .2s ease-out, background .2s ease-out, border-color .2s ease-out;
    box-shadow: 0 6px 20px -1px #b335461c
}

.upd__enroll-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #B33546;
    opacity: 0;
    transition: opacity .14s ease-out;
    pointer-events: none
}

.upd__enroll-btn:hover {
    background: #fff;
    color: #B33546;
    border-color: #B33546
}

.upd__enroll-btn:hover::after {
    opacity: 1
}

.upd__enroll-btn:focus {
    outline: 3px solid #C47C61;
    outline-offset: 3px
}

.upd__curve-line {
    position: absolute;
    pointer-events: none;
    right: 0;
    bottom: 0;
    opacity: .09;
    z-index: 0
}

.upd__hero {
    position: relative
}

.upd__hero>* {
    position: relative;
    z-index: 1
}

@keyframes upd-row-in {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

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

.upd__hero-text {
    animation: upd-row-in .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

.upd__hero-img-col {
    animation: upd-row-in .18s .08s cubic-bezier(0.4, 0, 0.6, 1) both
}

.upd__prog {
    animation: upd-row-in .2s .04s cubic-bezier(0.4, 0, 0.6, 1) both
}

.upd__glass {
    animation: upd-row-in .22s .08s cubic-bezier(0.4, 0, 0.6, 1) both
}

@media (max-width: 1024px) {
    .upd__hero {
        flex-direction: column;
        padding: 32px;
        gap: 32px
    }

    .upd__hero-img-col {
        flex: 0 0 auto;
        width: 100%;
        align-items: stretch
    }

    .upd__hero-img-wrap img {
        height: 340px
    }

    .upd__h1 {
        font-size: 44px
    }

    .upd__desc {
        flex-direction: column;
        padding: 32px;
        gap: 32px
    }

    .upd__desc-aside {
        flex: 0 0 auto;
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px
    }

    .upd__glass {
        flex-direction: column;
        padding: 32px;
        gap: 32px
    }

    .upd__glass-right {
        flex: 0 0 auto;
        width: 100%
    }

    .upd__prog {
        padding: 32px
    }
}

@media (max-width: 768px) {
    .upd__hero {
        padding: 16px;
        gap: 16px
    }

    .upd__h1 {
        font-size: 44px
    }

    .upd__hero-img-wrap img {
        height: 220px
    }

    .upd__desc {
        padding: 16px
    }

    .upd__prog {
        padding: 16px
    }

    .upd__glass {
        padding: 16px
    }

    .upd__prog-h2 {
        font-size: 24px
    }

    .upd__price-val,
    .upd__enroll-price {
        font-size: 44px
    }

    .upd__cta-btn {
        font-size: 16px;
        padding: 12px 32px
    }
}

@media (max-width: 375px) {
    .upd__h1 {
        font-size: 24px
    }

    .upd__price-val,
    .upd__enroll-price {
        font-size: 24px
    }

    .upd__prog-h2 {
        font-size: 16px
    }

    .upd__desc-body h2 {
        font-size: 24px
    }

    .upd__glass-h3 {
        font-size: 16px
    }
}

.qz-pg {
    background: #fff;
    overflow-x: hidden;
    position: relative
}

.qz-pg .load-scale {
    animation: scaleSettle .18s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes scaleSettle {
    from {
        transform: scale(0.95);
        opacity: .7
    }

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

.qz-pg .wave-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    pointer-events: none
}

.qz-pg .wave-div svg {
    display: block;
    width: 100%
}

.qz-pg ::selection {
    background: linear-gradient(90deg, #B33546, #C47C61);
    color: #fff
}

.qz-pg a {
    color: #B33546;
    text-decoration: underline dotted #C47C61;
    text-underline-offset: 3px;
    transition: color .14s ease-out
}

.qz-pg a:hover {
    color: #C47C61
}

.qz-pg .btn-main {
    display: inline-block;
    background: #B33546;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: color .16s ease-out, background .16s ease-out;
    box-shadow: 0 6px 20px -1px #b335461c;
    cursor: pointer
}

.qz-pg .btn-main::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #B33546;
    opacity: 0;
    transition: opacity .16s ease-out
}

.qz-pg .btn-main:hover {
    background: #fff;
    color: #B33546;
    text-decoration: none
}

.qz-pg .btn-main:hover::after {
    opacity: 1
}

.qz-pg .btn-sec {
    display: inline-block;
    background: transparent;
    color: #B33546;
    font-size: 16px;
    line-height: 1.2;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #B33546;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: color .12s ease-out, background .12s ease-out;
    cursor: pointer
}

.qz-pg .btn-sec:hover {
    background: #B33546;
    color: #fff;
    text-decoration: none
}

.qz-pg .schema-data {
    display: none
}

.qz-pg .pg-title-block {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px
}

.qz-pg .pg-title-block .img-col {
    flex: 0 0 45%;
    position: relative
}

.qz-pg .pg-title-block .img-col .img-border-wrap {
    position: relative;
    border-radius: 20px;
    padding: 8px;
    background: linear-gradient(180deg, #C47C61, transparent)
}

.qz-pg .pg-title-block .img-col .img-border-wrap::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    border: 2px dashed #C47C61;
    opacity: .5;
    pointer-events: none
}

.qz-pg .pg-title-block .img-col img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 48px -1px #b3354624;
    animation: imgPan 8s ease-in-out infinite alternate
}

@keyframes imgPan {
    from {
        object-position: center 40%
    }

    to {
        object-position: center 60%
    }
}

.qz-pg .pg-title-block .img-col .curved-bg {
    position: absolute;
    top: -24px;
    right: -24px;
    width: 180px;
    height: 180px;
    pointer-events: none;
    z-index: 0
}

.qz-pg .pg-title-block .txt-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 16px 32px 0
}

.qz-pg .pg-title-block .txt-col .label-tag {
    display: inline-block;
    background: linear-gradient(90deg, #C47C61, transparent);
    color: #B33546;
    font-size: 16px;
    line-height: 1.2;
    padding: 4px 16px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px
}

.qz-pg .pg-title-block .txt-col h1 {
    font-size: 60px;
    line-height: 1.2;
    color: #1a0a0f;
    margin-bottom: 16px;
    text-shadow: 0 2px 2px -1px #b3354614
}

.qz-pg .pg-title-block .txt-col .sub-note {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2228;
    margin-bottom: 32px
}

.qz-pg .pg-title-block .txt-col .aside-note {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 32px
}

.qz-pg .pg-title-block .txt-col .aside-note .note-marker {
    flex: 0 0 4px;
    width: 4px;
    background: #C47C61;
    border-radius: 8px;
    align-self: stretch;
    min-height: 40px
}

.qz-pg .pg-title-block .txt-col .aside-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3a42;
    margin: 0
}

.qz-pg .quiz-area {
    background: linear-gradient(180deg, #E1D6CB 0%, #f5f0ea 100%);
    padding: 0
}

.qz-pg .quiz-area .quiz-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px
}

.qz-pg .quiz-area h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a0a0f;
    text-shadow: 0 2px 2px -1px #b3354614;
    margin-bottom: 8px
}

.qz-pg .quiz-area .q-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2228;
    margin-bottom: 48px;
    max-width: 640px
}

.qz-pg .quiz-area .questions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px
}

.qz-pg .quiz-area .q-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 6px 20px -1px #b335461c;
    position: relative;
    animation: scaleSettle .18s cubic-bezier(0.4, 0, 0.6, 1) both
}

.qz-pg .quiz-area .q-card .q-num {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 900;
    color: #E1D6CB;
    position: absolute;
    top: 16px;
    right: 24px;
    pointer-events: none;
    user-select: none
}

.qz-pg .quiz-area .q-card h4 {
    font-size: 16px;
    line-height: 1.6;
    color: #1a0a0f;
    font-weight: 700;
    margin-bottom: 16px;
    padding-right: 48px
}

.qz-pg .quiz-area .q-card .opts {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.qz-pg .quiz-area .q-card .opt-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 2px solid #E1D6CB;
    cursor: pointer;
    transition: border-color .14s ease-out, background .14s ease-out;
    position: relative
}

.qz-pg .quiz-area .q-card .opt-item:hover {
    border-color: #C47C61;
    background: #fdf8f5
}

.qz-pg .quiz-area .q-card .opt-item input[type="radio"] {
    accent-color: #B33546;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer
}

.qz-pg .quiz-area .q-card .opt-item label {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2228;
    cursor: pointer;
    flex: 1
}

.qz-pg .quiz-area .q-card .opt-item input[type="radio"]:checked~label {
    color: #B33546;
    font-weight: 600
}

.qz-pg .quiz-area .q-card .opt-item:has(input:checked) {
    border-color: #B33546;
    background: linear-gradient(90deg, #b335460f, transparent)
}

.qz-pg .quiz-area .quiz-submit-row {
    margin-top: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.qz-pg .quiz-area .result-area {
    margin-top: 32px;
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 48px -1px #b3354624;
    display: none
}

.qz-pg .quiz-area .result-area.visible {
    display: block
}

.qz-pg .quiz-area .result-area .result-score {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 900;
    color: #B33546;
    margin-bottom: 8px
}

.qz-pg .quiz-area .result-area .result-msg {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2228
}

.qz-pg .topic-strip {
    background: #fff;
    padding: 0
}

.qz-pg .topic-strip .strip-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px
}

.qz-pg .topic-strip h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a0a0f;
    text-shadow: 1px 2px 0 #c47c612e;
    margin-bottom: 8px
}

.qz-pg .topic-strip .strip-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3a42;
    margin-bottom: 48px;
    max-width: 560px
}

.qz-pg .topic-strip .three-col {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 32px;
    align-items: start
}

.qz-pg .topic-strip .side-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.qz-pg .topic-strip .side-item {
    padding: 16px;
    border-radius: 12px;
    background: #fdf8f5;
    box-shadow: 0 2px 2px -1px #b3354614;
    transition: box-shadow .16s ease-out, transform .16s ease-out
}

.qz-pg .topic-strip .side-item:hover {
    box-shadow: 0 6px 20px -1px #b335461c;
    transform: translateY(-2px)
}

.qz-pg .topic-strip .side-item h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #B33546;
    font-weight: 700;
    margin-bottom: 4px
}

.qz-pg .topic-strip .side-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2228;
    margin: 0
}

.qz-pg .topic-strip .center-col {
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(180deg, #B33546 0%, #C47C61 100%);
    color: #fff;
    position: relative;
    overflow: hidden
}

.qz-pg .topic-strip .center-col .bubble-quote {
    position: relative;
    background: #ffffff1f;
    border-radius: 20px;
    padding: 24px;
    margin-bottom: 24px
}

.qz-pg .topic-strip .center-col .bubble-quote::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 32px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 0 solid transparent;
    border-top: 16px solid #ffffff1f
}

.qz-pg .topic-strip .center-col .bubble-quote p {
    font-size: 16px;
    line-height: 1.9;
    color: #fff;
    margin: 0;
    font-style: italic
}

.qz-pg .topic-strip .center-col .bubble-attr {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.2;
    color: #ffffffd9;
    font-weight: 700
}

.qz-pg .topic-strip .center-col h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 2px -1px #b3354633
}

.qz-pg .topic-strip .center-col .topic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.qz-pg .topic-strip .center-col .topic-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffe6;
    padding-left: 16px;
    position: relative
}

.qz-pg .topic-strip .center-col .topic-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #E1D6CB
}

.qz-pg .topic-strip .hover-seq {
    display: inline-block;
    position: relative;
    overflow: hidden
}

.qz-pg .topic-strip .hover-seq span {
    display: inline-block;
    transition: transform .14s ease-out
}

.qz-pg .topic-strip:hover .hover-seq span {
    transform: translateY(-3px)
}

.qz-pg .info-band {
    background: #1a0a0f;
    padding: 0;
    position: relative;
    overflow: hidden
}

.qz-pg .info-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23C47C61' opacity='0.07'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none
}

.qz-pg .info-band .band-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
    position: relative
}

.qz-pg .info-band h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #E1D6CB;
    text-shadow: 0 2px 2px -1px #b3354633;
    margin-bottom: 8px
}

.qz-pg .info-band .band-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #e1d6cbbf;
    margin-bottom: 48px;
    max-width: 540px
}

.qz-pg .info-band .metrics-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.qz-pg .info-band .metric-box {
    flex: 1;
    min-width: 160px;
    padding: 24px;
    border-radius: 20px;
    background: #e1d6cb0f;
    border: 1px solid #c47c612e;
    box-shadow: inset 0 6px 10px #b3354614;
    transition: background .18s ease-out, border-color .18s ease-out
}

.qz-pg .info-band .metric-box:hover {
    background: #c47c611f;
    border-color: #c47c6166
}

.qz-pg .info-band .metric-box .m-val {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 900;
    color: #C47C61;
    display: block;
    margin-bottom: 4px
}

.qz-pg .info-band .metric-box .m-label {
    font-size: 16px;
    line-height: 1.6;
    color: #e1d6cbcc
}

.qz-pg .info-band .aside-layout {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.qz-pg .info-band .aside-layout .side-ann {
    flex: 0 0 160px;
    font-size: 16px;
    line-height: 1.6;
    color: #C47C61;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    padding-top: 4px
}

.qz-pg .info-band .aside-layout .main-txt {
    flex: 1
}

.qz-pg .info-band .aside-layout .main-txt p {
    font-size: 16px;
    line-height: 1.9;
    color: #e1d6cbd9;
    margin-bottom: 16px
}

.qz-pg .info-band .aside-layout .main-txt p:last-child {
    margin-bottom: 0
}

.qz-pg .info-band .dashed-path {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 320px;
    pointer-events: none;
    opacity: .12
}

@media (max-width: 1024px) {
    .qz-pg .pg-title-block {
        flex-direction: column;
        gap: 32px
    }

    .qz-pg .pg-title-block .img-col {
        flex: none
    }

    .qz-pg .pg-title-block .img-col img {
        height: 300px
    }

    .qz-pg .pg-title-block .txt-col h1 {
        font-size: 44px
    }

    .qz-pg .quiz-area .questions-grid {
        grid-template-columns: 1fr
    }

    .qz-pg .topic-strip .three-col {
        grid-template-columns: 1fr 1fr
    }

    .qz-pg .topic-strip .three-col .side-col:last-child {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .qz-pg .info-band .metrics-row {
        gap: 16px
    }
}

@media (max-width: 768px) {
    .qz-pg .pg-title-block {
        padding: 32px 16px
    }

    .qz-pg .pg-title-block .txt-col h1 {
        font-size: 44px
    }

    .qz-pg .topic-strip .three-col {
        grid-template-columns: 1fr
    }

    .qz-pg .topic-strip .three-col .side-col:last-child {
        display: flex;
        flex-direction: column
    }

    .qz-pg .info-band .aside-layout {
        flex-direction: column;
        gap: 16px
    }

    .qz-pg .info-band .aside-layout .side-ann {
        flex: none
    }

    .qz-pg .info-band .metrics-row {
        flex-direction: column
    }

    .qz-pg .quiz-area .quiz-inner,
    .qz-pg .topic-strip .strip-inner,
    .qz-pg .info-band .band-inner {
        padding: 32px 16px
    }

    .qz-pg .quiz-area .quiz-submit-row {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 375px) {
    .qz-pg .pg-title-block .txt-col h1 {
        font-size: 44px
    }

    .qz-pg .info-band h2,
    .qz-pg .quiz-area h2,
    .qz-pg .topic-strip h2 {
        font-size: 24px
    }
}

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

.uprg .pg-strip {
    height: 3px;
    background: linear-gradient(to left, #C47C61, #B33546);
    width: 100%
}

.uprg .tb {
    position: relative;
    padding: 80px 48px;
    background: #fff;
    overflow: hidden
}

.uprg .tb__bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(circle at 96% 8%, #b3354621 0%, transparent 52%), repeating-linear-gradient(135deg, #c47c610f 0px, #c47c610f 1px, transparent 1px, transparent 28px)
}

.uprg .tb__math {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 220px;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1.5px #b3354614;
    pointer-events: none;
    user-select: none;
    font-weight: 700
}

.uprg .tb__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1
}

.uprg .tb__text {
    flex: 1 1 0;
    min-width: 0
}

.uprg .tb__eyebrow {
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #B33546;
    margin-bottom: 16px;
    font-weight: 600
}

.uprg .tb__h1 {
    font-size: 60px;
    line-height: 1.2;
    color: #1a0a0e;
    font-weight: 800;
    margin: 0 0 24px;
    text-shadow: 0 2px 2px -1px #b3354614
}

.uprg .tb__desc {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2228;
    max-width: 560px;
    margin: 0
}

.uprg .tb__img-col {
    flex: 0 0 380px;
    width: 380px
}

.uprg .tb__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px -1px #b3354624
}

.uprg .tb__img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) contrast(1.12);
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.uprg .tb__img-wrap:hover img {
    transform: scale(1.04)
}

.uprg .div-line {
    height: 2px;
    background: linear-gradient(to left, #C47C61, #B33546);
    border: none;
    margin: 0
}

.uprg .prog-grid-sect {
    padding: 64px 48px;
    background: #fdf9f7
}

.uprg .prog-grid-sect__inner {
    max-width: 1600px;
    margin: 0 auto
}

.uprg .prog-grid-sect__header {
    margin-bottom: 48px
}

.uprg .prog-grid-sect__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a0a0e;
    font-weight: 700;
    margin: 0 0 12px;
    text-shadow: 0 2px 2px -1px #b3354614
}

.uprg .prog-grid-sect__sub {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3a3f;
    margin: 0
}

.uprg .prog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
}

.uprg .prog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 6px 20px -1px #b335461c;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .16s ease-out, transform .16s ease-out;
    position: relative
}

.uprg .prog-card:hover {
    box-shadow: 0 8px 48px -1px #b3354624;
    transform: translateY(-3px)
}

.uprg .prog-card__img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0
}

.uprg .prog-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.uprg .prog-card:hover .prog-card__img-wrap img {
    transform: scale(1.05)
}

.uprg .prog-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1 1 0
}

.uprg .prog-card__tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    color: #B33546;
    background: #b3354614;
    border-radius: 8px;
    padding: 4px 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    align-self: flex-start
}

.uprg .prog-card__h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #1a0a0e;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 2px -1px #b3354614
}

.uprg .prog-card__desc {
    font-size: 16px;
    line-height: 1.6;
    color: #4a2e34;
    margin: 0
}

.uprg .prog-card__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px
}

.uprg .prog-card__meta-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #7a5560
}

.uprg .prog-card__meta-item svg {
    flex-shrink: 0
}

.uprg .prog-card__price-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    margin-top: 4px
}

.uprg .prog-card__price {
    font-size: 24px;
    line-height: 1.2;
    color: #B33546;
    font-weight: 800
}

.uprg .prog-card__price-note {
    font-size: 16px;
    line-height: 1.6;
    color: #7a5560
}

.uprg .prog-card__foot {
    padding: 0 32px 32px;
    margin-top: auto
}

.uprg .prog-card__link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #fff;
    background: #B33546;
    border-radius: 12px;
    padding: 12px 32px;
    text-decoration: none !important;
    border: 2px solid #B33546;
    position: relative;
    overflow: hidden;
    transition: color .15s ease-out, background .15s ease-out, border-color .15s ease-out
}

.uprg .prog-card__link::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #B33546;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .18s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none
}

.uprg .prog-card__link:hover {
    background: #fff;
    color: #B33546
}

.uprg .prog-card__link:hover::after {
    clip-path: inset(0 0% 0 0)
}

.uprg .div-dots {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 32px 0;
    background: #fdf9f7
}

.uprg .div-dots__dot {
    width: 8px;
    height: 8px;
    border-radius: 48px;
    background: #C47C61;
    opacity: .5
}

.uprg .div-dots__dot--mid {
    background: #B33546;
    opacity: 1;
    width: 12px;
    height: 12px
}

.uprg .tl-sect {
    padding: 80px 48px;
    background: #fff;
    position: relative
}

.uprg .tl-sect__inner {
    max-width: 1600px;
    margin: 0 auto
}

.uprg .tl-sect__header {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-bottom: 64px;
    align-items: flex-start
}

.uprg .tl-sect__aside {
    flex: 0 0 180px;
    font-size: 16px;
    line-height: 1.9;
    color: #7a5560;
    font-style: italic;
    padding-top: 8px
}

.uprg .tl-sect__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a0a0e;
    font-weight: 700;
    margin: 0 0 12px;
    text-shadow: 0 2px 2px -1px #c47c611c;
    flex: 1 1 0
}

.uprg .tl-sect__body {
    font-size: 16px;
    line-height: 1.9;
    color: #4a2e34;
    margin: 0;
    flex: 1 1 0
}

.uprg .tl-track {
    position: relative
}

.uprg .tl-track__line {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to left, #C47C61, #B33546);
    z-index: 0
}

.uprg .tl-steps {
    display: flex;
    flex-direction: row;
    gap: 32px;
    position: relative;
    z-index: 1
}

.uprg .tl-step {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px
}

.uprg .tl-step__dot {
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background: #fff;
    border: 2px solid #B33546;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #B33546;
    box-shadow: 0 2px 2px -1px #b3354614;
    flex-shrink: 0
}

.uprg .tl-step__card {
    background: #fdf9f7;
    border-radius: 12px;
    padding: 16px;
    width: 100%;
    box-shadow: 0 2px 2px -1px #b3354614;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.uprg .tl-step__card-h {
    font-size: 16px;
    line-height: 1.6;
    color: #1a0a0e;
    font-weight: 700;
    margin: 0
}

.uprg .tl-step__card-p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3a3f;
    margin: 0
}

.uprg .div-thick {
    height: 1px;
    background: linear-gradient(to left, transparent, #C47C61 40%, #B33546 60%, transparent);
    margin: 0 48px
}

.uprg .stats-sect {
    padding: 80px 48px;
    background: #fdf9f7;
    position: relative;
    overflow: hidden
}

.uprg .stats-sect__math {
    position: absolute;
    left: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 260px;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1.5px #c47c6112;
    pointer-events: none;
    user-select: none;
    font-weight: 700
}

.uprg .stats-sect__inner {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.uprg .stats-sect__cols {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.uprg .stats-sect__left {
    flex: 0 0 1;
    flex-basis: 33%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.uprg .stats-sect__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a0a0e;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 2px -1px #b3354614
}

.uprg .stats-sect__p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a2e34;
    margin: 0
}

.uprg .stats-sect__note {
    font-size: 16px;
    line-height: 1.6;
    color: #7a5560;
    font-style: italic;
    margin: 0
}

.uprg .stats-sect__right {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.uprg .stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 6px 20px -1px #b335461c;
    position: relative;
    overflow: hidden
}

.uprg .stat-card__num {
    font-size: 44px;
    line-height: 1.2;
    color: #B33546;
    font-weight: 800
}

.uprg .stat-card__label {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3a3f;
    text-align: center
}

.uprg .stat-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #b3354614;
    border-radius: 8px;
    padding: 4px 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #B33546;
    font-weight: 600;
    margin-top: 4px
}

.uprg .div-space {
    height: 2px;
    background: linear-gradient(to left, #C47C61, #B33546)
}

.uprg .par-sect {
    position: relative;
    padding: 96px 48px;
    background-attachment: fixed;
    background-image: url(./article_images/IMG_4742.jpg);
    background-size: cover;
    background-position: center
}

.uprg .par-sect__overlay {
    position: absolute;
    inset: 0;
    background: #1a0a0ec7
}

.uprg .par-sect__inner {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center
}

.uprg .par-sect__left {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.uprg .par-sect__aside {
    font-size: 16px;
    line-height: 1.9;
    color: #e1d6cbb3;
    font-style: italic;
    flex: 0 0 160px;
    padding-top: 8px
}

.uprg .par-sect__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #E1D6CB;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 2px -1px #b3354624
}

.uprg .par-sect__p {
    font-size: 16px;
    line-height: 1.9;
    color: #e1d6cbe0;
    margin: 0
}

.uprg .par-sect__right {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.uprg .par-feat {
    background: #e1d6cb12;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 2px 2px -1px #b3354614;
    transition: background .14s ease-out
}

.uprg .par-feat:hover {
    background: #e1d6cb21
}

.uprg .par-feat__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #B33546;
    display: flex;
    align-items: center;
    justify-content: center
}

.uprg .par-feat__text {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.uprg .par-feat__h {
    font-size: 16px;
    line-height: 1.6;
    color: #E1D6CB;
    font-weight: 700;
    margin: 0
}

.uprg .par-feat__p {
    font-size: 16px;
    line-height: 1.6;
    color: #e1d6cbbf;
    margin: 0
}

.uprg .div-line2 {
    height: 2px;
    background: linear-gradient(to left, #C47C61, #B33546)
}

.uprg .faq-sect {
    padding: 80px 48px;
    background: #fff
}

.uprg .faq-sect__inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.uprg .faq-sect__left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 32px
}

.uprg .faq-sect__aside {
    font-size: 16px;
    line-height: 1.9;
    color: #7a5560;
    font-style: italic
}

.uprg .faq-sect__h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1a0a0e;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 2px -1px #b3354614
}

.uprg .faq-sect__p {
    font-size: 16px;
    line-height: 1.9;
    color: #4a2e34;
    margin: 0
}

.uprg .faq-sect__right {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.uprg .faq-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 2px -1px #b3354614
}

.uprg .faq-item__toggle {
    display: none
}

.uprg .faq-item__label {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #fdf9f7;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.6;
    color: #1a0a0e;
    font-weight: 600;
    user-select: none;
    gap: 12px;
    transition: background .14s ease-out, color .14s ease-out
}

.uprg .faq-item__label:hover {
    background: #b3354612;
    color: #B33546
}

.uprg .faq-item__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative
}

.uprg .faq-item__icon::before,
.uprg .faq-item__icon::after {
    content: '';
    position: absolute;
    background: #B33546;
    border-radius: 2px;
    transition: transform .16s cubic-bezier(0.4, 0, 0.6, 1), opacity .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.uprg .faq-item__icon::before {
    width: 14px;
    height: 2px;
    top: 9px;
    left: 3px
}

.uprg .faq-item__icon::after {
    width: 2px;
    height: 14px;
    top: 3px;
    left: 9px
}

.uprg .faq-item__toggle:checked+.faq-item__label .faq-item__icon::after {
    transform: rotate(90deg);
    opacity: 0
}

.uprg .faq-item__toggle:checked+.faq-item__label {
    background: #b3354617;
    color: #B33546
}

.uprg .faq-item__body {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.uprg .faq-item__toggle:checked~.faq-item__body {
    max-height: 200px
}

.uprg .faq-item__body-inner {
    padding: 16px 24px;
    font-size: 16px;
    line-height: 1.9;
    color: #4a2e34
}

.uprg .anim-child {
    opacity: 0;
    transform: translateY(18px);
    animation: uprg-fadein .2s ease-out forwards
}

.uprg .anim-child:nth-child(1) {
    animation-delay: .04s
}

.uprg .anim-child:nth-child(2) {
    animation-delay: .09s
}

.uprg .anim-child:nth-child(3) {
    animation-delay: .14s
}

.uprg .anim-child:nth-child(4) {
    animation-delay: .19s
}

.uprg .anim-child:nth-child(5) {
    animation-delay: .22s
}

@keyframes uprg-fadein {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (max-width: 1024px) {
    .uprg .tb__h1 {
        font-size: 44px
    }

    .uprg .tb__img-col {
        flex: 0 0 280px;
        width: 280px
    }

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

    .uprg .stats-sect__right {
        grid-template-columns: repeat(2, 1fr)
    }

    .uprg .tl-steps {
        flex-direction: column
    }

    .uprg .tl-track__line {
        display: none
    }

    .uprg .par-sect__inner {
        flex-direction: column
    }

    .uprg .par-sect__right {
        flex: 0 0 auto;
        width: 100%
    }

    .uprg .faq-sect__inner {
        flex-direction: column
    }

    .uprg .faq-sect__left {
        position: static;
        flex: 0 0 auto
    }

    .uprg .stats-sect__cols {
        flex-direction: column
    }

    .uprg .stats-sect__left {
        flex-basis: auto
    }

    .uprg .tl-sect__header {
        flex-direction: column;
        gap: 16px
    }
}

@media (max-width: 768px) {
    .uprg .tb {
        padding: 48px 16px
    }

    .uprg .tb__inner {
        flex-direction: column
    }

    .uprg .tb__img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .uprg .tb__h1 {
        font-size: 44px
    }

    .uprg .prog-grid-sect {
        padding: 48px 16px
    }

    .uprg .tl-sect {
        padding: 48px 16px
    }

    .uprg .stats-sect {
        padding: 48px 16px
    }

    .uprg .par-sect {
        padding: 64px 16px;
        background-attachment: scroll
    }

    .uprg .faq-sect {
        padding: 48px 16px
    }

    .uprg .stats-sect__right {
        grid-template-columns: 1fr 1fr
    }

    .uprg .div-thick {
        margin: 0 16px
    }
}

@media (max-width: 375px) {
    .uprg .tb__h1 {
        font-size: 44px
    }

    .uprg .stats-sect__right {
        grid-template-columns: 1fr
    }

    .uprg .prog-grid-sect {
        padding: 32px 8px
    }

    .uprg .tl-sect {
        padding: 32px 8px
    }

    .uprg .faq-sect {
        padding: 32px 8px
    }

    .uprg .stats-sect {
        padding: 32px 8px
    }

    .uprg .par-sect {
        padding: 48px 8px
    }

    .uprg .tb {
        padding: 32px 8px
    }
}

.strt {
    background: #fff;
    color: #1e1a18;
    overflow-x: hidden;
    max-width: 1600px;
    margin: 0 auto
}

.strt .grid {
    display: flex;
    flex-wrap: wrap
}

.strt ::selection {
    background: linear-gradient(90deg, #B33546, #C47C61);
    color: #fff
}

.strt .tb {
    padding: 48px 48px 32px;
    position: relative
}

.strt .tb__strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    max-width: 1600px
}

.strt .tb__img-frame {
    flex: 0 0 420px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c 0 8px 48px -1px #b3354624
}

.strt .tb__img-frame img {
    width: 420px;
    height: 300px;
    object-fit: cover;
    display: block;
    filter: contrast(1.06) saturate(1.08)
}

.strt .tb__badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #B33546;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 56px;
    height: 56px;
    border-radius: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    letter-spacing: 0;
    box-shadow: 0 6px 20px -1px #b3354624
}

.strt .tb__badge span {
    font-size: 16px;
    line-height: 1.2
}

.strt .tb__badge small {
    font-size: 16px;
    line-height: 1.2;
    opacity: .85
}

.strt .tb__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.strt .tb__eyebrow {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #C47C61;
    line-height: 1.2
}

.strt .tb__h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e1a18;
    text-shadow: 0 2px 2px #b3354614 0 4px 12px #c47c6112;
    margin: 0
}

.strt .tb__lead {
    font-size: 24px;
    line-height: 1.6;
    color: #3a2e2a;
    margin: 0
}

.strt .tb__sub {
    font-size: 16px;
    line-height: 1.9;
    color: #5a4a42;
    margin: 0
}

.strt .tb__arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px
}

.strt .tb__arrow-icon {
    width: 28px;
    height: 28px;
    opacity: .22;
    flex-shrink: 0
}

.strt .tb__link {
    font-size: 16px;
    color: #B33546;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    transition: color .18s ease-out, text-decoration-color .14s ease-out
}

.strt .tb__link:hover {
    color: #C47C61
}

.strt .sup {
    background: #B33546;
    padding: 48px;
    position: relative
}

.strt .sup__inner {
    max-width: 1600px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.strt .sup__aside {
    flex: 0 0 220px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.strt .sup__num {
    font-size: 70px;
    font-weight: 900;
    line-height: 1.2;
    color: #ffffff26;
    display: block
}

.strt .sup__label {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #ffffffb3;
    line-height: 1.2
}

.strt .sup__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px
}

.strt .sup__h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 2px #b3354633 0 6px 20px #b335462e
}

.strt .sup__img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c 0 8px 48px -1px #b3354624;
    flex-shrink: 0
}

.strt .sup__img-wrap img {
    width: 340px;
    height: 240px;
    object-fit: cover;
    display: block
}

.strt .sup__cols {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.strt .sup__text-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.strt .sup__p {
    font-size: 16px;
    line-height: 1.9;
    color: #ffffffeb;
    margin: 0
}

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

.strt .sup__list li {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffe0;
    padding-left: 32px;
    position: relative
}

.strt .sup__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    background: #ffffff40
}

.strt .sup__link {
    font-size: 16px;
    color: #E1D6CB;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    transition: color .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.strt .sup__link:hover {
    color: #fff
}

.strt .ppl {
    padding: 48px;
    background: #fff;
    position: relative
}

.strt .ppl__dot-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #b3354612 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.strt .ppl__inner {
    max-width: 1600px;
    position: relative
}

.strt .ppl__top {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 48px
}

.strt .ppl__top-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.strt .ppl__h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e1a18;
    margin: 0;
    text-shadow: 0 2px 2px #b3354612 0 6px 20px #c47c610f
}

.strt .ppl__lead {
    font-size: 24px;
    line-height: 1.6;
    color: #3a2e2a;
    margin: 0
}

.strt .ppl__p {
    font-size: 16px;
    line-height: 1.9;
    color: #5a4a42;
    margin: 0
}

.strt .ppl__img-wrap {
    flex: 0 0 360px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c 0 8px 48px -1px #b3354624
}

.strt .ppl__img-wrap img {
    width: 360px;
    height: 280px;
    object-fit: cover;
    display: block
}

.strt .ppl__cards {
    display: flex;
    flex-direction: row;
    gap: 32px
}

.strt .ppl__card {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
    border-radius: 20px;
    position: relative;
    transition: box-shadow .18s ease-out
}

.strt .ppl__card--a {
    background: #E1D6CB;
    box-shadow: 0 2px 2px -1px #b3354614
}

.strt .ppl__card--b {
    background: #f5f0eb;
    box-shadow: 0 6px 20px -1px #b335461c
}

.strt .ppl__card--c {
    background: #1e1a18;
    box-shadow: 0 8px 48px -1px #b3354624
}

.strt .ppl__card:hover {
    box-shadow: 0 8px 48px -1px #b335462e
}

.strt .ppl__card-num {
    position: absolute;
    top: -12px;
    right: 16px;
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    color: #b335461f
}

.strt .ppl__card--c .ppl__card-num {
    color: #ffffff14
}

.strt .ppl__card-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e1a18;
    margin: 0
}

.strt .ppl__card--c .ppl__card-name {
    color: #E1D6CB
}

.strt .ppl__card-role {
    font-size: 16px;
    font-weight: 500;
    color: #B33546;
    line-height: 1.2;
    margin: 0
}

.strt .ppl__card--c .ppl__card-role {
    color: #C47C61
}

.strt .ppl__card-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2e2a;
    margin: 0
}

.strt .ppl__card--c .ppl__card-desc {
    color: #e1d6cbd9
}

.strt .prg {
    padding: 48px;
    background: linear-gradient(180deg, #f5f0eb 0%, #fff 100%)
}

.strt .prg__inner {
    max-width: 1600px
}

.strt .prg__head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
    margin-bottom: 48px
}

.strt .prg__head-text {
    flex: 1
}

.strt .prg__h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    color: #1e1a18;
    margin: 0 0 16px;
    text-shadow: 0 2px 2px #b3354612
}

.strt .prg__desc {
    font-size: 16px;
    line-height: 1.9;
    color: #5a4a42;
    margin: 0
}

.strt .prg__aside-note {
    flex: 0 0 260px;
    padding: 24px 32px;
    background: #B33546;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.strt .prg__aside-note p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffe6;
    margin: 0
}

.strt .prg__aside-note strong {
    color: #fff
}

.strt .prg__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 32px
}

.strt .prg__item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px;
    border-radius: 20px;
    position: relative;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.strt .prg__item--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.strt .prg__item--light {
    background: #fff;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c
}

.strt .prg__item--tinted {
    background: #E1D6CB;
    box-shadow: 0 2px 2px -1px #b3354614
}

.strt .prg__item--dark {
    background: #1e1a18;
    box-shadow: 0 8px 48px -1px #b3354624
}

.strt .prg__item:hover {
    box-shadow: 0 8px 48px -1px #b3354633
}

.strt .prg__item-img {
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c
}

.strt .prg__item-img img {
    width: 240px;
    height: 180px;
    object-fit: cover;
    display: block
}

.strt .prg__item-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #B33546;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 8px;
    line-height: 1.6
}

.strt .prg__item--dark .prg__item-badge {
    background: #C47C61
}

.strt .prg__item-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1
}

.strt .prg__item-tag {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #C47C61;
    line-height: 1.2
}

.strt .prg__item--dark .prg__item-tag {
    color: #C47C61
}

.strt .prg__item-h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #1e1a18;
    margin: 0
}

.strt .prg__item--dark .prg__item-h3 {
    color: #E1D6CB
}

.strt .prg__item-p {
    font-size: 16px;
    line-height: 1.9;
    color: #5a4a42;
    margin: 0
}

.strt .prg__item--dark .prg__item-p {
    color: #e1d6cbd1
}

.strt .prg__item-meta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px
}

.strt .prg__item-meta span {
    font-size: 16px;
    line-height: 1.6;
    color: #B33546;
    font-weight: 600
}

.strt .prg__item--dark .prg__item-meta span {
    color: #C47C61
}

.strt .prg__item-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #B33546;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    transition: color .14s ease-out, text-underline-offset .12s ease-out;
    margin-top: 4px;
    position: relative;
    overflow: hidden
}

.strt .prg__item-link:hover {
    color: #C47C61;
    text-underline-offset: 5px
}

.strt .prg__item--dark .prg__item-link {
    color: #E1D6CB
}

.strt .prg__item--dark .prg__item-link:hover {
    color: #fff
}

.strt .prg__btn {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    background: #B33546;
    padding: 16px 48px;
    border-radius: 12px;
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background .18s ease-out, border-color .14s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .16s ease-out;
    box-shadow: 0 6px 20px -1px #b3354624;
    margin-top: 32px;
    align-self: flex-start
}

.strt .prg__btn:hover {
    background: #9e2d3d;
    border-color: #B33546;
    box-shadow: 0 8px 48px -1px #b3354638
}

.strt .prg__btn:focus {
    outline: 3px solid #C47C61;
    outline-offset: 3px
}

.strt .prg__cta {
    margin-top: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px
}

.strt .prg__cta-note {
    font-size: 16px;
    line-height: 1.6;
    color: #5a4a42;
    margin: 0
}

@keyframes vignette-breathe {
    0% {
        opacity: .18
    }

    50% {
        opacity: .32
    }

    100% {
        opacity: .18
    }
}

.strt .sup__vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, transparent 40%, #64141e61 100%);
    pointer-events: none;
    animation: vignette-breathe 5s cubic-bezier(0.4, 0, 0.6, 1) infinite
}

@media (max-width: 1024px) {
    .strt .tb {
        padding: 32px
    }

    .strt .tb__strip {
        gap: 32px
    }

    .strt .tb__img-frame {
        flex: 0 0 300px
    }

    .strt .tb__img-frame img {
        width: 300px;
        height: 220px
    }

    .strt .tb__h1 {
        font-size: 44px
    }

    .strt .sup {
        padding: 32px
    }

    .strt .sup__inner {
        flex-direction: column;
        gap: 32px
    }

    .strt .sup__aside {
        flex: none
    }

    .strt .sup__cols {
        flex-direction: column;
        gap: 24px
    }

    .strt .sup__img-wrap img {
        width: 100%;
        height: 200px
    }

    .strt .ppl {
        padding: 32px
    }

    .strt .ppl__top {
        flex-direction: column;
        gap: 32px
    }

    .strt .ppl__img-wrap {
        flex: none
    }

    .strt .ppl__img-wrap img {
        width: 100%;
        height: 220px
    }

    .strt .ppl__cards {
        flex-direction: column;
        gap: 24px
    }

    .strt .prg {
        padding: 32px
    }

    .strt .prg__head {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start
    }

    .strt .prg__aside-note {
        flex: none;
        width: 100%
    }

    .strt .prg__grid {
        grid-template-columns: 1fr
    }

    .strt .prg__item--wide {
        grid-column: 1;
        flex-direction: column
    }

    .strt .prg__item-img img {
        width: 100%;
        height: 180px
    }
}

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

    .strt .tb__strip {
        flex-direction: column;
        gap: 24px
    }

    .strt .tb__img-frame {
        flex: none;
        width: 100%
    }

    .strt .tb__img-frame img {
        width: 100%;
        height: 220px
    }

    .strt .tb__h1 {
        font-size: 44px
    }

    .strt .tb__lead {
        font-size: 16px
    }

    .strt .sup {
        padding: 24px 16px
    }

    .strt .sup__h2 {
        font-size: 24px
    }

    .strt .ppl {
        padding: 24px 16px
    }

    .strt .ppl__h2 {
        font-size: 24px
    }

    .strt .ppl__lead {
        font-size: 16px
    }

    .strt .prg {
        padding: 24px 16px
    }

    .strt .prg__h2 {
        font-size: 24px
    }

    .strt .prg__btn {
        font-size: 16px;
        padding: 12px 32px
    }

    .strt .prg__cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }
}

@media (max-width: 375px) {
    .strt .tb__h1 {
        font-size: 44px
    }

    .strt .ppl__cards {
        gap: 16px
    }

    .strt .prg__grid {
        gap: 16px
    }
}

.abt-pg {
    background: #fff;
    color: #1b1b1b;
    overflow-x: clip;
    position: relative
}

.abt-pg .slide-left {
    animation: slideFromLeft .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

.abt-pg .slide-right {
    animation: slideFromRight .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-32px)
    }

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

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(32px)
    }

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

.abt-pg ::selection {
    background: linear-gradient(90deg, #B33546, #C47C61);
    color: #fff
}

.abt-pg .pg-bound {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 32px
}

.abt-pg .top-band {
    padding: 48px 0;
    position: relative
}

.abt-pg .top-band__stripe {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-55deg, transparent, transparent 18px, #b335460a 18px, #b335460a 20px);
    pointer-events: none;
    overflow: hidden;
    border-radius: 0
}

.abt-pg .top-band__grid {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1
}

.abt-pg .top-band__left {
    flex: 1 1 0;
    min-width: 0
}

.abt-pg .top-band__num {
    font-size: 70px;
    line-height: 1.2;
    font-weight: 900;
    color: #E1D6CB;
    letter-spacing: -2px;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 2px 2px -1px #b3354614
}

.abt-pg .top-band__label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    color: #B33546;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
    font-weight: 600
}

.abt-pg .top-band__h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
    color: #1b1b1b;
    margin: 0 0 16px;
    text-shadow: 2px 3px 0 #c47c611f
}

.abt-pg .top-band__desc {
    font-size: 24px;
    line-height: 1.6;
    color: #3d3d3d;
    margin: 0 0 32px;
    max-width: 560px
}

.abt-pg .top-band__curve {
    display: block;
    width: 48px;
    height: 32px;
    margin-bottom: 8px
}

.abt-pg .top-band__right {
    flex: 0 0 340px;
    max-width: 340px
}

.abt-pg .top-band__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 48px -1px #b3354624
}

.abt-pg .top-band__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    border-radius: 20px
}

.abt-pg .top-band__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 20px
}

.abt-pg .top-band__divider {
    margin-top: 48px;
    border: none;
    border-top: 2px dotted #B33546;
    opacity: .35
}

.abt-pg .detail-sec {
    padding: 48px 0;
    background: linear-gradient(180deg, #f7f3f0 0%, #fff 100%);
    clip-path: polygon(0 0, 100% 24px, 100% 100%, 0 calc(100% - 24px));
    position: relative
}

.abt-pg .detail-sec__inner {
    padding: 48px 0
}

.abt-pg .detail-sec__layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start
}

.abt-pg .detail-sec__aside {
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: sticky;
    top: 32px
}

.abt-pg .aside-card {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 6px 20px -1px #c47c611c
}

.abt-pg .aside-card__num {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: #B33546;
    display: block;
    text-shadow: 1px 2px 0 #b335461a
}

.abt-pg .aside-card__label {
    font-size: 16px;
    line-height: 1.6;
    color: #5a4a44;
    display: block;
    margin-top: 4px
}

.abt-pg .detail-sec__body {
    display: flex;
    flex-direction: column;
    gap: 48px
}

.abt-pg .body-chunk {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.abt-pg .body-chunk__h2 {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0;
    text-shadow: 1px 2px 0 #b3354614
}

.abt-pg .body-chunk__h3 {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 600;
    color: #2e2e2e;
    margin: 0;
    text-shadow: 1px 1px 0 #c47c611a
}

.abt-pg .body-chunk__p {
    font-size: 16px;
    line-height: 1.9;
    color: #3d3d3d;
    margin: 0
}

.abt-pg .body-chunk__p a {
    color: #B33546;
    text-decoration: underline dotted #B33546;
    text-underline-offset: 3px;
    transition: color .18s ease-out
}

.abt-pg .body-chunk__p a:hover {
    color: #C47C61
}

.abt-pg .detail-sec__img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.abt-pg .img-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px -1px #b335461c;
    position: relative
}

.abt-pg .img-frame img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-pg .img-frame:hover img {
    transform: scale(1.03)
}

.abt-pg .img-frame--tall img {
    height: 320px
}

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

.abt-pg .team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 2px -1px #b3354614;
    transition: box-shadow .18s ease-out, transform .16s ease-out;
    position: relative
}

.abt-pg .team-card:hover {
    box-shadow: 0 8px 48px -1px #b3354624;
    transform: translateY(-4px)
}

.abt-pg .team-card__img-wrap {
    position: relative;
    overflow: hidden
}

.abt-pg .team-card__img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-pg .team-card:hover .team-card__img {
    transform: scale(1.04)
}

.abt-pg .team-card__info {
    padding: 12px 16px 16px
}

.abt-pg .team-card__name {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    color: #1b1b1b;
    margin: 0 0 4px
}

.abt-pg .team-card__role {
    font-size: 16px;
    line-height: 1.6;
    color: #C47C61;
    margin: 0
}

.abt-pg .pill-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.abt-pg .pill {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 8px;
    background: #E1D6CB;
    color: #2e2e2e;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: background .18s ease-out, color .15s ease-out
}

.abt-pg .pill::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #C47C61, transparent);
    opacity: 0;
    transition: opacity .16s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none;
    border-radius: 8px
}

.abt-pg .pill:hover::before {
    opacity: 1
}

.abt-pg .pill:hover {
    color: #fff
}

.abt-pg .accent-strip {
    background: linear-gradient(90deg, #C47C61, transparent);
    border-radius: 8px;
    padding: 16px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.abt-pg .accent-strip__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px
}

.abt-pg .accent-strip__text {
    font-size: 16px;
    line-height: 1.9;
    color: #1b1b1b;
    margin: 0;
    font-weight: 500
}

.abt-pg .detail-sec__divider {
    border: none;
    border-top: 2px dotted #C47C61;
    opacity: .4;
    margin: 0
}

@media (max-width: 1024px) {
    .abt-pg .top-band__h1 {
        font-size: 44px
    }

    .abt-pg .top-band__right {
        flex: 0 0 260px;
        max-width: 260px
    }

    .abt-pg .detail-sec__layout {
        grid-template-columns: 180px 1fr
    }

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

@media (max-width: 768px) {
    .abt-pg .top-band__grid {
        flex-direction: column
    }

    .abt-pg .top-band__right {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%
    }

    .abt-pg .top-band__img {
        height: 260px
    }

    .abt-pg .top-band__h1 {
        font-size: 44px
    }

    .abt-pg .top-band__num {
        font-size: 60px
    }

    .abt-pg .detail-sec__layout {
        grid-template-columns: 1fr
    }

    .abt-pg .detail-sec__aside {
        flex-direction: row;
        flex-wrap: wrap;
        position: static
    }

    .abt-pg .aside-card {
        flex: 1 1 140px
    }

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

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

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

    .abt-pg .top-band__h1 {
        font-size: 44px
    }

    .abt-pg .top-band__desc {
        font-size: 16px
    }

    .abt-pg .body-chunk__h2 {
        font-size: 24px
    }

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

    .abt-pg .aside-card {
        flex: 1 1 100%
    }
}

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

.ctus__schema {
    display: none
}

.ctus__strip {
    position: relative;
    width: 100%;
    overflow: hidden
}

.ctus__strip-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 40%;
    display: block;
    filter: drop-shadow(0 6px 20px #b335461c);
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1);
    transform-origin: center center
}

.ctus__strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #b335468c 0%, transparent 60%);
    pointer-events: none
}

.ctus__wave {
    display: block;
    width: 100%;
    margin-top: -2px;
    line-height: 0
}

.ctus__lead {
    padding: 48px 32px 32px;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ctus__eyebrow {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B33546;
    font-weight: 700
}

.ctus__h1 {
    font-size: 60px;
    line-height: 1.2;
    color: #1b1412;
    margin: 0;
    text-shadow: 0 2px 2px #b3354614 0 6px 20px #b335460f
}

.ctus__h1 .num-accent {
    color: #B33546;
    font-size: 70px;
    line-height: 1.2
}

.ctus__sub {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2a27;
    max-width: 640px;
    margin: 0
}

.ctus__divider--cross {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 32px;
    overflow: hidden
}

.ctus__cross-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap
}

.ctus__cross {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0
}

.ctus__cross::before,
.ctus__cross::after {
    content: "";
    position: absolute;
    background: #C47C61;
    border-radius: 2px
}

.ctus__cross::before {
    width: 10px;
    height: 2px;
    top: 4px;
    left: 0
}

.ctus__cross::after {
    width: 2px;
    height: 10px;
    top: 0;
    left: 4px
}

.ctus__body {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start
}

.ctus__aside {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.ctus__aside-note {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3d37;
    border-top: 2px solid #E1D6CB;
    padding-top: 16px
}

.ctus__info-card {
    background: linear-gradient(to left, #E1D6CB 0%, #f5f0eb 100%);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c;
    position: relative
}

.ctus__info-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1.5px dashed #C47C61;
    border-radius: 14px;
    pointer-events: none;
    opacity: .5
}

.ctus__info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus__info-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ctus__info-icon svg {
    width: 22px;
    height: 22px;
    stroke: #B33546;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctus__info-item:hover .ctus__info-icon svg {
    stroke: #C47C61
}

.ctus__info-label {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1412;
    font-weight: 600;
    display: block
}

.ctus__info-val {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2a27;
    display: block;
    text-decoration: none;
    border-bottom: 1px dotted #B33546;
    transition: color .15s cubic-bezier(0.4, 0, 0.6, 1), border-color .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctus__info-val:hover {
    color: #B33546;
    border-color: #C47C61
}

.ctus__info-addr {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2a27;
    display: block
}

.ctus__form-wrap {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 8px 48px -1px #b3354624;
    display: flex;
    flex-direction: column;
    gap: 24px
}

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

.ctus__form-title {
    font-size: 44px;
    line-height: 1.2;
    color: #1b1412;
    margin: 0;
    text-shadow: 0 2px 2px #b3354614
}

.ctus__form-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #5a3d37;
    margin: 0
}

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

.ctus__row {
    display: flex;
    flex-direction: row;
    gap: 16px
}

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

.ctus__label {
    font-size: 16px;
    line-height: 1.6;
    color: #1b1412;
    font-weight: 600
}

.ctus__input,
.ctus__select,
.ctus__textarea {
    background: #faf7f5;
    border: 1.5px solid #E1D6CB;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #1b1412;
    width: 100%;
    box-sizing: border-box;
    transition: border-color .15s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1);
    outline: none;
    appearance: none;
    -webkit-appearance: none
}

.ctus__input::placeholder,
.ctus__textarea::placeholder {
    font-style: italic;
    opacity: .55;
    color: #5a3d37
}

.ctus__input:focus,
.ctus__select:focus,
.ctus__textarea:focus {
    border-color: #B33546;
    box-shadow: 0 0 0 3px #b335461c
}

.ctus__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23B33546' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer
}

.ctus__textarea {
    resize: vertical;
    min-height: 100px
}

.ctus__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #faf7f5;
    border-radius: 12px;
    border: 1.5px solid #E1D6CB
}

.ctus__privacy-check {
    width: 18px;
    height: 18px;
    min-width: 18px;
    accent-color: #B33546;
    margin-top: 2px;
    cursor: pointer
}

.ctus__privacy-text {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2a27;
    margin: 0
}

.ctus__privacy-link {
    color: #B33546;
    text-decoration: none;
    border-bottom: 1px dotted #B33546;
    transition: color .14s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctus__privacy-link:hover {
    color: #C47C61
}

.ctus__btn-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.ctus__btn {
    position: relative;
    background: #B33546;
    color: #fff;
    border: 2px solid #B33546;
    border-radius: 12px;
    padding: 16px 48px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    transition: background .15s cubic-bezier(0.4, 0, 0.6, 1), color .15s cubic-bezier(0.4, 0, 0.6, 1);
    letter-spacing: .04em;
    text-transform: uppercase
}

.ctus__btn::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    border: 2px solid #C47C61;
    opacity: 0;
    transition: opacity .18s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none
}

.ctus__btn:hover::before {
    opacity: 1
}

.ctus__btn:hover {
    background: #8f2535;
    border-color: #8f2535
}

.ctus__btn:focus {
    outline: 3px solid #b3354666;
    outline-offset: 3px
}

.ctus__btn:active {
    background: #7a1e2c;
    box-shadow: inset 0 4px 10px #b3354638
}

.ctus__divider--cross2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 32px;
    overflow: hidden
}

.ctus__metrics {
    max-width: 1600px;
    margin: 0 auto;
    padding: 48px 32px;
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    background: linear-gradient(to left, #E1D6CB 0%, #fff 60%);
    border-radius: 32px
}

.ctus__big-block {
    background: #1b1412;
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 8px 48px -1px #b3354624;
    position: relative;
    overflow: hidden
}

.ctus__big-block::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 160px;
    height: 160px;
    border-radius: 48px;
    border: 2px dashed #c47c614d;
    pointer-events: none
}

.ctus__big-label {
    font-size: 16px;
    line-height: 1.6;
    color: #E1D6CB;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600
}

.ctus__big-num {
    font-size: 70px;
    line-height: 1.2;
    color: #B33546;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 8px 48px #b3354624
}

.ctus__big-caption {
    font-size: 24px;
    line-height: 1.6;
    color: #fff;
    font-weight: 700;
    margin: 0
}

.ctus__big-body {
    font-size: 16px;
    line-height: 1.9;
    color: #c4a89e;
    margin: 0
}

.ctus__stat {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 2px -1px #b3354614 0 6px 20px -1px #b335461c;
    align-items: flex-start;
    animation: ctus-bounce .22s cubic-bezier(0.4, 0, 0.6, 1) both
}

.ctus__stat--b {
    animation-delay: .08s
}

@keyframes ctus-bounce {
    0% {
        transform: translateY(18px);
        opacity: 0
    }

    70% {
        transform: translateY(-5px);
        opacity: 1
    }

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

.ctus__stat-num {
    font-size: 44px;
    line-height: 1.2;
    color: #B33546;
    font-weight: 800;
    margin: 0
}

.ctus__stat-label {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2a27;
    margin: 0
}

.ctus__stat-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 8px
}

.ctus__stat-icon svg {
    width: 36px;
    height: 36px;
    stroke: #C47C61;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ctus__outline-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center
}

.ctus__outline-icon svg.icon-main {
    width: 28px;
    height: 28px;
    stroke: #B33546;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ctus__outline-icon svg.icon-trace {
    position: absolute;
    inset: -4px;
    width: calc(100% + 8px);
    height: calc(100% + 8px);
    stroke: #C47C61;
    fill: none;
    stroke-width: 1.2;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    transition: stroke-dashoffset .22s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none
}

.ctus__stat:hover .icon-trace {
    stroke-dashoffset: 0
}

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

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

    .ctus__big-block {
        grid-column: 1 / -1
    }

    .ctus__h1 {
        font-size: 44px
    }

    .ctus__h1 .num-accent {
        font-size: 60px
    }
}

@media (max-width: 768px) {
    .ctus__lead {
        padding: 32px 16px 16px
    }

    .ctus__body {
        padding: 32px 16px
    }

    .ctus__form-wrap {
        padding: 32px 16px;
        border-radius: 20px
    }

    .ctus__row {
        flex-direction: column;
        gap: 12px
    }

    .ctus__metrics {
        grid-template-columns: 1fr;
        padding: 32px 16px;
        margin: 0 16px;
        border-radius: 20px
    }

    .ctus__big-block {
        grid-column: auto;
        padding: 32px 16px
    }

    .ctus__h1 {
        font-size: 44px
    }

    .ctus__big-num {
        font-size: 60px
    }

    .ctus__form-title {
        font-size: 24px
    }
}

@media (max-width: 375px) {
    .ctus__h1 {
        font-size: 44px
    }

    .ctus__h1 .num-accent {
        font-size: 44px
    }

    .ctus__btn {
        width: 100%;
        padding: 16px 32px
    }
}

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

.srv__schema {
    display: none
}

.srv__aurora {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 80px 32px 48px;
    overflow: hidden
}

.srv__aurora-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #f5f0eb
}

.srv__aurora-zone1 {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 80%;
    background: linear-gradient(160deg, #b3354621 0%, transparent 70%);
    border-radius: 48px;
    animation: aurora1 9s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate
}

.srv__aurora-zone2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 60%;
    height: 70%;
    background: linear-gradient(200deg, #c47c611c 0%, transparent 65%);
    border-radius: 48px;
    animation: aurora2 12s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate
}

.srv__noise {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .04;
    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='1'/%3E%3C/svg%3E");
    pointer-events: none
}

@keyframes aurora1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: .8
    }

    100% {
        transform: translate(8%, 6%) scale(1.12);
        opacity: 1
    }
}

@keyframes aurora2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: .7
    }

    100% {
        transform: translate(-6%, -8%) scale(1.09);
        opacity: 1
    }
}

.srv__split {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 48px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%
}

.srv__img-col {
    flex: 0 0 42%;
    position: relative
}

.srv__img-shape {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 32px 32px 48px 12px;
    clip-path: polygon(0 8%, 8% 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
    box-shadow: 0 8px 48px -1px #b3354624;
    position: relative
}

.srv__img-shape img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) brightness(0.92);
    mix-blend-mode: multiply;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.srv__img-shape::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #b3354638, transparent);
    pointer-events: none
}

.srv__text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srv__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #B33546;
    font-weight: 600
}

.srv__eyebrow-bar {
    display: inline-block;
    width: 32px;
    height: 2px;
    background: linear-gradient(to left, #C47C61, transparent)
}

.srv__h1 {
    font-size: 60px;
    line-height: 1.2;
    color: #1e1a18;
    font-weight: 800;
    text-shadow: 0 2px 2px -1px #b3354614;
    margin: 0
}

.srv__tagline {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2e29;
    max-width: 480px;
    margin: 0
}

.srv__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 8px
}

.srv__btn-primary {
    position: relative;
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    background: #B33546;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    overflow: hidden;
    transition: color .18s cubic-bezier(0.4, 0, 0.6, 1), background .15s ease-out;
    box-shadow: 0 6px 20px -1px #b335461c
}

.srv__btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    border: 2px solid #B33546;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .2s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none
}

.srv__btn-primary:hover::before {
    clip-path: inset(0 0% 0 0)
}

.srv__btn-primary:hover {
    background: #922c3b
}

.srv__btn-secondary {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #B33546;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    border: 1.5px solid #b3354659;
    overflow: hidden;
    transition: border-color .18s ease-out, color .15s ease-out
}

.srv__btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1.5px solid #B33546;
    clip-path: inset(0 100% 0 0);
    transition: clip-path .22s cubic-bezier(0.4, 0, 0.6, 1);
    pointer-events: none
}

.srv__btn-secondary:hover::before {
    clip-path: inset(0 0% 0 0)
}

.srv__btn-secondary:hover {
    color: #922c3b
}

.srv__diagonal-sep {
    position: relative;
    height: 64px;
    background: #fff;
    z-index: 3
}

.srv__diagonal-sep::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #f5f0eb;
    clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%)
}

.srv__offerings {
    position: relative;
    background: #fff;
    padding: 48px 32px
}

.srv__offerings-inner {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.srv__off-head {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    position: relative
}

.srv__curve-deco {
    position: absolute;
    left: 0;
    top: 32px;
    width: 120px;
    height: 60px;
    pointer-events: none;
    overflow: visible
}

.srv__off-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #C47C61;
    font-weight: 600;
    padding-left: 16px;
    margin-top: 4px
}

.srv__off-h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1e1a18;
    font-weight: 700;
    text-shadow: 0 2px 2px -1px #b3354614 0 1px 0 #c47c610f;
    margin: 0
}

.srv__off-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px
}

.srv__card {
    position: relative;
    background: #faf7f4;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 2px 2px -1px #b3354614;
    transition: box-shadow .18s ease-out, transform .15s cubic-bezier(0.4, 0, 0.6, 1);
    overflow: hidden
}

.srv__card:hover {
    box-shadow: 0 8px 48px -1px #b3354624;
    transform: translateY(-4px)
}

.srv__card-accent {
    width: 4px;
    height: 40px;
    background: linear-gradient(to bottom, #B33546, #C47C61);
    border-radius: 8px;
    flex-shrink: 0
}

.srv__card-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.srv__card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(to left, #b335461f, #c47c6114);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

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

.srv__card-h3 {
    font-size: 24px;
    line-height: 1.2;
    color: #1e1a18;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 1px 0 #b335460f
}

.srv__card-body {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2e29;
    margin: 0
}

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

.srv__card-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #3a2e29;
    padding-left: 16px;
    position: relative
}

.srv__card-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #B33546
}

.srv__card-link {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #B33546;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    margin-top: 8px;
    transition: color .15s ease-out;
    position: relative;
    overflow: hidden
}

.srv__card-link-inner {
    display: inline-flex;
    flex-direction: column;
    height: 1.2em;
    overflow: hidden
}

.srv__card-link-text {
    display: block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1);
    line-height: 1.2
}

.srv__card-link-text--alt {
    display: block;
    line-height: 1.2;
    color: #922c3b
}

.srv__card-link:hover .srv__card-link-text {
    transform: translateY(-100%)
}

.srv__card-link:hover {
    color: #922c3b
}

.srv__card--featured {
    background: linear-gradient(160deg, #B33546 0%, #922c3b 100%);
    color: #fff
}

.srv__card--featured .srv__card-h3 {
    color: #fff;
    text-shadow: 0 2px 2px -1px #0000002e
}

.srv__card--featured .srv__card-body {
    color: #ffffffe0
}

.srv__card--featured .srv__card-list li {
    color: #ffffffe0
}

.srv__card--featured .srv__card-list li::before {
    background: #E1D6CB
}

.srv__card--featured .srv__card-accent {
    background: linear-gradient(to bottom, #E1D6CB, #e1d6cb66)
}

.srv__card--featured .srv__card-link {
    color: #E1D6CB
}

.srv__card--featured .srv__card-link-text--alt {
    color: #fff
}

.srv__sep2 {
    height: 2px;
    background: linear-gradient(to left, #C47C61, transparent);
    max-width: 1600px;
    margin: 0 auto;
    border-radius: 8px
}

.srv__deep {
    position: relative;
    padding: 48px 32px;
    background: #f5f0eb
}

.srv__deep-spot {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 48%, #e1d6cbb3 0%, transparent 75%);
    pointer-events: none;
    z-index: 0
}

.srv__deep-inner {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.srv__deep-top {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.srv__deep-aside {
    flex: 0 0 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px
}

.srv__deep-note {
    font-size: 16px;
    line-height: 1.6;
    color: #7a5c52;
    font-style: italic
}

.srv__deep-year {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 800;
    color: #b3354626;
    pointer-events: none
}

.srv__deep-text {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.srv__deep-h2 {
    font-size: 44px;
    line-height: 1.2;
    color: #1e1a18;
    font-weight: 700;
    text-shadow: 0 2px 2px -1px #b3354614;
    margin: 0
}

.srv__deep-lead {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2e29;
    margin: 0
}

.srv__deep-body {
    font-size: 16px;
    line-height: 1.9;
    color: #3a2e29;
    margin: 0
}

.srv__disclosure {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.srv__disc-item {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 2px -1px #b3354614;
    overflow: hidden
}

.srv__disc-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    cursor: pointer;
    gap: 16px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: background .18s ease-out
}

.srv__disc-toggle:hover {
    background: #b335460a
}

.srv__disc-toggle:focus-visible {
    outline: 2px solid #B33546;
    outline-offset: 2px
}

.srv__disc-label {
    font-size: 16px;
    font-weight: 600;
    color: #1e1a18;
    line-height: 1.6
}

.srv__disc-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.srv__disc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.srv__disc-item--open .srv__disc-body {
    max-height: 400px
}

.srv__disc-item--open .srv__disc-arrow {
    transform: rotate(180deg)
}

.srv__disc-text {
    padding: 0 24px 16px;
    font-size: 16px;
    line-height: 1.9;
    color: #3a2e29;
    margin: 0
}

.srv__deep-imgs {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start
}

.srv__img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px -1px #b335461c;
    flex: 1 1 0;
    transition: clip-path .2s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .18s ease-out;
    clip-path: inset(0 8% 0 0 round 20px)
}

.srv__img-wrap:hover {
    clip-path: inset(0 0% 0 0 round 20px);
    box-shadow: 0 8px 48px -1px #b3354624
}

.srv__img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(0.8) brightness(0.93)
}

.srv__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #b335462e, transparent 60%);
    pointer-events: none
}

.srv__img-cap {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 4px #1e0a0866;
    z-index: 2;
    line-height: 1.2
}

@media (max-width: 1024px) {
    .srv__h1 {
        font-size: 44px
    }

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

    .srv__deep-top {
        flex-direction: column;
        gap: 24px
    }

    .srv__deep-aside {
        flex: none;
        flex-direction: row;
        align-items: center
    }

    .srv__deep-year {
        font-size: 24px
    }
}

@media (max-width: 768px) {
    .srv__split {
        flex-direction: column;
        gap: 32px
    }

    .srv__img-col {
        flex: none;
        width: 100%
    }

    .srv__img-shape {
        aspect-ratio: 16/9
    }

    .srv__h1 {
        font-size: 44px
    }

    .srv__off-grid {
        grid-template-columns: 1fr
    }

    .srv__deep-imgs {
        flex-direction: column
    }

    .srv__aurora {
        padding: 48px 16px 32px
    }

    .srv__offerings {
        padding: 32px 16px
    }

    .srv__deep {
        padding: 32px 16px
    }

    .srv__off-h2 {
        font-size: 24px
    }

    .srv__deep-h2 {
        font-size: 24px
    }

    .srv__deep-year {
        display: none
    }
}

@media (max-width: 375px) {
    .srv__h1 {
        font-size: 24px
    }

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

    .srv__off-h2 {
        font-size: 24px
    }

    .srv__deep-h2 {
        font-size: 24px
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: #fff;
    max-width: 1600px;
    margin: 0 auto
}

.success-page .success-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 48px -1px #b3354624;
    padding: 48px;
    max-width: 560px;
    width: 100%;
    text-align: center;
    position: relative
}

.success-page .success-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-page .success-card__icon svg {
    width: 72px;
    height: 72px;
    display: block
}

.success-page .success-card__heading {
    font-size: 44px;
    line-height: 1.2;
    color: #1b1b1b;
    margin: 0 0 16px;
    text-shadow: 0 2px 2px -1px #b3354614
}

.success-page .success-card__sub {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 32px
}

.success-page .success-card__divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(to left, #C47C61, transparent);
    border-radius: 8px;
    margin: 0 auto 32px
}

.success-page .success-card__note {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 32px;
    font-style: italic;
    opacity: .85
}

.success-page .success-card__actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.success-page .btn--primary {
    display: inline-block;
    padding: 16px 32px;
    background: #B33546;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #B33546;
    box-shadow: 0 6px 20px -1px #b335461c;
    position: relative;
    overflow: hidden;
    transition: background-color .18s ease-out, box-shadow .15s cubic-bezier(0.4, 0, 0.6, 1), border-color .18s ease-out
}

.success-page .btn--primary:hover {
    background: #922b3a;
    border-color: #922b3a;
    box-shadow: 0 8px 48px -1px #b3354624
}

.success-page .btn--primary:focus {
    outline: 3px solid #C47C61;
    outline-offset: 3px
}

.success-page .btn--primary:active {
    box-shadow: inset 0 4px 10px #b335462e
}

.success-page .btn--secondary {
    display: inline-block;
    padding: 12px 24px;
    background: transparent;
    color: #B33546;
    font-size: 16px;
    line-height: 1.2;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid #B33546;
    position: relative;
    overflow: hidden;
    transition: color .14s ease-out, background-color .14s ease-out, border-color .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.success-page .btn--secondary:hover {
    background: #B33546;
    color: #fff
}

.success-page .btn--secondary:focus {
    outline: 3px solid #C47C61;
    outline-offset: 3px
}

.success-page .btn--secondary:active {
    box-shadow: inset 0 4px 8px #c47c612e
}

.success-page .success-card__brand {
    margin-top: 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #888;
    letter-spacing: .04em;
    text-transform: uppercase
}

.success-page .success-card__brand span {
    color: #B33546
}

@media (max-width: 768px) {
    .success-page .success-card {
        padding: 32px 16px
    }

    .success-page .success-card__heading {
        font-size: 44px
    }

    .success-page .success-card__actions {
        flex-direction: column;
        align-items: center
    }

    .success-page .btn--primary,
    .success-page .btn--secondary {
        width: 100%;
        text-align: center
    }
}

@media (max-width: 375px) {
    .success-page {
        padding: 32px 8px
    }

    .success-page .success-card__heading {
        font-size: 24px
    }
}