html {
    font-size: 100%
}

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden;
    font-family: 'Nunito', sans-serif
}

.hd-plate {
    background: linear-gradient(135deg, #448275 0%, #3a7065 45%, #90C09B 100%);
    box-shadow: 2px 4px 14px -1px #44827517;
    position: relative;
    overflow: hidden
}

.hd-plate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #ffffff12 0%, #fff0 100%);
    pointer-events: none
}

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

.brand-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0
}

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

.logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 34px;
    border: 2px solid #ffffffd9;
    background-color: #ffffff26;
    box-shadow: 2px 1px 6px -1px #44827512 inset 0 2px 4px #ffffff1f;
    flex-shrink: 0;
    padding: 8px
}

.logo-frame img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    letter-spacing: .01em
}

.brand-rule {
    width: 100%;
    border: none;
    border-top: 1px solid #ffffff4d;
    margin: 0
}

.brand-tag {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffbf;
    font-style: italic
}

.nav-cell {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px
}

.yr-badge {
    font-size: 14px;
    line-height: 1.2;
    color: #ffffffa6;
    background: #ffffff1a;
    border-radius: 5px;
    padding: 8px 16px;
    border: 1px solid #fff3
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    row-gap: 8px
}

.main-nav a {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    color: #ffffffeb;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 11px;
    border: 1px solid transparent;
    transition: background-color .1s ease-out, border-color .08s ease-out, clip-path .12s ease-out;
    clip-path: inset(0 0 0 0 round 11px);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.main-nav a:hover {
    background-color: #ffffff26;
    border-color: #ffffff4d;
    clip-path: inset(-1px -2px -1px -2px round 11px)
}

.main-nav a:focus {
    outline: 2px dashed #ffffffb3;
    outline-offset: 2px
}

.main-nav a.active {
    background-color: #fff3;
    border-color: #fff6
}

@media (max-width: 768px) {
    .hd-deck {
        padding: 32px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }

    .nav-cell {
        align-items: flex-start;
        width: 100%
    }

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

    .brand-name {
        font-size: 26px
    }
}

@media (max-width: 480px) {
    .hd-deck {
        padding: 16px
    }

    .main-nav a {
        font-size: 14px;
        padding: 8px
    }
}

.ft-plate {
    background-color: #448275
}

.ft-upper {
    background-color: #448275;
    padding: 48px 0 32px
}

.ft-lower {
    background-color: #3a7065;
    border-top: 1px solid #ffffff26;
    padding: 32px 0
}

.ft-deck {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px
}

.ft-upper-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap
}

.ft-brand-cell {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 0 0 auto
}

.ft-brand-pod {
    display: flex;
    align-items: center;
    gap: 16px
}

.ft-logo-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 20px;
    border: 2px solid #fff9;
    background-color: #ffffff1a;
    box-shadow: 2px 1px 6px -1px #44827512;
    flex-shrink: 0;
    padding: 8px
}

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

.ft-brand-name {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff
}

.ft-founding {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffa6
}

.ft-contact-cell {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 0 0 auto
}

.ft-contact-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff8c;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 8px
}

.ft-contact-cell a,
.ft-contact-cell span {
    font-size: 17px;
    line-height: 1.6;
    color: #ffffffd9;
    text-decoration: none;
    transition: color .1s ease-out
}

.ft-contact-cell a:hover {
    color: #E3EBE3
}

.ft-contact-cell a:focus {
    outline: 2px dashed #ffffffb3;
    outline-offset: 2px;
    border-radius: 1px
}

.ft-lower-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap
}

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

.ft-legal-nav a {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffffa6;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid transparent;
    transition: color .1s ease-out, border-color .08s ease-out;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.ft-legal-nav a:hover {
    color: #ffffffeb;
    border-color: #ffffff40
}

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

.ft-copy {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff80
}

@media (max-width: 768px) {
    .ft-deck {
        padding: 0 16px
    }

    .ft-upper-grid {
        flex-direction: column;
        gap: 32px
    }

    .ft-lower-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px
    }
}

@media (max-width: 480px) {
    .ft-upper {
        padding: 32px 0 16px
    }

    .ft-lower {
        padding: 16px 0
    }
}

.consent-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 2px 12px 36px -1px #4482751f;
    border-bottom: 1px solid #E3EBE3;
    font-family: 'Nunito', sans-serif
}

.consent-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 16px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

.consent-bar-text {
    font-size: 14px;
    line-height: 1.6;
    color: #2d4a45;
    flex: 1 1 300px
}

.consent-bar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0
}

.consent-prefs-panel {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px 16px;
    display: none
}

.consent-prefs-panel.open {
    display: block
}

.consent-toggles {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center
}

.consent-toggle-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
    color: #2d4a45
}

.consent-toggle-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #448275;
    cursor: pointer
}

.consent-btn {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    padding: 8px 16px;
    border-radius: 11px;
    border: 1px solid #448275;
    cursor: pointer;
    min-height: 44px;
    transition: background-color .1s ease-out, color .08s ease-out;
    clip-path: inset(0 0 0 0 round 11px)
}

.consent-btn:hover {
    clip-path: inset(-1px -2px -1px -2px round 11px)
}

.consent-btn:focus {
    outline: 2px dashed #448275;
    outline-offset: 2px
}

.consent-btn.accept {
    background-color: #448275;
    color: #fff
}

.consent-btn.accept:hover {
    background-color: #3a7065
}

.consent-btn.decline {
    background-color: transparent;
    color: #448275
}

.consent-btn.decline:hover {
    background-color: #E3EBE3
}

.consent-btn.settings {
    background-color: transparent;
    color: #448275;
    border-color: #90C09B
}

.consent-btn.settings:hover {
    background-color: #E3EBE3
}

.consent-float-btn {
    position: fixed;
    bottom: 32px;
    left: 32px;
    z-index: 999;
    width: 44px;
    height: 44px;
    border-radius: 20px;
    background-color: #448275;
    border: 2px solid #fff;
    box-shadow: 2px 4px 14px -1px #44827517;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background-color .1s ease-out
}

.consent-float-btn:hover {
    background-color: #3a7065
}

.consent-float-btn:focus {
    outline: 2px dashed #448275;
    outline-offset: 2px
}

.consent-float-icon {
    width: 22px;
    height: 22px;
    display: block
}

@media (max-width: 768px) {
    .consent-bar-inner {
        padding: 16px
    }

    .consent-prefs-panel {
        padding: 0 16px 16px
    }
}

.legal-content {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 96px
}

.legal-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #448275;
    margin-bottom: 32px;
    margin-top: 0
}

.legal-content h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #2d574d;
    margin-top: 48px;
    margin-bottom: 16px
}

.legal-content h3 {
    font-size: 26px;
    line-height: 1.2;
    color: #2d574d;
    margin-top: 32px;
    margin-bottom: 16px
}

