html {
    font-size: 100%
}

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden
}

.siteHead {
    position: relative;
    background: #F4F6F3;
    border-bottom: 2px solid #9EBF93;
    box-shadow: 0 4px 18px 1px #618a3c17;
    overflow: hidden
}

.siteHead::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 420px;
    height: 420px;
    background: linear-gradient(135deg, #618a3c14 0%, #9ebf9321 100%);
    border-radius: 40px;
    pointer-events: none;
    z-index: 0
}

.headInner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1
}

.headTop {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px
}

.brandGroup {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px
}

.logoCard {
    background: #fff;
    border: 2px solid #9EBF93;
    border-radius: 2px;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 56px
}

.logoCard img {
    width: 32px;
    height: 44px;
    object-fit: contain;
    display: block
}

.brandName {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #2a3d1a;
    letter-spacing: -.02em;
    line-height: 1.1
}

.brandTagline {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    font-weight: 400;
    color: #618A3C;
    line-height: 1.55;
    letter-spacing: .02em
}

.credMark {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 2px solid #618A3C;
    border-radius: 2px;
    padding: 6px 12px;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    align-self: flex-start
}

.credIcon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.credText {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    font-weight: 600;
    color: #618A3C;
    letter-spacing: .03em;
    line-height: 1.1;
    white-space: nowrap
}

.headNav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-self: center
}

.headNav a {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    font-weight: 500;
    color: #2a3d1a;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 2px;
    line-height: 1.1;
    letter-spacing: .01em;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1), background .25s cubic-bezier(0.0, 0, 0.2, 1);
    display: inline-block
}

.headNav a:hover {
    color: #618A3C;
    border-color: #618A3C;
    background: #618a3c0d
}

.headNav a:focus {
    outline: 2px solid #618A3C;
    outline-offset: 2px
}

.headNav a.active {
    color: #618A3C;
    border-color: #9EBF93;
    background: #9ebf931f
}

.headAccent {
    height: 4px;
    background: linear-gradient(90deg, #618A3C 0%, #9EBF93 60%, #F4F6F3 100%);
    border-radius: 2px;
    margin: 0
}

.siteFoot {
    background: #2a3d1a;
    border-top: 2px solid #618A3C;
    box-shadow: 0 -4px 18px 1px #618a3c17
}

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

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

.footLogoCard {
    background: #F4F6F3;
    border: 2px solid #9EBF93;
    border-radius: 2px;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    padding: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 56px
}

.footLogoCard img {
    width: 32px;
    height: 44px;
    object-fit: contain;
    display: block
}

.footDesc {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    font-weight: 400;
    color: #9EBF93;
    line-height: 1.55;
    letter-spacing: .01em;
    max-width: 340px
}

.footContact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px
}

.footContactLabel {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #F4F6F3;
    letter-spacing: .04em;
    line-height: 1.1;
    margin-bottom: 6px
}

.footContactItem {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    color: #9EBF93;
    line-height: 1.55;
    letter-spacing: .01em
}

.footContactItem a {
    color: #9EBF93;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.footContactItem a:hover {
    color: #F4F6F3
}

.footContactItem a:focus {
    outline: 2px solid #9EBF93;
    outline-offset: 2px
}

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

.footLinksLabel {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #F4F6F3;
    letter-spacing: .04em;
    line-height: 1.1;
    margin-bottom: 6px
}

.footLinks a {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    color: #9EBF93;
    text-decoration: none;
    line-height: 1.55;
    letter-spacing: .01em;
    transition: color .18s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block
}

.footLinks a:hover {
    color: #F4F6F3
}

.footLinks a:focus {
    outline: 2px solid #9EBF93;
    outline-offset: 2px
}

.footBottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 48px;
    border-top: 1px solid #9ebf9333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.footCopy {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    color: #9ebf9399;
    line-height: 1.55;
    letter-spacing: .01em
}

.footAddr {
    font-family: 'Noto Serif', serif;
    font-size: 16px;
    color: #9ebf9380;
    line-height: 1.55;
    letter-spacing: .01em;
    text-align: right
}

@media (max-width: 1024px) {
    .headInner {
        padding: 24px
    }

    .footInner {
        grid-template-columns: 1fr 1fr;
        padding: 48px 24px 24px
    }

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

    .footBottom {
        padding: 24px
    }
}

@media (max-width: 640px) {
    .headTop {
        flex-direction: column;
        gap: 12px
    }

    .headNav {
        justify-content: flex-start
    }

    .headNav a {
        padding: 12px;
        font-size: 16px
    }

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

    .footBottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px
    }

    .footAddr {
        text-align: left
    }
}

@media (max-width: 360px) {
    .headInner {
        padding: 12px
    }

    .headNav a {
        padding: 12px 6px
    }

    .footInner {
        padding: 12px
    }

    .footBottom {
        padding: 12px
    }
}

.rules-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 48px 24px;
    color: #2d3a22;
    background: #fff
}

.rules-content h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #618A3C;
    margin-bottom: 48px;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #9EBF93
}

.rules-content h2 {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #2d3a22;
    margin-top: 48px;
    margin-bottom: 24px
}

.rules-content h3 {
    font-size: 19px;
    line-height: 1.55;
    letter-spacing: 0;
    color: #618A3C;
    margin-top: 24px;
    margin-bottom: 12px
}

.rules-content h4 {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .01em;
    color: #2d3a22;
    margin-top: 24px;
    margin-bottom: 12px
}

.rules-content h5 {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .02em;
    color: #4a6635;
    margin-top: 24px;
    margin-bottom: 6px
}

.rules-content h6 {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .02em;
    color: #618A3C;
    margin-top: 12px;
    margin-bottom: 6px
}

