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

.pg-shell {
    box-sizing: border-box;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.site-hdr {
    position: relative;
    background: #FCFFF0;
    border-bottom: 1px solid #ea5d9821;
    box-shadow: 0 1px 6px -2px #ea5d9812 0 6px 25px -2px #ea5d981c
}

.hdr-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #EA5D98 0%, #0F674B 60%, #EA5D98 100%)
}

.hdr-top-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0 12px;
    position: relative
}

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

.brand-mount__img-shell {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 4px #ea5d981a 0 1px 6px -2px #ea5d9812 0 6px 25px -2px #ea5d981c;
    border: 1px solid #ea5d982e
}

.brand-mount__img-shell img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.brand-mount__img-shell img.loaded {
    opacity: 1
}

.brand-mount__name {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.3;
    color: #0F674B
}

.hdr-contact-strip {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.5;
    color: #1a3a2e;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.contact-link:hover {
    color: #EA5D98
}

.contact-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ea5d9859;
    border-radius: 6px
}

.contact-link .fa {
    color: #EA5D98;
    font-size: 15px
}

.hdr-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 24px;
    flex-wrap: wrap;
    gap: 6px
}

.hdr-nav-row__sep {
    width: 1px;
    height: 18px;
    background: #0f674b33;
    flex-shrink: 0
}

.nav-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.5;
    color: #1a3a2e;
    text-decoration: none;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent
}

.nav-link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #EA5D98;
    transition: height .48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.nav-link:hover::before {
    height: 100%
}

.nav-link:hover {
    color: #fff;
    border-color: #EA5D98
}

.nav-link span {
    position: relative;
    z-index: 1
}

.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ea5d9859
}

.nav-link--active {
    color: #EA5D98;
    font-weight: 600
}

.hdr-deco {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 120px;
    pointer-events: none;
    overflow: hidden
}

.hdr-deco__ring {
    position: absolute;
    border-radius: 48px;
    border: 2px solid #ea5d981f
}

.hdr-deco__ring--a {
    width: 80px;
    height: 80px;
    left: -30px;
    bottom: -30px
}

.hdr-deco__ring--b {
    width: 50px;
    height: 50px;
    left: 10px;
    bottom: 10px;
    border-color: #0f674b1a
}

.site-ftr {
    background: #0F674B;
    color: #FCFFF0;
    padding: 48px 0 0
}

.ftr-body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 48px
}

.ftr-brand {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 180px
}

.ftr-brand__name {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.3;
    color: #FCFFF0
}

.ftr-brand__tag {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.5;
    color: #fcfff0b3;
    font-style: italic
}

.ftr-links {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ftr-links__label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.5;
    color: #EA5D98;
    margin-bottom: 6px
}

.ftr-link {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.7;
    color: #fcfff0cc;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.ftr-link:hover {
    color: #EA5D98
}

.ftr-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ea5d9873;
    border-radius: 6px
}

.ftr-contact-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px
}

.ftr-contact-col__label {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1.5;
    color: #EA5D98
}

.ftr-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.5;
    color: #fcfff0cc;
    text-decoration: none;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ftr-contact-item:hover {
    color: #EA5D98
}

.ftr-contact-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ea5d9873;
    border-radius: 6px
}

.ftr-contact-item .fa {
    color: #EA5D98;
    margin-top: 2px;
    flex-shrink: 0
}

.ftr-divider {
    height: 1px;
    background: #fcfff01a
}

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

.ftr-copy {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.5;
    color: #fcfff080
}

.ftr-logo-mount {
    display: flex;
    align-items: center
}

.ftr-logo-shell {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 4px #ea5d981a 0 1px 6px -2px #ea5d9812 0 6px 25px -2px #ea5d981c;
    border: 1px solid #fcfff033
}

.ftr-logo-shell img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ftr-logo-shell img.loaded {
    opacity: 1
}

.consent-card {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 36px -2px #ea5d981a 0 6px 25px -2px #ea5d981c;
    z-index: 4000;
    padding: 24px;
    display: none;
    box-sizing: border-box
}

.consent-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 48px;
    background: #ea5d9814;
    margin-bottom: 12px
}

.consent-card__icon .fa {
    color: #EA5D98;
    font-size: 19px
}

.consent-card__intro {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.5;
    color: #1a3a2e;
    margin: 0 0 12px
}

.consent-card__uses {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.consent-card__uses li {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .01em;
    line-height: 1.5;
    color: #2d5a47;
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.consent-card__uses li .fa {
    color: #0F674B;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0
}

.consent-card__actions {
    display: flex;
    gap: 24px;
    align-items: center
}

.consent-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.5;
    text-decoration: underline;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.consent-btn--accept {
    color: #0F674B
}

.consent-btn--accept:hover {
    color: #EA5D98
}

.consent-btn--decline {
    color: #0f674b99
}

.consent-btn--decline:hover {
    color: #EA5D98
}

.consent-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ea5d9859;
    border-radius: 6px
}

.pref-tab {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3999;
    display: none
}

.pref-tab__btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #0F674B;
    color: #FCFFF0;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: 12px;
    cursor: pointer;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 1px 6px -2px #ea5d9812 0 6px 25px -2px #ea5d981c
}

.pref-tab__btn:hover {
    background: #EA5D98
}

.pref-tab__btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #ea5d9859
}

@media (max-width: 768px) {
    .hdr-contact-strip {
        position: static;
        transform: none;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding-bottom: 12px
    }

    .hdr-top-row {
        flex-direction: column;
        gap: 12px
    }

    .ftr-body {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start
    }

    .ftr-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .consent-card {
        width: calc(100vw - 48px);
        right: 24px;
        left: 24px
    }
}

@media (max-width: 390px) {
    .hdr-nav-row {
        gap: 6px;
        padding: 0 0 12px
    }

    .nav-link {
        padding: 12px;
        font-size: 15px
    }

    .ftr-body {
        gap: 24px
    }

    .consent-card {
        width: calc(100vw - 24px);
        right: 12px;
        left: 12px;
        bottom: 12px;
        padding: 24px
    }
}

@media (min-width: 1280px) {
    .hdr-top-row {
        padding: 24px 0 12px
    }
}

.policy-frame {
    max-width: 1170px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #2a2a35;
    background: #fff
}

.policy-frame p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin-bottom: 24px;
    color: #2a2a35
}

.policy-frame ul,
.policy-frame ol {
    margin: 0 0 24px;
    padding-left: 24px
}

.policy-frame ul {
    list-style: none;
    padding-left: 0
}

.policy-frame ul li {
    padding-left: 24px;
    position: relative
}

.policy-frame ul li::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 48px;
    background: #EA5D98
}

.policy-frame ol {
    list-style: decimal
}

.policy-frame li {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2a2a35;
    margin-bottom: 6px
}

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

.policy-frame em,
.policy-frame i {
    font-style: italic;
    color: #0F674B
}

.policy-frame a {
    color: #EA5D98;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .55s ease-in-out, text-decoration-color .45s ease-in-out
}

.policy-frame a:hover {
    color: #0F674B;
    text-decoration-color: #0F674B
}

.policy-frame a:visited {
    color: #c44a7e
}

.policy-frame table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    box-shadow: 0 1px 6px -2px #ea5d9812;
    border-radius: 10px;
    overflow: hidden
}

.policy-frame thead {
    background: #FCFFF0
}

.policy-frame thead tr {
    border-bottom: 2px solid #EA5D98
}

.policy-frame tbody tr {
    border-bottom: 1px solid #ea5d981f;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.policy-frame tbody tr:last-child {
    border-bottom: none
}

