html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    min-height: 100dvh;
    font-family: 'Manrope', sans-serif;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.pg-head {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #E8EBE2 60%, #BEB4D3 100%);
    border-bottom: 2px solid #9DC844;
    z-index: 100;
}

.pg-head__band {
    max-width: 1366px;
    margin: 0 auto;
    padding: 24px 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pg-head__row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pg-head__row-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    border-top: 1px solid rgba(157, 200, 68, 0.25);
}

.brand-label {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.1;
    color: #1b2a00;
    text-decoration: none;
    letter-spacing: 0;
    flex-shrink: 0;
}

.brand-label span {
    color: #9DC844;
}

.logo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 38px;
    background: #ffffff;
    box-shadow:
        0 3px 4px 0 rgba(157, 200, 68, 0.07),
        0 6px 22px 0 rgba(157, 200, 68, 0.08),
        0 0 0 2px #9DC844,
        0 0 0 4px #ffffff;
    flex-shrink: 0;
}

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

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

.prim-menu li {
    flex-shrink: 0;
}

.prim-menu__lnk {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #1b2a00;
    text-decoration: none;
    padding: 8px 24px;
    border-radius: 0px;
    border: 1.5px solid transparent;
    transition: color 0.28s ease-out, border-color 0.35s ease-out, background 0.28s ease-out;
}

.prim-menu__lnk:hover {
    color: #1b2a00;
    background: linear-gradient(90deg, rgba(157, 200, 68, 0.18) 0%, rgba(190, 180, 211, 0.18) 100%);
    border-color: #9DC844;
    border-radius: 38px;
}

.prim-menu__lnk:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 200, 68, 0.55);
    border-radius: 38px;
}

.head-act {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-decoration: none;
    background: #1b2a00;
    padding: 8px 24px;
    border-radius: 38px;
    border: 2px solid #1b2a00;
    flex-shrink: 0;
    transition: background 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out, box-shadow 0.38s ease-out;
    position: relative;
}

.head-act:hover {
    background: linear-gradient(135deg, #1b2a00 0%, #3a5200 100%);
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08), 0 0 0 3px #9DC844;
    border-color: #9DC844;
}

.head-act:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(157, 200, 68, 0.55);
}

.pg-foot {
    background: #1b2a00;
    position: relative;
}

.pg-foot__band {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 48px 48px;
}

.pg-foot__primary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(157, 200, 68, 0.2);
}

.foot-brand-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    flex: 1 1 220px;
}

.foot-logo-ring {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 38px;
    background: #ffffff;
    box-shadow:
        0 3px 4px 0 rgba(190, 180, 211, 0.07),
        0 6px 22px 0 rgba(190, 180, 211, 0.08),
        0 0 0 2px #9DC844,
        0 0 0 4px rgba(157, 200, 68, 0.18);
}

.foot-logo-ring img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    display: block;
}

.foot-brand-name {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #E8EBE2;
    text-align: center;
}

.foot-brand-name span {
    color: #9DC844;
}

.foot-copy {
    font-size: 15px;
    line-height: 1.5;
    color: #BEB4D3;
    text-align: center;
    margin: 0;
}

.foot-contact-box {
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.foot-contact-box__label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    color: #9DC844;
    margin: 0 0 8px;
}

.foot-contact-item {
    font-size: 15px;
    line-height: 1.5;
    color: #E8EBE2;
    text-decoration: none;
    display: block;
    transition: color 0.28s ease-out;
}

.foot-contact-item:hover {
    color: #9DC844;
}

.foot-contact-item:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 200, 68, 0.55);
    border-radius: 0px;
}

.foot-addr {
    font-size: 15px;
    line-height: 1.5;
    color: #BEB4D3;
    margin: 0;
}

.pg-foot__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 48px;
}

.meta-menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.meta-menu__lnk {
    font-size: 15px;
    line-height: 1.5;
    color: #BEB4D3;
    text-decoration: none;
    transition: color 0.32s ease-out;
}

.meta-menu__lnk:hover {
    color: #9DC844;
}

.meta-menu__lnk:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 200, 68, 0.55);
}

.foot-tagline {
    font-size: 15px;
    line-height: 1.5;
    color: #BEB4D3;
    margin: 0;
}

@media (max-width: 960px) {
    .pg-head__band {
        padding: 24px;
    }

    .pg-head__row-top {
        flex-wrap: wrap;
    }

    .prim-menu {
        gap: 8px;
    }

    .prim-menu__lnk {
        padding: 8px 8px;
    }

    .pg-foot__band {
        padding: 48px 24px;
    }

    .pg-foot__primary {
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }

    .foot-brand-box {
        align-items: flex-start;
    }

    .foot-brand-name,
    .foot-copy {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .pg-head__band {
        padding: 24px 8px;
    }

    .brand-label {
        font-size: 20px;
    }

    .pg-head__row-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .prim-menu {
        width: 100%;
    }

    .pg-foot__band {
        padding: 48px 8px;
    }

    .pg-foot__meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

.cookie-tray {
    display: none;
    position: fixed;
    top: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 90%;
    max-width: 720px;
    background: #ffffff;
    border: 1.5px solid #9DC844;
    border-radius: 38px;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    z-index: 1200;
    padding: 24px 48px;
    transform: translateX(120%);
    transition: transform 0.42s ease-out;
}

.cookie-tray.visible {
    transform: translateX(0);
}

.cookie-tray__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1b2a00;
    margin: 0 0 8px;
}

.cookie-tray__uses {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #3a3a3a;
    margin: 0 0 8px;
    padding-left: 24px;
}

.cookie-tray__head {
    font-family: 'Manrope', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #1b2a00;
    margin: 8px 0 0;
}

.cookie-tray__toggles {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0;
}

.cookie-tray__toggles.open {
    display: flex;
}

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(157, 200, 68, 0.18);
}

.toggle-row__lbl {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #1b2a00;
    font-weight: 700;
}

.toggle-row__desc {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #3a3a3a;
    flex: 1;
}

.toggle-row__ctrl {
    width: 44px;
    height: 24px;
    border-radius: 38px;
    background: #E8EBE2;
    border: 1.5px solid #BEB4D3;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: background 0.28s ease-out, border-color 0.28s ease-out;
}

.toggle-row__ctrl.on {
    background: #9DC844;
    border-color: #9DC844;
}

.toggle-row__ctrl::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 38px;
    background: #ffffff;
    transition: left 0.25s ease-out;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
}

.toggle-row__ctrl.on::after {
    left: 22px;
}

.toggle-row--fixed .toggle-row__ctrl {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-tray__actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.ck-btn {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    cursor: pointer;
    border-radius: 38px;
    padding: 8px 24px;
    min-width: 120px;
    text-align: center;
    border: 2px solid #1b2a00;
    transition: background 0.28s ease-out, color 0.28s ease-out, box-shadow 0.38s ease-out;
}

.ck-btn--accept {
    background: #1b2a00;
    color: #ffffff;
}

.ck-btn--accept:hover {
    background: linear-gradient(135deg, #1b2a00 0%, #3a5200 100%);
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.ck-btn--accept:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(157, 200, 68, 0.55);
}

.ck-btn--reject {
    background: #ffffff;
    color: #1b2a00;
}

.ck-btn--reject:hover {
    background: #E8EBE2;
    box-shadow: 0 6px 22px 0 rgba(190, 180, 211, 0.08);
}

.ck-btn--reject:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(157, 200, 68, 0.55);
}

.ck-settings-lnk {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #9DC844;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.28s ease-out;
}

.ck-settings-lnk:hover {
    color: #1b2a00;
}

.ck-settings-lnk:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(157, 200, 68, 0.55);
}

@media (max-width: 480px) {
    .cookie-tray {
        padding: 24px 8px;
        border-radius: 38px;
    }

    .cookie-tray__actions {
        flex-direction: column;
        gap: 8px;
    }

    .ck-btn {
        width: 100%;
    }
}

.doc-text-n {
    max-width: 1366px;
    margin: 0 auto;
    padding: 96px 48px;
}

.doc-text-n h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #1b2a0e;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #9DC844;
}

.doc-text-n h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1b2a0e;
    margin-top: 96px;
    margin-bottom: 24px;
}

.doc-text-n h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #2a3d10;
    margin-top: 48px;
    margin-bottom: 24px;
}

.doc-text-n h4 {
    font-size: 20px;
    line-height: 1.5;
    color: #2a3d10;
    margin-top: 48px;
    margin-bottom: 8px;
}

.doc-text-n h5 {
    font-size: 15px;
    line-height: 1.5;
    color: #2a3d10;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.doc-text-n h6 {
    font-size: 15px;
    line-height: 1.5;
    color: #4a5e2a;
    margin-top: 24px;
    margin-bottom: 8px;
}

.doc-text-n div {
    margin-bottom: 24px;
}

.doc-text-n ul,
.doc-text-n ol {
    margin-top: 8px;
    margin-bottom: 24px;
    padding-left: 48px;
}

.doc-text-n ul {
    list-style: none;
    padding-left: 24px;
}

.doc-text-n ul li {
    position: relative;
    padding-left: 24px;
}

.doc-text-n ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    border-radius: 0px;
    background: #9DC844;
    transform: rotate(45deg);
}

.doc-text-n ol {
    list-style: decimal;
}

.doc-text-n ol li {
    padding-left: 8px;
}

.doc-text-n li {
    font-size: 15px;
    line-height: 1.7;
    color: #1e2d08;
    margin-bottom: 8px;
}

.doc-text-n ul ul,
.doc-text-n ol ol,
.doc-text-n ul ol,
.doc-text-n ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.doc-text-n em,
.doc-text-n i {
    font-style: italic;
    color: #3d5618;
}

.doc-text-n a {
    color: #5a8a00;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease-out, text-decoration-color 0.38s ease-out;
}

.doc-text-n a:hover {
    color: #3d6200;
    text-decoration-color: #9DC844;
}

.doc-text-n a:focus-visible {
    outline: 2px solid #9DC844;
    outline-offset: 3px;
    border-radius: 0px;
}

.doc-text-n table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    margin-bottom: 48px;
    font-size: 15px;
    line-height: 1.5;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
    border-radius: 38px;
    overflow: hidden;
}

.doc-text-n thead {
    background: #9DC844;
}

.doc-text-n thead th {
    color: #1b2a0e;
    font-size: 15px;
    line-height: 1.5;
    padding: 24px;
    text-align: left;
    font-weight: 700;
}