.rules-content p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .01em;
    color: #2d3a22;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 75ch
}

.rules-content ul {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none
}

.rules-content ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    list-style: none;
    counter-reset: policy-counter
}

.rules-content ul li {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .01em;
    color: #2d3a22;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
    max-width: 75ch
}

.rules-content ul li::before {
    content: "";
    display: block;
    position: absolute;
    left: -6px;
    top: 14px;
    width: 5px;
    height: 5px;
    border-radius: 40px;
    background: #618A3C
}

.rules-content ol li {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .01em;
    color: #2d3a22;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
    max-width: 75ch;
    counter-increment: policy-counter
}

.rules-content ol li::before {
    content: counter(policy-counter) ".";
    position: absolute;
    left: -18px;
    top: 0;
    font-size: 16px;
    line-height: 2;
    color: #618A3C;
    font-weight: 700
}

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

.rules-content em,
.rules-content i {
    font-style: italic;
    color: #4a6635
}

.rules-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 1.55;
    box-shadow: 0 4px 18px 1px #618a3c17;
    border-radius: 2px;
    overflow: hidden
}

.rules-content thead {
    background: #618A3C
}

.rules-content thead th {
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .02em;
    font-weight: 700;
    padding: 12px 24px;
    text-align: left
}

.rules-content tbody tr {
    border-bottom: 1px solid #9EBF93;
    transition: background-color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.rules-content tbody tr:last-child {
    border-bottom: none
}

.rules-content tbody tr:nth-child(even) {
    background: #F4F6F3
}

.rules-content tbody tr:hover {
    background: #e8f0e3
}

.rules-content td {
    color: #2d3a22;
    font-size: 16px;
    line-height: 1.55;
    padding: 12px 24px;
    vertical-align: top
}

.rules-content th {
    color: #fff;
    font-size: 16px;
    line-height: 1.55;
    padding: 12px 24px;
    text-align: left;
    font-weight: 700
}

.rules-content div {
    font-size: 16px;
    line-height: 1.55;
    color: #2d3a22
}

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

    .rules-content h1 {
        font-size: 24px
    }
}

@media (max-width: 640px) {
    .rules-content {
        padding: 24px 12px
    }

    .rules-content h1 {
        font-size: 24px;
        margin-bottom: 24px;
        padding-bottom: 12px
    }

    .rules-content h2 {
        font-size: 19px;
        margin-top: 24px
    }

    .rules-content table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch
    }

    .rules-content p,
    .rules-content ul li,
    .rules-content ol li {
        max-width: 100%
    }
}

@media (max-width: 360px) {
    .rules-content {
        padding: 12px 6px
    }

    .rules-content thead th,
    .rules-content td,
    .rules-content th {
        padding: 12px
    }
}

.ctus {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden
}

.ctus .grad-band {
    background: linear-gradient(to bottom, #618A3C, #618a3c00);
    padding: 72px 48px 48px;
    position: relative
}

.ctus .grad-band::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 48px;
    width: 40px;
    height: 3px;
    background: #F4F6F3;
    border-radius: 2px
}

.ctus .grad-band .pre-lbl {
    font-size: 16px;
    color: #F4F6F3;
    letter-spacing: .08em;
    line-height: 1.55;
    margin-bottom: 12px;
    text-align: center;
    opacity: .85
}

.ctus .grad-band .pg-head {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #F4F6F3;
    text-align: center;
    text-transform: uppercase;
    margin: 0 0 24px
}

.ctus .grad-band .pg-sub {
    font-size: 19px;
    line-height: 1.55;
    color: #F4F6F3;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    opacity: .9
}

.ctus .grad-band .bracket-box {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    display: flex;
    justify-content: center
}

.ctus .grad-band .bracket-box::before,
.ctus .grad-band .bracket-box::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #f4f6f380;
    border-style: solid
}

.ctus .grad-band .bracket-box::before {
    top: -6px;
    left: -12px;
    border-width: 2px 0 0 2px
}

.ctus .grad-band .bracket-box::after {
    bottom: -6px;
    right: -12px;
    border-width: 0 2px 2px 0
}

.ctus .dual-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px
}

.ctus .inf-side {
    background: #F4F6F3;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .inf-side .side-accent {
    width: 32px;
    height: 3px;
    background: #618A3C;
    border-radius: 2px
}

.ctus .inf-side .side-head {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.01em;
    color: #2a3d1a;
    margin: 0
}

.ctus .inf-side .side-desc {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a2e;
    margin: 0
}

.ctus .inf-side .inf-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .inf-side .inf-item:hover {
    box-shadow: 0 4px 18px 1px #618a3c17
}

.ctus .inf-side .inf-lbl {
    font-size: 16px;
    letter-spacing: .06em;
    color: #618A3C;
    line-height: 1.1;
    text-transform: uppercase
}

.ctus .inf-side .inf-val {
    font-size: 19px;
    line-height: 1.55;
    color: #2a3d1a
}

.ctus .inf-side .inf-val a {
    color: #2a3d1a;
    text-decoration: none;
    border-bottom: 1px solid #618a3c4d;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .inf-side .inf-val a:hover {
    color: #618A3C;
    border-color: #618A3C
}

.ctus .inf-side .inf-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0
}

.ctus .frm-side {
    background: #fff;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .frm-side .frm-head {
    font-size: 24px;
    line-height: 1.1;
    color: #2a3d1a;
    margin: 0;
    letter-spacing: -.01em
}