.legal-content h4 {
    font-size: 17px;
    line-height: 1.6;
    color: #2d574d;
    margin-top: 32px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.legal-content h5 {
    font-size: 17px;
    line-height: 1.6;
    color: #448275;
    margin-top: 16px;
    margin-bottom: 8px
}

.legal-content h6 {
    font-size: 14px;
    line-height: 1.6;
    color: #448275;
    margin-top: 16px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.legal-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #1e3530;
    margin-top: 0;
    margin-bottom: 16px
}

.legal-content ul {
    margin: 16px 0 32px;
    padding-left: 32px;
    list-style: none
}

.legal-content ol {
    margin: 16px 0 32px;
    padding-left: 32px;
    list-style: decimal
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.9;
    color: #1e3530;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative
}

.legal-content ul li::before {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    background: #90C09B;
    border-radius: 1px;
    position: absolute;
    left: -8px;
    top: 12px
}

.legal-content ol li {
    font-size: 17px;
    line-height: 1.9;
    color: #1e3530;
    margin-bottom: 8px;
    padding-left: 8px
}

.legal-content ul ul,
.legal-content ol ul,
.legal-content ul ol,
.legal-content ol ol {
    margin-top: 8px;
    margin-bottom: 8px
}

.legal-content strong,
.legal-content b {
    font-weight: 700;
    color: #2d574d
}

.legal-content em,
.legal-content i {
    font-style: italic;
    color: #3a6b60
}

.legal-content a {
    color: #448275;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .1s ease-out, text-decoration-color .08s linear
}

.legal-content a:hover {
    color: #2d574d;
    text-decoration-color: #90C09B;
    clip-path: inset(0 0 -2px 0)
}

.legal-content a:visited {
    color: #5a9e8e
}

.legal-content hr {
    border: none;
    border-top: 1px solid #E3EBE3;
    margin: 48px 0;
    box-shadow: inset 0 1px 2px #44827512
}

.legal-content div {
    font-size: 17px;
    line-height: 1.9;
    color: #1e3530
}

.legal-content div+div {
    margin-top: 16px
}

@media (max-width: 1280px) {
    .legal-content {
        padding: 48px
    }
}

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

    .legal-content h1 {
        font-size: 36px
    }

    .legal-content h2 {
        font-size: 26px
    }
}

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

    .legal-content h1 {
        font-size: 36px
    }

    .legal-content h2 {
        font-size: 26px;
        margin-top: 32px
    }

    .legal-content h3 {
        font-size: 17px;
        margin-top: 32px
    }

    .legal-content ul,
    .legal-content ol {
        padding-left: 16px
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 16px 8px
    }

    .legal-content h1 {
        font-size: 26px
    }

    .legal-content h2 {
        font-size: 17px
    }

    .legal-content hr {
        margin: 32px 0
    }
}

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

.wcu .ttl-blk {
    position: relative;
    padding: 96px 48px;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, #90C09B22 0%, #fff 70%);
    overflow: hidden
}

.wcu .ttl-blk .eyebrow {
    display: inline-block;
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #448275;
    margin-bottom: 16px;
    line-height: 1.2
}

.wcu .ttl-blk h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1e2d2b;
    max-width: 720px;
    margin: 0 0 16px
}

.wcu .ttl-blk h1 .acc-word {
    background: #E3EBE3;
    padding: 0 8px;
    border-radius: 5px
}

.wcu .ttl-blk .geo-line-tl {
    position: absolute;
    top: 32px;
    left: 32px;
    width: 48px;
    height: 48px;
    border-top: 1px solid #448275;
    border-left: 1px solid #448275;
    border-radius: 1px;
    pointer-events: none
}

.wcu .ttl-blk .geo-line-br {
    position: absolute;
    bottom: 32px;
    right: 32px;
    width: 32px;
    height: 32px;
    border-bottom: 1px solid #90C09B;
    border-right: 1px solid #90C09B;
    border-radius: 1px;
    pointer-events: none
}

.wcu .ttl-blk .bg-img {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 420px;
    object-fit: cover;
    opacity: .12;
    pointer-events: none
}

.wcu .reasons {
    padding: 96px 48px;
    background: #fff
}

.wcu .reasons h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1e2d2b;
    margin: 0 0 48px;
    max-width: 560px
}

.wcu .reasons h2 .big-word {
    font-size: 48px;
    display: block
}

.wcu .r-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.wcu .r-card {
    border-top: 3px solid #448275;
    border-radius: 1px 1px 11px 11px;
    padding: 32px;
    background: #fff;
    box-shadow: 2px 4px 14px -1px #44827517;
    transition: box-shadow .12s ease-out, clip-path .1s ease-out;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    position: relative
}

.wcu .r-card:hover {
    box-shadow: 2px 12px 36px -1px #4482751f;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%)
}

.wcu .r-card h4 {
    font-size: 17px;
    line-height: 1.2;
    color: #1e2d2b;
    margin: 0 0 16px
}

.wcu .r-card p {
    font-size: 14px;
    line-height: 1.9;
    color: #3a4f4b;
    margin: 0
}

.wcu .r-card .num {
    font-size: 36px;
    line-height: 1.2;
    color: #E3EBE3;
    font-weight: 700;
    position: absolute;
    top: 16px;
    right: 16px
}

.wcu .r-card .dash-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0
}

.wcu .r-card .dash-list li {
    font-size: 14px;
    line-height: 1.9;
    color: #3a4f4b;
    padding-left: 16px;
    position: relative
}

.wcu .r-card .dash-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #448275
}

.wcu .diff {
    padding: 96px 48px;
    background: linear-gradient(0deg, #fff 0%, #E3EBE3 100%);
    position: relative
}

.wcu .diff::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 23px, #4482750d 23px, #4482750d 24px), repeating-linear-gradient(90deg, transparent, transparent 23px, #4482750d 23px, #4482750d 24px);
    pointer-events: none
}

.wcu .diff-inner {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start;
    position: relative
}

.wcu .diff-text {
    flex: 1 1 0
}

.wcu .diff-text h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1e2d2b;
    margin: 0 0 32px
}

.wcu .diff-text h2 .big-word {
    font-size: 48px;
    display: block
}

.wcu .q-anchor {
    font-size: 96px;
    line-height: 1;
    color: #90C09B;
    opacity: .4;
    display: block;
    margin-bottom: 8px;
    font-style: normal
}

.wcu .diff-text blockquote {
    margin: 0 0 32px;
    padding: 0
}

.wcu .diff-text blockquote p {
    font-size: 17px;
    line-height: 1.9;
    color: #2b3e3a;
    margin: 0
}

.wcu .diff-text .sub-p {
    font-size: 14px;
    line-height: 1.9;
    color: #3a4f4b;
    margin: 0 0 16px
}

.wcu .diff-img-col {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.wcu .img-wrap {
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f
}

.wcu .img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform .12s ease-out
}

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

.wcu .img-wrap2 img {
    height: 180px
}

.wcu .stats-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 32px
}

.wcu .stat-item {
    flex: 1 1 0;
    background: #fff;
    border-radius: 11px;
    padding: 16px;
    box-shadow: 2px 1px 6px -1px #44827512;
    text-align: center
}

.wcu .stat-item .s-num {
    font-size: 36px;
    line-height: 1.2;
    color: #448275;
    display: block;
    font-weight: 700
}

.wcu .stat-item .s-lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #3a4f4b
}

.wcu .exp {
    padding: 96px 48px;
    background: #1e2d2b
}