.doc-text-n tbody tr {
    border-bottom: 1px solid #E8EBE2;
    transition: background 0.28s ease-out;
}

.doc-text-n tbody tr:last-child {
    border-bottom: none;
}

.doc-text-n tbody tr:hover {
    background: #f4f7ee;
}

.doc-text-n td {
    padding: 24px;
    color: #1e2d08;
    vertical-align: top;
}

.doc-text-n th {
    padding: 24px;
}

.doc-text-n hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, #BEB4D3 30%, #9DC844 70%, transparent);
    margin-top: 48px;
    margin-bottom: 48px;
}

@media (max-width: 960px) {
    .doc-text-n {
        padding: 48px 24px;
    }

    .doc-text-n h1 {
        font-size: 36px;
    }

    .doc-text-n h2 {
        font-size: 26px;
        margin-top: 48px;
    }

    .doc-text-n h3 {
        font-size: 20px;
    }

    .doc-text-n table {
        display: block;
        overflow-x: auto;
        border-radius: 38px;
    }
}

@media (max-width: 480px) {
    .doc-text-n {
        padding: 48px 8px;
    }

    .doc-text-n h1 {
        font-size: 26px;
    }

    .doc-text-n h2 {
        font-size: 20px;
    }

    .doc-text-n h3 {
        font-size: 15px;
    }

    .doc-text-n ul,
    .doc-text-n ol {
        padding-left: 24px;
    }

    .doc-text-n thead th,
    .doc-text-n td {
        padding: 8px;
    }
}

.proj-det {
    max-width: 1366px;
    margin: 0 auto;
    overflow: hidden;
}

.proj-det .pg-cover {
    position: relative;
    padding: 96px 48px;
    background-color: #E8EBE2;
    background-image:
        repeating-linear-gradient(293deg, rgba(157, 200, 68, 0.08) 0px, transparent 1px, transparent 40px),
        repeating-linear-gradient(23deg, rgba(190, 180, 211, 0.07) 0px, transparent 1px, transparent 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.proj-det .pg-cover::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(157, 200, 68, 0.3);
    border-radius: 38px;
    pointer-events: none;
}

.proj-det .pg-cover::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 38px;
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.06), transparent 50%, rgba(190, 180, 211, 0.06));
    pointer-events: none;
}

.proj-det .cover__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.proj-det .cover__tag {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.08em;
    color: #3a4a1a;
    background: rgba(157, 200, 68, 0.18);
    padding: 8px 24px;
    border-radius: 38px;
}

.proj-det .cover__fmt {
    font-size: 15px;
    line-height: 1.3;
    color: #4a3f66;
    background: rgba(190, 180, 211, 0.22);
    padding: 8px 24px;
    border-radius: 38px;
}

.proj-det .cover__read {
    font-size: 15px;
    line-height: 1.3;
    color: #4a4a4a;
}

.proj-det .cover__h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #1e2a08;
    max-width: 820px;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: rgba(157, 200, 68, 0.45);
    text-underline-offset: 6px;
}

.proj-det .cover__sub {
    font-size: 20px;
    line-height: 1.5;
    color: #3a3a3a;
    max-width: 640px;
    margin: 0 0 48px;
}

.proj-det .cover__price-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.proj-det .cover__price {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a08;
    font-weight: 700;
}

.proj-det .btn-enroll {
    font-size: 20px;
    line-height: 1.3;
    padding: 24px 48px;
    border-radius: 38px;
    border: 2px solid #1e2a08;
    background: #1e2a08;
    color: #E8EBE2;
    cursor: pointer;
    transition: background 0.35s ease-out, color 0.25s ease-out, box-shadow 0.4s ease-out;
    outline-offset: 2px;
    position: relative;
}

.proj-det .btn-enroll::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-radius: 38px;
    transition: border-color 0.28s ease-out;
    pointer-events: none;
}

.proj-det .btn-enroll:hover {
    background: linear-gradient(293deg, #1e2a08, #3a4a1a);
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
}

.proj-det .btn-enroll:hover::after {
    border-color: rgba(157, 200, 68, 0.5);
}

.proj-det .btn-enroll:focus {
    outline: 3px solid #9DC844;
}

.proj-det .img-panel {
    padding: 96px 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proj-det .img-panel__frame {
    width: 100%;
    max-width: 860px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    position: relative;
}

.proj-det .img-panel__frame img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease-out;
}

.proj-det .img-panel__frame:hover img {
    transform: scale(1.02);
}

.proj-det .img-panel__caption {
    font-size: 15px;
    line-height: 1.5;
    color: #5a5a5a;
    margin-top: 24px;
    text-align: center;
}

.proj-det .prog-strip {
    padding: 96px 48px;
    background: linear-gradient(293deg, rgba(190, 180, 211, 0.18), rgba(232, 235, 226, 0.6) 50%, rgba(157, 200, 68, 0.1));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proj-det .prog-strip__label {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #4a3f66;
    margin-bottom: 24px;
}

.proj-det .prog-strip__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a08;
    text-align: center;
    margin: 0 0 48px;
    text-decoration: underline;
    text-decoration-color: rgba(190, 180, 211, 0.6);
    text-underline-offset: 5px;
}

.proj-det .prog-strip__body {
    max-width: 760px;
    width: 100%;
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    text-align: center;
}

.proj-det .prog-strip__body h2 {
    font-size: 26px;
    line-height: 1.3;
    color: #1e2a08;
    margin: 48px 0 24px;
    text-decoration: underline;
    text-decoration-color: rgba(157, 200, 68, 0.4);
    text-underline-offset: 4px;
}

.proj-det .prog-strip__body p {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
}

.proj-det .prog-strip__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.proj-det .prog-strip__body ul li {
    font-size: 20px;
    line-height: 1.5;
    color: #2a2a2a;
    padding-left: 24px;
    position: relative;
}

.proj-det .prog-strip__body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #9DC844;
}

.proj-det .prog-strip__body dl {
    text-align: left;
    margin: 0 0 24px;
}

.proj-det .prog-strip__body dt {
    font-size: 20px;
    line-height: 1.5;
    color: #1e2a08;
    font-weight: 700;
    margin-top: 24px;
}

.proj-det .prog-strip__body dd {
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 8px 0 0 24px;
}

.proj-det .prog-strip__body figure {
    margin: 48px 0;
}

.proj-det .prog-strip__body figcaption {
    font-size: 15px;
    line-height: 1.5;
    color: #5a5a5a;
    margin-top: 8px;
}

.proj-det .prog-strip__body cite {
    font-style: italic;
    color: #4a3f66;
}

.proj-det .desc-col {
    padding: 96px 48px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.proj-det .desc-col__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a08;
    text-align: center;
    margin: 0 0 48px;
    text-decoration: underline;
    text-decoration-color: rgba(157, 200, 68, 0.4);
    text-underline-offset: 5px;
}

.proj-det .desc-col__body {
    max-width: 760px;
    width: 100%;
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    text-align: center;
}

.proj-det .desc-col__body h2 {
    font-size: 26px;
    line-height: 1.3;
    color: #1e2a08;
    margin: 48px 0 24px;
    text-decoration: underline;
    text-decoration-color: rgba(190, 180, 211, 0.5);
    text-underline-offset: 4px;
}

.proj-det .desc-col__body p {
    margin: 0 0 24px;
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
}

.proj-det .desc-col__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.proj-det .desc-col__body ul li {
    font-size: 20px;
    line-height: 1.5;
    color: #2a2a2a;
    padding-left: 24px;
    position: relative;
}

.proj-det .desc-col__body ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #BEB4D3;
}

.proj-det .desc-col__body dl {
    text-align: left;
    margin: 0 0 24px;
}

.proj-det .desc-col__body dt {
    font-size: 20px;
    line-height: 1.5;
    color: #1e2a08;
    font-weight: 700;
    margin-top: 24px;
}

.proj-det .desc-col__body dd {
    font-size: 20px;
    line-height: 1.7;
    color: #2a2a2a;
    margin: 8px 0 0 24px;
}

.proj-det .desc-col__body figure {
    margin: 48px 0;
}

.proj-det .desc-col__body figcaption {
    font-size: 15px;
    line-height: 1.5;
    color: #5a5a5a;
    margin-top: 8px;
}

.proj-det .desc-col__body cite {
    font-style: italic;
    color: #4a3f66;
}

.proj-det .desc-col__body details {
    text-align: left;
    border-radius: 38px;
    border: 1px solid rgba(157, 200, 68, 0.25);
    padding: 24px;
    margin: 0 0 24px;
    background: rgba(232, 235, 226, 0.4);
}

.proj-det .desc-col__body summary {
    font-size: 20px;
    line-height: 1.5;
    color: #1e2a08;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.28s ease-out;
}

.proj-det .desc-col__body summary:hover {
    color: #4a7a10;
}

.proj-det .desc-col__body details[open] summary {
    margin-bottom: 24px;
}

.proj-det .cta-bar {
    padding: 96px 48px;
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.12), rgba(232, 235, 226, 0.8) 50%, rgba(190, 180, 211, 0.15));
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.proj-det .cta-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 48px;
    right: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(157, 200, 68, 0.4), transparent);
}

.proj-det .cta-bar__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a08;
    margin: 0 0 24px;
    max-width: 640px;
    text-decoration: underline;
    text-decoration-color: rgba(190, 180, 211, 0.5);
    text-underline-offset: 5px;
}

.proj-det .cta-bar__txt {
    font-size: 20px;
    line-height: 1.7;
    color: #3a3a3a;
    max-width: 540px;
    margin: 0 0 48px;
}

.proj-det .cta-bar__price {
    font-size: 50px;
    line-height: 1.1;
    color: #1e2a08;
    font-weight: 700;
    margin: 0 0 48px;
}

.proj-det .btn-sec {
    font-size: 20px;
    line-height: 1.3;
    padding: 24px 48px;
    border-radius: 38px;
    border: 2px solid #4a3f66;
    background: #4a3f66;
    color: #E8EBE2;
    cursor: pointer;
    transition: background 0.38s ease-out, box-shadow 0.3s ease-out;
    position: relative;
    outline-offset: 2px;
}

.proj-det .btn-sec::after {
    content: "";
    position: absolute;
    inset: -5px;
    border: 2px solid transparent;
    border-radius: 38px;
    transition: border-color 0.25s ease-out;
    pointer-events: none;
}