.ctus .frm-side form {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus .frm-side .fld-grp {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ctus .frm-side .fld-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.ctus .frm-side label {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a2e;
    letter-spacing: .02em
}

.ctus .frm-side input[type="text"],
.ctus .frm-side input[type="email"],
.ctus .frm-side select,
.ctus .frm-side textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    line-height: 1.55;
    color: #2a3d1a;
    background: #F4F6F3;
    border: 2px solid #9EBF93;
    border-radius: 2px;
    box-shadow: inset 0 2px 4px #618a3c0f;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none
}

.ctus .frm-side input[type="text"]:focus,
.ctus .frm-side input[type="email"]:focus,
.ctus .frm-side select:focus,
.ctus .frm-side textarea:focus {
    outline: none;
    border-color: #618A3C;
    box-shadow: inset 0 2px 4px #618a3c17 0 0 0 3px #618a3c1f
}

.ctus .frm-side input::placeholder,
.ctus .frm-side textarea::placeholder {
    color: #7a9a6e;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.ctus .frm-side select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23618A3C' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer
}

.ctus .frm-side textarea {
    resize: vertical;
    min-height: 100px
}

.ctus .frm-side .meth-grp {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ctus .frm-side .meth-opts {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

.ctus .frm-side .meth-opt {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 2px solid #9EBF93;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a2e;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1), background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .frm-side .meth-opt:hover {
    border-color: #618A3C;
    background: #618a3c0f
}

.ctus .frm-side .meth-opt input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #618A3C;
    cursor: pointer
}

.ctus .frm-side .priv-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ctus .frm-side .priv-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #618A3C;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px
}

.ctus .frm-side .priv-txt {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a2e
}

.ctus .frm-side .priv-txt a {
    color: #618A3C;
    text-decoration: none;
    border-bottom: 1px solid #618a3c66;
    transition: border-color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.ctus .frm-side .priv-txt a:hover {
    border-color: #618A3C
}

.ctus .frm-side .sbm-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 19px;
    line-height: 1.55;
    color: #618A3C;
    background: transparent;
    border: 2px solid #618A3C;
    border-radius: 2px;
    cursor: pointer;
    align-self: flex-start;
    transition: background .25s cubic-bezier(0.0, 0, 0.2, 1), color .25s cubic-bezier(0.0, 0, 0.2, 1);
    letter-spacing: .02em
}

.ctus .frm-side .sbm-btn:hover {
    background: #618A3C;
    color: #F4F6F3
}

.ctus .frm-side .sbm-btn:focus {
    outline: 3px solid #618a3c66;
    outline-offset: 2px
}

.ctus .frm-side .sbm-btn:active {
    box-shadow: inset 0 2px 4px #618a3c33
}

.ctus .frm-side .sbm-btn .btn-arrow {
    display: inline-block;
    width: 18px;
    height: 18px;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0
}

.ctus .frm-side .sbm-btn:hover .btn-arrow {
    transform: translateX(6px)
}

.ctus .divline {
    height: 2px;
    background: #618A3C;
    margin: 0 48px;
    border-radius: 2px;
    opacity: .35
}

@keyframes fadeBlurIn {
    from {
        opacity: 0;
        filter: blur(6px)
    }

    to {
        opacity: 1;
        filter: blur(0)
    }
}

.ctus .grad-band {
    animation: fadeBlurIn .6s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ctus .dual-col {
    animation: fadeBlurIn .7s cubic-bezier(0.4, 0, 0.2, 1) .15s both
}

@media (max-width: 1024px) {
    .ctus .grad-band {
        padding: 48px 24px 24px
    }

    .ctus .grad-band::before {
        left: 24px
    }

    .ctus .grad-band .pg-head {
        font-size: 48px
    }

    .ctus .dual-col {
        grid-template-columns: 1fr
    }

    .ctus .inf-side,
    .ctus .frm-side {
        padding: 48px 24px
    }

    .ctus .divline {
        margin: 0 24px
    }
}

@media (max-width: 640px) {
    .ctus .grad-band .pg-head {
        font-size: 36px
    }

    .ctus .frm-side .fld-row {
        grid-template-columns: 1fr
    }

    .ctus .frm-side .meth-opts {
        flex-direction: column
    }
}

@media (max-width: 360px) {
    .ctus .grad-band .pg-head {
        font-size: 28px
    }

    .ctus .inf-side,
    .ctus .frm-side {
        padding: 24px 12px
    }
}

.abus {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    overflow: hidden
}

.abus ::selection {
    background: linear-gradient(90deg, #618A3C, #9EBF93);
    color: #fff
}

.abus .titblk {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 48px;
    padding: 72px 0 48px;
    align-items: start;
    position: relative
}

.abus .titblk::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='8' viewBox='0 0 1400 8'%3E%3Cpath d='M0 4 Q175 0 350 4 Q525 8 700 4 Q875 0 1050 4 Q1225 8 1400 4' stroke='%239EBF93' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") repeat-x center
}

.abus .titcard {
    position: relative;
    border-radius: 2px;
    border: 2px solid #9EBF93;
    box-shadow: 0 4px 18px 1px #618a3c17;
    overflow: hidden
}

.abus .titcard img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abus .titcard:hover img {
    transform: scale(1.03)
}

.abus .titcard .imgfade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, #618a3c8c, transparent);
    pointer-events: none
}

.abus .titcard .imgover {
    position: absolute;
    inset: 0;
    background: #618a3c47;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.abus .titcard:hover .imgover {
    opacity: 0
}

.abus .tittext {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 12px
}

.abus .tittext .bigname {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -2px;
    color: #2a3d1c;
    text-transform: uppercase;
    margin: 0
}

.abus .tittext .bigname span {
    color: #618A3C
}

.abus .tittext .subt {
    font-size: 19px;
    line-height: 1.55;
    color: #3d4f2e;
    max-width: 520px;
    margin: 0
}

.abus .tittext .subt strong {
    color: #618A3C
}

.abus .tittext .tagrow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0
}