.policy-frame tbody tr:hover {
    background: #fcfff0b3
}

.policy-frame th {
    padding: 12px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #0F674B
}

.policy-frame td {
    padding: 12px 24px;
    color: #2a2a35;
    vertical-align: top
}

.policy-frame div {
    margin-bottom: 24px
}

@media (max-width: 768px) {
    .policy-frame {
        padding: 48px 24px
    }

    .policy-frame table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .policy-frame th,
    .policy-frame td {
        padding: 12px;
        min-width: 140px
    }
}

@media (max-width: 390px) {
    .policy-frame {
        padding: 24px 12px
    }

    .policy-frame p,
    .policy-frame li {
        font-size: 15px
    }

    .policy-frame th,
    .policy-frame td {
        padding: 6px 12px
    }
}

.abt-us {
    overflow-x: clip;
    width: 100%
}

.abt-us .pg-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.abt-us .divider-cross {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 0;
    overflow: hidden
}

.abt-us .divider-cross span {
    display: inline-block;
    width: 8px;
    height: 8px;
    position: relative;
    flex-shrink: 0
}

.abt-us .divider-cross span::before,
.abt-us .divider-cross span::after {
    content: "";
    position: absolute;
    background: #EA5D98;
    border-radius: 1px
}

.abt-us .divider-cross span::before {
    width: 2px;
    height: 8px;
    top: 0;
    left: 3px
}

.abt-us .divider-cross span::after {
    width: 8px;
    height: 2px;
    top: 3px;
    left: 0
}

.abt-us .divider-cross .div-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #EA5D98 30%, #0F674B 70%, transparent);
    opacity: .3
}

.abt-us .title-blk {
    padding: 96px 0 48px;
    position: relative;
    background: #FCFFF0;
    overflow: hidden
}

.abt-us .title-blk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(233deg, transparent, transparent 28px, #ea5d980a 28px, #ea5d980a 30px);
    pointer-events: none;
    z-index: 0
}

.abt-us .title-blk .corner-bleed {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 48px;
    top: -120px;
    right: -80px;
    background: linear-gradient(233deg, #0f674b12, #ea5d980d);
    animation: corner-emerge 6s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0
}

@keyframes corner-emerge {
    0% {
        opacity: .3;
        transform: scale(0.88) translate(20px, -20px)
    }

    100% {
        opacity: 1;
        transform: scale(1.05) translate(-10px, 10px)
    }
}

.abt-us .title-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.abt-us .title-blk .tb-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 48px;
    align-items: center
}

.abt-us .title-blk .tb-eyebrow {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #0F674B;
    background: #0f674b14;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 3px solid #0F674B;
    border-top: 1px solid #0f674b26
}

.abt-us .title-blk .tb-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b2a24;
    margin: 0 0 24px
}

.abt-us .title-blk .tb-h1 .accent-word {
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.abt-us .title-blk .tb-tagline {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2e4039;
    margin: 0 0 48px;
    max-width: 520px
}

.abt-us .title-blk .tb-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.abt-us .title-blk .tb-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    padding: 12px 24px;
    border-radius: 10px;
    border: 2px solid #EA5D98;
    background: transparent;
    color: #EA5D98;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.abt-us .title-blk .tb-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #EA5D98;
    transition: height .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1
}

.abt-us .title-blk .tb-btn:hover::after {
    height: 100%
}

.abt-us .title-blk .tb-btn:hover {
    color: #fff
}

.abt-us .title-blk .tb-btn--sec {
    border-color: #0F674B;
    color: #0F674B
}

.abt-us .title-blk .tb-btn--sec::after {
    background: #0F674B
}

.abt-us .title-blk .tb-btn--sec:hover {
    color: #fff
}

.abt-us .title-blk .tb-img-wrap {
    position: relative
}

.abt-us .title-blk .tb-img-frame {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 36px -2px #ea5d981a
}

.abt-us .title-blk .tb-img-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, #0f674b40, #ea5d982e);
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none
}

.abt-us .title-blk .tb-img-frame img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    opacity: 0;
    transition: opacity .65s ease-in-out
}

.abt-us .title-blk .tb-img-frame img.loaded {
    opacity: 1
}

.abt-us .title-blk .tb-img-badge {
    position: absolute;
    bottom: -12px;
    left: -12px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 24px;
    box-shadow: 0 6px 25px -2px #0f674b1c;
    border-left: 4px solid #0F674B;
    border-bottom: 2px solid #ea5d9833;
    z-index: 2
}

.abt-us .title-blk .tb-img-badge .badge-yr {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0F674B;
    display: block
}

.abt-us .title-blk .tb-img-badge .badge-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #2e4039;
    display: block
}

.abt-us .story-blk {
    padding: 96px 0;
    background: #fff
}

.abt-us .story-blk .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.abt-us .story-blk .story-imgs {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .story-blk .story-img-main {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #ea5d981c;
    border: 2px solid #ea5d9826;
    border-top: 3px solid #EA5D98
}

.abt-us .story-blk .story-img-main::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, #ea5d981f, #0f674b14);
    mix-blend-mode: multiply;
    z-index: 1;
    pointer-events: none
}

.abt-us .story-blk .story-img-main img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease-in-out
}

.abt-us .story-blk .story-img-main img.loaded {
    opacity: 1
}

.abt-us .story-blk .story-img-sec {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px -2px #ea5d9812;
    border: 2px solid #0f674b1f;
    border-left: 3px solid #0F674B;
    border-right: 1px solid #0f674b1f
}

.abt-us .story-blk .story-img-sec img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease-in-out
}

.abt-us .story-blk .story-img-sec img.loaded {
    opacity: 1
}

.abt-us .story-blk .story-h2 {
    font-size: 41px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b2a24;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.abt-us .story-blk .story-h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #EA5D98, #0F674B);
    border-radius: 2px;
    margin-top: 6px;
    animation: underline-draw .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

.abt-us .story-blk .story-p {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2e4039;
    margin: 0 0 24px
}

.abt-us .story-blk .story-p .kw {
    background: #ea5d981f;
    color: #c0356f;
    padding: 1px 6px;
    border-radius: 6px;
    position: relative;
    display: inline
}

.abt-us .story-blk .story-p .kw::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ea5d982e;
    border-radius: 6px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-us .story-blk .story-p .kw:hover::after {
    transform: scaleX(1)
}

.abt-us .story-blk .quote-card {
    background: #FCFFF0;
    border-radius: 10px;
    padding: 24px;
    margin-top: 24px;
    box-shadow: 0 6px 25px -2px #0f674b1c;
    border-left: 4px solid #0F674B;
    border-top: 2px solid #0f674b33;
    position: relative
}

.abt-us .story-blk .quote-card .q-mark {
    display: block;
    width: 32px;
    height: 24px;
    margin-bottom: 12px
}

.abt-us .story-blk .quote-card .q-text {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #1b2a24;
    margin: 0 0 12px;
    font-style: italic
}

.abt-us .story-blk .quote-card .q-text .q-accent {
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-size: 19px
}

.abt-us .story-blk .quote-card .q-attr {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #0F674B
}

.abt-us .team-blk {
    padding: 96px 0;
    background: linear-gradient(233deg, #0f674b0a, #ea5d9808);
    position: relative;
    overflow: hidden
}

.abt-us .team-blk .geom-motif {
    position: absolute;
    right: 0;
    top: 48px;
    width: 180px;
    height: 100%;
    pointer-events: none;
    overflow: hidden
}

.abt-us .team-blk .geom-motif::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #ea5d981f 1px, transparent 1px);
    background-size: 18px 18px
}

.abt-us .team-blk .team-h2 {
    font-size: 41px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b2a24;
    text-align: center;
    margin: 0 0 12px;
    position: relative;
    display: inline-block
}

.abt-us .team-blk .team-h2::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #EA5D98, #0F674B);
    border-radius: 2px;
    margin-top: 6px;
    animation: underline-draw .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s forwards
}