.proj-det .btn-sec:hover {
    background: linear-gradient(293deg, #4a3f66, #6a5a8a);
    box-shadow: 0 6px 22px 0 rgba(190, 180, 211, 0.08);
}

.proj-det .btn-sec:hover::after {
    border-color: rgba(190, 180, 211, 0.6);
}

.proj-det .btn-sec:focus {
    outline: 3px solid #9DC844;
}

.proj-det .svg-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.proj-det .svg-div svg {
    display: block;
    width: 100%;
}

@media (max-width: 960px) {
    .proj-det .pg-cover {
        padding: 48px 24px;
    }

    .proj-det .cover__h1 {
        font-size: 36px;
    }

    .proj-det .cover__sub {
        font-size: 20px;
    }

    .proj-det .img-panel {
        padding: 48px 24px;
    }

    .proj-det .prog-strip {
        padding: 48px 24px;
    }

    .proj-det .desc-col {
        padding: 48px 24px;
    }

    .proj-det .cta-bar {
        padding: 48px 24px;
    }

    .proj-det .cta-bar__price {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .proj-det .pg-cover {
        padding: 48px 8px;
    }

    .proj-det .cover__h1 {
        font-size: 26px;
    }

    .proj-det .cover__price {
        font-size: 26px;
    }

    .proj-det .btn-enroll,
    .proj-det .btn-sec {
        font-size: 15px;
        padding: 24px 24px;
    }

    .proj-det .prog-strip {
        padding: 48px 8px;
    }

    .proj-det .desc-col {
        padding: 48px 8px;
    }

    .proj-det .cta-bar {
        padding: 48px 8px;
    }

    .proj-det .prog-strip__h2,
    .proj-det .desc-col__h2,
    .proj-det .cta-bar__h2 {
        font-size: 26px;
    }

    .proj-det .cta-bar__price {
        font-size: 26px;
    }
}

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

.abt-us *,
.abt-us *::before,
.abt-us *::after {
    box-sizing: border-box;
}

.abt-us ::selection {
    background: #2d2d2d;
    color: #f0f0f0;
}

.abt-us .pg-lead {
    position: relative;
    padding: 96px 48px 48px;
    background-color: #E8EBE2;
    background-image:
        repeating-linear-gradient(293deg,
            rgba(157, 200, 68, 0.07) 0px,
            rgba(157, 200, 68, 0.07) 1px,
            transparent 1px,
            transparent 60px),
        repeating-linear-gradient(203deg,
            rgba(190, 180, 211, 0.07) 0px,
            rgba(190, 180, 211, 0.07) 1px,
            transparent 1px,
            transparent 60px);
    overflow: hidden;
}

.abt-us .pg-lead__geo {
    position: absolute;
    top: -48px;
    right: -48px;
    width: 320px;
    height: 320px;
    border-radius: 38px;
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.13), transparent 55%, rgba(190, 180, 211, 0.13));
    transform: rotate(18deg);
    pointer-events: none;
    animation: geo-spin 28s linear infinite;
}

.abt-us .pg-lead__geo-sm {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 140px;
    height: 140px;
    border-radius: 38px;
    border: 2px solid rgba(157, 200, 68, 0.22);
    pointer-events: none;
    animation: geo-spin 40s linear infinite reverse;
}

@keyframes geo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.abt-us .pg-lead__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.abt-us .pg-lead__tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #3a4a1a;
    background: rgba(157, 200, 68, 0.18);
    border-radius: 0px;
    padding: 8px 24px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fade-reveal 0.45s ease-out 0.1s forwards;
}

.abt-us .pg-lead__h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #1e2a0a;
    max-width: 820px;
    margin: 0 0 24px;
    opacity: 0;
    animation: fade-reveal 0.4s ease-out 0.25s forwards;
}

.abt-us .pg-lead__desc {
    font-size: 20px;
    line-height: 1.7;
    color: #3d3d3d;
    max-width: 560px;
    margin: 0;
    opacity: 0;
    animation: fade-reveal 0.38s ease-out 0.4s forwards;
}

@keyframes fade-reveal {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.abt-us .story-strip {
    padding: 96px 48px;
    background: #fff;
}

.abt-us .story-strip__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.abt-us .story-strip__img-wrap {
    position: relative;
    border-radius: 38px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
}

.abt-us .story-strip__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease-out;
}

.abt-us .story-strip__img-wrap:hover img {
    transform: scale(1.04);
}

.abt-us .story-strip__img-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(232, 235, 226, 0.6), transparent);
    pointer-events: none;
}

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

.abt-us .story-strip__label {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #5a7a1a;
    letter-spacing: 0.07em;
}

.abt-us .story-strip__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #9DC844;
    display: inline-block;
}

.abt-us .story-strip__p {
    font-size: 20px;
    line-height: 1.7;
    color: #3d3d3d;
    margin: 0;
}

.abt-us .story-strip__nums {
    display: flex;
    flex-direction: row;
    gap: 48px;
    margin-top: 8px;
}

.abt-us .num-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.abt-us .num-ring__arc {
    position: relative;
    width: 72px;
    height: 72px;
}

.abt-us .num-ring__arc svg {
    width: 72px;
    height: 72px;
    transform: rotate(-90deg);
}

.abt-us .num-ring__arc .arc-bg {
    fill: none;
    stroke: #E8EBE2;
    stroke-width: 5;
}

.abt-us .num-ring__arc .arc-fill {
    fill: none;
    stroke: #9DC844;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 188;
    stroke-dashoffset: 47;
    transition: stroke-dashoffset 0.4s ease-out;
}

.abt-us .num-ring__arc .arc-fill.full {
    stroke-dashoffset: 0;
}

.abt-us .num-ring__arc .arc-fill.part {
    stroke-dashoffset: 94;
}

.abt-us .num-ring__val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    line-height: 1.1;
    color: #1e2a0a;
    font-weight: 700;
}

.abt-us .num-ring__lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #5a5a5a;
    text-align: center;
}

.abt-us .team-band {
    padding: 96px 48px;
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.08), transparent 45%, rgba(190, 180, 211, 0.12));
    position: relative;
}

.abt-us .team-band__geo {
    position: absolute;
    top: 48px;
    right: 96px;
    width: 200px;
    height: 200px;
    border-radius: 38px;
    border: 1.5px solid rgba(190, 180, 211, 0.3);
    pointer-events: none;
    animation: geo-spin 50s linear infinite;
}

.abt-us .team-band__inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.abt-us .team-band__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0 0 8px;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 2px solid #BEB4D3;
}

.abt-us .team-band__sub {
    font-size: 20px;
    line-height: 1.5;
    color: #4a4a4a;
    max-width: 560px;
    margin: 16px auto 0;
}

.abt-us .team-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.abt-us .team-card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    background: #fff;
    border-radius: 38px;
    padding: 48px;
    box-shadow: 0 6px 22px 0 rgba(190, 180, 211, 0.08);
    transition: box-shadow 0.35s ease-out;
}

.abt-us .team-card:hover {
    box-shadow: 0 10px 60px 0 rgba(190, 180, 211, 0.12);
}

.abt-us .team-card__portrait {
    flex-shrink: 0;
    width: 120px;
    height: 180px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
}

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

.abt-us .team-card__info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .team-card__name {
    font-size: 26px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #E8EBE2;
}

.abt-us .team-card__role {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #5a7a1a;
    letter-spacing: 0.06em;
}

.abt-us .team-card__bio {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.abt-us .team-card--no-portrait {
    flex-direction: column;
}

.abt-us .team-card--no-portrait .team-card__info {
    width: 100%;
}

.abt-us .divider-word {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    margin: 0 auto;
    max-width: 400px;
    padding: 48px 0 0;
}

.abt-us .divider-word__line {
    flex: 1;
    height: 1px;
    background: rgba(157, 200, 68, 0.3);
}

.abt-us .divider-word__txt {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #7a9a3a;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.abt-us .compare-band {
    padding: 96px 48px;
    background: #E8EBE2;
    position: relative;
    overflow: hidden;
}

.abt-us .compare-band__bg-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.abt-us .compare-band__bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.07;
    display: block;
}

.abt-us .compare-band__inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.abt-us .compare-band__hd {
    text-align: center;
    margin-bottom: 48px;
}

.abt-us .compare-band__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0 0 16px;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 2px solid #9DC844;
}

.abt-us .compare-band__desc {
    font-size: 20px;
    line-height: 1.5;
    color: #3d3d3d;
    max-width: 560px;
    margin: 0 auto;
}

.abt-us .compare-tbl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.abt-us .cmp-col {
    background: #fff;
    border-radius: 38px;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
    transition: box-shadow 0.28s ease-out;
    text-align: center;
}

.abt-us .cmp-col:hover {
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.abt-us .cmp-col.rec {
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.12), transparent 60%, rgba(190, 180, 211, 0.1));
    border: 2px solid #9DC844;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
}

.abt-us .cmp-col__badge {
    display: none;
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #3a4a1a;
    background: #9DC844;
    border-radius: 0px;
    padding: 8px 24px;
    letter-spacing: 0.07em;
}

.abt-us .cmp-col.rec .cmp-col__badge {
    display: inline-block;
}

.abt-us .cmp-col__name {
    font-size: 26px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0;
}

.abt-us .cmp-col__price {
    font-size: 36px;
    line-height: 1.1;
    color: #3a4a1a;
    font-weight: 700;
}

.abt-us .cmp-col__price span {
    font-size: 15px;
    font-weight: 400;
    color: #5a5a5a;
}

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

.abt-us .cmp-col__feats li {
    font-size: 15px;
    line-height: 1.5;
    color: #3d3d3d;
    padding: 8px 0;
    border-bottom: 1px solid rgba(157, 200, 68, 0.15);
}

.abt-us .cmp-col__feats li:last-child {
    border-bottom: none;
}

.abt-us .cmp-col__btn {
    display: inline-block;
    padding: 24px 48px;
    border-radius: 0px;
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.07em;
    cursor: pointer;
    border: 2px solid #1e2a0a;
    background: #1e2a0a;
    color: #E8EBE2;
    transition: background 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out, outline-offset 0.25s ease-out;
    outline: 2px solid transparent;
    outline-offset: 0px;
    text-decoration: none;
}