.abus .tittext .tagrow li {
    font-size: 16px;
    line-height: 1.55;
    padding: 6px 24px;
    border: 2px solid #618A3C;
    border-radius: 40px;
    color: #618A3C;
    letter-spacing: .04em;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1), color .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.abus .tittext .tagrow li:hover {
    background: #618A3C;
    color: #fff
}

.abus .wavdiv {
    width: 100%;
    line-height: 0;
    margin: 12px 0
}

.abus .wavdiv svg {
    width: 100%;
    height: 24px
}

.abus .midblk {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px 0;
    background: #F4F6F3;
    border-radius: 2px;
    padding: 48px;
    position: relative
}

.abus .midblk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='6' viewBox='0 0 1400 6'%3E%3Cpath d='M0 3 Q350 0 700 3 Q1050 6 1400 3' stroke='%23618A3C' stroke-width='1' fill='none'/%3E%3C/svg%3E") no-repeat center;
    overflow: hidden
}

.abus .midleft {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abus .midleft .sechead {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.5px;
    color: #2a3d1c;
    margin: 0
}

.abus .midleft .bodytxt {
    font-size: 16px;
    line-height: 1.55;
    color: #3d4f2e;
    margin: 0
}

.abus .midleft .qblock {
    border-radius: 2px;
    background: #618a3c14;
    padding: 24px;
    font-size: 19px;
    line-height: 1.55;
    color: #2a3d1c;
    box-shadow: 0 2px 2px 1px #618a3c0d
}

.abus .midright {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abus .midright .imgframe {
    border-radius: 2px;
    border: 2px solid #9EBF93;
    overflow: hidden;
    box-shadow: 0 4px 18px 1px #9ebf9317;
    position: relative
}

.abus .midright .imgframe img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.abus .midright .imgframe:hover img {
    transform: scale(1.04)
}

.abus .midright .imgframe .imgover2 {
    position: absolute;
    inset: 0;
    background: #618a3c38;
    transition: opacity .22s cubic-bezier(0.0, 0, 0.2, 1);
    pointer-events: none
}

.abus .midright .imgframe:hover .imgover2 {
    opacity: 0
}

.abus .midright .metarow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.abus .midright .metaitem {
    border-radius: 2px;
    border: 2px solid #9EBF93;
    padding: 24px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default
}

.abus .midright .metaitem:hover {
    box-shadow: 0 9px 48px 1px #618a3c1f;
    transform: rotate(1deg)
}

.abus .midright .metaitem .metanum {
    font-size: 24px;
    line-height: 1.1;
    color: #618A3C;
    letter-spacing: -.5px
}

.abus .midright .metaitem .metalbl {
    font-size: 16px;
    line-height: 1.55;
    color: #3d4f2e
}

.abus .teamblk {
    padding: 48px 0;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative
}

.abus .teamblk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='8' viewBox='0 0 1400 8'%3E%3Cpath d='M0 4 Q233 8 466 4 Q700 0 933 4 Q1166 8 1400 4' stroke='%239EBF93' stroke-width='1.5' fill='none'/%3E%3C/svg%3E") repeat-x center
}

.abus .teamhead {
    font-size: 24px;
    line-height: 1.1;
    color: #2a3d1c;
    margin: 0;
    letter-spacing: -.3px;
    text-align: center
}

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

.abus .perscard {
    border-radius: 2px;
    border: 2px solid #9EBF93;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    transition: box-shadow .25s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff
}

.abus .perscard:hover {
    box-shadow: 0 9px 48px 1px #618a3c1f;
    transform: rotate(-1.2deg)
}

.abus .perscard .persimgw {
    border-radius: 2px;
    border: 2px solid #9EBF93;
    overflow: hidden;
    position: relative
}

.abus .perscard .persimgw img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abus .perscard:hover .persimgw img {
    transform: scale(1.05)
}

.abus .perscard .persimgw .pover {
    position: absolute;
    inset: 0;
    background: #618a3c40;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.abus .perscard:hover .persimgw .pover {
    opacity: 0
}

.abus .perscard .persname {
    font-size: 19px;
    line-height: 1.55;
    color: #2a3d1c;
    margin: 0
}

.abus .perscard .persrole {
    font-size: 16px;
    line-height: 1.55;
    color: #618A3C;
    margin: 0
}

.abus .perscard .persbio {
    font-size: 16px;
    line-height: 1.55;
    color: #3d4f2e;
    margin: 0
}

.abus .ctastrip {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
    padding: 12px 0 48px
}

.abus .ctastrip .btnprim {
    font-size: 16px;
    line-height: 1.55;
    padding: 12px 48px;
    border-radius: 2px;
    border: 2px solid #618A3C;
    background: transparent;
    color: #618A3C;
    cursor: pointer;
    letter-spacing: .06em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abus .ctastrip .btnprim:hover {
    background: #618A3C;
    color: #fff
}

.abus .ctastrip .btnprim:hover .btnarrow {
    transform: translateX(6px)
}

.abus .ctastrip .btnprim .btnarrow {
    display: inline-block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

@media (max-width: 1024px) {
    .abus .titblk {
        grid-template-columns: 280px 1fr;
        gap: 24px;
        padding: 48px 0 36px
    }

    .abus .tittext .bigname {
        font-size: 48px
    }

    .abus .midblk {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px
    }

    .abus .teamgrid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .abus .titblk {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 0
    }

    .abus .titcard img {
        height: 260px
    }

    .abus .tittext .bigname {
        font-size: 24px;
        letter-spacing: -.5px
    }

    .abus .midblk {
        padding: 12px
    }

    .abus .teamgrid {
        grid-template-columns: 1fr
    }

    .abus .midright .metarow {
        grid-template-columns: 1fr 1fr
    }

    .abus .ctastrip {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width: 360px) {
    .abus {
        padding: 0 12px
    }

    .abus .tittext .bigname {
        font-size: 19px
    }

    .abus .midright .metarow {
        grid-template-columns: 1fr
    }
}

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

.bse ::selection {
    background: #618A3C;
    color: #F4F6F3
}

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

.bse .tblk-txt {
    position: relative;
    z-index: 1;
    padding: 48px
}

.bse .tblk-deco {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed #9EBF93;
    border-radius: 2px;
    pointer-events: none;
    z-index: 0
}

.bse .tblk-txtinner {
    position: relative;
    z-index: 1;
    text-align: center
}

.bse .tblk-accent {
    display: inline-block;
    background: #618A3C;
    color: #F4F6F3;
    padding: 6px 24px;
    border-radius: 2px;
    font-size: 16px;
    letter-spacing: .08em;
    margin-bottom: 24px
}

.bse .tblk-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #1e2d14;
    margin: 0 0 24px;
    text-transform: uppercase
}

.bse .tblk-h1 .split-a,
.bse .tblk-h1 .split-b {
    display: inline-block;
    animation: splitReveal .7s cubic-bezier(0.4, 0, 0.2, 1) both
}

.bse .tblk-h1 .split-b {
    animation-delay: .12s;
    animation-name: splitRevealB
}

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

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

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

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

.bse .tblk-sub {
    font-size: 19px;
    line-height: 1.55;
    color: #3a4f2a;
    margin: 0
}

.bse .tblk-imgwrap {
    position: relative;
    border-radius: 2px;
    overflow: hidden
}

.bse .tblk-imgwrap img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block
}

.bse .tblk-imgoverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #618a3c8c, transparent);
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.bse .tblk-imgwrap:hover .tblk-imgoverlay {
    opacity: 0
}

.bse .ident {
    background: #F4F6F3;
    padding: 48px 24px
}

.bse .ident-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 48px;
    align-items: start
}

.bse .ident-lbl {
    font-size: 16px;
    letter-spacing: .1em;
    color: #618A3C;
    text-transform: uppercase;
    text-align: center;
    padding-top: 6px
}

.bse .ident-h2 {
    font-size: 24px;
    line-height: 1.1;
    color: #1e2d14;
    margin: 0 0 24px;
    text-transform: uppercase;
    text-align: center
}

.bse .ident-p {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4f2a;
    margin: 0 0 24px;
    text-align: center
}

.bse .ident-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px
}