.wcu .exp h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #E3EBE3;
    margin: 0 0 8px
}

.wcu .exp h2 .big-word {
    font-size: 48px;
    display: block;
    color: #90C09B
}

.wcu .exp .sub-lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #90C09B;
    margin: 0 0 48px
}

.wcu .exp-layout {
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.wcu .exp-wide {
    flex: 0 0 640px
}

.wcu .exp-narrow {
    flex: 1 1 0
}

.wcu .exp-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f
}

.wcu .exp-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform .14s ease-out
}

.wcu .exp-img-wrap:hover img {
    transform: scale(1.04)
}

.wcu .exp-caption {
    font-size: 14px;
    line-height: 1.6;
    color: #90C09B;
    margin: 16px 0 0
}

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

.wcu .disc-list li {
    background: #90c09b14;
    border-radius: 11px;
    padding: 16px;
    position: relative
}

.wcu .disc-list li h5 {
    font-size: 17px;
    line-height: 1.2;
    color: #E3EBE3;
    margin: 0 0 8px
}

.wcu .disc-list li p {
    font-size: 14px;
    line-height: 1.9;
    color: #90C09B;
    margin: 0
}

.wcu .disc-list li .dot {
    width: 8px;
    height: 8px;
    background: #448275;
    border-radius: 1px;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle
}

.wcu .flicker-outline {
    animation: flk 3.5s ease-in-out infinite;
    outline-offset: 4px;
    border-radius: 5px
}

@keyframes flk {

    0%,
    100% {
        outline: 2px solid transparent
    }

    48% {
        outline: 2px solid transparent
    }

    50% {
        outline: 2px solid #44827559
    }

    52% {
        outline: 2px solid transparent
    }

    54% {
        outline: 2px solid #44827533
    }

    56% {
        outline: 2px solid transparent
    }
}

.wcu .bg-anim {
    animation: bgshift 8s ease-in-out infinite
}

@keyframes bgshift {

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

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

@media (max-width: 1024px) {
    .wcu .r-grid {
        grid-template-columns: 1fr 1fr
    }

    .wcu .diff-inner {
        flex-direction: column
    }

    .wcu .diff-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .wcu .exp-layout {
        flex-direction: column
    }

    .wcu .exp-wide {
        flex: 0 0 auto;
        width: 100%
    }

    .wcu .ttl-blk .bg-img {
        display: none
    }
}

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

    .wcu .reasons {
        padding: 48px 16px
    }

    .wcu .diff {
        padding: 48px 16px
    }

    .wcu .exp {
        padding: 48px 16px
    }

    .wcu .r-grid {
        grid-template-columns: 1fr
    }

    .wcu .ttl-blk h1 {
        font-size: 36px
    }

    .wcu .stats-row {
        flex-direction: column
    }

    .wcu .diff-img-col {
        display: none
    }
}

@media (max-width: 480px) {
    .wcu .ttl-blk {
        padding: 32px 16px
    }

    .wcu .reasons,
    .wcu .diff,
    .wcu .exp {
        padding: 32px 16px
    }

    .wcu .ttl-blk h1 {
        font-size: 26px
    }

    .wcu .reasons h2,
    .wcu .diff-text h2,
    .wcu .exp h2 {
        font-size: 26px
    }

    .wcu .reasons h2 .big-word,
    .wcu .diff-text h2 .big-word,
    .wcu .exp h2 .big-word {
        font-size: 36px
    }
}

.st-idx {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.st-idx .drop-1 {
    opacity: 0;
    transform: translateY(-28px);
    animation: dropIn .55s ease-out .05s forwards
}

.st-idx .drop-2 {
    opacity: 0;
    transform: translateY(-28px);
    animation: dropIn .55s ease-out .18s forwards
}

.st-idx .drop-3 {
    opacity: 0;
    transform: translateY(-28px);
    animation: dropIn .55s ease-out .32s forwards
}

.st-idx .drop-4 {
    opacity: 0;
    transform: translateY(-28px);
    animation: dropIn .55s ease-out .46s forwards
}

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

.st-idx .fade-up {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp .5s ease-out forwards
}

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

.st-idx .acc-word {
    display: inline;
    background: #90C09B;
    padding: 0 6px 2px;
    border-radius: 5px;
    color: #1b3d35
}

.st-idx .divider-brand {
    width: 100%;
    height: 2px;
    background: #448275;
    border: none;
    margin: 0
}

.st-idx .divider-light {
    width: 100%;
    height: 2px;
    background: #E3EBE3;
    border: none;
    margin: 0
}

.st-idx .t-blk {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 0;
    background: #fff;
    position: relative
}

.st-idx .t-blk .t-img-col {
    flex: 0 0 46%;
    position: relative;
    border-right: 2px solid #448275
}

.st-idx .t-blk .t-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.88) contrast(1.05);
    box-shadow: 2px 12px 36px -1px #4482751f
}

.st-idx .t-blk .t-img-col .img-texture {
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, #4482752e 0%, #fff0 60%);
    pointer-events: none
}

.st-idx .t-blk .t-img-col .vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, #44827521 0%, #0000 70%);
    pointer-events: none
}

.st-idx .t-blk .t-img-col .dots-path {
    position: absolute;
    bottom: 32px;
    right: -18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2
}

.st-idx .t-blk .t-img-col .dots-path span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: #448275;
    opacity: .7
}

.st-idx .t-blk .t-img-col .dots-path span:nth-child(2) {
    opacity: .45;
    width: 6px;
    height: 6px;
    margin-left: 1px
}

.st-idx .t-blk .t-img-col .dots-path span:nth-child(3) {
    opacity: .25;
    width: 5px;
    height: 5px;
    margin-left: 2px
}

.st-idx .t-blk .t-txt-col {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    background: #fff
}

.st-idx .t-blk .t-txt-col .t-label {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #448275;
    font-weight: 600
}

.st-idx .t-blk .t-txt-col h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1b3d35;
    margin: 0;
    font-weight: 800
}

.st-idx .t-blk .t-txt-col h1 .first-word {
    font-size: 48px;
    display: block
}

.st-idx .t-blk .t-txt-col .t-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #2d5a50;
    margin: 0;
    max-width: 420px
}

.st-idx .t-blk .t-txt-col .t-pts {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.st-idx .t-blk .t-txt-col .t-pts li {
    font-size: 17px;
    line-height: 1.6;
    color: #2d5a50;
    padding-left: 16px;
    position: relative
}

.st-idx .t-blk .t-txt-col .t-pts li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #448275;
    font-weight: 700
}

.st-idx .t-blk .t-txt-col .t-cta-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 8px;
    flex-wrap: wrap
}

.st-idx .t-blk .t-txt-col .btn-pri {
    display: inline-block;
    padding: 16px 32px;
    background: #448275;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: lowercase;
    border-radius: 11px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path .1s ease-out, background .1s ease-out;
    box-shadow: 2px 4px 14px -1px #44827517
}

.st-idx .t-blk .t-txt-col .btn-pri:hover {
    background: #356860;
    clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%)
}

.st-idx .t-blk .t-txt-col .btn-pri:active {
    background: #2a5450
}