.abt-us .team-blk .team-hdr {
    text-align: center;
    margin-bottom: 48px
}

.abt-us .team-blk .team-sub {
    font-size: 19px;
    line-height: 1.7;
    color: #2e4039;
    max-width: 600px;
    margin: 12px auto 0;
    letter-spacing: .01em
}

.abt-us .team-blk .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.abt-us .team-blk .member-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px -2px #ea5d9812;
    border: 1px solid #ea5d981a;
    border-top: 3px solid #EA5D98;
    transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative
}

.abt-us .team-blk .member-card:hover {
    box-shadow: 0 8px 36px -2px #ea5d981a;
    transform: translateY(-4px)
}

.abt-us .team-blk .member-card:focus-within {
    outline: 2px solid #0F674B;
    outline-offset: 2px
}

.abt-us .team-blk .member-card .card-lbl {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fcfff0f2;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 15px;
    line-height: 1.3;
    color: #0F674B;
    border: 1px solid #0f674b33;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity .45s ease-in-out, transform .45s ease-in-out;
    pointer-events: none;
    z-index: 2
}

.abt-us .team-blk .member-card:hover .card-lbl,
.abt-us .team-blk .member-card:focus-within .card-lbl {
    opacity: 1;
    transform: translateY(0)
}

.abt-us .team-blk .member-img {
    position: relative;
    overflow: hidden
}

.abt-us .team-blk .member-img img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease-in-out
}

.abt-us .team-blk .member-img img.loaded {
    opacity: 1
}

.abt-us .team-blk .member-info {
    padding: 24px
}

.abt-us .team-blk .member-name {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b2a24;
    margin: 0 0 6px
}

.abt-us .team-blk .member-role {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #EA5D98;
    margin: 0 0 12px
}

.abt-us .team-blk .member-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4039;
    margin: 0
}

.abt-us .team-blk .process-row {
    background: #fff;
    border-radius: 10px;
    padding: 48px;
    box-shadow: 0 6px 25px -2px #0f674b1c;
    border: 1px solid #0f674b1a;
    border-bottom: 3px solid #0F674B
}

.abt-us .team-blk .process-h3 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b2a24;
    text-align: center;
    margin: 0 0 48px;
    position: relative;
    display: inline-block
}

.abt-us .team-blk .process-h3::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(90deg, #0F674B, #EA5D98);
    border-radius: 2px;
    margin-top: 6px;
    animation: underline-draw .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .7s forwards
}

.abt-us .team-blk .process-hdr {
    text-align: center;
    margin-bottom: 48px
}

.abt-us .team-blk .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px
}

.abt-us .team-blk .step-item {
    position: relative;
    padding: 24px;
    border-radius: 10px;
    background: #FCFFF0;
    border: 1px solid #0f674b1a;
    border-left: 4px solid #0F674B;
    border-right: 1px solid #0f674b1a;
    transition: box-shadow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.abt-us .team-blk .step-item:hover {
    box-shadow: 0 6px 25px -2px #0f674b1c
}

.abt-us .team-blk .step-num {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0f674b26;
    display: block;
    margin-bottom: 6px
}

.abt-us .team-blk .step-title {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b2a24;
    margin: 0 0 12px
}

.abt-us .team-blk .step-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4039;
    margin: 0
}

.abt-us .team-blk .result-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(233deg, #0f674b0f, #ea5d980a);
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #ea5d981f
}

.abt-us .team-blk .result-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #ea5d981c;
    border: 2px solid #ea5d9833;
    border-top: 3px solid #EA5D98
}

.abt-us .team-blk .result-img img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0;
    transition: opacity .6s ease-in-out
}

.abt-us .team-blk .result-img img.loaded {
    opacity: 1
}

.abt-us .team-blk .result-text .res-h4 {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b2a24;
    margin: 0 0 12px
}

.abt-us .team-blk .result-text .res-p {
    font-size: 15px;
    line-height: 1.7;
    color: #2e4039;
    margin: 0 0 12px
}

.abt-us .team-blk .result-text .res-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #EA5D98;
    text-decoration: none;
    letter-spacing: .02em;
    transition: gap .45s ease-in-out
}

.abt-us .team-blk .result-text .res-arrow:hover {
    gap: 12px
}

.abt-us .team-blk .result-text .res-arrow i {
    font-size: 15px
}

@media (max-width: 1280px) {
    .abt-us .title-blk .tb-h1 {
        font-size: 56px
    }

    .abt-us .title-blk .tb-grid {
        grid-template-columns: 1fr 360px;
        gap: 48px
    }
}

@media (max-width: 768px) {
    .abt-us .title-blk {
        padding: 48px 0
    }

    .abt-us .title-blk .tb-grid {
        grid-template-columns: 1fr
    }

    .abt-us .title-blk .tb-h1 {
        font-size: 41px
    }

    .abt-us .title-blk .tb-img-frame img {
        height: 300px
    }

    .abt-us .title-blk .tb-img-badge {
        bottom: 12px;
        left: 12px
    }

    .abt-us .story-blk {
        padding: 48px 0
    }

    .abt-us .story-blk .story-grid {
        grid-template-columns: 1fr
    }

    .abt-us .story-blk .story-h2 {
        font-size: 31px
    }

    .abt-us .team-blk {
        padding: 48px 0
    }

    .abt-us .team-blk .team-grid {
        grid-template-columns: 1fr
    }

    .abt-us .team-blk .steps-grid {
        grid-template-columns: 1fr
    }

    .abt-us .team-blk .result-preview {
        grid-template-columns: 1fr
    }

    .abt-us .team-blk .team-h2 {
        font-size: 31px
    }

    .abt-us .team-blk .process-row {
        padding: 24px
    }
}

@media (max-width: 390px) {
    .abt-us .title-blk .tb-h1 {
        font-size: 31px
    }

    .abt-us .title-blk .tb-tagline {
        font-size: 15px
    }

    .abt-us .story-blk .story-h2 {
        font-size: 24px
    }

    .abt-us .story-blk .story-p {
        font-size: 15px
    }

    .abt-us .team-blk .team-h2 {
        font-size: 24px
    }

    .abt-us .pg-wrap {
        padding: 0 12px
    }
}

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

.bse .pg-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.bse .reveal {
    opacity: 0;
    transform: translateY(28px);
    animation: revealUp .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

.bse .reveal--d1 {
    animation-delay: .1s
}

.bse .reveal--d2 {
    animation-delay: .22s
}

.bse .reveal--d3 {
    animation-delay: .34s
}

.bse .reveal--d4 {
    animation-delay: .46s
}

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

.bse .split-open {
    animation: splitOpen .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0
}

@keyframes splitOpen {
    0% {
        opacity: 0;
        clip-path: inset(0 50% 0 50%)
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0% 0 0%)
    }
}

.bse .img-fade {
    opacity: 0;
    transition: opacity .55s ease-in-out
}

.bse .img-fade.loaded {
    opacity: 1
}

.bse .ttl-blk {
    position: relative;
    padding: 96px 0;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    background-size: 300% 300%;
    animation: gradShift 8s ease-in-out infinite;
    overflow: hidden
}

@keyframes gradShift {
    0% {
        background-position: 0 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0 50%
    }
}

.bse .ttl-blk::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #fcfff08c
}