.bse .ident-tag {
    font-size: 16px;
    line-height: 1.55;
    color: #1e2d14;
    background: #fff;
    border: 2px solid #9EBF93;
    border-radius: 40px;
    padding: 6px 24px
}

.bse .ident-notfor {
    background: #fff;
    border-radius: 2px;
    padding: 24px;
    box-shadow: 0 4px 18px 1px #618a3c17
}

.bse .ident-notfor-h {
    font-size: 19px;
    line-height: 1.1;
    color: #618A3C;
    margin: 0 0 12px;
    text-align: center
}

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

.bse .ident-notfor-list li {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4f2a;
    text-align: center;
    padding: 6px 12px;
    border-radius: 2px;
    background: #F4F6F3
}

.bse .voices {
    padding: 48px 24px;
    background: #fff
}

.bse .voices-inner {
    max-width: 1400px;
    margin: 0 auto
}

.bse .voices-h2 {
    font-size: 24px;
    line-height: 1.1;
    color: #1e2d14;
    margin: 0 0 48px;
    text-align: center
}

.bse .voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px
}

.bse .voice-card {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: start
}

.bse .voice-imgwrap {
    border-radius: 2px;
    overflow: hidden
}

.bse .voice-imgwrap img {
    width: 180px;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: filter .2s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(0.3)
}

.bse .voice-imgwrap:hover img {
    filter: grayscale(0)
}

.bse .voice-txt {
    padding: 6px 0
}

.bse .voice-quote {
    font-size: 19px;
    line-height: 1.55;
    color: #1e2d14;
    margin: 0 0 12px;
    font-style: italic;
    border: 2px dashed #9EBF93;
    border-radius: 2px;
    padding: 12px 24px
}

.bse .voice-name {
    font-size: 16px;
    line-height: 1.55;
    color: #618A3C;
    margin: 0 0 6px;
    font-weight: 700
}

.bse .voice-role {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4f2a;
    margin: 0
}

.bse .environ {
    background: #9EBF93;
    padding: 48px 24px
}

.bse .environ-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center
}

.bse .environ-imgwrap {
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 9px 48px 1px #618a3c1f
}

.bse .environ-imgwrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: filter .18s cubic-bezier(0.0, 0, 0.2, 1);
    filter: saturate(0.85)
}

.bse .environ-imgwrap:hover img {
    filter: saturate(1)
}

.bse .environ-txt {
    text-align: center
}

.bse .environ-h2 {
    font-size: 24px;
    line-height: 1.1;
    color: #1e2d14;
    margin: 0 0 24px
}

.bse .environ-p {
    font-size: 16px;
    line-height: 1.55;
    color: #1e2d14;
    margin: 0 0 24px
}

.bse .environ-ring {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 24px
}