.abt-us .cmp-col__btn:hover {
    background: linear-gradient(293deg, #3a4a1a, #5a7a1a);
    border-color: #3a4a1a;
    outline: 2px solid #3a4a1a;
    outline-offset: 4px;
}

.abt-us .cmp-col__btn:focus-visible {
    outline: 3px solid #9DC844 !important;
    outline-offset: 6px !important;
}

.abt-us .cmp-col.rec .cmp-col__btn {
    background: #9DC844;
    border-color: #9DC844;
    color: #1e2a0a;
}

.abt-us .cmp-col.rec .cmp-col__btn:hover {
    background: linear-gradient(293deg, #9DC844, #7aaa20);
    border-color: #7aaa20;
    outline-color: #7aaa20;
}

.abt-us .vals-band {
    padding: 96px 48px;
    background: #fff;
}

.abt-us .vals-band__inner {
    max-width: 1366px;
    margin: 0 auto;
}

.abt-us .vals-band__hd {
    text-align: center;
    margin-bottom: 48px;
}

.abt-us .vals-band__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0;
    display: inline-block;
    padding-bottom: 12px;
    border-bottom: 2px solid #BEB4D3;
}

.abt-us .vals-band__sub {
    font-size: 20px;
    line-height: 1.5;
    color: #4a4a4a;
    max-width: 560px;
    margin: 16px auto 0;
    text-align: center;
}

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

.abt-us .val-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.abt-us .val-item__img {
    width: 100%;
    border-radius: 38px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.abt-us .val-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease-out;
}

.abt-us .val-item:hover .val-item__img img {
    transform: scale(1.05);
}

.abt-us .val-item__h4 {
    font-size: 20px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(157, 200, 68, 0.3);
    width: 100%;
}

.abt-us .val-item__p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.abt-us .vals-band__bottom {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    padding-top: 48px;
    border-top: 1px solid #E8EBE2;
}

.abt-us .vals-band__img-side {
    border-radius: 38px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 10px 60px 0 rgba(190, 180, 211, 0.12);
}

.abt-us .vals-band__img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-us .vals-band__txt-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.abt-us .vals-band__txt-side p {
    font-size: 20px;
    line-height: 1.7;
    color: #3d3d3d;
    margin: 0;
}

.abt-us .vals-band__txt-side h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #1e2a0a;
    margin: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #E8EBE2;
}

@media (max-width: 960px) {
    .abt-us .pg-lead {
        padding: 96px 24px 48px;
    }

    .abt-us .pg-lead__h1 {
        font-size: 50px;
    }

    .abt-us .story-strip {
        padding: 96px 24px;
    }

    .abt-us .story-strip__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-us .team-band {
        padding: 96px 24px;
    }

    .abt-us .team-band__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .abt-us .compare-band {
        padding: 96px 24px;
    }

    .abt-us .compare-tbl {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .abt-us .vals-band {
        padding: 96px 24px;
    }

    .abt-us .vals-row {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .abt-us .vals-band__bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .abt-us .pg-lead__h1 {
        font-size: 36px;
    }

    .abt-us .pg-lead__desc {
        font-size: 15px;
    }

    .abt-us .story-strip__nums {
        flex-direction: column;
        gap: 24px;
    }

    .abt-us .team-card {
        flex-direction: column;
        padding: 24px;
    }

    .abt-us .cmp-col {
        padding: 24px 24px;
    }

    .abt-us .compare-band__h2,
    .abt-us .team-band__h2,
    .abt-us .story-strip__h2,
    .abt-us .vals-band__h2 {
        font-size: 26px;
    }
}

@media (min-width: 1440px) {
    .abt-us .pg-lead__h1 {
        font-size: 68px;
    }
}

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

.supp-pg .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 48px;
}

.supp-pg .dec-circle {
    position: absolute;
    border-radius: 38px;
    pointer-events: none;
}

.supp-pg ::selection {
    background: #2d2d2d;
    color: #E8EBE2;
}

.supp-pg .acc-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #6a7a3a;
    line-height: 1.3;
}

.supp-pg .und-head {
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: #9DC844;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

.supp-pg .btn-drk {
    display: inline-block;
    background: #2a2d22;
    color: #E8EBE2;
    font-size: 15px;
    font-weight: 700;
    padding: 24px 48px;
    border-radius: 0px;
    border: 2px solid #2a2d22;
    cursor: pointer;
    transition: background 0.35s ease-out, border-color 0.25s ease-out, outline-offset 0.28s ease-out, outline-width 0.28s ease-out;
    outline: 0px solid transparent;
    outline-offset: 0px;
    text-decoration: none;
    line-height: 1.3;
}

.supp-pg .btn-drk:hover {
    background: linear-gradient(293deg, #2a2d22 0%, #4a5a28 60%, #2a2d22 100%);
    outline: 3px solid #9DC844;
    outline-offset: 4px;
    border-color: #9DC844;
}

.supp-pg .btn-drk:focus {
    outline: 3px solid #9DC844;
    outline-offset: 4px;
}

.supp-pg .btn-drk:active {
    background: #1a1f12;
}

.supp-pg .btn-lgt {
    display: inline-block;
    background: #E8EBE2;
    color: #2a2d22;
    font-size: 15px;
    font-weight: 700;
    padding: 24px 48px;
    border-radius: 0px;
    border: 2px solid #E8EBE2;
    cursor: pointer;
    transition: background 0.38s ease-out, border-color 0.22s ease-out, outline-offset 0.3s ease-out;
    outline: 0px solid transparent;
    outline-offset: 0px;
    text-decoration: none;
    line-height: 1.3;
}

.supp-pg .btn-lgt:hover {
    background: linear-gradient(293deg, #E8EBE2 0%, #ffffff 50%, #BEB4D3 100%);
    outline: 3px solid #E8EBE2;
    outline-offset: 4px;
    border-color: #ffffff;
}

.supp-pg .btn-lgt:focus {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

.supp-pg input::placeholder,
.supp-pg textarea::placeholder {
    font-style: italic;
    opacity: 0.55;
}

@keyframes suppReveal {
    from {
        opacity: 0;
        transform: rotate(-1.5deg) translateY(24px);
    }

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

@keyframes suppFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

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

.supp-pg .reveal-anim {
    animation: suppReveal 0.45s ease-out both;
}

.supp-pg .fade-up {
    animation: suppFadeUp 0.4s ease-out both;
}

.supp-pg .fade-up--d1 {
    animation-delay: 0.1s;
}

.supp-pg .fade-up--d2 {
    animation-delay: 0.2s;
}

.supp-pg .fade-up--d3 {
    animation-delay: 0.32s;
}

.supp-pg .sec-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    position: relative;
}

.supp-pg .sec-divider__sym {
    font-size: 36px;
    font-weight: 900;
    color: #BEB4D3;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 38px;
    background: #ffffff;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
    position: relative;
    z-index: 1;
    user-select: none;
}

.supp-pg .sec-divider::before,
.supp-pg .sec-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(293deg, transparent, #BEB4D3 50%, transparent);
}

.supp-pg .sec-divider::before {
    margin-right: 24px;
}

.supp-pg .sec-divider::after {
    margin-left: 24px;
}

.supp-pg .tri-acc {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

.supp-pg .tri-acc--tl {
    top: 0;
    left: 0;
    border-top: 64px solid rgba(157, 200, 68, 0.12);
    border-right: 64px solid transparent;
}

.supp-pg .tri-acc--br {
    bottom: 0;
    right: 0;
    border-bottom: 64px solid rgba(190, 180, 211, 0.14);
    border-left: 64px solid transparent;
}

.supp-pg .tri-acc--tr {
    top: 0;
    right: 0;
    border-top: 48px solid rgba(157, 200, 68, 0.09);
    border-left: 48px solid transparent;
}

.supp-pg .tri-acc--bl {
    bottom: 0;
    left: 0;
    border-bottom: 48px solid rgba(190, 180, 211, 0.1);
    border-right: 48px solid transparent;
}

.supp-pg .vign-wrap {
    position: relative;
    overflow: hidden;
}

.supp-pg .vign-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(42, 45, 34, 0.18) 100%);
    pointer-events: none;
    z-index: 0;
}

.supp-pg .vign-wrap>* {
    position: relative;
    z-index: 1;
}

.supp-pg .supp-hero {
    background: linear-gradient(293deg, #E8EBE2 0%, #f5f6f2 55%, rgba(190, 180, 211, 0.18) 100%);
    padding: 96px 0 48px;
    position: relative;
    overflow: hidden;
}

.supp-pg .supp-hero__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
}

.supp-pg .supp-hero__img-col {
    flex: 0 0 340px;
    position: relative;
}

.supp-pg .supp-hero__img-wrap {
    width: 340px;
    height: 240px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    position: relative;
}

.supp-pg .supp-hero__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(42, 45, 34, 0.45) 0%, transparent 60%);
    pointer-events: none;
}

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

.supp-pg .supp-hero__txt-col {
    flex: 1;
    text-align: center;
}

.supp-pg .supp-hero__eyebrow {
    margin-bottom: 24px;
}

.supp-pg .supp-hero__h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #2a2d22;
    margin-bottom: 24px;
}

.supp-pg .supp-hero__counter-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-bottom: 24px;
}

.supp-pg .supp-hero__stat {
    text-align: center;
}

.supp-pg .supp-hero__stat-num {
    font-size: 36px;
    font-weight: 900;
    color: #9DC844;
    line-height: 1.1;
    display: block;
}

.supp-pg .supp-hero__stat-lbl {
    font-size: 15px;
    color: #4a4d3a;
    line-height: 1.5;
}

.supp-pg .supp-hero__desc {
    font-size: 20px;
    color: #3a3d2a;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.supp-pg .supp-hero__circ-1 {
    width: 180px;
    height: 180px;
    border-radius: 38px;
    background: rgba(157, 200, 68, 0.07);
    position: absolute;
    top: -48px;
    right: -48px;
    pointer-events: none;
}

.supp-pg .supp-hero__circ-2 {
    width: 120px;
    height: 120px;
    border-radius: 38px;
    background: rgba(190, 180, 211, 0.1);
    position: absolute;
    bottom: -24px;
    left: -24px;
    pointer-events: none;
}

.supp-pg .supp-hero__circ-3 {
    width: 80px;
    height: 80px;
    border-radius: 38px;
    background: rgba(157, 200, 68, 0.09);
    position: absolute;
    top: 48px;
    left: 24px;
    pointer-events: none;
}

.supp-pg .chan-sec {
    background: #2a2d22;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.supp-pg .chan-sec__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start;
}

.supp-pg .chan-sec__left {
    text-align: center;
}

.supp-pg .chan-sec__h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #E8EBE2;
    margin-bottom: 24px;
}