.st-idx .t-blk .t-txt-col .btn-sec {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: #448275;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: lowercase;
    border-radius: 11px;
    border: 2px solid #448275;
    cursor: pointer;
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path .12s ease-out, background .12s ease-out
}

.st-idx .t-blk .t-txt-col .btn-sec:hover {
    background: #E3EBE3;
    clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%)
}

.st-idx .outcomes {
    background: linear-gradient(to top, #448275 0%, #fff 100%);
    padding: 96px 48px;
    position: relative
}

.st-idx .outcomes .out-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.st-idx .outcomes .out-left {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative
}

.st-idx .outcomes .out-left::after {
    content: "";
    position: absolute;
    top: 0;
    right: -24px;
    width: 2px;
    height: 100%;
    background: #448275;
    opacity: .25
}

.st-idx .outcomes .out-left h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b3d35;
    margin: 0;
    font-weight: 800
}

.st-idx .outcomes .out-left h2 .big-word {
    font-size: 48px;
    display: block;
    line-height: 1.2
}

.st-idx .outcomes .out-left .out-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #2d5a50;
    margin: 0
}

.st-idx .outcomes .out-left .img-wrap {
    margin-top: 16px;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f;
    position: relative
}

.st-idx .outcomes .out-left .img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block
}

.st-idx .outcomes .out-left .img-wrap .vig {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #0000 40%, #1b3d3559 100%);
    pointer-events: none
}

.st-idx .outcomes .out-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.st-idx .outcomes .out-right h3 {
    font-size: 26px;
    line-height: 1.2;
    color: #1b3d35;
    margin: 0;
    font-weight: 700
}

.st-idx .outcomes .pyramid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px
}

.st-idx .outcomes .pyramid .pyr-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.st-idx .outcomes .pyramid .pyr-bar {
    height: 48px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .04em;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 2px 4px 14px -1px #44827517;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path .1s ease-out
}

.st-idx .outcomes .pyramid .pyr-bar:hover {
    clip-path: polygon(0 0, 100% 0, 96% 100%, 4% 100%)
}

.st-idx .outcomes .pyramid .pyr-row:nth-child(1) .pyr-bar {
    width: 100%;
    background: #1b3d35
}

.st-idx .outcomes .pyramid .pyr-row:nth-child(2) .pyr-bar {
    width: 88%;
    background: #2d5a50
}

.st-idx .outcomes .pyramid .pyr-row:nth-child(3) .pyr-bar {
    width: 74%;
    background: #448275
}

.st-idx .outcomes .pyramid .pyr-row:nth-child(4) .pyr-bar {
    width: 58%;
    background: #5a9e8a
}

.st-idx .outcomes .pyramid .pyr-row:nth-child(5) .pyr-bar {
    width: 42%;
    background: #90C09B
}

.st-idx .outcomes .pyramid .pyr-label {
    font-size: 14px;
    line-height: 1.6;
    color: #2d5a50;
    flex: 1
}

.st-idx .exp-blk {
    background: #E3EBE3;
    padding: 96px 48px;
    position: relative
}

.st-idx .exp-blk .exp-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px
}

.st-idx .exp-blk .exp-head {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px
}

.st-idx .exp-blk .exp-head h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b3d35;
    margin: 0;
    font-weight: 800
}

.st-idx .exp-blk .exp-head p {
    font-size: 17px;
    line-height: 1.6;
    color: #2d5a50;
    margin: 0;
    max-width: 560px
}

.st-idx .exp-blk .exp-card {
    background: #fff;
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 2px 4px 14px -1px #44827517;
    display: flex;
    flex-direction: column;
    position: relative
}

.st-idx .exp-blk .exp-card::before {
    content: "";
    display: block;
    height: 4px;
    background: #448275;
    border-radius: 11px 11px 0 0
}

.st-idx .exp-blk .exp-card .card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1
}

.st-idx .exp-blk .exp-card .card-body .person-name {
    font-size: 17px;
    font-weight: 700;
    color: #1b3d35;
    line-height: 1.2
}

.st-idx .exp-blk .exp-card .card-body .person-role {
    font-size: 14px;
    color: #448275;
    line-height: 1.2;
    margin-top: -8px
}

.st-idx .exp-blk .exp-card .card-body .person-quote {
    font-size: 17px;
    line-height: 1.6;
    color: #2d5a50;
    margin: 0
}

.st-idx .exp-blk .exp-card .card-slide-label {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 40px;
    padding: 0 32px 16px
}

.st-idx .exp-blk .exp-card .slide-inner {
    font-size: 14px;
    font-weight: 700;
    color: #448275;
    letter-spacing: .06em;
    text-transform: uppercase;
    transform: translateX(-110%);
    transition: transform .13s ease-out;
    white-space: nowrap
}

.st-idx .exp-blk .exp-card:hover .slide-inner {
    transform: translateX(0)
}

.st-idx .exp-blk .exp-img-card {
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f;
    position: relative;
    min-height: 280px
}

.st-idx .exp-blk .exp-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.st-idx .exp-blk .exp-img-card .vig2 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #0000 35%, #1b3d3566 100%);
    pointer-events: none
}

.st-idx .diff-blk {
    background: #fff;
    padding: 96px 48px;
    position: relative
}

.st-idx .diff-blk .diff-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: flex-start
}

.st-idx .diff-blk .diff-right {
    flex: 0 0 44%;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.st-idx .diff-blk .diff-right h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b3d35;
    margin: 0;
    font-weight: 800
}

.st-idx .diff-blk .diff-right h2 .big-word {
    font-size: 48px;
    display: block
}

.st-idx .diff-blk .diff-right .diff-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #2d5a50;
    margin: 0
}

.st-idx .diff-blk .diff-right .img-wrap2 {
    border-radius: 11px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f;
    margin-top: 16px;
    position: relative
}

.st-idx .diff-blk .diff-right .img-wrap2 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

.st-idx .diff-blk .diff-right .img-wrap2 .vig3 {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #0000 40%, #1b3d3561 100%);
    pointer-events: none
}

.st-idx .diff-blk .diff-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.st-idx .diff-blk .diff-left h3 {
    font-size: 26px;
    line-height: 1.2;
    color: #1b3d35;
    margin: 0;
    font-weight: 700
}

.st-idx .diff-blk .diff-items {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.st-idx .diff-blk .diff-item {
    padding: 16px;
    border-radius: 11px;
    background: #f4f8f5;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 3px solid #90C09B;
    box-shadow: 2px 1px 6px -1px #44827512;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: clip-path .1s ease-out, background .1s ease-out
}

.st-idx .diff-blk .diff-item:hover {
    background: #E3EBE3;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%)
}

.st-idx .diff-blk .diff-item h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1b3d35;
    margin: 0;
    line-height: 1.2
}

.st-idx .diff-blk .diff-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #2d5a50;
    margin: 0
}

.st-idx .diff-blk .diff-note {
    font-size: 14px;
    line-height: 1.6;
    color: #448275;
    margin: 0;
    padding: 16px;
    border-radius: 5px;
    background: #E3EBE3
}