.bse .environ-node {
    background: #F4F6F3;
    border-radius: 2px;
    padding: 12px;
    text-align: center;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.bse .environ-node:hover {
    box-shadow: 0 4px 18px 1px #618a3c17;
    transform: translateY(-4px)
}

.bse .environ-node-ico {
    width: 32px;
    height: 32px;
    margin: 0 auto 6px
}

.bse .environ-node-lbl {
    font-size: 16px;
    line-height: 1.55;
    color: #1e2d14
}

.bse .scale {
    padding: 48px 24px;
    background: #F4F6F3
}

.bse .scale-inner {
    max-width: 1400px;
    margin: 0 auto
}

.bse .scale-h2 {
    font-size: 24px;
    line-height: 1.1;
    color: #1e2d14;
    margin: 0 0 48px;
    text-align: center;
    text-transform: uppercase
}

.bse .scale-tbl {
    width: 100%;
    border-collapse: collapse;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 4px 18px 1px #618a3c17
}

.bse .scale-tbl thead tr {
    background: #618A3C
}

.bse .scale-tbl thead th {
    font-size: 16px;
    line-height: 1.55;
    color: #F4F6F3;
    padding: 12px 24px;
    text-align: left;
    letter-spacing: .06em
}

.bse .scale-tbl tbody tr {
    background: #fff;
    transition: background .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.bse .scale-tbl tbody tr:nth-child(even) {
    background: #F4F6F3
}

.bse .scale-tbl tbody tr:hover {
    background: #e8f0e3
}

.bse .scale-tbl tbody td {
    font-size: 16px;
    line-height: 1.55;
    color: #1e2d14;
    padding: 12px 24px;
    border-bottom: 1px solid #d4e3cc
}

.bse .scale-tbl tbody td:first-child {
    color: #618A3C;
    font-size: 19px;
    font-weight: 700
}

.bse .team {
    padding: 48px 24px;
    background: #fff
}

.bse .team-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start
}

.bse .team-lbl {
    font-size: 16px;
    letter-spacing: .1em;
    color: #9EBF93;
    text-transform: uppercase;
    text-align: center
}

.bse .team-h2 {
    font-size: 24px;
    line-height: 1.1;
    color: #1e2d14;
    margin: 0 0 12px;
    text-align: center
}

.bse .team-intro {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4f2a;
    text-align: center
}

.bse .team-card {
    background: #F4F6F3;
    border-radius: 2px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    position: relative;
    overflow: hidden
}

.bse .team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to bottom, #9EBF93, transparent);
    transition: height .25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.bse .team-card:hover::after {
    height: 100%
}

.bse .team-card-body {
    position: relative;
    z-index: 1
}

.bse .team-name {
    font-size: 19px;
    line-height: 1.1;
    color: #1e2d14;
    margin: 0 0 6px
}

.bse .team-role {
    font-size: 16px;
    line-height: 1.55;
    color: #618A3C;
    margin: 0 0 12px
}

.bse .team-bio {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4f2a;
    margin: 0
}

.bse .team-cred {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-top: 12px
}

.bse .team-cred-tag {
    font-size: 16px;
    line-height: 1.55;
    color: #618A3C;
    background: #fff;
    border: 1px solid #9EBF93;
    border-radius: 40px;
    padding: 6px 12px
}

.bse .btn-prim {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.55;
    color: #618A3C;
    background: transparent;
    border: 3px solid #618A3C;
    border-radius: 2px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.bse .btn-prim:hover {
    background: #618A3C;
    color: #F4F6F3
}

.bse .btn-prim:focus {
    outline: 3px solid #618A3C;
    outline-offset: 3px
}

.bse .btn-prim:active {
    background: #4a6e2c;
    color: #F4F6F3
}

.bse .btn-prim .btn-arr {
    display: inline-block;
    transition: transform .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.bse .btn-prim:hover .btn-arr {
    transform: translateX(8px)
}

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

    .bse .tblk-h1 {
        font-size: 48px
    }

    .bse .ident-inner {
        grid-template-columns: 1fr
    }

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

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

    .bse .voice-imgwrap img {
        width: 100%;
        height: 220px
    }

    .bse .environ-inner {
        grid-template-columns: 1fr
    }

    .bse .team-inner {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 640px) {
    .bse .tblk {
        padding: 24px 12px;
        gap: 24px
    }

    .bse .tblk-txt {
        padding: 24px
    }

    .bse .tblk-h1 {
        font-size: 24px
    }

    .bse .ident {
        padding: 24px 12px
    }

    .bse .voices {
        padding: 24px 12px
    }

    .bse .environ {
        padding: 24px 12px
    }

    .bse .scale {
        padding: 24px 12px
    }

    .bse .team {
        padding: 24px 12px
    }

    .bse .team-inner {
        grid-template-columns: 1fr
    }

    .bse .environ-ring {
        grid-template-columns: 1fr 1fr
    }

    .bse .scale-tbl thead th,
    .bse .scale-tbl tbody td {
        padding: 6px 12px
    }
}

@media (max-width: 360px) {
    .bse .tblk-h1 {
        font-size: 24px
    }

    .bse .environ-ring {
        grid-template-columns: 1fr
    }
}

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

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

.mstrcls ::selection {
    background: linear-gradient(90deg, #618A3C, #9EBF93);
    color: #fff
}

.mstrcls .titblk {
    background-color: #F4F6F3;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 22px, #618a3c12 22px, #618a3c12 23px), repeating-linear-gradient(90deg, transparent, transparent 22px, #618a3c12 22px, #618a3c12 23px);
    padding: 48px 24px;
    text-align: center;
    position: relative
}

.mstrcls .titblk .pg-wrap {
    position: relative
}

.mstrcls .tit-frame {
    display: inline-block;
    position: relative;
    padding: 24px 48px
}

.mstrcls .tit-frame::before,
.mstrcls .tit-frame::after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #618A3C;
    border-style: solid
}

.mstrcls .tit-frame::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px
}

.mstrcls .tit-frame::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0
}

.mstrcls .tit-frame .corner-tr,
.mstrcls .tit-frame .corner-bl {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: #618A3C;
    border-style: solid
}

.mstrcls .tit-frame .corner-tr {
    top: 0;
    right: 0;
    border-width: 2px 2px 0 0
}

.mstrcls .tit-frame .corner-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 2px 2px
}