.supp-pg .chan-sec__lead {
    font-size: 20px;
    color: #BEB4D3;
    line-height: 1.7;
    margin-bottom: 24px;
}

.supp-pg .chan-sec__img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 60px 0 rgba(190, 180, 211, 0.12);
    margin-top: 24px;
}

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

.supp-pg .chan-sec__right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.supp-pg .chan-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 38px;
    padding: 48px;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
    text-align: center;
    transition: background 0.35s ease-out, box-shadow 0.28s ease-out;
    position: relative;
    overflow: hidden;
}

.supp-pg .chan-card:hover {
    background: rgba(157, 200, 68, 0.1);
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
}

.supp-pg .chan-card__ico {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.supp-pg .chan-card__ico svg {
    width: 40px;
    height: 40px;
}

.supp-pg .chan-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #9DC844;
    line-height: 1.3;
    margin-bottom: 8px;
}

.supp-pg .chan-card__body {
    font-size: 15px;
    color: #c8cbb8;
    line-height: 1.7;
    margin-bottom: 8px;
}

.supp-pg .chan-card__detail {
    font-size: 15px;
    color: #9DC844;
    font-weight: 700;
    line-height: 1.5;
}

.supp-pg .chan-card__fact {
    background: rgba(157, 200, 68, 0.12);
    border-radius: 0px;
    padding: 8px 24px;
    display: inline-block;
    margin-top: 8px;
}

.supp-pg .chan-card__fact-txt {
    font-size: 15px;
    color: #E8EBE2;
    line-height: 1.5;
    font-weight: 600;
}

.supp-pg .chan-sec__portrait-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 38px;
    padding: 24px 48px;
    margin-top: 24px;
}

.supp-pg .chan-sec__port-img {
    width: 80px;
    height: 106px;
    border-radius: 38px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
}

.supp-pg .chan-sec__port-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.supp-pg .chan-sec__port-txt {
    text-align: left;
}

.supp-pg .chan-sec__port-name {
    font-size: 20px;
    font-weight: 700;
    color: #E8EBE2;
    line-height: 1.3;
}

.supp-pg .chan-sec__port-role {
    font-size: 15px;
    color: #BEB4D3;
    line-height: 1.5;
}

.supp-pg .chan-sec__port-quote {
    font-size: 15px;
    color: #c8cbb8;
    line-height: 1.7;
    font-style: italic;
    margin-top: 8px;
}

.supp-pg .chan-sec__acc-circ {
    width: 200px;
    height: 200px;
    border-radius: 38px;
    background: rgba(157, 200, 68, 0.05);
    position: absolute;
    top: -48px;
    left: -48px;
    pointer-events: none;
}

.supp-pg .chan-sec__acc-circ2 {
    width: 140px;
    height: 140px;
    border-radius: 38px;
    background: rgba(190, 180, 211, 0.06);
    position: absolute;
    bottom: -24px;
    right: -24px;
    pointer-events: none;
}

@media (max-width: 960px) {
    .supp-pg .pg-wrap {
        padding: 0 24px;
    }

    .supp-pg .supp-hero__inner {
        flex-direction: column;
        gap: 24px;
    }

    .supp-pg .supp-hero__img-col {
        flex: none;
        width: 100%;
    }

    .supp-pg .supp-hero__img-wrap {
        width: 100%;
        height: 200px;
    }

    .supp-pg .supp-hero__h1 {
        font-size: 36px;
    }

    .supp-pg .supp-hero__counter-row {
        gap: 24px;
    }

    .supp-pg .chan-sec__inner {
        grid-template-columns: 1fr;
    }

    .supp-pg .chan-sec__left {
        order: 2;
    }

    .supp-pg .chan-sec__right {
        order: 1;
    }
}

@media (max-width: 480px) {
    .supp-pg .supp-hero {
        padding: 48px 0 24px;
    }

    .supp-pg .supp-hero__h1 {
        font-size: 26px;
    }

    .supp-pg .supp-hero__stat-num {
        font-size: 26px;
    }

    .supp-pg .supp-hero__desc {
        font-size: 15px;
    }

    .supp-pg .supp-hero__counter-row {
        flex-direction: column;
        gap: 8px;
    }

    .supp-pg .chan-sec {
        padding: 48px 0;
    }

    .supp-pg .chan-card {
        padding: 24px;
    }

    .supp-pg .chan-sec__h2 {
        font-size: 26px;
    }

    .supp-pg .chan-sec__portrait-wrap {
        flex-direction: column;
        padding: 24px;
        text-align: center;
    }

    .supp-pg .chan-sec__port-txt {
        text-align: center;
    }

    .supp-pg .btn-drk,
    .supp-pg .btn-lgt {
        padding: 24px 24px;
    }
}

@media (min-width: 1440px) {
    .supp-pg .supp-hero__h1 {
        font-size: 68px;
    }

    .supp-pg .supp-hero__img-col {
        flex: 0 0 420px;
    }

    .supp-pg .supp-hero__img-wrap {
        width: 420px;
        height: 290px;
    }
}

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

.strt .pg-wrap {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.strt .dot-div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.strt .dot-div span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #BEB4D3;
    display: block;
}

.strt .lbl {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #5a5a5a;
    padding-bottom: 8px;
}

.strt .und {
    text-decoration: underline;
    text-decoration-color: #9DC844;
    text-underline-offset: 4px;
}

.strt .btn-drk {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    padding: 24px 48px;
    background: #2b2b2b;
    color: #ffffff;
    border-radius: 0px;
    border: 2px solid #2b2b2b;
    cursor: pointer;
    text-decoration: none !important;
    outline: none;
    position: relative;
    transition: background 0.25s ease-out, color 0.28s ease-out, border-color 0.25s ease-out, box-shadow 0.35s ease-out;
}

.strt .btn-drk::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid transparent;
    border-radius: 0px;
    transition: border-color 0.32s ease-out;
    pointer-events: none;
}

.strt .btn-drk:hover::after {
    border-color: #2b2b2b;
}

.strt .btn-drk:hover {
    background: linear-gradient(293deg, #9DC844, transparent 55%, #BEB4D3);
    color: #1a1a1a;
    border-color: #9DC844;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.strt .btn-drk:focus {
    outline: 3px solid #9DC844;
    outline-offset: 4px;
}

.strt .btn-lt {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    padding: 24px 48px;
    background: #ffffff;
    color: #2b2b2b;
    border-radius: 0px;
    border: 2px solid #ffffff;
    cursor: pointer;
    text-decoration: none !important;
    outline: none;
    position: relative;
    transition: background 0.28s ease-out, color 0.25s ease-out, border-color 0.28s ease-out;
}

.strt .btn-lt::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid transparent;
    border-radius: 0px;
    transition: border-color 0.35s ease-out;
    pointer-events: none;
}

.strt .btn-lt:hover::after {
    border-color: #ffffff;
}

.strt .btn-lt:hover {
    background: linear-gradient(293deg, #9DC844, transparent 55%, #BEB4D3);
    color: #2b2b2b;
    border-color: #9DC844;
}

.strt .btn-lt:focus {
    outline: 3px solid #9DC844;
    outline-offset: 4px;
}

.strt .ttl-blk {
    background: #2b2b2b;
    position: relative;
}

.strt .ttl-blk .ttl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
    align-items: end;
}

.strt .ttl-blk .ttl-txt {
    padding-top: 96px;
    padding-bottom: 96px;
    padding-right: 48px;
    padding-left: 48px;
    position: relative;
    z-index: 1;
}

.strt .ttl-blk .ttl-txt .lbl {
    color: #BEB4D3;
}

.strt .ttl-blk .ttl-h1 {
    font-size: 68px;
    line-height: 1.1;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 24px;
}

.strt .ttl-blk .ttl-tag {
    font-size: 20px;
    line-height: 1.5;
    color: #E8EBE2;
    margin-bottom: 48px;
    max-width: 480px;
}

.strt .ttl-blk .ttl-actions {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
}

.strt .ttl-blk .ttl-img-wrap {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 640px;
}

.strt .ttl-blk .ttl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.75);
    transition: filter 0.4s ease-out;
}

.strt .ttl-blk .ttl-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.35), transparent 60%, rgba(190, 180, 211, 0.2));
    pointer-events: none;
}

.strt .ttl-blk .ttl-deco {
    position: absolute;
    bottom: 48px;
    left: 48px;
    width: 80px;
    height: 80px;
    border: 3px solid rgba(157, 200, 68, 0.25);
    border-radius: 0px;
    pointer-events: none;
}

.strt .exp-sec {
    background: #ffffff;
    padding-top: 96px;
    padding-bottom: 96px;
}

.strt .exp-sec .exp-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 96px;
    align-items: start;
}

.strt .exp-sec .exp-aside {
    position: sticky;
    top: 48px;
}

.strt .exp-sec .exp-h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2b2b2b;
    margin-top: 24px;
    margin-bottom: 24px;
}

.strt .exp-sec .exp-lead {
    font-size: 20px;
    line-height: 1.5;
    color: #3d3d3d;
}

.strt .exp-sec .exp-img-wrap {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    margin-bottom: 48px;
}

.strt .exp-sec .exp-img-wrap img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease-out;
}

.strt .exp-sec .exp-img-wrap:hover img {
    transform: scale(1.03);
}

.strt .exp-sec .exp-phases {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strt .exp-sec .phase-item {
    padding: 24px;
    background: #E8EBE2;
    border-radius: 38px;
    text-align: center;
    transition: box-shadow 0.35s ease-out, background 0.28s ease-out;
}

.strt .exp-sec .phase-item:hover {
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.15), transparent 55%, rgba(190, 180, 211, 0.15));
    box-shadow: 0 6px 22px 0 rgba(190, 180, 211, 0.08);
}

.strt .exp-sec .phase-num {
    font-size: 36px;
    line-height: 1.1;
    color: #9DC844;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.strt .exp-sec .phase-h {
    font-size: 20px;
    line-height: 1.3;
    color: #2b2b2b;
    margin-bottom: 8px;
}

.strt .exp-sec .phase-p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.strt .avail-sec {
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.08), rgba(232, 235, 226, 0.6) 50%, rgba(190, 180, 211, 0.1));
    padding-top: 96px;
    padding-bottom: 96px;
}

.strt .avail-sec .avail-head {
    text-align: center;
    margin-bottom: 48px;
}

.strt .avail-sec .avail-h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2b2b2b;
    margin-top: 8px;
    margin-bottom: 24px;
}