@media (max-width: 1024px) {
    .st-idx .t-blk {
        flex-direction: column
    }

    .st-idx .t-blk .t-img-col {
        flex: 0 0 auto;
        height: 280px;
        border-right: none;
        border-bottom: 2px solid #448275
    }

    .st-idx .t-blk .t-img-col .dots-path {
        bottom: 16px;
        right: 16px;
        flex-direction: row
    }

    .st-idx .t-blk .t-txt-col {
        padding: 32px
    }

    .st-idx .outcomes .out-inner {
        flex-direction: column;
        gap: 32px
    }

    .st-idx .outcomes .out-left::after {
        display: none
    }

    .st-idx .outcomes .out-left {
        flex: 0 0 auto
    }

    .st-idx .exp-blk .exp-inner {
        grid-template-columns: 1fr 1fr
    }

    .st-idx .exp-blk .exp-img-card {
        display: none
    }

    .st-idx .diff-blk .diff-inner {
        flex-direction: column;
        gap: 32px
    }

    .st-idx .diff-blk .diff-right {
        flex: 0 0 auto
    }
}

@media (max-width: 768px) {
    .st-idx .t-blk .t-img-col {
        display: none
    }

    .st-idx .t-blk .t-txt-col {
        padding: 32px 16px
    }

    .st-idx .t-blk .t-txt-col h1 {
        font-size: 36px
    }

    .st-idx .t-blk .t-txt-col h1 .first-word {
        font-size: 36px
    }

    .st-idx .outcomes {
        padding: 48px 16px
    }

    .st-idx .exp-blk {
        padding: 48px 16px
    }

    .st-idx .exp-blk .exp-inner {
        grid-template-columns: 1fr
    }

    .st-idx .diff-blk {
        padding: 48px 16px
    }

    .st-idx .diff-blk .diff-right .img-wrap2 {
        display: none
    }

    .st-idx .outcomes .out-left .img-wrap {
        display: none
    }
}

@media (max-width: 480px) {
    .st-idx .t-blk .t-txt-col h1 {
        font-size: 26px
    }

    .st-idx .t-blk .t-txt-col h1 .first-word {
        font-size: 26px
    }

    .st-idx .outcomes .out-left h2 .big-word {
        font-size: 36px
    }

    .st-idx .t-cta-row {
        flex-direction: column
    }

    .st-idx .outcomes .pyramid .pyr-bar {
        font-size: 12px;
        padding: 0 8px;
        height: 40px
    }
}

.ct-us {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.ct-us .pg-open {
    background: #fff;
    padding: 96px 48px 48px;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.ct-us .pg-open::before {
    content: "";
    position: absolute;
    top: 32px;
    left: 48px;
    width: 80px;
    height: 1px;
    background: #448275
}

.ct-us .pg-open::after {
    content: "";
    position: absolute;
    top: 32px;
    left: 48px;
    width: 1px;
    height: 60px;
    background: #448275
}

.ct-us .pg-lbl {
    font-size: 14px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #448275;
    display: block;
    margin-bottom: 16px;
    margin-top: 32px
}

.ct-us .pg-h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1b2b28;
    margin: 0 0 16px;
    font-weight: 800
}

.ct-us .pg-h1 .acc {
    display: inline-block;
    background: #E3EBE3;
    padding: 0 8px;
    border-radius: 5px
}

.ct-us .pg-sub {
    font-size: 17px;
    line-height: 1.6;
    color: #3a4a47;
    margin: 0 0 32px;
    max-width: 480px
}

.ct-us .pg-meta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px
}

.ct-us .meta-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px
}

.ct-us .meta-ico {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    background: #E3EBE3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ct-us .meta-ico svg {
    width: 18px;
    height: 18px;
    stroke: #448275;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ct-us .meta-val {
    font-size: 14px;
    line-height: 1.6;
    color: #2c3c39
}

.ct-us .meta-val strong {
    display: block;
    font-size: 14px;
    color: #448275;
    font-weight: 600;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.ct-us .meta-val a {
    color: #2c3c39;
    text-decoration: none;
    transition: color .1s ease-out
}

.ct-us .meta-val a:hover {
    color: #448275
}

.ct-us .pg-img-col {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 32px
}

.ct-us .pg-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f;
    width: 100%;
    max-width: 520px;
    position: relative
}

.ct-us .pg-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #44827514, #fff0);
    border-radius: 20px;
    pointer-events: none
}

.ct-us .pg-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform .12s ease-out, filter .12s ease-out;
    filter: blur(0px)
}

.ct-us .pg-img-wrap img:hover {
    transform: scale(1.025);
    filter: brightness(1.04)
}

.ct-us .corner-dec {
    position: absolute;
    bottom: -16px;
    right: -8px;
    width: 64px;
    height: 64px;
    pointer-events: none
}

.ct-us .corner-dec svg {
    width: 64px;
    height: 64px;
    stroke: #90C09B;
    fill: none;
    stroke-width: 1.2;
    opacity: .6
}

.ct-us .form-band {
    background: #E3EBE3;
    padding: 64px 48px;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 50% 100%, 0 calc(100% - 24px));
    padding-bottom: 80px
}

.ct-us .form-band-inner {
    max-width: 860px;
    margin: 0 auto
}

.ct-us .form-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #448275;
    font-weight: 600;
    margin-bottom: 8px;
    display: block
}

.ct-us .form-h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1b2b28;
    margin: 0 0 8px;
    font-weight: 700
}

.ct-us .form-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #3a4a47;
    margin: 0 0 32px
}

.ct-us .rating-row {
    margin-bottom: 32px
}

.ct-us .rating-lbl {
    font-size: 14px;
    color: #2c3c39;
    font-weight: 600;
    display: block;
    margin-bottom: 16px
}

.ct-us .stars-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.ct-us .star-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.ct-us .star-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ct-us .star-opt label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 11px;
    border: 1.5px solid #90C09B;
    background: #fff;
    font-size: 14px;
    color: #3a4a47;
    transition: background .1s ease-out, border-color .1s ease-out, box-shadow .09s linear;
    user-select: none;
    min-width: 56px;
    text-align: center
}

.ct-us .star-opt label svg {
    width: 22px;
    height: 22px;
    fill: #90C09B;
    stroke: none;
    transition: fill .09s linear
}

.ct-us .star-opt input[type="radio"]:checked+label {
    background: #448275;
    border-color: #448275;
    color: #fff;
    box-shadow: 2px 4px 14px -1px #44827517
}

.ct-us .star-opt input[type="radio"]:checked+label svg {
    fill: #fff
}

.ct-us .star-opt label:hover {
    border-color: #448275;
    background: #f0f6f4;
    clip-path: polygon(4% 0%, 96% 0%, 100% 4%, 100% 96%, 96% 100%, 4% 100%, 0% 96%, 0% 4%)
}

.ct-us .star-opt input[type="radio"]:focus-visible+label {
    outline: 2px solid #448275;
    outline-offset: 2px
}

.ct-us .f-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px
}

.ct-us .f-full {
    grid-column: 1 / -1
}

.ct-us .f-field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ct-us .f-field label {
    font-size: 14px;
    font-weight: 600;
    color: #2c3c39;
    letter-spacing: .03em
}