.bse .ttl-blk__inner {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.bse .ttl-blk__label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #fcfff0cc;
    border: 1px solid #fcfff059;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 24px
}

.bse .ttl-blk__h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FCFFF0;
    margin: 0 0 24px;
    max-width: 800px
}

.bse .ttl-blk__h1 span {
    display: block
}

.bse .ttl-blk__sub {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #fcfff0e0;
    max-width: 560px;
    margin: 0 0 48px
}

.bse .ttl-blk__cta {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .02em;
    color: #FCFFF0;
    border: 1.5px solid #fcfff0b3;
    border-radius: 6px;
    padding: 12px 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .5s ease-in-out, border-color .5s ease-in-out;
    background: transparent
}

.bse .ttl-blk__cta::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #fcfff02e;
    transition: height .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.bse .ttl-blk__cta:hover::after {
    height: 100%
}

.bse .ttl-blk__cta span {
    position: relative;
    z-index: 1
}

.bse .ttl-blk__dots {
    position: absolute;
    right: 48px;
    bottom: 48px;
    pointer-events: none
}

.bse .ttl-blk__dots span {
    display: block;
    border-radius: 48px;
    background: #fcfff02e;
    position: absolute
}

.bse .assoc {
    padding: 96px 0;
    background: #FCFFF0
}

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

.bse .assoc__card {
    border-radius: 10px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 1px 6px -2px #ea5d9812 0 6px 25px -2px #ea5d981c;
    border-left: 4px solid #EA5D98;
    border-top: 1px solid #ea5d981f;
    border-right: 1px solid #ea5d981f;
    border-bottom: 1px solid #ea5d981f;
    transition: box-shadow .5s ease-in-out, transform .5s ease-in-out
}

.bse .assoc__card:hover {
    box-shadow: 0 8px 36px -2px #ea5d981a;
    transform: translateY(-4px)
}

.bse .assoc__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(233deg, #0f674b1a, #ea5d981a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 19px;
    color: #0F674B
}

.bse .assoc__card h4 {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1a2e25;
    margin: 0 0 12px;
    position: relative;
    display: inline-block
}

.bse .assoc__card h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #EA5D98;
    transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.bse .assoc__card:hover h4::after {
    width: 100%
}

.bse .assoc__card p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2d4a3e;
    margin: 0
}

.bse .sec-head {
    text-align: center
}

.bse .sec-head h2 {
    font-size: 41px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1a2e25;
    margin: 0 0 12px;
    display: inline-block;
    position: relative
}

.bse .sec-head h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    animation: headLine .65s .4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards
}

@keyframes headLine {
    to {
        width: 60%
    }
}

.bse .sec-head p {
    font-size: 19px;
    line-height: 1.7;
    color: #2d4a3e;
    max-width: 600px;
    margin: 12px auto 0
}

.bse .diff {
    padding: 96px 0;
    background: #fff;
    position: relative
}

.bse .diff::before {
    content: '';
    display: block;
    border-top: 1px dashed #0f674b40;
    margin-bottom: 96px;
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    box-sizing: border-box
}

.bse .diff__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.bse .diff__img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #0f674b1c
}

.bse .diff__img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 10px
}

.bse .diff__badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #0F674B;
    color: #FCFFF0;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    box-shadow: 0 6px 25px -2px #0f674b1c
}

.bse .diff__badge strong {
    display: block;
    font-size: 31px;
    line-height: 1.1
}

.bse .diff__text h2 {
    font-size: 41px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1a2e25;
    margin: 0 0 24px
}

.bse .diff__text p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2d4a3e;
    margin: 0 0 24px
}

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

.bse .diff__pt {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #FCFFF0;
    border-radius: 6px;
    padding: 12px;
    border-left: 3px solid #0F674B;
    border-top: 1px solid #0f674b1a;
    border-right: 1px solid #0f674b1a;
    border-bottom: 1px solid #0f674b1a
}

.bse .diff__pt-icon {
    color: #0F674B;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0
}

.bse .diff__pt p {
    font-size: 15px;
    line-height: 1.5;
    color: #1a2e25;
    margin: 0
}

.bse .commit {
    padding: 96px 0;
    background: #0F674B;
    position: relative;
    overflow: hidden
}

.bse .commit__rings {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 320px;
    height: 320px;
    pointer-events: none;
    overflow: hidden
}

.bse .commit__rings svg {
    width: 100%;
    height: 100%;
    opacity: .12
}

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

.bse .commit__left h2 {
    font-size: 41px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #FCFFF0;
    margin: 0 0 24px
}

.bse .commit__left p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #fcfff0d9;
    margin: 0 0 24px
}

.bse .commit__metric {
    background: #fcfff01a;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #fcfff033;
    margin-top: 24px;
    box-shadow: inset 0 1px 6px -2px #fcfff014
}

.bse .commit__metric-num {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #EA5D98;
    display: block
}

.bse .commit__metric-label {
    font-size: 15px;
    line-height: 1.5;
    color: #fcfff0bf;
    display: block;
    margin-top: 6px
}

.bse .commit__right {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.bse .commit__item {
    background: #fcfff014;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #fcfff026;
    transition: background .5s ease-in-out
}

.bse .commit__item:hover {
    background: #fcfff024
}

.bse .commit__item h5 {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #FCFFF0;
    margin: 0 0 6px
}

.bse .commit__item p {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #fcfff0c7;
    margin: 0
}

.bse .cases {
    padding: 96px 0;
    background: #FCFFF0
}

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

.bse .case-card {
    border-radius: 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 1px 6px -2px #ea5d9812 0 6px 25px -2px #ea5d981c;
    transition: box-shadow .6s ease-in-out, transform .6s ease-in-out
}

.bse .case-card:hover {
    box-shadow: 0 8px 36px -2px #ea5d981a;
    transform: translateY(-6px)
}

.bse .case-card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block
}

.bse .case-card__body {
    padding: 24px
}

.bse .case-card__tag {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .02em;
    color: #0F674B;
    background: #0f674b14;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 12px
}

.bse .case-card__body h4 {
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1a2e25;
    margin: 0 0 12px;
    position: relative;
    display: inline-block
}

.bse .case-card__body h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #EA5D98;
    transition: width .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.bse .case-card:hover h4::after {
    width: 100%
}

.bse .case-card__body p {
    font-size: 15px;
    line-height: 1.7;
    color: #2d4a3e;
    margin: 0
}

.bse .case-card--wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.bse .case-card--wide .case-card__img {
    height: 100%;
    min-height: 260px
}

.bse .pattern-sec {
    padding: 96px 0;
    background: #fff;
    position: relative
}

.bse .pattern-sec::before {
    content: '';
    display: block;
    border-top: 1px dashed #ea5d984d;
    max-width: 1170px;
    margin: 0 auto 96px;
    padding: 0 24px;
    box-sizing: border-box
}

.bse .pattern-sec__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.bse .pattern-sec__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    margin-top: 48px;
    align-items: start
}

.bse .pattern-sec__sticky {
    position: sticky;
    top: 24px
}

.bse .pattern-sec__sticky h3 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1a2e25;
    margin: 0 0 24px
}

.bse .pattern-sec__sticky p {
    font-size: 15px;
    line-height: 1.7;
    color: #2d4a3e;
    margin: 0
}