.mstrcls .tit-eyebrow {
    font-size: 16px;
    line-height: 2;
    letter-spacing: .12em;
    color: #618A3C;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px
}

.mstrcls .tit-h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #2a3d1e;
    text-transform: uppercase;
    margin: 0 0 12px
}

.mstrcls .tit-h1 .punct {
    color: #618A3C
}

.mstrcls .tit-sub {
    font-size: 19px;
    line-height: 1.55;
    color: #3d4f30;
    max-width: 560px;
    margin: 0 auto 24px
}

.mstrcls .tit-meta {
    display: flex;
    flex-direction: row;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.mstrcls .tit-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border: 2px solid #618A3C;
    border-radius: 2px;
    font-size: 16px;
    line-height: 1.55;
    color: #2a3d1e;
    background: #618a3c0f;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), border-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.mstrcls .tit-badge:hover {
    background: #618a3c24;
    border-color: #2a3d1e
}

.mstrcls .tit-badge .dot-accent {
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #618A3C;
    flex-shrink: 0
}

.mstrcls .sec-divider {
    border: none;
    border-top: 2px dotted #9EBF93;
    margin: 0
}

.mstrcls .detblk {
    padding: 48px 24px;
    background: #fff
}

.mstrcls .det-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr;
    gap: 24px;
    align-items: start
}

.mstrcls .det-img-col {
    grid-column: 1 / 3;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 9px 48px 1px #618a3c1f
}

.mstrcls .det-img-col img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: filter .25s cubic-bezier(0.4, 0, 0.2, 1);
    filter: saturate(0.7) brightness(0.92)
}

.mstrcls .det-img-col:hover img {
    filter: saturate(1) brightness(1)
}

.mstrcls .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #618a3c47 0%, transparent 60%);
    pointer-events: none;
    transition: opacity .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.mstrcls .det-img-col:hover .img-overlay {
    opacity: 0
}

.mstrcls .det-txt-col {
    grid-column: 3 / 5;
    padding: 12px 0
}

.mstrcls .det-h2 {
    font-size: 24px;
    line-height: 1.55;
    color: #2a3d1e;
    margin: 0 0 12px;
    letter-spacing: -.01em
}

.mstrcls .det-lead {
    font-size: 19px;
    line-height: 1.55;
    color: #3d4f30;
    margin: 0 0 24px;
    padding: 12px 24px;
    border-top: 2px solid #618A3C;
    border-bottom: 2px solid #618A3C;
    background: #618a3c0a;
    border-radius: 2px
}

.mstrcls .det-para {
    font-size: 16px;
    line-height: 1.55;
    color: #3a4a2e;
    margin: 0 0 12px
}

.mstrcls .stats-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin: 24px 0;
    flex-wrap: wrap
}