.ct-us .f-field input,
.ct-us .f-field textarea,
.ct-us .f-field select {
    padding: 16px;
    border: 1.5px solid #90C09B;
    border-radius: 11px;
    background: #fff;
    font-size: 17px;
    color: #1b2b28;
    transition: border-color .1s ease-out, box-shadow .1s ease-out;
    box-shadow: inset 0 2px 4px #4482750d;
    outline: none;
    width: 100%;
    box-sizing: border-box
}

.ct-us .f-field input::placeholder,
.ct-us .f-field textarea::placeholder {
    color: #2c3c398c;
    font-style: italic
}

.ct-us .f-field input:focus,
.ct-us .f-field textarea:focus,
.ct-us .f-field select:focus {
    border-color: #448275;
    box-shadow: 2px 4px 14px -1px #44827517 inset 0 2px 4px #4482750f
}

.ct-us .f-field textarea {
    resize: vertical;
    min-height: 96px
}

.ct-us .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 16px
}

.ct-us .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #448275;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer
}

.ct-us .privacy-row label {
    font-size: 14px;
    line-height: 1.6;
    color: #3a4a47;
    cursor: pointer
}

.ct-us .privacy-row label a {
    color: #448275;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color .1s ease-out
}

.ct-us .privacy-row label a:hover {
    color: #2c6357
}

.ct-us .btn-submit {
    type: submit;
    background: #448275;
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 16px 48px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: .01em;
    box-shadow: 2px 4px 14px -1px #44827517;
    transition: background .1s ease-out, box-shadow .1s ease-out, clip-path .09s linear;
    position: relative;
    overflow: hidden;
    display: inline-block
}

.ct-us .btn-submit:hover {
    background: #2c6357;
    box-shadow: 2px 12px 36px -1px #4482751f;
    clip-path: polygon(2% 0%, 98% 0%, 100% 2%, 100% 98%, 98% 100%, 2% 100%, 0% 98%, 0% 2%)
}

.ct-us .btn-submit:active {
    background: #1e4a40
}

.ct-us .btn-submit:focus-visible {
    outline: 2px solid #1b2b28;
    outline-offset: 3px
}

.ct-us .ripple-el {
    position: absolute;
    border-radius: 34px;
    background: #ffffff47;
    width: 0;
    height: 0;
    transform: translate(-50%, -50%);
    animation: rpl .45s ease-out forwards;
    pointer-events: none
}

@keyframes rpl {
    to {
        width: 320px;
        height: 320px;
        opacity: 0
    }
}

.ct-us .extra-band {
    background: #fff;
    padding: 48px 48px 96px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start
}

.ct-us .extra-col-l {
    display: flex;
    flex-direction: column;
    gap: 32px
}

.ct-us .extra-h3 {
    font-size: 26px;
    line-height: 1.2;
    color: #1b2b28;
    margin: 0 0 8px;
    font-weight: 700
}

.ct-us .extra-p {
    font-size: 17px;
    line-height: 1.6;
    color: #3a4a47;
    margin: 0
}

.ct-us .pcons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.ct-us .pc-col {
    background: #E3EBE3;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 2px 1px 6px -1px #44827512
}

.ct-us .pc-col.neg {
    background: #fff;
    border: 1.5px solid #E3EBE3
}

.ct-us .pc-head {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #448275;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px
}

.ct-us .pc-head.neg-head {
    color: #7a6060
}

.ct-us .pc-ind {
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: #448275;
    flex-shrink: 0
}

.ct-us .pc-ind.neg-ind {
    background: #c09090
}

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

.ct-us .pc-list li {
    font-size: 14px;
    line-height: 1.6;
    color: #2c3c39;
    padding-left: 16px;
    position: relative
}

.ct-us .pc-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #448275;
    font-weight: 700
}

.ct-us .pc-list.neg-list li::before {
    color: #c09090
}

.ct-us .nums-row {
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: center;
    padding: 32px;
    background: #1b2b28;
    border-radius: 20px;
    box-shadow: 2px 12px 36px -1px #4482751f
}

.ct-us .num-pair {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px
}

.ct-us .num-before {
    font-size: 36px;
    font-weight: 800;
    color: #90C09B;
    line-height: 1.2
}

.ct-us .num-arr {
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

.ct-us .num-arr svg {
    width: 24px;
    height: 24px;
    stroke: #E3EBE3;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ct-us .num-after {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2
}

.ct-us .num-desc {
    font-size: 14px;
    color: #90C09B;
    line-height: 1.6;
    flex: 1
}

.ct-us .reveal {
    opacity: 0;
    transform: scale(0.97);
    animation: rev .35s ease-out forwards
}

.ct-us .reveal.d1 {
    animation-delay: .08s
}

.ct-us .reveal.d2 {
    animation-delay: .16s
}

.ct-us .reveal.d3 {
    animation-delay: .22s
}

.ct-us .reveal.d4 {
    animation-delay: .3s
}

@keyframes rev {
    to {
        opacity: 1;
        transform: scale(1)
    }
}

.ct-us .curve-div {
    width: 100%;
    height: 32px;
    background: #E3EBE3;
    position: relative;
    margin-top: -1px
}

.ct-us .curve-div svg {
    width: 100%;
    height: 32px;
    display: block
}

@media (max-width: 1024px) {
    .ct-us .pg-open {
        grid-template-columns: 1fr;
        padding: 64px 32px 32px
    }

    .ct-us .pg-img-col {
        display: none
    }

    .ct-us .extra-band {
        grid-template-columns: 1fr;
        padding: 48px 32px 64px
    }

    .ct-us .pcons {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .ct-us .pg-open {
        padding: 48px 16px 32px
    }

    .ct-us .pg-h1 {
        font-size: 36px
    }

    .ct-us .form-band {
        padding: 48px 16px 64px;
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), 50% 100%, 0 calc(100% - 16px))
    }

    .ct-us .f-grid {
        grid-template-columns: 1fr
    }

    .ct-us .f-full {
        grid-column: 1
    }

    .ct-us .extra-band {
        padding: 32px 16px 48px
    }

    .ct-us .nums-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start
    }

    .ct-us .stars-group {
        gap: 8px
    }

    .ct-us .form-h2 {
        font-size: 26px
    }
}

@media (max-width: 480px) {
    .ct-us .pg-h1 {
        font-size: 26px
    }

    .ct-us .btn-submit {
        width: 100%;
        text-align: center
    }

    .ct-us .pcons {
        grid-template-columns: 1fr
    }
}

.ab-us {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden
}

.ab-us .diagonal-reveal {
    animation: diag-fade .12s ease-out forwards;
    opacity: 0
}

.ab-us .diagonal-reveal:nth-child(1) {
    animation-delay: .04s
}

.ab-us .diagonal-reveal:nth-child(2) {
    animation-delay: .08s
}

.ab-us .diagonal-reveal:nth-child(3) {
    animation-delay: .12s
}

.ab-us .diagonal-reveal:nth-child(4) {
    animation-delay: .16s
}