.bse .pattern-sec__quotes {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.bse .quote-item {
    background: #FCFFF0;
    border-radius: 10px;
    padding: 24px;
    border-left: 4px solid #EA5D98;
    border-top: 1px solid #ea5d981f;
    border-right: 1px solid #ea5d981f;
    border-bottom: 1px solid #ea5d981f;
    box-shadow: 0 1px 6px -2px #ea5d9812;
    transition: box-shadow .5s ease-in-out
}

.bse .quote-item:hover {
    box-shadow: 0 6px 25px -2px #ea5d981c
}

.bse .quote-item__text {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #1a2e25;
    margin: 0 0 12px;
    font-style: italic
}

.bse .quote-item__attr {
    font-size: 15px;
    line-height: 1.5;
    color: #0F674B;
    letter-spacing: .02em
}

.bse .quote-item__attr strong {
    color: #1a2e25
}

.bse .scale {
    padding: 96px 0;
    background: linear-gradient(233deg, #0f674b0f, #ea5d980f)
}

.bse .scale__inner {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

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

.bse .scale__stat {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 48px 24px;
    box-shadow: 0 1px 6px -2px #0f674b12 0 6px 25px -2px #0f674b1c;
    position: relative;
    overflow: hidden;
    transition: transform .5s ease-in-out
}

.bse .scale__stat:hover {
    transform: translateY(-4px)
}

.bse .scale__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(233deg, #0F674B, #EA5D98)
}

.bse .scale__num {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0F674B;
    display: block
}

.bse .scale__unit {
    font-size: 24px;
    color: #EA5D98
}

.bse .scale__label {
    font-size: 15px;
    line-height: 1.5;
    color: #2d4a3e;
    display: block;
    margin-top: 12px
}

.bse .scale__desc {
    font-size: 15px;
    line-height: 1.5;
    color: #2d4a3e;
    margin-top: 12px;
    display: block
}

.bse .scale__bottom {
    margin-top: 48px;
    background: #fff;
    border-radius: 10px;
    padding: 48px;
    box-shadow: 0 1px 6px -2px #0f674b12;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.bse .scale__bottom-text h3 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1a2e25;
    margin: 0 0 12px
}

.bse .scale__bottom-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #2d4a3e;
    margin: 0
}

.bse .scale__bottom-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 25px -2px #0f674b1c
}

.bse .scale__bottom-img img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

.bse .scale__dots {
    position: absolute;
    bottom: 24px;
    right: 24px;
    pointer-events: none
}

@media (max-width: 1280px) {
    .bse .ttl-blk__h1 {
        font-size: 56px
    }

    .bse .assoc__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .bse .ttl-blk {
        padding: 48px 0
    }

    .bse .ttl-blk__h1 {
        font-size: 41px
    }

    .bse .ttl-blk__sub {
        font-size: 15px
    }

    .bse .assoc__grid {
        grid-template-columns: 1fr
    }

    .bse .diff__layout {
        grid-template-columns: 1fr
    }

    .bse .diff__img-wrap img {
        height: 280px
    }

    .bse .commit__inner {
        grid-template-columns: 1fr
    }

    .bse .cases__grid {
        grid-template-columns: 1fr
    }

    .bse .case-card--wide {
        grid-template-columns: 1fr
    }

    .bse .case-card--wide .case-card__img {
        height: 220px
    }

    .bse .pattern-sec__layout {
        grid-template-columns: 1fr
    }

    .bse .pattern-sec__sticky {
        position: static
    }

    .bse .scale__grid {
        grid-template-columns: 1fr
    }

    .bse .scale__bottom {
        grid-template-columns: 1fr;
        padding: 24px
    }

    .bse .sec-head h2 {
        font-size: 31px
    }

    .bse .diff__text h2 {
        font-size: 31px
    }

    .bse .commit__left h2 {
        font-size: 31px
    }

    .bse .assoc {
        padding: 48px 0
    }

    .bse .diff {
        padding: 48px 0
    }

    .bse .commit {
        padding: 48px 0
    }

    .bse .cases {
        padding: 48px 0
    }

    .bse .pattern-sec {
        padding: 48px 0
    }

    .bse .scale {
        padding: 48px 0
    }
}

@media (max-width: 390px) {
    .bse .ttl-blk__h1 {
        font-size: 31px
    }

    .bse .ttl-blk {
        padding: 48px 0
    }

    .bse .pg-wrap {
        padding: 0 12px
    }

    .bse .ttl-blk__inner {
        padding: 0 12px
    }

    .bse .diff__layout {
        padding: 0 12px
    }

    .bse .commit__inner {
        padding: 0 12px
    }

    .bse .pattern-sec__inner {
        padding: 0 12px
    }

    .bse .scale__inner {
        padding: 0 12px
    }

    .bse .scale__bottom {
        padding: 12px;
        gap: 24px
    }

    .bse .commit__metric-num {
        font-size: 41px
    }

    .bse .scale__num {
        font-size: 41px
    }
}

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

.ctus .pg-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.ctus .reveal {
    animation: revealH .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) both
}

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

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

.ctus .fade-img {
    opacity: 0;
    animation: imgFade .65s ease-in-out .2s forwards
}

@keyframes imgFade {
    to {
        opacity: 1
    }
}

@keyframes growH {
    from {
        max-height: 0;
        opacity: 0
    }

    to {
        max-height: 800px;
        opacity: 1
    }
}

.ctus ::selection {
    background: #0F674B;
    color: #fff
}

.ctus .intro-band {
    padding: 96px 0 48px;
    position: relative
}

.ctus .intro-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.ctus .intro-band__text {
    position: relative;
    padding-left: 24px
}

.ctus .intro-band__text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px
}

.ctus .intro-band__quote {
    font-size: 70px;
    line-height: 1.1;
    color: #EA5D98;
    opacity: .09;
    position: absolute;
    top: -12px;
    left: 12px;
    pointer-events: none;
    font-style: italic;
    letter-spacing: .01em;
    user-select: none
}

.ctus .intro-band__label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #0F674B;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px
}

.ctus .intro-band__h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin-bottom: 24px;
    position: relative
}

.ctus .intro-band__h1 span {
    display: inline-block;
    position: relative
}

.ctus .intro-band__h1 span::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px;
    width: 0;
    animation: lineGrow .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .4s forwards
}

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

.ctus .intro-band__desc {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2a2a2a
}

.ctus .intro-band__shape {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.ctus .geo-shape {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    border-radius: 48px 10px 48px 10px
}

.ctus .geo-shape__bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(233deg, #0F674B 0%, #EA5D98 100%);
    opacity: .12;
    position: absolute;
    inset: 0
}

.ctus .geo-shape__inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 48px
}

.ctus .info-pill {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 24px;
    width: 100%;
    box-shadow: 0 6px 25px -2px #ea5d981c;
    border-left: 4px solid #EA5D98;
    border-top: 1px solid #ea5d9826;
    border-right: 1px solid #ea5d9814;
    border-bottom: 1px solid #ea5d9814;
    transition: box-shadow .5s ease-in-out, transform .5s ease-in-out
}

.ctus .info-pill:hover {
    box-shadow: 0 8px 36px -2px #ea5d982e;
    transform: translateX(4px)
}

.ctus .info-pill--green {
    box-shadow: 0 6px 25px -2px #0f674b1c;
    border-color: #0f674b26 #0f674b14 #0f674b14 #0F674B
}

.ctus .info-pill--green:hover {
    box-shadow: 0 8px 36px -2px #0f674b2e
}

.ctus .info-pill__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctus .info-pill__icon i {
    color: #fff;
    font-size: 15px
}

.ctus .info-pill__body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0
}

.ctus .info-pill__label {
    font-size: 15px;
    line-height: 1.3;
    color: #888;
    letter-spacing: .02em
}

.ctus .info-pill__val {
    font-size: 15px;
    line-height: 1.3;
    color: #111;
    font-weight: 600;
    letter-spacing: .01em;
    word-break: break-word
}