.strt .avail-sec .avail-sub {
    font-size: 20px;
    line-height: 1.5;
    color: #3d3d3d;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

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

.strt .avail-sec .av-card {
    background: #ffffff;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
    transition: box-shadow 0.38s ease-out, transform 0.3s ease-out;
    text-align: center;
}

.strt .avail-sec .av-card:hover {
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    transform: translateY(-4px);
}

.strt .avail-sec .av-img-wrap {
    position: relative;
    overflow: hidden;
}

.strt .avail-sec .av-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease-out, filter 0.35s ease-out;
}

.strt .avail-sec .av-img-wrap .av-overlay {
    position: absolute;
    inset: 0;
    background: rgba(43, 43, 43, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: background 0.35s ease-out;
    padding: 24px;
}

.strt .avail-sec .av-img-wrap .av-overlay p {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0);
    transition: color 0.28s ease-out;
}

.strt .avail-sec .av-card:hover .av-img-wrap .av-overlay {
    background: rgba(43, 43, 43, 0.78);
}

.strt .avail-sec .av-card:hover .av-img-wrap .av-overlay p {
    color: #ffffff;
}

.strt .avail-sec .av-card:hover .av-img-wrap img {
    transform: scale(1.05);
}

.strt .avail-sec .av-body {
    padding: 24px;
}

.strt .avail-sec .av-h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #2b2b2b;
    margin-bottom: 8px;
    text-decoration: underline;
    text-decoration-color: #9DC844;
    text-underline-offset: 4px;
}

.strt .avail-sec .av-meta {
    font-size: 15px;
    line-height: 1.5;
    color: #5a5a5a;
}

.strt .rep-sec {
    background: #2b2b2b;
    padding-top: 96px;
    padding-bottom: 96px;
}

.strt .rep-sec .rep-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.strt .rep-sec .rep-txt .lbl {
    color: #BEB4D3;
}

.strt .rep-sec .rep-h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 24px;
}

.strt .rep-sec .rep-p {
    font-size: 20px;
    line-height: 1.5;
    color: #E8EBE2;
    margin-bottom: 24px;
}

.strt .rep-sec .rep-p-sm {
    font-size: 15px;
    line-height: 1.7;
    color: #BEB4D3;
}

.strt .rep-sec .rep-refs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.strt .rep-sec .ref-item {
    padding: 24px;
    border-radius: 38px;
    background: rgba(232, 235, 226, 0.06);
    border: 1px solid rgba(190, 180, 211, 0.2);
    transition: background 0.32s ease-out, border-color 0.28s ease-out;
    text-align: center;
}

.strt .rep-sec .ref-item:hover {
    background: rgba(157, 200, 68, 0.1);
    border-color: rgba(157, 200, 68, 0.4);
}

.strt .rep-sec .ref-name {
    font-size: 20px;
    line-height: 1.3;
    color: #9DC844;
    margin-bottom: 8px;
}

.strt .rep-sec .ref-desc {
    font-size: 15px;
    line-height: 1.5;
    color: #BEB4D3;
}

.strt .ppl-sec {
    background: #ffffff;
    padding-top: 96px;
    padding-bottom: 96px;
}

.strt .ppl-sec .ppl-head {
    text-align: center;
    margin-bottom: 48px;
}

.strt .ppl-sec .ppl-h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2b2b2b;
    margin-top: 8px;
    margin-bottom: 24px;
}

.strt .ppl-sec .ppl-sub {
    font-size: 20px;
    line-height: 1.5;
    color: #3d3d3d;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.strt .ppl-sec .ppl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.strt .ppl-sec .prs-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    background: #E8EBE2;
    border-radius: 38px;
    box-shadow: 0 3px 4px 0 rgba(190, 180, 211, 0.07);
    transition: box-shadow 0.38s ease-out;
}

.strt .ppl-sec .prs-card:hover {
    box-shadow: 0 10px 60px 0 rgba(190, 180, 211, 0.12);
}

.strt .ppl-sec .prs-portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
    flex-shrink: 0;
}

.strt .ppl-sec .prs-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.strt .ppl-sec .prs-name {
    font-size: 20px;
    line-height: 1.3;
    color: #2b2b2b;
    margin-bottom: 8px;
    text-decoration: underline;
    text-decoration-color: #9DC844;
    text-underline-offset: 4px;
}

.strt .ppl-sec .prs-role {
    font-size: 15px;
    line-height: 1.3;
    color: #5a5a5a;
    text-transform: uppercase;
    font-variant: small-caps;
    margin-bottom: 24px;
}

.strt .ppl-sec .prs-quote {
    font-size: 15px;
    line-height: 1.7;
    color: #3d3d3d;
    font-style: italic;
}

.strt .ppl-sec .prs-result {
    margin-top: 24px;
    padding: 8px 24px;
    background: #9DC844;
    border-radius: 0px;
    font-size: 15px;
    line-height: 1.3;
    color: #2b2b2b;
    font-weight: 600;
}

.strt .nums-sec {
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.12), rgba(232, 235, 226, 0.8) 50%, rgba(190, 180, 211, 0.15));
    padding-top: 96px;
    padding-bottom: 96px;
}

.strt .nums-sec .nums-head {
    text-align: center;
    margin-bottom: 48px;
}

.strt .nums-sec .nums-h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #2b2b2b;
    margin-top: 8px;
    margin-bottom: 24px;
}

.strt .nums-sec .nums-sub {
    font-size: 20px;
    line-height: 1.5;
    color: #3d3d3d;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.strt .nums-sec .nums-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.strt .nums-sec .num-cell {
    text-align: center;
    padding: 48px 24px;
    background: #ffffff;
    border-radius: 38px;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
    transition: box-shadow 0.35s ease-out, transform 0.28s ease-out;
}

.strt .nums-sec .num-cell:hover {
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    transform: translateY(-6px);
}

.strt .nums-sec .num-val {
    font-size: 68px;
    line-height: 1.1;
    color: #9DC844;
    font-weight: 700;
    display: block;
}

.strt .nums-sec .num-unit {
    font-size: 26px;
    line-height: 1.1;
    color: #BEB4D3;
}

.strt .nums-sec .num-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    margin-top: 8px;
    display: block;
}

.strt .val-sec {
    background: #2b2b2b;
    padding-top: 96px;
    padding-bottom: 96px;
}

.strt .val-sec .val-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 96px;
    align-items: center;
}

.strt .val-sec .val-txt .lbl {
    color: #BEB4D3;
}

.strt .val-sec .val-h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 24px;
}

.strt .val-sec .val-p {
    font-size: 20px;
    line-height: 1.5;
    color: #E8EBE2;
    margin-bottom: 24px;
}

.strt .val-sec .val-p-sm {
    font-size: 15px;
    line-height: 1.7;
    color: #BEB4D3;
    margin-bottom: 48px;
}

.strt .val-sec .val-img-wrap {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 60px 0 rgba(190, 180, 211, 0.12);
}

.strt .val-sec .val-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease-out;
}

.strt .val-sec .val-img-wrap:hover img {
    transform: scale(1.04);
}