@keyframes diag-fade {
    from {
        opacity: 0;
        transform: translate(-12px, 12px)
    }

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

.ab-us .tone-cycle {
    animation: tone-shift 6s ease-in-out infinite alternate
}

@keyframes tone-shift {
    from {
        background-color: #E3EBE3
    }

    to {
        background-color: #d4e3d6
    }
}

.ab-us ::selection {
    background: #44827526;
    color: #1d3b35
}

.ab-us input::placeholder,
.ab-us textarea::placeholder {
    font-style: italic;
    opacity: .55
}

.ab-us .acc-word {
    background: #448275;
    color: #fff;
    padding: 0 8px;
    border-radius: 5px;
    display: inline
}

.ab-us .dash-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.ab-us .dash-list li {
    padding: 8px 0;
    padding-left: 16px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #2a3a36
}

.ab-us .dash-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #448275
}

.ab-us .btn-base {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 11px;
    font-size: 17px;
    line-height: 1.2;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: clip-path .1s ease-out, box-shadow .1s ease-out;
    text-decoration: none;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.ab-us .btn-base:hover {
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%)
}

.ab-us .btn-base:focus {
    outline: 2px solid #448275;
    outline-offset: 3px
}

.ab-us .btn-prim {
    background: #448275;
    color: #fff;
    box-shadow: 2px 4px 14px -1px #44827517
}

.ab-us .btn-prim:hover {
    background: #376b61;
    box-shadow: 2px 12px 36px -1px #4482751f;
    color: #fff
}

.ab-us .btn-prim:active {
    background: #2e5c53
}

.ab-us .ripple-wrap {
    position: relative;
    overflow: hidden
}

.ab-us .top-band {
    background: #fff;
    padding: 96px 48px 48px;
    position: relative
}

.ab-us .top-band .geo-shape-a {
    position: absolute;
    top: 32px;
    right: 80px;
    width: 80px;
    height: 80px;
    border: 2px solid #4482752e;
    border-radius: 20px;
    transform: rotate(18deg);
    pointer-events: none
}

.ab-us .top-band .geo-shape-b {
    position: absolute;
    bottom: 48px;
    right: 240px;
    width: 40px;
    height: 40px;
    background: #90c09b24;
    border-radius: 11px;
    transform: rotate(-12deg);
    pointer-events: none
}

.ab-us .top-band .geo-shape-c {
    position: absolute;
    top: 96px;
    right: 48px;
    width: 18px;
    height: 18px;
    background: #44827538;
    border-radius: 5px;
    transform: rotate(30deg);
    pointer-events: none
}

.ab-us .top-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    max-width: 1200px
}

.ab-us .top-text {
    flex: 1 1 0;
    min-width: 0
}

.ab-us .eyebrow {
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #448275;
    margin-bottom: 16px;
    display: block
}

.ab-us .top-h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1d3b35;
    margin: 0 0 16px
}

.ab-us .top-h1 .first-word {
    font-size: 48px;
    color: #448275
}

.ab-us .top-card {
    flex: 0 0 340px;
    width: 340px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f;
    position: relative
}

.ab-us .top-card img {
    width: 340px;
    height: 260px;
    object-fit: cover;
    display: block;
    filter: saturate(1.3) hue-rotate(0deg) sepia(0.18);
    transition: filter .15s ease-out, transform .1s ease-out
}

.ab-us .top-card:hover img {
    filter: saturate(1.6) sepia(0.08);
    transform: scale(1.02)
}

.ab-us .top-card .card-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, #448275b3, transparent);
    height: 80px;
    border-radius: 0 0 20px 20px
}

.ab-us .story-band {
    background: #E3EBE3;
    padding: 96px 48px;
    position: relative
}

.ab-us .story-band::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: #448275;
    border-radius: 1px
}

.ab-us .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px
}

.ab-us .story-text-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ab-us .story-h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1d3b35;
    margin: 0 0 16px
}

.ab-us .story-p {
    font-size: 17px;
    line-height: 1.6;
    color: #2a3a36;
    margin: 0
}

.ab-us .story-img-col {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ab-us .story-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 14px -1px #44827517
}

.ab-us .story-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: blur(2px);
    transition: filter .12s ease-out
}

.ab-us .story-img-wrap:hover img {
    filter: blur(0)
}

.ab-us .story-stat-row {
    display: flex;
    flex-direction: row;
    gap: 16px
}

.ab-us .story-stat {
    flex: 1 1 0;
    background: #fff;
    border-radius: 11px;
    padding: 16px;
    text-align: center;
    box-shadow: 2px 1px 6px -1px #44827512
}

.ab-us .story-stat .stat-num {
    font-size: 36px;
    line-height: 1.2;
    color: #448275;
    display: block
}

.ab-us .story-stat .stat-lbl {
    font-size: 14px;
    line-height: 1.6;
    color: #4a6660
}

.ab-us .process-band {
    background: #fff;
    padding: 96px 48px;
    position: relative
}

.ab-us .process-band .dot-group {
    position: absolute;
    bottom: 48px;
    left: 48px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    pointer-events: none
}

.ab-us .process-band .dot-group span {
    display: block;
    border-radius: 34px;
    background: #90c09b73
}

.ab-us .process-band .dot-group span:nth-child(1) {
    width: 8px;
    height: 8px
}

.ab-us .process-band .dot-group span:nth-child(2) {
    width: 14px;
    height: 14px
}

.ab-us .process-band .dot-group span:nth-child(3) {
    width: 10px;
    height: 10px
}

.ab-us .process-band .dot-group span:nth-child(4) {
    width: 6px;
    height: 6px
}

.ab-us .process-h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1d3b35;
    margin: 0 0 48px;
    max-width: 600px
}

.ab-us .process-steps {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow-x: auto
}

.ab-us .proc-step {
    flex: 1 1 0;
    min-width: 160px;
    background: #E3EBE3;
    border-radius: 11px;
    padding: 32px 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background-color .1s ease-out, box-shadow .1s ease-out
}

.ab-us .proc-step:hover {
    background: #d0dfd3;
    box-shadow: 2px 4px 14px -1px #44827517
}

.ab-us .proc-step .step-num {
    font-size: 36px;
    line-height: 1.2;
    color: #4482754d;
    font-weight: 700
}

.ab-us .proc-step .step-label {
    font-size: 17px;
    line-height: 1.6;
    color: #1d3b35;
    font-weight: 600
}

.ab-us .proc-step .step-desc {
    font-size: 14px;
    line-height: 1.9;
    color: #4a6660
}

.ab-us .proc-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
    color: #448275
}

.ab-us .proc-arrow svg {
    width: 20px;
    height: 20px
}

.ab-us .team-band {
    padding: 96px 48px;
    position: relative;
    background: linear-gradient(to top, #448275, #fff)
}

.ab-us .team-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #90C09B;
    border-radius: 1px
}

.ab-us .team-h2 {
    font-size: 36px;
    line-height: 1.2;
    color: #1d3b35;
    margin: 0 0 48px
}

.ab-us .team-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    max-width: 1200px
}

.ab-us .team-member {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 14px -1px #44827517;
    display: flex;
    flex-direction: column;
    transition: box-shadow .1s ease-out, clip-path .1s ease-out;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.ab-us .team-member:hover {
    box-shadow: 2px 12px 36px -1px #4482751f;
    clip-path: polygon(0 0, 100% 0, 98% 100%, 2% 100%)
}

.ab-us .member-img-wrap {
    overflow: hidden;
    height: 200px
}

.ab-us .member-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: blur(3px);
    transition: filter .15s ease-out
}