.ctus .info-pill__val a {
    color: #0F674B;
    text-decoration: none;
    transition: color .5s ease-in-out
}

.ctus .info-pill__val a:hover {
    color: #EA5D98
}

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

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

.ctus .form-band {
    background: #FCFFF0;
    padding: 96px 0;
    position: relative
}

.ctus .form-band__grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start
}

.ctus .form-band__aside {
    position: relative
}

.ctus .form-band__aside-head {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    margin-bottom: 24px
}

.ctus .form-band__aside-head span {
    display: inline-block;
    position: relative
}

.ctus .form-band__aside-head span::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px;
    width: 0;
    animation: lineGrow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .6s forwards
}

.ctus .form-band__aside-text {
    font-size: 19px;
    line-height: 1.7;
    color: #2a2a2a;
    letter-spacing: .01em;
    margin-bottom: 24px
}

.ctus .feat-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px
}

.ctus .feat-group__cat {
    font-size: 15px;
    line-height: 1.3;
    color: #0F674B;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-bottom: 6px
}

.ctus .feat-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    background: #fff;
    border-radius: 10px;
    padding: 12px 24px;
    box-shadow: 0 1px 6px -2px #ea5d9812;
    border-left: 3px solid #EA5D98;
    border-top: 1px solid #ea5d981a;
    border-right: 1px solid #ea5d980f;
    border-bottom: 1px solid #ea5d980f
}

.ctus .feat-item i {
    color: #EA5D98;
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0
}

.ctus .feat-item__text {
    font-size: 15px;
    line-height: 1.5;
    color: #2a2a2a;
    letter-spacing: .01em
}

.ctus .cf {
    background: #fff;
    border-radius: 10px;
    padding: 48px;
    box-shadow: 0 8px 36px -2px #0f674b1a;
    animation: growH .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .2s both
}

.ctus .cf__head {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #111;
    margin-bottom: 6px
}

.ctus .cf__sub {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    letter-spacing: .01em;
    margin-bottom: 24px
}

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

.ctus .cf__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 12px
}

.ctus .cf__label {
    font-size: 15px;
    line-height: 1.3;
    color: #333;
    font-weight: 600;
    letter-spacing: .01em
}

.ctus .cf__input-wrap {
    position: relative;
    display: flex;
    align-items: center
}

.ctus .cf__input-wrap i {
    position: absolute;
    left: 12px;
    color: #aaa;
    font-size: 15px;
    pointer-events: none;
    transition: color .5s ease-in-out
}

.ctus .cf__input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    font-size: 15px;
    line-height: 1.5;
    color: #111;
    background: #FCFFF0;
    border: 2px solid #0f674b2e;
    border-radius: 6px;
    outline: none;
    letter-spacing: .01em;
    transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
    box-sizing: border-box
}

.ctus .cf__input::placeholder {
    color: #aaa
}

.ctus .cf__input:focus {
    border-color: #0F674B;
    box-shadow: inset 0 2px 8px #0f674b14
}

.ctus .cf__input:focus+i,
.ctus .cf__input-wrap:focus-within i {
    color: #0F674B
}

.ctus .cf__textarea {
    width: 100%;
    padding: 12px 12px 12px 36px;
    font-size: 15px;
    line-height: 1.7;
    color: #111;
    background: #FCFFF0;
    border: 2px solid #0f674b2e;
    border-radius: 6px;
    outline: none;
    letter-spacing: .01em;
    resize: vertical;
    min-height: 120px;
    transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
    box-sizing: border-box
}

.ctus .cf__textarea::placeholder {
    color: #aaa
}

.ctus .cf__textarea:focus {
    border-color: #0F674B;
    box-shadow: inset 0 2px 8px #0f674b14
}

.ctus .cf__select {
    width: 100%;
    padding: 12px 12px 12px 36px;
    font-size: 15px;
    line-height: 1.5;
    color: #111;
    background: #FCFFF0;
    border: 2px solid #0f674b2e;
    border-radius: 6px;
    outline: none;
    letter-spacing: .01em;
    appearance: none;
    cursor: pointer;
    transition: border-color .5s ease-in-out, box-shadow .5s ease-in-out;
    box-sizing: border-box
}

.ctus .cf__select:focus {
    border-color: #0F674B;
    box-shadow: inset 0 2px 8px #0f674b14
}

.ctus .cf__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    margin-top: 12px
}

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

.ctus .cf__privacy-text {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    letter-spacing: .01em
}

.ctus .cf__privacy-text a {
    color: #0F674B;
    text-decoration: none;
    position: relative;
    transition: color .5s ease-in-out
}

.ctus .cf__privacy-text a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    right: 50%;
    height: 1px;
    background: #EA5D98;
    transition: left .5s ease-in-out, right .5s ease-in-out
}

.ctus .cf__privacy-text a:hover {
    color: #EA5D98
}

.ctus .cf__privacy-text a:hover::after {
    left: 0;
    right: 0
}

.ctus .cf__btn {
    display: inline-block;
    position: relative;
    padding: 12px 48px;
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: .02em;
    font-weight: 700;
    color: #0F674B;
    background: transparent;
    border: 2px solid #0F674B;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    transition: color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.ctus .cf__btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    transition: height .55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.ctus .cf__btn:hover {
    color: #fff;
    border-color: #0F674B
}

.ctus .cf__btn:hover::before {
    height: 100%
}

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

.ctus .cf__btn:focus-visible {
    outline: 3px solid #EA5D98;
    outline-offset: 3px
}

.ctus .wave-div--flip {
    transform: scaleY(-1)
}

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

.ctus .addr-band__head {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #111;
    text-align: center;
    margin-bottom: 48px
}

.ctus .addr-band__head span {
    display: inline-block;
    position: relative
}

.ctus .addr-band__head span::after {
    content: '';
    display: block;
    height: 2px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px;
    width: 0;
    animation: lineGrow .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .8s forwards
}

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

.ctus .addr-card {
    background: #FCFFF0;
    border-radius: 10px;
    padding: 48px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 3px solid transparent;
    border-left: 3px solid #EA5D98;
    border-right: 1px solid #ea5d981a;
    border-bottom: 1px solid #ea5d981a;
    box-shadow: 0 1px 6px -2px #ea5d9812;
    transition: box-shadow .55s ease-in-out, transform .55s ease-in-out
}

.ctus .addr-card:hover {
    box-shadow: 0 8px 36px -2px #ea5d981a;
    transform: translateY(-4px)
}

.ctus .addr-card--green {
    border-left-color: #0F674B;
    border-right-color: #0f674b1a;
    border-bottom-color: #0f674b1a;
    box-shadow: 0 1px 6px -2px #0f674b12
}

.ctus .addr-card--green:hover {
    box-shadow: 0 8px 36px -2px #0f674b1a
}

.ctus .addr-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 48px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px
}

.ctus .addr-card__icon i {
    color: #fff;
    font-size: 24px
}

.ctus .addr-card__label {
    font-size: 15px;
    line-height: 1.3;
    color: #888;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 600
}

.ctus .addr-card__val {
    font-size: 19px;
    line-height: 1.5;
    color: #111;
    font-weight: 700;
    letter-spacing: .01em;
    word-break: break-word
}

.ctus .addr-card__val a {
    color: #0F674B;
    text-decoration: none;
    transition: color .5s ease-in-out
}

.ctus .addr-card__val a:hover {
    color: #EA5D98
}

.ctus .addr-card__note {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
    letter-spacing: .01em
}