.strt .val-sec .val-pts {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.strt .val-sec .val-pt {
    padding: 24px;
    background: rgba(232, 235, 226, 0.06);
    border-radius: 38px;
    border: 1px solid rgba(190, 180, 211, 0.15);
    text-align: center;
    transition: background 0.32s ease-out;
}

.strt .val-sec .val-pt:hover {
    background: rgba(157, 200, 68, 0.1);
}

.strt .val-sec .val-pt-h {
    font-size: 20px;
    line-height: 1.3;
    color: #9DC844;
    margin-bottom: 8px;
}

.strt .val-sec .val-pt-p {
    font-size: 15px;
    line-height: 1.7;
    color: #BEB4D3;
}

@media (max-width: 960px) {
    .strt .pg-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }

    .strt .ttl-blk .ttl-inner {
        grid-template-columns: 1fr;
    }

    .strt .ttl-blk .ttl-img-wrap {
        min-height: 320px;
        height: 320px;
    }

    .strt .ttl-blk .ttl-h1 {
        font-size: 50px;
    }

    .strt .exp-sec .exp-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .strt .exp-sec .exp-aside {
        position: static;
    }

    .strt .avail-sec .avail-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .strt .rep-sec .rep-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .strt .ppl-sec .ppl-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .strt .nums-sec .nums-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .strt .val-sec .val-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 480px) {
    .strt .ttl-blk .ttl-h1 {
        font-size: 36px;
    }

    .strt .ttl-blk .ttl-actions {
        flex-direction: column;
    }

    .strt .exp-sec .exp-h2,
    .strt .avail-sec .avail-h2,
    .strt .rep-sec .rep-h2,
    .strt .ppl-sec .ppl-h2,
    .strt .nums-sec .nums-h2,
    .strt .val-sec .val-h2 {
        font-size: 36px;
    }

    .strt .nums-sec .nums-row {
        grid-template-columns: 1fr;
    }

    .strt .nums-sec .num-val {
        font-size: 50px;
    }

    .strt .pg-wrap {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (min-width: 1440px) {
    .strt .ttl-blk .ttl-h1 {
        font-size: 68px;
    }
}

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

.ctus-pg .pg-bound {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 48px;
    padding-right: 48px;
}

.ctus-pg .dot-div {
    width: 100%;
    height: 6px;
    background-image: radial-gradient(circle, #9DC844 1px, transparent 1px), radial-gradient(circle, #BEB4D3 1px, transparent 1px);
    background-size: 12px 3px, 12px 3px;
    background-position: 0 0, 6px 3px;
    border: none;
    margin: 0;
}

.ctus-pg .reach-band {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
    background: linear-gradient(293deg, #9DC844, #E8EBE2 48%, #BEB4D3);
    background-size: 300% 300%;
    animation: ctus-wave 9s ease-out infinite;
    overflow: hidden;
}

@keyframes ctus-wave {
    0% {
        background-position: 0% 50%;
    }

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

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

.ctus-pg .reach-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(157, 200, 68, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.ctus-pg .reach-band::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #9DC844 40%, #BEB4D3 80%, transparent);
    pointer-events: none;
}

.ctus-pg .reach-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.ctus-pg .reach-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #2a3a10;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 38px;
    padding: 8px 24px;
}

.ctus-pg .reach-h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #1b2a06;
    margin: 0;
    max-width: 720px;
}

.ctus-pg .reach-sub {
    font-size: 20px;
    line-height: 1.5;
    color: #2e3d14;
    max-width: 560px;
    margin: 0;
}

.ctus-pg .reach-link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    color: #1b2a06;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #1b2a06;
    border-radius: 38px;
    padding: 8px 48px;
    text-decoration: none;
    transition: background 0.35s ease-out, color 0.25s ease-out, border-color 0.28s ease-out, box-shadow 0.38s ease-out, outline-offset 0.22s ease-out;
    outline: 2px solid transparent;
    outline-offset: 0px;
}

.ctus-pg .reach-link:hover {
    background: linear-gradient(293deg, #9DC844, #BEB4D3);
    color: #1b2a06;
    border-color: transparent;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
    outline-offset: 4px;
    outline-color: #9DC844;
}

.ctus-pg .reach-link:focus-visible {
    outline: 3px solid #1b2a06;
    outline-offset: 4px;
}

.ctus-pg .form-band {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
    background: #fff;
}

.ctus-pg .form-band::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #BEB4D3 50%, transparent);
    pointer-events: none;
}

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

.ctus-pg .form-info {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.ctus-pg .form-info-head {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus-pg .form-eyebrow {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #4a6b1a;
    letter-spacing: 0.07em;
    margin: 0;
}

.ctus-pg .form-h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1b2a06;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #9DC844;
    text-underline-offset: 6px;
}

.ctus-pg .form-desc {
    font-size: 20px;
    line-height: 1.5;
    color: #2e3d14;
    margin: 0;
}

.ctus-pg .contact-data {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus-pg .contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: #E8EBE2;
    border-radius: 38px;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
    transition: box-shadow 0.32s ease-out, background 0.28s ease-out;
    text-align: center;
}

.ctus-pg .contact-item:hover {
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.12), rgba(190, 180, 211, 0.12));
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.ctus-pg .contact-item-icon {
    width: 32px;
    height: 32px;
    margin: 0 auto;
    transition: transform 0.38s ease-out;
}

.ctus-pg .contact-item:hover .contact-item-icon {
    transform: scale(1.18) rotate(-6deg);
}

.ctus-pg .contact-item-icon svg {
    width: 32px;
    height: 32px;
}

.ctus-pg .contact-item-label {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #4a6b1a;
    margin: 0;
}

.ctus-pg .contact-item-val {
    font-size: 20px;
    line-height: 1.3;
    color: #1b2a06;
    margin: 0;
    word-break: break-word;
}

.ctus-pg .contact-item-val a {
    color: #1b2a06;
    text-decoration: none;
    transition: color 0.25s ease-out;
}

.ctus-pg .contact-item-val a:hover {
    color: #4a6b1a;
    text-decoration: underline;
}

.ctus-pg .form-wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus-pg .form-wrap form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctus-pg .field-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #1b2a06;
    font-weight: 600;
}

.ctus-pg .field-lbl .req {
    color: #4a6b1a;
    margin-left: 2px;
}

.ctus-pg .field-inp {
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    color: #1b2a06;
    background: #E8EBE2;
    border: 2px solid transparent;
    border-radius: 38px;
    padding: 8px 24px;
    box-sizing: border-box;
    transition: border-color 0.28s ease-out, box-shadow 0.35s ease-out, background 0.28s ease-out;
    outline: none;
    box-shadow: inset 0 4px 8px 0 rgba(190, 180, 211, 0.12);
}

.ctus-pg .field-inp::placeholder {
    font-style: italic;
    opacity: 0.55;
    color: #2e3d14;
}

.ctus-pg .field-inp:focus {
    border-color: #9DC844;
    background: #fff;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08), inset 0 4px 8px 0 rgba(157, 200, 68, 0.07);
}

.ctus-pg .field-textarea {
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    color: #1b2a06;
    background: #E8EBE2;
    border: 2px solid transparent;
    border-radius: 38px;
    padding: 24px;
    box-sizing: border-box;
    resize: vertical;
    min-height: 140px;
    transition: border-color 0.28s ease-out, box-shadow 0.35s ease-out, background 0.28s ease-out;
    outline: none;
    box-shadow: inset 0 4px 8px 0 rgba(190, 180, 211, 0.12);
}

.ctus-pg .field-textarea::placeholder {
    font-style: italic;
    opacity: 0.55;
    color: #2e3d14;
}

.ctus-pg .field-textarea:focus {
    border-color: #9DC844;
    background: #fff;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08), inset 0 4px 8px 0 rgba(157, 200, 68, 0.07);
}

.ctus-pg .field-select {
    width: 100%;
    font-size: 15px;
    line-height: 1.5;
    color: #1b2a06;
    background: #E8EBE2;
    border: 2px solid transparent;
    border-radius: 38px;
    padding: 8px 24px;
    box-sizing: border-box;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.28s ease-out, box-shadow 0.35s ease-out, background 0.28s ease-out;
    outline: none;
    box-shadow: inset 0 4px 8px 0 rgba(190, 180, 211, 0.12);
}

.ctus-pg .field-select:focus {
    border-color: #9DC844;
    background: #fff;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.ctus-pg .select-wrap {
    position: relative;
}

.ctus-pg .select-wrap::after {
    content: "";
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-right: 2px solid #4a6b1a;
    border-bottom: 2px solid #4a6b1a;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.ctus-pg .channel-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.ctus-pg .channel-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: #E8EBE2;
    border-radius: 38px;
    cursor: pointer;
    transition: background 0.28s ease-out, box-shadow 0.32s ease-out;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
}

.ctus-pg .channel-opt:hover {
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.15), rgba(190, 180, 211, 0.15));
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.ctus-pg .channel-opt input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #9DC844;
    cursor: pointer;
    flex-shrink: 0;
}

.ctus-pg .channel-opt-lbl {
    font-size: 15px;
    line-height: 1.3;
    color: #1b2a06;
    cursor: pointer;
}

.ctus-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    padding: 24px;
    background: #E8EBE2;
    border-radius: 38px;
}

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

.ctus-pg .privacy-txt {
    font-size: 15px;
    line-height: 1.5;
    color: #2e3d14;
    margin: 0;
}

.ctus-pg .privacy-txt a {
    color: #4a6b1a;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.25s ease-out;
}

.ctus-pg .privacy-txt a:hover {
    color: #1b2a06;
}

.ctus-pg .btn-submit {
    align-self: flex-start;
    font-size: 20px;
    line-height: 1.3;
    color: #fff;
    background: #1b2a06;
    border: 2px solid #1b2a06;
    border-radius: 38px;
    padding: 8px 48px;
    cursor: pointer;
    transition: background 0.35s ease-out, color 0.25s ease-out, box-shadow 0.38s ease-out, outline-offset 0.22s ease-out;
    outline: 2px solid transparent;
    outline-offset: 0px;
}

.ctus-pg .btn-submit:hover {
    background: linear-gradient(293deg, #9DC844, transparent 50%, #BEB4D3);
    background-color: #2e3d14;
    color: #1b2a06;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    outline-offset: 5px;
    outline-color: #9DC844;
}

.ctus-pg .btn-submit:focus-visible {
    outline: 3px solid #1b2a06;
    outline-offset: 4px;
}

.ctus-pg .btn-submit:active {
    box-shadow: inset 0 6px 10px 0 rgba(157, 200, 68, 0.12);
}

.ctus-pg .info-band {
    position: relative;
    padding-top: 96px;
    padding-bottom: 96px;
    background: #9DC844;
    overflow: hidden;
}

.ctus-pg .info-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.ctus-pg .info-band::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(27, 42, 6, 0.35) 50%, transparent);
    pointer-events: none;
}

.ctus-pg .info-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}

.ctus-pg .info-img-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus-pg .info-img-wrap {
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    aspect-ratio: 4 / 3;
}

.ctus-pg .info-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6);
    transition: filter 0.38s ease-out;
}

.ctus-pg .info-img-wrap:hover img {
    filter: saturate(1);
}

.ctus-pg .info-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 38px;
    box-shadow: inset 0 6px 10px 0 rgba(157, 200, 68, 0.12);
}

.ctus-pg .info-legend-head {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #1b2a06;
    margin: 0;
    letter-spacing: 0.07em;
}

.ctus-pg .legend-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.ctus-pg .legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 0px;
    background: #1b2a06;
    flex-shrink: 0;
    transform: rotate(45deg);
}

.ctus-pg .legend-dot.alt {
    background: rgba(27, 42, 6, 0.45);
}

.ctus-pg .legend-txt {
    font-size: 15px;
    line-height: 1.3;
    color: #1b2a06;
    margin: 0;
}

.ctus-pg .info-text-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: center;
}

.ctus-pg .info-h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #1b2a06;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: rgba(27, 42, 6, 0.35);
    text-underline-offset: 6px;
}