.mstrcls .stat-item {
    flex: 1;
    min-width: 100px;
    background: #F4F6F3;
    border-radius: 2px;
    padding: 12px;
    text-align: center;
    border: 1px solid #618a3c2e;
    box-shadow: 0 2px 2px 1px #618a3c0d;
    transition: box-shadow .18s cubic-bezier(0.4, 0, 0.2, 1), transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.mstrcls .stat-item:hover {
    box-shadow: 0 4px 18px 1px #618a3c17;
    transform: translateY(-2px)
}

.mstrcls .stat-num {
    font-size: 24px;
    line-height: 1.1;
    color: #618A3C;
    letter-spacing: -.02em;
    display: block
}

.mstrcls .stat-lbl {
    font-size: 16px;
    line-height: 1.55;
    color: #3d4f30
}

.mstrcls .prog-bar-wrap {
    margin: 24px 0 6px
}

.mstrcls .prog-label {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 16px;
    line-height: 1.55;
    color: #3d4f30;
    margin-bottom: 6px
}

.mstrcls .prog-track {
    height: 6px;
    background: #618a3c1f;
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden
}

.mstrcls .prog-fill {
    height: 100%;
    background: linear-gradient(90deg, #618A3C, #9EBF93);
    border-radius: 2px;
    animation: progIn .9s cubic-bezier(0.0, 0, 0.2, 1) both
}

@keyframes progIn {
    from {
        width: 0 !important
    }

    to {
        width: var(--pw)
    }
}

.mstrcls .prog-fill.p80 {
    --pw: 80%;
    width: 80%
}

.mstrcls .prog-fill.p65 {
    --pw: 65%;
    width: 65%
}

.mstrcls .prog-fill.p90 {
    --pw: 90%;
    width: 90%
}

.mstrcls .topics-feat {
    margin: 24px 0 0;
    padding: 24px;
    border: 2px dashed #9EBF93;
    border-radius: 2px;
    background: #9ebf930f
}

.mstrcls .topics-feat-h {
    font-size: 16px;
    line-height: 1.55;
    color: #618A3C;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin: 0 0 12px
}

.mstrcls .topics-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0
}

.mstrcls .topics-list li {
    padding: 6px 12px;
    background: #fff;
    border: 1px solid #618a3c40;
    border-radius: 40px;
    font-size: 16px;
    line-height: 1.55;
    color: #2a3d1e;
    transition: background .15s cubic-bezier(0.4, 0, 0.2, 1), border-color .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.mstrcls .topics-list li:hover {
    background: #618a3c1a;
    border-color: #618A3C
}

.mstrcls .sched-blk {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px dotted #9EBF93
}

.mstrcls .sched-h3 {
    font-size: 19px;
    line-height: 1.55;
    color: #2a3d1e;
    margin: 0 0 12px;
    letter-spacing: -.01em
}

.mstrcls .sched-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    line-height: 1.55;
    color: #2a3d1e;
    box-shadow: 0 4px 18px 1px #618a3c17;
    border-radius: 2px;
    overflow: hidden
}

.mstrcls .sched-table thead tr {
    background: #618A3C;
    color: #fff
}

.mstrcls .sched-table th {
    padding: 12px 24px;
    text-align: left;
    font-size: 16px;
    letter-spacing: .05em
}

.mstrcls .sched-table tbody tr {
    transition: background .15s cubic-bezier(0.4, 0, 0.2, 1)
}

.mstrcls .sched-table tbody tr:nth-child(odd) {
    background: #F4F6F3
}

.mstrcls .sched-table tbody tr:nth-child(even) {
    background: #fff
}

.mstrcls .sched-table tbody tr:hover {
    background: #618a3c1a
}

.mstrcls .sched-table td {
    padding: 12px 24px;
    border-bottom: 1px solid #618a3c1a
}

.mstrcls .sched-table td:first-child {
    color: #618A3C;
    font-size: 16px;
    white-space: nowrap
}

.mstrcls .row-reveal {
    opacity: 0;
    transform: translateY(12px);
    animation: rowUp .22s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.mstrcls .sched-table tbody tr:nth-child(1) .row-reveal,
.mstrcls .sched-table tbody tr:nth-child(1) {
    animation-delay: .05s
}

.mstrcls .sched-table tbody tr:nth-child(2) {
    animation-delay: .1s
}

.mstrcls .sched-table tbody tr:nth-child(3) {
    animation-delay: .15s
}

.mstrcls .sched-table tbody tr:nth-child(4) {
    animation-delay: .2s
}

.mstrcls .sched-table tbody tr:nth-child(5) {
    animation-delay: .25s
}

.mstrcls .sched-table tbody tr {
    opacity: 0;
    animation: rowUp .22s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

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

.mstrcls .cta-area {
    margin-top: 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.mstrcls .btn-prim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #618A3C;
    border-radius: 2px;
    background: transparent;
    color: #618A3C;
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .04em;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600
}

.mstrcls .btn-prim:hover {
    background: #618A3C;
    color: #fff
}

.mstrcls .btn-prim:hover .btn-arr {
    transform: translateX(4px)
}

.mstrcls .btn-arr {
    display: inline-block;
    transition: transform .18s cubic-bezier(0.4, 0, 0.2, 1)
}

.mstrcls .btn-arr svg {
    display: block
}

.mstrcls .price-note {
    font-size: 16px;
    line-height: 1.55;
    color: #3d4f30
}

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

    .mstrcls .det-img-col {
        grid-column: 1 / 3
    }

    .mstrcls .det-txt-col {
        grid-column: 1 / 3
    }

    .mstrcls .tit-h1 {
        font-size: 48px
    }
}

@media (max-width: 640px) {
    .mstrcls .tit-h1 {
        font-size: 32px
    }

    .mstrcls .tit-frame {
        padding: 12px 24px
    }

    .mstrcls .det-grid {
        grid-template-columns: 1fr
    }

    .mstrcls .det-img-col,
    .mstrcls .det-txt-col {
        grid-column: 1 / 2
    }

    .mstrcls .det-img-col img {
        height: 240px
    }

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

    .mstrcls .sched-table th,
    .mstrcls .sched-table td {
        padding: 6px 12px
    }
}

@media (max-width: 360px) {
    .mstrcls .tit-h1 {
        font-size: 24px
    }

    .mstrcls .detblk {
        padding: 24px 12px
    }
}

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

.successPage .confirmWrap {
    max-width: 560px;
    width: 100%;
    background: #fff;
    border: 2px solid #9EBF93;
    border-radius: 2px;
    padding: 48px;
    box-shadow: 0 9px 48px 1px #618a3c1f;
    text-align: center
}

.successPage .iconMark {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: block
}

.successPage .iconMark circle {
    fill: none;
    stroke: #618A3C;
    stroke-width: 2.5;
    transition: stroke .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.successPage .iconMark polyline {
    fill: none;
    stroke: #618A3C;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.successPage .confirmTitle {
    font-size: 24px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #2d3a22;
    margin: 0 0 12px;
    text-transform: uppercase
}

.successPage .confirmMsg {
    font-size: 16px;
    line-height: 1.55;
    color: #3d4f30;
    margin: 0 0 24px
}

.successPage .dividerLine {
    width: 48px;
    height: 2px;
    background: linear-gradient(to bottom, #618A3C, transparent);
    margin: 0 auto 24px;
    border-radius: 2px
}

.successPage .metaNote {
    font-size: 16px;
    line-height: 1.55;
    color: #5a6e4a;
    margin: 0 0 48px
}

.successPage .backBtn {
    display: inline-block;
    font-size: 16px;
    line-height: 1.55;
    color: #618A3C;
    background: transparent;
    border: 2.5px solid #618A3C;
    border-radius: 2px;
    padding: 12px 24px;
    text-decoration: none;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .2s cubic-bezier(0.4, 0, 0.2, 1), color .2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.successPage .backBtn:hover {
    background: #618A3C;
    color: #fff
}

.successPage .backBtn:focus {
    outline: 2px solid #618A3C;
    outline-offset: 3px
}

.successPage .backBtn:active {
    background: #4d6e2f;
    border-color: #4d6e2f;
    color: #fff
}

.successPage .brandLabel {
    margin-top: 48px;
    font-size: 16px;
    line-height: 1.55;
    color: #8aab7a;
    letter-spacing: .06em;
    text-transform: uppercase
}

@media (max-width: 640px) {
    .successPage .confirmWrap {
        padding: 24px
    }

    .successPage .confirmTitle {
        font-size: 19px
    }
}