.ctus .decor-poly {
    position: absolute;
    pointer-events: none;
    overflow: hidden;
    border-radius: 48px
}

@media (max-width: 1280px) {
    .ctus .intro-band__h1 {
        font-size: 41px
    }

    .ctus .geo-shape {
        max-width: 380px
    }
}

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

    .ctus .intro-band__grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ctus .intro-band__h1 {
        font-size: 31px
    }

    .ctus .geo-shape {
        max-width: 100%;
        aspect-ratio: 4/3
    }

    .ctus .form-band {
        padding: 48px 0
    }

    .ctus .form-band__grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .ctus .cf {
        padding: 24px
    }

    .ctus .cf__row {
        grid-template-columns: 1fr
    }

    .ctus .addr-band {
        padding: 48px 0
    }

    .ctus .addr-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .ctus .form-band__aside-head {
        font-size: 31px
    }
}

@media (max-width: 390px) {
    .ctus .intro-band__h1 {
        font-size: 24px
    }

    .ctus .intro-band__desc {
        font-size: 15px
    }

    .ctus .cf__head {
        font-size: 24px
    }

    .ctus .cf__btn {
        width: 100%;
        padding: 12px 24px
    }

    .ctus .addr-band__head {
        font-size: 31px
    }
}

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

.spnsr .pg-wrap {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 24px
}

.spnsr img {
    opacity: 0;
    transition: opacity .55s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.spnsr img.loaded {
    opacity: 1
}

.spnsr ::selection {
    background: #0F674B;
    color: #FCFFF0
}

.spnsr .strip-img {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: relative
}

.spnsr .strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(20%) contrast(1.05)
}

.spnsr .strip-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(233deg, #0e674b2e 0%, #ea5d981f 100%);
    pointer-events: none
}

.spnsr .strip-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='120'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='120' filter='url(%23grain)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1
}

.spnsr .title-blk {
    padding: 96px 0 48px;
    position: relative;
    overflow: hidden
}

.spnsr .title-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, transparent, transparent 28px, #ea5d980a 28px, #ea5d980a 30px);
    pointer-events: none;
    z-index: 0
}

.spnsr .title-blk::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #EA5D98 40%, #0F674B 70%, transparent);
    pointer-events: none
}

.spnsr .title-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.spnsr .title-blk__grid {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 96px
}

.spnsr .title-blk__left {
    flex: 0 0 55%;
    max-width: 55%
}

.spnsr .title-blk__right {
    flex: 1;
    padding-top: 12px
}

.spnsr .title-blk__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #0F674B;
    background: #0f674b14;
    border: 1px solid #0f674b2e;
    border-radius: 6px;
    padding: 6px 12px;
    margin-bottom: 24px
}

.spnsr .title-blk__h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b2a22;
    margin: 0 0 24px;
    position: relative;
    display: inline-block
}

.spnsr .title-blk__h1::after {
    content: "";
    display: block;
    height: 3px;
    width: 0;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px;
    margin-top: 8px;
    animation: underline-draw .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .3s forwards
}

@keyframes underline-draw {
    to {
        width: 100%
    }
}

.spnsr .title-blk__lead {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2c3e33;
    margin: 0 0 24px
}

.spnsr .title-blk__sub {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #3d5045;
    margin: 0 0 48px
}

.spnsr .title-blk__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #EA5D98;
    border: 1.5px solid #EA5D98;
    border-radius: 6px;
    padding: 12px 24px;
    text-decoration: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.spnsr .title-blk__cta::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #EA5D98;
    transition: height .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.spnsr .title-blk__cta:hover::before {
    height: 100%
}

.spnsr .title-blk__cta:hover {
    color: #FCFFF0
}

.spnsr .title-blk__cta span {
    position: relative;
    z-index: 1
}

.spnsr .title-blk__side-card {
    background: #FCFFF0;
    border-radius: 10px;
    border-top: 3px solid #EA5D98;
    border-right: 1px solid #ea5d9826;
    border-bottom: 1px solid #ea5d9826;
    border-left: 4px solid #0F674B;
    box-shadow: 0 6px 25px -2px #ea5d981c;
    padding: 24px
}

.spnsr .title-blk__side-card h4 {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .02em;
    color: #0F674B;
    margin: 0 0 12px;
    text-transform: uppercase
}

.spnsr .title-blk__side-card p {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #2c3e33;
    margin: 0 0 24px
}

.spnsr .reach-bar {
    margin-bottom: 24px
}

.spnsr .reach-bar__label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px
}

.spnsr .reach-bar__label span {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #2c3e33
}

.spnsr .reach-bar__label strong {
    font-size: 15px;
    color: #EA5D98
}

.spnsr .reach-bar__track {
    height: 8px;
    background: #0f674b1a;
    border-radius: 48px;
    overflow: hidden
}

.spnsr .reach-bar__fill {
    height: 100%;
    border-radius: 48px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    animation: bar-fill .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s both;
    transform-origin: left
}

@keyframes bar-fill {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.spnsr .reach-bar__fill--a {
    width: 72%
}

.spnsr .reach-bar__fill--b {
    width: 58%
}

.spnsr .reach-bar__fill--c {
    width: 85%
}

.spnsr .side-note {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #3d5045;
    border-left: 3px solid #EA5D98;
    padding-left: 12px;
    margin: 0
}

.spnsr .divider-curve {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block
}

.spnsr .divider-curve svg {
    display: block;
    width: 100%
}

.spnsr .formats-blk {
    padding: 96px 0;
    position: relative;
    background: linear-gradient(180deg, #FCFFF0 0%, #fff 100%)
}

.spnsr .formats-blk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 8% 20%, #0f674b0a 0%, transparent 55%), radial-gradient(circle at 92% 80%, #ea5d980a 0%, transparent 55%);
    pointer-events: none;
    z-index: 0
}

.spnsr .formats-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.spnsr .formats-blk__geo {
    position: absolute;
    top: 48px;
    right: -24px;
    width: 320px;
    height: 320px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden
}

.spnsr .formats-blk__geo svg {
    opacity: .04
}

.spnsr .formats-hd {
    text-align: center;
    margin-bottom: 48px
}

.spnsr .formats-hd h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b2a22;
    margin: 0 0 12px;
    display: inline-block;
    position: relative
}

.spnsr .formats-hd h2::after {
    content: "";
    display: block;
    height: 2px;
    width: 0;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px;
    margin-top: 6px;
    animation: underline-draw .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .4s forwards
}

.spnsr .formats-hd p {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #3d5045;
    max-width: 560px;
    margin: 12px auto 0
}

.spnsr .formats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px
}

.spnsr .fmt-card {
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid #EA5D98;
    border-top: 1px solid #ea5d981f;
    border-right: 1px solid #ea5d9814;
    border-bottom: 1px solid #ea5d9814;
    box-shadow: 0 1px 6px -2px #ea5d9812;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .45s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.spnsr .fmt-card:nth-child(2n) {
    box-shadow: 0 1px 6px -2px #0f674b12;
    border-color: #0f674b1f #0f674b14 #0f674b14 #0F674B
}

.spnsr .fmt-card:hover {
    box-shadow: 0 8px 36px -2px #ea5d981a;
    transform: translateY(-2px)
}

.spnsr .fmt-card:nth-child(2n):hover {
    box-shadow: 0 8px 36px -2px #0f674b1a
}

.spnsr .fmt-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, #fcfff0b3, transparent);
    pointer-events: none
}

.spnsr .fmt-card__ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #ea5d9814;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #EA5D98;
    font-size: 19px
}

.spnsr .fmt-card:nth-child(2n) .fmt-card__ico {
    background: #0f674b14;
    color: #0F674B
}