.ctus-pg .info-paras {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctus-pg .info-p {
    font-size: 20px;
    line-height: 1.5;
    color: #1b2a06;
    margin: 0;
}

.ctus-pg .hours-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 38px;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.ctus-pg .hours-head {
    font-size: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #1b2a06;
    margin: 0;
    letter-spacing: 0.07em;
}

.ctus-pg .hours-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.ctus-pg .hours-day {
    font-size: 15px;
    line-height: 1.3;
    color: #1b2a06;
    margin: 0;
}

.ctus-pg .hours-time {
    font-size: 15px;
    line-height: 1.3;
    color: #2e3d14;
    margin: 0;
    font-weight: 600;
}

@media (max-width: 960px) {
    .ctus-pg .pg-bound {
        padding-left: 24px;
        padding-right: 24px;
    }

    .ctus-pg .form-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ctus-pg .info-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .ctus-pg .channel-opts {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ctus-pg .reach-band {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .ctus-pg .form-band {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .ctus-pg .info-band {
        padding-top: 48px;
        padding-bottom: 48px;
    }

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

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

    .ctus-pg .info-h2 {
        font-size: 26px;
    }

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

.stproj {
    max-width: 1366px;
    margin: 0 auto;
    overflow-x: clip;
}

.stproj .pg-lead {
    background: #1e2318;
    padding: 96px 48px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stproj .pg-lead__atm {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.stproj .pg-lead__atm::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -80px;
    left: -100px;
    background: rgba(157, 200, 68, 0.13);
    filter: blur(90px);
    border-radius: 50%;
}

.stproj .pg-lead__atm::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    bottom: -60px;
    right: -80px;
    background: rgba(190, 180, 211, 0.11);
    filter: blur(80px);
    border-radius: 50%;
}

.stproj .pg-lead__label {
    font-size: 15px;
    line-height: 1.3;
    color: #9DC844;
    text-transform: uppercase;
    font-variant: small-caps;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
    position: relative;
}

.stproj .pg-lead__h1 {
    font-size: 50px;
    line-height: 1.1;
    color: #f5f5ed;
    max-width: 720px;
    margin-bottom: 24px;
    position: relative;
}

.stproj .pg-lead__desc {
    font-size: 20px;
    line-height: 1.7;
    color: #c8c8b8;
    max-width: 600px;
    position: relative;
}

.stproj .proj-grid-wrap {
    padding: 96px 48px;
    background: #ffffff;
}

.stproj .proj-grid-wrap__eyebrow {
    font-size: 15px;
    line-height: 1.3;
    color: #9DC844;
    text-transform: uppercase;
    font-variant: small-caps;
    text-align: center;
    margin-bottom: 8px;
}

.stproj .proj-grid-wrap__heading {
    font-size: 36px;
    line-height: 1.3;
    color: #2a2d22;
    text-align: center;
    margin-bottom: 48px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #BEB4D3;
}

.stproj .proj-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.stproj .proj-card {
    background: #f7f8f3;
    border-radius: 38px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
    transition: box-shadow 0.35s ease-out, transform 0.28s ease-out;
}

.stproj .proj-card:hover {
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
    transform: translateY(-4px);
}

.stproj .proj-card__img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.stproj .proj-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease-out;
}

.stproj .proj-card:hover .proj-card__img-wrap img {
    transform: scale(1.04);
}

.stproj .proj-card__body {
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.stproj .proj-card__meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.stproj .proj-card__tag {
    font-size: 15px;
    line-height: 1.3;
    background: #9DC844;
    color: #1e2318;
    padding: 8px 24px;
    border-radius: 38px;
    text-transform: uppercase;
    font-variant: small-caps;
}

.stproj .proj-card__lvl {
    font-size: 15px;
    line-height: 1.3;
    background: #E8EBE2;
    color: #3a3f30;
    padding: 8px 24px;
    border-radius: 38px;
}

.stproj .proj-card__read {
    font-size: 15px;
    line-height: 1.3;
    color: #7a8070;
    padding: 8px 0;
}

.stproj .proj-card__title {
    font-size: 26px;
    line-height: 1.3;
    color: #2a2d22;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #BEB4D3;
    text-align: center;
}

.stproj .proj-card__desc {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4f3e;
    text-align: center;
}

.stproj .proj-card__foot {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    gap: 24px;
}

.stproj .proj-card__price {
    font-size: 26px;
    line-height: 1.1;
    color: #2a2d22;
}

.stproj .proj-card__link {
    display: inline-block;
    font-size: 15px;
    line-height: 1.3;
    color: #1e2318;
    background: #9DC844;
    padding: 8px 24px;
    border-radius: 0px;
    text-decoration: none;
    border: 2px solid #9DC844;
    transition: background 0.25s ease-out, color 0.25s ease-out, border-color 0.25s ease-out, outline-offset 0.2s ease-out;
}

.stproj .proj-card__link:hover {
    background: linear-gradient(293deg, #9DC844, transparent 60%, #BEB4D3);
    color: #1e2318;
    border-color: #7aaa2a;
    outline: 2px solid #9DC844;
    outline-offset: 4px;
}

.stproj .proj-card__link:focus-visible {
    outline: 3px solid #9DC844 !important;
    outline-offset: 5px !important;
}

.stproj .feat-strip {
    padding: 96px 48px;
    background: linear-gradient(293deg, rgba(157, 200, 68, 0.09), transparent 55%, rgba(190, 180, 211, 0.13));
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stproj .feat-strip__heading {
    font-size: 36px;
    line-height: 1.3;
    color: #2a2d22;
    text-align: center;
    margin-bottom: 48px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #9DC844;
}

.stproj .feat-strip__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    width: 100%;
    max-width: 960px;
}

.stproj .feat-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 60px 0 rgba(190, 180, 211, 0.12);
}

.stproj .feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stproj .feat-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
}

.stproj .feat-text-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f30;
}

.stproj .feat-text-col__sub {
    font-size: 20px;
    line-height: 1.5;
    color: #2a2d22;
}

.stproj .flow-steps {
    padding: 96px 48px;
    background: #1e2318;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stproj .flow-steps__heading {
    font-size: 36px;
    line-height: 1.3;
    color: #f5f5ed;
    text-align: center;
    margin-bottom: 8px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #BEB4D3;
}

.stproj .flow-steps__sub {
    font-size: 15px;
    line-height: 1.7;
    color: #9aaa88;
    text-align: center;
    max-width: 560px;
    margin-bottom: 48px;
}

.stproj .flow-track {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 760px;
    position: relative;
}

.stproj .flow-track::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: linear-gradient(180deg, #9DC844, #BEB4D3);
}

.stproj .flow-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 0;
    opacity: 0;
    transform: translateX(-24px);
    animation: flow-in 0.38s ease-out forwards;
}

.stproj .flow-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stproj .flow-item:nth-child(2) {
    animation-delay: 0.22s;
}

.stproj .flow-item:nth-child(3) {
    animation-delay: 0.34s;
}

.stproj .flow-item:nth-child(4) {
    animation-delay: 0.45s;
}

@keyframes flow-in {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.stproj .flow-item__num {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: #9DC844;
    color: #1e2318;
    font-size: 20px;
    line-height: 1.1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 4px 0 rgba(157, 200, 68, 0.07);
    position: relative;
    z-index: 1;
}

.stproj .flow-item__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px;
}

.stproj .flow-item__name {
    font-size: 20px;
    line-height: 1.3;
    color: #f5f5ed;
}

.stproj .flow-item__detail {
    font-size: 15px;
    line-height: 1.7;
    color: #9aaa88;
}

.stproj .voices-row {
    padding: 96px 48px;
    background: #E8EBE2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stproj .voices-row__heading {
    font-size: 36px;
    line-height: 1.3;
    color: #2a2d22;
    text-align: center;
    margin-bottom: 48px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #BEB4D3;
}

.stproj .voices-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    width: 100%;
    max-width: 960px;
}

.stproj .voice-card {
    background: #ffffff;
    border-radius: 38px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 6px 22px 0 rgba(190, 180, 211, 0.08);
}

.stproj .voice-card__quote {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3f30;
    text-align: center;
}

.stproj .voice-card__person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.stproj .voice-card__portrait {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.stproj .voice-card__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stproj .voice-card__id {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stproj .voice-card__name {
    font-size: 15px;
    line-height: 1.3;
    color: #2a2d22;
}

.stproj .voice-card__role {
    font-size: 15px;
    line-height: 1.3;
    color: #7a8070;
}

@media (max-width: 960px) {
    .stproj .pg-lead {
        padding: 96px 24px;
    }

    .stproj .pg-lead__h1 {
        font-size: 36px;
    }

    .stproj .proj-grid-wrap {
        padding: 48px 24px;
    }

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

    .stproj .feat-strip {
        padding: 48px 24px;
    }

    .stproj .feat-strip__cols {
        grid-template-columns: 1fr;
    }

    .stproj .flow-steps {
        padding: 48px 24px;
    }

    .stproj .voices-row {
        padding: 48px 24px;
    }

    .stproj .voices-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stproj .pg-lead__h1 {
        font-size: 26px;
    }

    .stproj .pg-lead__desc {
        font-size: 15px;
    }

    .stproj .proj-card__body {
        padding: 24px;
    }

    .stproj .proj-card__foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .stproj .voice-card {
        padding: 24px;
    }

    .stproj .flow-track::before {
        display: none;
    }
}

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

.result-pg .confirm-wrap {
    max-width: 640px;
    width: 100%;
    text-align: center;
    padding: 48px;
    background: #E8EBE2;
    border-radius: 38px;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
}

.result-pg .confirm-wrap .icon-shell {
    width: 72px;
    height: 72px;
    margin: 0 auto 48px;
    border-radius: 38px;
    background: linear-gradient(293deg, #9DC844, transparent 60%, #BEB4D3);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.result-pg .confirm-wrap .icon-shell svg {
    width: 36px;
    height: 36px;
}

.result-pg .confirm-wrap .pg-label {
    display: block;
    font-size: 15px;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-variant: small-caps;
    color: #9DC844;
    margin-bottom: 24px;
}

.result-pg .confirm-wrap .pg-title {
    font-size: 36px;
    line-height: 1.1;
    color: #2a2a35;
    margin: 0 0 24px;
}

.result-pg .confirm-wrap .pg-body {
    font-size: 20px;
    line-height: 1.7;
    color: #3d3d4a;
    margin: 0 0 48px;
}

.result-pg .confirm-wrap .pg-detail {
    font-size: 15px;
    line-height: 1.5;
    color: #5a5a6e;
    margin: 0 0 48px;
    padding: 24px;
    background: #fff;
    border-radius: 38px;
    box-shadow: 0 3px 4px 0 rgba(190, 180, 211, 0.07);
}

.result-pg .confirm-wrap .pg-detail strong {
    color: #2a2a35;
}

.result-pg .confirm-wrap .btn-back {
    display: inline-block;
    padding: 24px 48px;
    font-size: 15px;
    line-height: 1.3;
    color: #fff;
    background: #2a2a35;
    border: 2px solid #2a2a35;
    border-radius: 38px;
    text-decoration: none;
    cursor: pointer;
    outline: none;
    transition: background 0.35s ease-out, border-color 0.25s ease-out, box-shadow 0.4s ease-out;
    box-shadow: 0 6px 22px 0 rgba(157, 200, 68, 0.08);
}

.result-pg .confirm-wrap .btn-back:hover {
    background: linear-gradient(293deg, #2a2a35, #3d3d4a 60%, #2a2a35);
    border-color: #9DC844;
    box-shadow: 0 10px 60px 0 rgba(157, 200, 68, 0.12);
}

.result-pg .confirm-wrap .btn-back:focus-visible {
    outline: 3px solid #9DC844;
    outline-offset: 4px;
}

@media (max-width: 480px) {
    .result-pg {
        padding: 48px 24px;
    }

    .result-pg .confirm-wrap {
        padding: 24px;
    }

    .result-pg .confirm-wrap .pg-title {
        font-size: 26px;
    }

    .result-pg .confirm-wrap .pg-body {
        font-size: 15px;
    }

    .result-pg .confirm-wrap .btn-back {
        padding: 24px 24px;
        width: 100%;
    }
}