.ab-us .team-member:hover .member-img-wrap img {
    filter: blur(0)
}

.ab-us .member-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto
}

.ab-us .member-name {
    font-size: 17px;
    line-height: 1.2;
    color: #1d3b35;
    font-weight: 700;
    margin: 0
}

.ab-us .member-role {
    font-size: 14px;
    line-height: 1.6;
    color: #448275;
    margin: 0
}

.ab-us .member-bio {
    font-size: 14px;
    line-height: 1.9;
    color: #4a6660;
    margin: 0
}

.ab-us .team-extra {
    margin-top: 48px;
    display: flex;
    flex-direction: row;
    gap: 32px;
    align-items: flex-start;
    max-width: 1200px
}

.ab-us .team-extra-text {
    flex: 1 1 0;
    min-width: 0
}

.ab-us .team-extra-text p {
    font-size: 17px;
    line-height: 1.6;
    color: #1d3b35;
    margin: 0 0 16px
}

.ab-us .team-extra-img {
    flex: 0 0 340px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 12px 36px -1px #4482751f
}

.ab-us .team-extra-img img {
    width: 340px;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: blur(2px);
    transition: filter .12s ease-out
}

.ab-us .team-extra-img:hover img {
    filter: blur(0)
}

.ab-us .corner-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
    border-radius: 0 0 0 20px
}

.ab-us .corner-pattern svg {
    position: absolute;
    top: 0;
    right: 0
}

@media (max-width: 1024px) {
    .ab-us .top-inner {
        flex-direction: column;
        align-items: flex-start
    }

    .ab-us .top-card {
        flex: 0 0 auto;
        width: 100%
    }

    .ab-us .top-card img {
        width: 100%;
        height: 220px
    }

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

    .ab-us .team-layout {
        grid-template-columns: 1fr 1fr
    }

    .ab-us .team-extra {
        flex-direction: column
    }

    .ab-us .team-extra-img {
        flex: 0 0 auto;
        width: 100%
    }

    .ab-us .team-extra-img img {
        width: 100%;
        height: 220px
    }
}

@media (max-width: 768px) {
    .ab-us .top-band {
        padding: 48px 16px 32px
    }

    .ab-us .story-band {
        padding: 48px 16px
    }

    .ab-us .process-band {
        padding: 48px 16px
    }

    .ab-us .team-band {
        padding: 48px 16px
    }

    .ab-us .top-h1 {
        font-size: 36px
    }

    .ab-us .top-card {
        display: none
    }

    .ab-us .team-layout {
        grid-template-columns: 1fr
    }

    .ab-us .process-steps {
        flex-direction: column
    }

    .ab-us .proc-arrow {
        transform: rotate(90deg)
    }

    .ab-us .story-stat-row {
        flex-direction: column
    }

    .ab-us .story-img-col {
        display: none
    }

    .ab-us .team-extra-img {
        display: none
    }

    .ab-us .process-band .dot-group {
        display: none
    }
}

@media (max-width: 480px) {
    .ab-us .top-h1 {
        font-size: 26px
    }

    .ab-us .story-h2,
    .ab-us .process-h2,
    .ab-us .team-h2 {
        font-size: 26px
    }

    .ab-us .top-band {
        padding: 32px 8px
    }

    .ab-us .story-band {
        padding: 32px 8px
    }

    .ab-us .process-band {
        padding: 32px 8px
    }

    .ab-us .team-band {
        padding: 32px 8px
    }
}

.suc-pg {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 32px;
    background: #fff
}

.suc-pg .suc-wrap {
    max-width: 1500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

.suc-pg .suc-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0
}

.suc-pg .suc-icon .ico-bg {
    fill: #E3EBE3
}

.suc-pg .suc-icon .ico-check {
    fill: none;
    stroke: #448275;
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.suc-pg .suc-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 2px 12px 36px -1px #4482751f;
    padding: 48px;
    max-width: 560px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center
}

.suc-pg .suc-card .suc-tag {
    display: inline-block;
    background: #E3EBE3;
    color: #448275;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600
}

.suc-pg .suc-card .suc-title {
    font-size: 36px;
    line-height: 1.2;
    color: #1b2d28;
    margin: 0;
    font-weight: 700
}

.suc-pg .suc-card .suc-title span {
    display: inline;
    background: #E3EBE3;
    padding: 0 8px;
    border-radius: 5px;
    color: #448275
}

.suc-pg .suc-card .suc-desc {
    font-size: 17px;
    line-height: 1.6;
    color: #2e4a43;
    margin: 0;
    max-width: 420px
}

.suc-pg .suc-card .suc-divider {
    width: 48px;
    height: 2px;
    background: #90C09B;
    border-radius: 1px;
    margin: 8px 0
}

.suc-pg .suc-card .suc-detail {
    font-size: 14px;
    line-height: 1.9;
    color: #3d5a53;
    margin: 0
}

.suc-pg .suc-card .suc-detail strong {
    color: #448275;
    font-weight: 600
}

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

.suc-pg .suc-actions .btn-pri {
    display: inline-block;
    background: #448275;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    padding: 16px 32px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 2px 4px 14px -1px #44827517;
    transition: box-shadow .12s ease-out, clip-path .1s ease-out;
    clip-path: inset(0 0 0 0 round 11px);
    position: relative;
    overflow: hidden
}

.suc-pg .suc-actions .btn-pri:hover {
    box-shadow: 2px 12px 36px -1px #4482751f;
    clip-path: inset(-2px -2px -4px -2px round 11px)
}

.suc-pg .suc-actions .btn-pri:focus {
    outline: 2px solid #448275;
    outline-offset: 3px
}

.suc-pg .suc-actions .btn-sec {
    display: inline-block;
    background: #E3EBE3;
    color: #448275;
    font-size: 17px;
    line-height: 1.2;
    padding: 16px 32px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 600;
    transition: background .08s linear, clip-path .1s ease-out;
    clip-path: inset(0 0 0 0 round 11px)
}

.suc-pg .suc-actions .btn-sec:hover {
    background: #d0ddd0;
    clip-path: inset(-2px -2px -4px -2px round 11px)
}

.suc-pg .suc-actions .btn-sec:focus {
    outline: 2px solid #448275;
    outline-offset: 3px
}

.suc-pg .suc-note {
    font-size: 14px;
    line-height: 1.6;
    color: #5a7a72;
    text-align: center;
    margin: 0
}

.suc-pg .suc-note a {
    color: #448275;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .08s ease-out
}

.suc-pg .suc-note a:hover {
    color: #2d5a50
}

@media (max-width: 480px) {
    .suc-pg {
        padding: 48px 16px
    }

    .suc-pg .suc-card {
        padding: 32px 16px
    }

    .suc-pg .suc-card .suc-title {
        font-size: 26px
    }

    .suc-pg .suc-actions {
        flex-direction: column;
        width: 100%
    }

    .suc-pg .suc-actions .btn-pri,
    .suc-pg .suc-actions .btn-sec {
        text-align: center;
        width: 100%
    }
}