.spnsr .fmt-card h5 {
    font-size: 19px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #1b2a22;
    margin: 0 0 12px
}

.spnsr .fmt-card p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #3d5045;
    margin: 0 0 12px
}

.spnsr .fmt-card__detail {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #EA5D98;
    font-weight: 600
}

.spnsr .fmt-card:nth-child(2n) .fmt-card__detail {
    color: #0F674B
}

.spnsr .fmt-card__detail::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 2px;
    background: currentColor;
    border-radius: 48px;
    transition: width .45s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.spnsr .fmt-card:hover .fmt-card__detail::after {
    width: 22px
}

.spnsr .formats-feature {
    background: linear-gradient(233deg, #0F674B 0%, #EA5D98 100%);
    border-radius: 10px;
    padding: 48px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
    box-shadow: 0 8px 36px -2px #0f674b1a;
    position: relative;
    overflow: hidden
}

.spnsr .formats-feature::before {
    content: "";
    position: absolute;
    top: -48px;
    right: -48px;
    width: 200px;
    height: 200px;
    border-radius: 48px;
    background: #fcfff00f;
    pointer-events: none;
    transform: rotate(20deg)
}

.spnsr .feat-left {
    flex: 1
}

.spnsr .feat-left h3 {
    font-size: 31px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #FCFFF0;
    margin: 0 0 12px
}

.spnsr .feat-left p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #fcfff0d9;
    margin: 0 0 24px
}

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

.spnsr .feat-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #fcfff0e6;
    background: #fcfff014;
    border-radius: 6px;
    padding: 12px;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.spnsr .feat-list li:hover {
    background: #fcfff026
}

.spnsr .feat-list li i {
    color: #FCFFF0;
    margin-top: 2px;
    flex-shrink: 0
}

.spnsr .feat-right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.spnsr .feat-stat {
    background: #fcfff01f;
    border-radius: 10px;
    padding: 24px;
    border: 1px solid #fcfff026;
    transition: background .5s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.spnsr .feat-stat:hover {
    background: #fcfff033
}

.spnsr .feat-stat__num {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FCFFF0;
    font-weight: 700;
    margin-bottom: 6px
}

.spnsr .feat-stat__lbl {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #fcfff0bf
}

.spnsr .feat-stat__ring {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.spnsr .ring-svg {
    flex-shrink: 0
}

.spnsr .ring-svg circle {
    transition: stroke-dashoffset .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .5s
}

.spnsr .feat-stat__ring-lbl {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #fcfff0cc
}

.spnsr .contact-strip {
    background: #fcfff026;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.spnsr .contact-strip i {
    color: #FCFFF0
}

.spnsr .contact-strip a {
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: .01em;
    color: #FCFFF0;
    text-decoration: none;
    transition: opacity .45s cubic-bezier(0.25, 0.46, 0.45, 0.94)
}

.spnsr .contact-strip a:hover {
    opacity: .75
}

@media (max-width: 1280px) {
    .spnsr .title-blk__h1 {
        font-size: 41px
    }

    .spnsr .title-blk__grid {
        gap: 48px
    }

    .spnsr .formats-feature {
        padding: 48px 24px
    }
}

@media (max-width: 768px) {
    .spnsr .title-blk {
        padding: 48px 0
    }

    .spnsr .title-blk__grid {
        flex-direction: column;
        gap: 24px
    }

    .spnsr .title-blk__left {
        flex: none;
        max-width: 100%
    }

    .spnsr .title-blk__h1 {
        font-size: 31px
    }

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

    .spnsr .formats-feature {
        flex-direction: column;
        gap: 24px;
        padding: 24px
    }

    .spnsr .feat-right {
        flex: none
    }

    .spnsr .formats-blk {
        padding: 48px 0
    }
}

@media (max-width: 390px) {
    .spnsr .title-blk__h1 {
        font-size: 24px
    }

    .spnsr .formats-hd h2 {
        font-size: 31px
    }

    .spnsr .feat-left h3 {
        font-size: 24px
    }

    .spnsr .title-blk {
        padding: 48px 0 24px
    }

    .spnsr .formats-feature {
        padding: 24px 12px
    }
}

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

.success-pg .success-card {
    max-width: 1170px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 25px -2px #ea5d981c;
    padding: 96px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative
}

.success-pg .success-card::before {
    content: "";
    display: block;
    width: 4px;
    height: 60%;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px;
    position: absolute;
    left: 0;
    top: 20%;
    border-radius: 0 6px 6px 0
}

.success-pg .success-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0
}

.success-pg .success-icon__circle {
    fill: none;
    stroke: #0F674B;
    stroke-width: 2.5;
    opacity: 0;
    animation: circle-in .55s cubic-bezier(0.25, 0.46, 0.45, 0.94) .1s forwards
}

.success-pg .success-icon__check {
    fill: none;
    stroke: #EA5D98;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    animation: check-draw .5s cubic-bezier(0.25, 0.46, 0.45, 0.94) .55s forwards
}

@keyframes circle-in {
    from {
        opacity: 0;
        transform: scale(0.7);
        transform-origin: center
    }

    to {
        opacity: 1;
        transform: scale(1);
        transform-origin: center
    }
}

@keyframes check-draw {
    to {
        stroke-dashoffset: 0
    }
}

.success-pg .success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    max-width: 640px
}

.success-pg .success-content__heading {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #0F674B;
    margin: 0;
    position: relative;
    display: inline-block
}

.success-pg .success-content__heading::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(233deg, #0F674B, #EA5D98);
    border-radius: 6px;
    width: 0;
    margin: 12px auto 0;
    animation: underline-in .65s cubic-bezier(0.25, 0.46, 0.45, 0.94) .7s forwards
}

@keyframes underline-in {
    to {
        width: 100%
    }
}

.success-pg .success-content__sub {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #1e3a2f;
    margin: 0
}

.success-pg .success-content__detail {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #3a5a4a;
    margin: 0;
    border-top: 1px solid #0f674b26;
    padding-top: 24px;
    width: 100%
}

.success-pg .success-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center
}

.success-pg .success-actions__btn {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    letter-spacing: .02em;
    line-height: 1.3;
    padding: 12px 48px;
    border-radius: 48px;
    border: 2px solid #0F674B;
    color: #0F674B;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: color .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer
}

.success-pg .success-actions__btn::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #0F674B;
    border-radius: 48px;
    transition: height .5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0
}

.success-pg .success-actions__btn:hover::before {
    height: 100%
}

.success-pg .success-actions__btn:hover {
    color: #FCFFF0
}

.success-pg .success-actions__btn span {
    position: relative;
    z-index: 1
}

.success-pg .success-actions__btn--alt {
    border-color: #EA5D98;
    color: #EA5D98
}

.success-pg .success-actions__btn--alt::before {
    background: #EA5D98
}

.success-pg .success-actions__btn--alt:hover {
    color: #fff
}

.success-pg .success-actions__btn:focus-visible {
    outline: 3px solid #0F674B;
    outline-offset: 3px
}

.success-pg .success-actions__btn--alt:focus-visible {
    outline-color: #EA5D98
}

@media (max-width: 768px) {
    .success-pg {
        padding: 48px 12px
    }

    .success-pg .success-card {
        padding: 48px 24px;
        gap: 24px
    }

    .success-pg .success-content__heading {
        font-size: 31px
    }

    .success-pg .success-content__sub {
        font-size: 15px
    }
}

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

    .success-pg .success-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px
    }

    .success-pg .success-actions__btn {
        padding: 12px 24px;
        width: 100%;
        text-align: center
    }
}