html {
    word-break: break-word;
    overflow-wrap: anywhere;
}

body {
    margin: 0;
    font-family: 'Exo 2', sans-serif;
}

*:focus {
    outline: none;
    border-bottom: 4px solid #56BD68;
}

.hd-frame {
    border-bottom: 2px solid #EAF6E8;
    background: #ffffff;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    position: relative;
    z-index: 100;
}

.hd-top-bar {
    background: #12240E;
    padding: 8px 24px;
}

.hd-top-bar__pod {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.hd-top-bar__phone {
    color: #EAF6E8;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.hd-top-bar__phone:hover {
    color: #56BD68;
}

.hd-top-bar__label {
    color: #EAF6E8;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    opacity: 0.7;
}

.hd-body {
    padding: 0 24px;
}

.hd-body__pod {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.hd-brand {
    display: flex;
    align-items: center;
    margin-left: 12px;
    padding: 24px 0;
    flex-shrink: 0;
}

.hd-brand__img-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #EAF6E8;
    border-radius: 10px;
    border: 1px solid #56BD68;
    box-shadow: -1px 2px 3px 1px rgba(86, 189, 104, 0.05);
    text-decoration: none;
}

.hd-brand__img-cell img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.hd-nav {
    display: flex;
    align-items: stretch;
    flex: 1;
}

.hd-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 0;
}

.hd-nav__item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.hd-nav__lnk {
    display: flex;
    align-items: center;
    padding: 8px 24px;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: #12240E;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: color 0.1s cubic-bezier(0.4, 0, 1, 1), border-bottom-color 0.14s cubic-bezier(0.4, 0, 1, 1);
    white-space: nowrap;
}

.hd-nav__lnk:hover,
.hd-nav__lnk:focus {
    color: #56BD68;
    border-bottom-color: #56BD68;
    outline: none;
    border-bottom-width: 3px;
}

.hd-nav__lnk--active {
    color: #56BD68;
    border-bottom-color: #56BD68;
    background: #EAF6E8;
    border-radius: 10px 10px 0 0;
}

.hd-nav__item--has-sub:hover .hd-sub,
.hd-nav__item--has-sub:focus-within .hd-sub {
    display: block;
}

.hd-sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #ffffff;
    border: 1px solid #EAF6E8;
    border-radius: 0 0 10px 10px;
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
    z-index: 200;
    padding: 8px 0;
}

.hd-sub::before {
    content: '';
    display: block;
    height: 8px;
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
}

.hd-sub__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.hd-sub__lnk {
    display: block;
    padding: 12px 24px;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
    text-decoration: none;
    transition: background 0.1s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.hd-sub__lnk:hover,
.hd-sub__lnk:focus {
    background: #EAF6E8;
    color: #56BD68;
    outline: none;
    border-bottom: none;
}

.ft-base {
    background: #12240E;
    padding: 80px 24px 40px;
}

.ft-base__pod {
    max-width: 1500px;
    margin: 0 auto;
}

.ft-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(86, 189, 104, 0.25);
    margin-bottom: 40px;
}

.ft-brand-cell {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    background: #EAF6E8;
    border-radius: 10px;
    border: 1px solid #56BD68;
    box-shadow: -1px 2px 3px 1px rgba(86, 189, 104, 0.05);
    text-decoration: none;
}

.ft-brand-cell img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.ft-contact-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(86, 189, 104, 0.1);
    border: 1px solid rgba(86, 189, 104, 0.3);
    border-radius: 38px;
    padding: 12px 24px;
}

.ft-contact-pill__lbl {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(234, 246, 232, 0.7);
}

.ft-contact-pill__lnk {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #56BD68;
    text-decoration: none;
    transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.ft-contact-pill__lnk:hover {
    color: #EAF6E8;
}

.ft-cols {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.ft-col {
    flex: 1;
    min-width: 180px;
}

.ft-col__heading {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-weight: 700;
    color: #56BD68;
    margin: 0 0 12px 0;
}

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

.ft-col__lnk {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(234, 246, 232, 0.75);
    text-decoration: none;
    display: inline-block;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.ft-col__lnk:hover,
.ft-col__lnk:focus {
    color: #EAF6E8;
    outline: none;
    border-bottom-color: #56BD68;
}

.ft-address {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: rgba(234, 246, 232, 0.6);
    font-style: normal;
}

.ft-bottom-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(86, 189, 104, 0.15);
}

.ft-copy {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(234, 246, 232, 0.45);
}

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

.ft-legal-pill {
    display: inline-block;
}

.ft-legal-pill__lnk {
    display: inline-block;
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(234, 246, 232, 0.55);
    text-decoration: none;
    background: rgba(86, 189, 104, 0.08);
    border: 1px solid rgba(86, 189, 104, 0.15);
    border-radius: 22px;
    padding: 4px 12px;
    transition: color 0.13s cubic-bezier(0.4, 0, 1, 1), background 0.13s cubic-bezier(0.4, 0, 1, 1);
}

.ft-legal-pill__lnk:hover,
.ft-legal-pill__lnk:focus {
    color: #EAF6E8;
    background: rgba(86, 189, 104, 0.18);
    outline: none;
    border-bottom: none;
}

.ck-notice {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 340px;
    background: #ffffff;
    border: 1px solid #EAF6E8;
    border-radius: 22px;
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
    padding: 24px;
    z-index: 4000;
}

.ck-notice__desc {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0 0 12px 0;
}

.ck-notice__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ck-notice__btn {
    font-family: 'Exo 2', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    color: #12240E;
    transition: color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.ck-notice__btn:hover,
.ck-notice__btn:focus {
    color: #56BD68;
    outline: none;
    border-bottom: none;
}

@media (max-width: 1024px) {
    .hd-nav__lnk {
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .hd-body__pod {
        flex-wrap: wrap;
        gap: 0;
    }

    .hd-brand {
        padding: 12px 0;
    }

    .hd-nav {
        width: 100%;
        border-top: 1px solid #EAF6E8;
    }

    .hd-nav__list {
        width: 100%;
    }

    .hd-nav__lnk {
        padding: 12px 12px;
        font-size: 16px;
    }

    .ft-top-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ck-notice {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 12px;
    }
}

@media (max-width: 640px) {
    .hd-top-bar__pod {
        justify-content: center;
    }

    .ft-cols {
        flex-direction: column;
    }

    .ft-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

.q-text-legal {
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #12240E;
}

.q-text-legal h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin-bottom: 40px;
    margin-top: 0;
}

.q-text-legal h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin-top: 80px;
    margin-bottom: 24px;
}

.q-text-legal h3 {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #12240E;
    margin-top: 40px;
    margin-bottom: 12px;
}

.q-text-legal h4 {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #12240E;
    margin-top: 24px;
    margin-bottom: 8px;
}

.q-text-legal h5 {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #12240E;
    margin-top: 24px;
    margin-bottom: 8px;
}

.q-text-legal h6 {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #56BD68;
    margin-top: 24px;
    margin-bottom: 4px;
}

.q-text-legal a {
    color: #56BD68;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.12s cubic-bezier(0.4, 0, 1, 1), text-decoration-color 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.q-text-legal a:hover {
    color: #12240E;
    text-decoration-color: #56BD68;
}

.q-text-legal table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
    border-radius: 10px;
    overflow: hidden;
}

.q-text-legal thead {
    background-color: #EAF6E8;
}

.q-text-legal thead tr {
    border-bottom: 2px solid #56BD68;
}

.q-text-legal tbody tr {
    border-bottom: 1px solid rgba(18, 36, 14, 0.08);
    transition: background-color 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.q-text-legal tbody tr:last-child {
    border-bottom: none;
}

.q-text-legal tbody tr:hover {
    background-color: rgba(234, 246, 232, 0.5);
}

.q-text-legal th {
    padding: 12px 24px;
    text-align: left;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #12240E;
}

.q-text-legal td {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
    vertical-align: top;
}

.q-text-legal hr {
    border: none;
    height: 1px;
    background-color: rgba(18, 36, 14, 0.12);
    margin-top: 40px;
    margin-bottom: 40px;
}

.q-text-legal div {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
}

.q-text-legal p {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
    margin-top: 0;
    margin-bottom: 24px;
}

.q-text-legal ul,
.q-text-legal ol {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
    padding-left: 24px;
    margin-top: 0;
    margin-bottom: 24px;
}

.q-text-legal li {
    margin-bottom: 8px;
}

.q-text-legal strong,
.q-text-legal b {
    color: #12240E;
}

.q-text-legal blockquote {
    margin: 40px 0;
    padding: 24px 40px;
    background-color: #EAF6E8;
    border-radius: 10px;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
}

.q-text-legal code,
.q-text-legal pre {
    background-color: #EAF6E8;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    padding: 4px 8px;
}

.q-text-legal pre {
    padding: 24px;
    overflow-x: auto;
    margin-top: 0;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .q-text-legal {
        padding: 80px 40px;
    }

    .q-text-legal h1 {
        font-size: 37px;
    }

    .q-text-legal h2 {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    .q-text-legal {
        padding: 40px 24px;
    }

    .q-text-legal h1 {
        font-size: 37px;
        margin-bottom: 24px;
    }

    .q-text-legal h2 {
        font-size: 21px;
        margin-top: 40px;
    }

    .q-text-legal h3 {
        font-size: 21px;
        margin-top: 24px;
    }

    .q-text-legal table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .q-text-legal th,
    .q-text-legal td {
        padding: 12px;
    }

    .q-text-legal blockquote {
        padding: 24px;
        font-size: 16px;
    }
}

@media (max-width: 640px) {
    .q-text-legal {
        padding: 40px 12px;
    }

    .q-text-legal h1 {
        font-size: 37px;
    }

    .q-text-legal h2 {
        font-size: 21px;
    }

    .q-text-legal h3,
    .q-text-legal h4 {
        font-size: 16px;
    }
}

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

.lp-prog .pg-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-prog .ttl-blk {
    background: #12240E;
    padding: 80px 0;
    position: relative;
}

.lp-prog .ttl-blk::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(86, 189, 104, 0.07) 0%, rgba(18, 36, 14, 0.0) 60%);
    pointer-events: none;
}

.lp-prog .ttl-blk__atm {
    position: absolute;
    top: -60px;
    left: 8%;
    width: 320px;
    height: 320px;
    background: rgba(86, 189, 104, 0.08);
    border-radius: 38px;
    filter: blur(60px);
    pointer-events: none;
}

.lp-prog .ttl-blk__atm--r {
    left: auto;
    right: 6%;
    top: auto;
    bottom: -40px;
    width: 260px;
    height: 260px;
    background: rgba(86, 189, 104, 0.06);
    filter: blur(50px);
}

.lp-prog .ttl-blk__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.lp-prog .ttl-blk__img-col {
    flex: 0 0 auto;
    width: 260px;
}

.lp-prog .ttl-blk__img-wrap {
    width: 260px;
    height: 180px;
    overflow: hidden;
    border-radius: 22px;
    position: relative;
}

.lp-prog .ttl-blk__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(18, 36, 14, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(18, 36, 14, 0.55) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(18, 36, 14, 0.45) 0%, transparent 45%),
        radial-gradient(ellipse at 0% 100%, rgba(18, 36, 14, 0.45) 0%, transparent 45%);
    pointer-events: none;
    border-radius: 22px;
}

.lp-prog .ttl-blk__img {
    width: 260px;
    height: 180px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lp-prog .ttl-blk__txt {
    flex: 1 1 0;
    text-align: center;
}

.lp-prog .ttl-blk__pre {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.lp-prog .ttl-blk__pre-shape {
    width: 18px;
    height: 18px;
    background: #56BD68;
    border-radius: 4px;
    transform: rotate(45deg);
    flex-shrink: 0;
}

.lp-prog .ttl-blk__pre-lbl {
    color: #56BD68;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    font-style: italic;
}

.lp-prog .ttl-blk__h1 {
    color: #EAF6E8;
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0 0 24px 0;
    clip-path: inset(0 100% 0 0);
    animation: wipe-in 0.16s cubic-bezier(0.4, 0, 1, 1) 0.05s forwards;
}

@keyframes wipe-in {
    to {
        clip-path: inset(0 0% 0 0);
    }
}

.lp-prog .ttl-blk__sub {
    color: rgba(234, 246, 232, 0.72);
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    margin: 0;
}

.lp-prog .ttl-divider {
    background: #12240E;
    line-height: 0;
    overflow: hidden;
}

.lp-prog .ttl-divider svg {
    display: block;
    width: 100%;
}

.lp-prog .about-blk {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.lp-prog .about-blk__deco {
    position: absolute;
    top: 24px;
    right: 40px;
    pointer-events: none;
    opacity: 0.12;
}

.lp-prog .about-blk__deco-line {
    width: 120px;
    height: 1px;
    background: #12240E;
    transform: rotate(-35deg);
    margin-bottom: 8px;
}

.lp-prog .about-blk__deco-line--s {
    width: 80px;
    margin-left: 20px;
}

.lp-prog .about-blk__deco-line--xs {
    width: 50px;
    margin-left: 40px;
}

.lp-prog .about-blk__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.lp-prog .about-blk__lead {
    padding-right: 40px;
}

.lp-prog .about-blk__h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin: 0 0 24px 0;
}

.lp-prog .about-blk__h2-prefix {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #56BD68;
    border-radius: 0px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.lp-prog .about-blk__p {
    font-size: 16px;
    line-height: 1.9;
    color: #2a3a27;
    letter-spacing: 0.01em;
    margin: 0 0 12px 0;
}

.lp-prog .about-blk__p--num::before {
    content: attr(data-n) '. ';
    color: #56BD68;
    font-size: 16px;
}

.lp-prog .about-blk__stat {
    background: #EAF6E8;
    border-radius: 22px;
    padding: 24px;
    text-align: center;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
}

.lp-prog .about-blk__stat-val {
    font-size: 37px;
    line-height: 1.1;
    color: #12240E;
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 8px;
}

.lp-prog .about-blk__stat-lbl {
    font-size: 16px;
    line-height: 1.5;
    color: #3a5a35;
    letter-spacing: 0.01em;
}

.lp-prog .about-blk__stat--accent {
    background: #12240E !important;
}

.lp-prog .about-blk__stat--accent .about-blk__stat-val {
    color: #56BD68;
}

.lp-prog .about-blk__stat--accent .about-blk__stat-lbl {
    color: rgba(234, 246, 232, 0.8);
}

.lp-prog .wave-divider {
    line-height: 0;
    overflow: hidden;
}

.lp-prog .wave-divider svg {
    display: block;
    width: 100%;
}

.lp-prog .meter-blk {
    background: #EAF6E8;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lp-prog .meter-blk__noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px 180px;
}

.lp-prog .meter-blk__row {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
}

.lp-prog .meter-blk__txt {
    flex: 1 1 0;
}

.lp-prog .meter-blk__h2 {
    font-size: 37px;
    line-height: 1.1;
    color: #12240E;
    font-style: italic;
    letter-spacing: 0.01em;
    margin: 0 0 24px 0;
}

.lp-prog .meter-blk__h2-prefix {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    border-left: 14px solid #56BD68;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.lp-prog .meter-blk__p {
    font-size: 16px;
    line-height: 1.9;
    color: #2a3a27;
    letter-spacing: 0.01em;
    margin: 0 0 12px 0;
}

.lp-prog .meter-blk__p--num::before {
    content: attr(data-n) '. ';
    color: #56BD68;
}

.lp-prog .meter-blk__vis {
    flex: 0 0 420px;
}

.lp-prog .meter-blk__ring-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.lp-prog .meter-blk__ring {
    position: relative;
    width: 200px;
    height: 200px;
}

.lp-prog .meter-blk__ring svg {
    width: 200px;
    height: 200px;
    transform: rotate(-90deg);
}

.lp-prog .meter-blk__ring-bg {
    fill: none;
    stroke: rgba(18, 36, 14, 0.12);
    stroke-width: 14;
}

.lp-prog .meter-blk__ring-fill {
    fill: none;
    stroke: #56BD68;
    stroke-width: 14;
    stroke-linecap: round;
    stroke-dasharray: 534;
    stroke-dashoffset: 107;
}

.lp-prog .meter-blk__ring-lbl {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.lp-prog .meter-blk__ring-pct {
    font-size: 37px;
    line-height: 1.1;
    color: #12240E;
    letter-spacing: 0.01em;
    display: block;
}

.lp-prog .meter-blk__ring-sub {
    font-size: 16px;
    line-height: 1.5;
    color: #3a5a35;
    letter-spacing: 0.01em;
}

.lp-prog .meter-blk__bars {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-prog .meter-blk__bar-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-prog .meter-blk__bar-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.lp-prog .meter-blk__bar-name {
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    letter-spacing: 0.01em;
}

.lp-prog .meter-blk__bar-pct {
    font-size: 16px;
    line-height: 1.5;
    color: #56BD68;
    letter-spacing: 0.01em;
}

.lp-prog .meter-blk__bar-track {
    height: 8px;
    background: rgba(18, 36, 14, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.lp-prog .meter-blk__bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #12240E 0%, #56BD68 100%);
    border-radius: 4px;
    transition: width 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.lp-prog .wave-divider--rev svg {
    transform: scaleY(-1);
}

.lp-prog .team-blk {
    background: #12240E;
    padding: 80px 0;
    position: relative;
}

.lp-prog .team-blk__deco {
    position: absolute;
    bottom: 40px;
    left: 24px;
    pointer-events: none;
    opacity: 0.08;
}

.lp-prog .team-blk__deco-line {
    width: 100px;
    height: 1px;
    background: #56BD68;
    transform: rotate(35deg);
    margin-bottom: 8px;
}

.lp-prog .team-blk__deco-line--s {
    width: 65px;
    margin-left: 15px;
}

.lp-prog .team-blk__deco-line--xs {
    width: 40px;
    margin-left: 30px;
}

.lp-prog .team-blk__h2 {
    font-size: 37px;
    line-height: 1.1;
    color: #EAF6E8;
    font-style: italic;
    letter-spacing: 0.01em;
    margin: 0 0 40px 0;
    text-align: center;
}

.lp-prog .team-blk__h2-prefix {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: 2px solid #56BD68;
    border-radius: 0px;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.lp-prog .team-blk__list {
    display: flex;
    flex-direction: row;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-prog .team-blk__item {
    flex: 1 1 0;
    background: rgba(234, 246, 232, 0.05);
    border-radius: 22px;
    padding: 40px 24px 24px;
    box-shadow: -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: background 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.lp-prog .team-blk__item:hover {
    background: rgba(234, 246, 232, 0.09);
}

.lp-prog .team-blk__portrait {
    width: 96px;
    height: 128px;
    border-radius: 38px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: -1px 8px 60px 1px rgba(86, 189, 104, 0.13);
}

.lp-prog .team-blk__portrait img {
    width: 96px;
    height: 128px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lp-prog .team-blk__name {
    font-size: 21px;
    line-height: 1.5;
    color: #EAF6E8;
    letter-spacing: 0.01em;
    margin: 0 0 4px 0;
}

.lp-prog .team-blk__role {
    font-size: 16px;
    line-height: 1.5;
    color: #56BD68;
    letter-spacing: 0.02em;
    margin: 0 0 12px 0;
    font-style: italic;
}

.lp-prog .team-blk__quote {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(234, 246, 232, 0.72);
    letter-spacing: 0.01em;
    margin: 0;
}

.lp-prog .team-blk__extra {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
}

.lp-prog .team-blk__feat {
    flex: 1 1 0;
    background: rgba(86, 189, 104, 0.08);
    border-radius: 10px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lp-prog .team-blk__feat-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 8px;
}

.lp-prog .team-blk__feat-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lp-prog .team-blk__feat-h {
    font-size: 21px;
    line-height: 1.5;
    color: #EAF6E8;
    letter-spacing: 0.01em;
    margin: 0;
    font-style: italic;
}

.lp-prog .team-blk__feat-p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(234, 246, 232, 0.72);
    letter-spacing: 0.01em;
    margin: 0;
}

.lp-prog .team-blk__cols-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.lp-prog .team-blk__cols-two li {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(234, 246, 232, 0.72);
    letter-spacing: 0.01em;
    padding-left: 12px;
    position: relative;
}

.lp-prog .team-blk__cols-two li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 5px;
    height: 5px;
    background: #56BD68;
    border-radius: 0px;
}

.lp-prog .end-divider {
    background: #12240E;
    line-height: 0;
    overflow: hidden;
}

.lp-prog .end-divider svg {
    display: block;
    width: 100%;
}

@media (max-width: 1024px) {
    .lp-prog .about-blk__grid {
        grid-template-columns: 1fr 1fr;
    }

    .lp-prog .about-blk__lead {
        grid-column: 1 / -1;
        padding-right: 0;
    }

    .lp-prog .meter-blk__row {
        flex-direction: column;
        gap: 40px;
    }

    .lp-prog .meter-blk__vis {
        flex: 0 0 auto;
        width: 100%;
    }

    .lp-prog .meter-blk__ring-wrap {
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 24px;
    }

    .lp-prog .meter-blk__bars {
        flex: 1 1 260px;
    }

    .lp-prog .team-blk__list {
        flex-wrap: wrap;
    }

    .lp-prog .team-blk__item {
        flex: 0 0 calc(50% - 12px);
    }

    .lp-prog .team-blk__extra {
        flex-direction: column;
    }

    .lp-prog .ttl-blk__h1 {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    .lp-prog .ttl-blk__row {
        flex-direction: column;
        gap: 24px;
    }

    .lp-prog .ttl-blk__img-col {
        width: 100%;
    }

    .lp-prog .ttl-blk__img-wrap {
        width: 100%;
        height: 160px;
    }

    .lp-prog .ttl-blk__img {
        width: 100%;
        height: 160px;
    }

    .lp-prog .ttl-blk__img-col:last-child {
        display: none;
    }

    .lp-prog .ttl-blk__h1 {
        font-size: 37px;
    }

    .lp-prog .about-blk__grid {
        grid-template-columns: 1fr;
    }

    .lp-prog .team-blk__list {
        flex-direction: column;
    }

    .lp-prog .team-blk__item {
        flex: 0 0 auto;
    }

    .lp-prog .team-blk__cols-two {
        grid-template-columns: 1fr;
    }

    .lp-prog .meter-blk__ring-wrap {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .lp-prog .ttl-blk {
        padding: 40px 0;
    }

    .lp-prog .about-blk {
        padding: 40px 0;
    }

    .lp-prog .meter-blk {
        padding: 40px 0;
    }

    .lp-prog .team-blk {
        padding: 40px 0;
    }

    .lp-prog .ttl-blk__h1 {
        font-size: 37px;
    }

    .lp-prog .about-blk__h2,
    .lp-prog .meter-blk__h2,
    .lp-prog .team-blk__h2 {
        font-size: 21px;
    }
}

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

.sstory__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.sstory__divider {
    height: 2px;
    background: linear-gradient(to right, #56BD68, #e8e8e0);
    border: none;
    margin: 0;
}

.sstory__divider--alt {
    background: linear-gradient(to right, #12240E, #e8e8e0);
}

.sstory__divider--light {
    background: linear-gradient(to right, #EAF6E8, #ffffff);
}

.sstory__num-accent {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.sstory__num-accent .num {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-weight: 700;
}

.sstory__num-accent .lbl {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #5a6657;
}

.sstory__underline-draw {
    position: relative;
    display: inline-block;
}

.sstory__underline-draw::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #56BD68;
    animation: underline-grow 0.16s cubic-bezier(0.4, 0, 1, 1) 0.4s forwards;
}

@keyframes underline-grow {
    to {
        width: 100%;
    }
}

.sstory__deco-lines {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.sstory__deco-lines span {
    display: block;
    height: 1px;
    background: #56BD68;
    opacity: 0.35;
}

.sstory__deco-lines span:nth-child(1) {
    width: 48px;
}

.sstory__deco-lines span:nth-child(2) {
    width: 32px;
}

.sstory__deco-lines span:nth-child(3) {
    width: 56px;
}

.sstory__deco-lines span:nth-child(4) {
    width: 24px;
}

.sstory__lead {
    background: #12240E;
    padding: 80px 0 40px;
    position: relative;
}

.sstory__lead-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.sstory__lead-img-col {
    position: relative;
}

.sstory__lead-img-wrap {
    width: 220px;
    height: 310px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
    position: relative;
}

.sstory__lead-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.85);
}

.sstory__lead-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 36, 14, 0.38);
    border-radius: 22px;
}

.sstory__lead-stripe {
    position: absolute;
    left: -8px;
    top: 24px;
    width: 4px;
    height: 80px;
    background: #56BD68;
    border-radius: 4px;
}

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

.sstory__lead-tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    border: 1px solid rgba(86, 189, 104, 0.4);
    border-radius: 4px;
    padding: 4px 12px;
    width: fit-content;
}

.sstory__lead-h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #EAF6E8;
    margin: 0;
    font-style: italic;
}

.sstory__lead-quote {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: rgba(234, 246, 232, 0.65);
    margin: 0;
    border-left: none;
    padding: 0;
    font-style: normal;
}

.sstory__lead-quote em {
    color: #56BD68;
    font-style: normal;
}

.sstory__lead-deco {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #56BD68, transparent);
}

@media (max-width: 768px) {
    .sstory__lead-grid {
        grid-template-columns: 1fr;
    }

    .sstory__lead-img-col {
        display: none;
    }

    .sstory__lead-h1 {
        font-size: 37px;
    }
}

@media (max-width: 640px) {
    .sstory__lead {
        padding: 40px 0 24px;
    }

    .sstory__lead-h1 {
        font-size: 37px;
    }
}

.sstory__cases {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.sstory__cases-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.sstory__cases-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.sstory__cases-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0;
    font-style: italic;
}

.sstory__cases-sub {
    font-size: 16px;
    line-height: 1.5;
    color: #5a6657;
    margin: 0;
    max-width: 320px;
    text-align: right;
}

.sstory__cards-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 24px;
}

.sstory__card {
    background: #EAF6E8;
    border-radius: 22px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    transition: box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1), transform 0.12s ease-in;
}

.sstory__card:hover {
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    transform: translateY(-2px);
}

.sstory__card--center {
    background: #12240E;
    border-radius: 22px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
    transition: box-shadow 0.16s cubic-bezier(0.4, 0, 1, 1), transform 0.13s ease-in;
}

.sstory__card--center:hover {
    box-shadow: -1px 8px 60px 1px rgba(86, 189, 104, 0.13);
    transform: translateY(-2px);
}

.sstory__card-num {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: rgba(86, 189, 104, 0.22);
    font-weight: 700;
    position: absolute;
    top: 16px;
    right: 24px;
}

.sstory__card--center .sstory__card-num {
    color: rgba(86, 189, 104, 0.18);
}

.sstory__card-badge {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    background: rgba(86, 189, 104, 0.25);
    border-radius: 4px;
    padding: 4px 12px;
    width: fit-content;
    letter-spacing: 0.02em;
}

.sstory__card--center .sstory__card-badge {
    color: #EAF6E8;
    background: rgba(86, 189, 104, 0.3);
}

.sstory__card-h3 {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0;
    font-style: italic;
}

.sstory__card--center .sstory__card-h3 {
    color: #EAF6E8;
    font-size: 21px;
}

.sstory__card-body {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4a37;
    margin: 0;
    letter-spacing: 0.01em;
}

.sstory__card--center .sstory__card-body {
    color: rgba(234, 246, 232, 0.8);
}

.sstory__card-img-wrap {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
}

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

.sstory__card-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sstory__metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sstory__metric .mval {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #56BD68;
    font-weight: 700;
}

.sstory__metric .mdesc {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(234, 246, 232, 0.65);
    letter-spacing: 0.02em;
}

.sstory__card-deco {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.sstory__card-deco span {
    display: block;
    height: 1px;
    background: #56BD68;
    opacity: 0.3;
}

.sstory__card-deco span:nth-child(1) {
    width: 40px;
}

.sstory__card-deco span:nth-child(2) {
    width: 28px;
}

.sstory__card-deco span:nth-child(3) {
    width: 48px;
}

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

    .sstory__card--center {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .sstory__cards-grid {
        grid-template-columns: 1fr;
    }

    .sstory__card--center {
        grid-column: auto;
    }

    .sstory__cases-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .sstory__cases-sub {
        text-align: left;
    }
}

.sstory__review {
    background: #EAF6E8;
    padding: 80px 0;
    position: relative;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    padding-bottom: 100px;
}

.sstory__review-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

.sstory__review-portrait {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.sstory__portrait-frame {
    width: 220px;
    height: 330px;
    border-radius: 38px;
    overflow: hidden;
    box-shadow: -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
}

.sstory__portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sstory__portrait-name {
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    letter-spacing: 0.02em;
    text-align: center;
    font-weight: 600;
}

.sstory__portrait-role {
    font-size: 16px;
    line-height: 1.5;
    color: #5a6657;
    letter-spacing: 0.02em;
    text-align: center;
    margin-top: -20px;
}

.sstory__review-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px;
}

.sstory__review-label {
    font-size: 16px;
    line-height: 1.5;
    color: #56BD68;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.sstory__review-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0;
    font-style: italic;
}

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

.sstory__review-p {
    font-size: 16px;
    line-height: 1.9;
    color: #2e3d2b;
    margin: 0;
    letter-spacing: 0.01em;
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 8px;
    align-items: baseline;
}

.sstory__review-p .para-n {
    font-size: 16px;
    color: #56BD68;
    font-weight: 700;
    line-height: 1.9;
}

.sstory__review-quote {
    background: #12240E;
    border-radius: 22px;
    padding: 24px;
    font-size: 21px;
    line-height: 1.5;
    color: #EAF6E8;
    font-style: italic;
    letter-spacing: 0.01em;
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
    position: relative;
}

.sstory__review-quote-mark {
    font-size: 68px;
    line-height: 1.1;
    color: #56BD68;
    opacity: 0.4;
    position: absolute;
    top: 8px;
    left: 16px;
    font-style: normal;
    pointer-events: none;
}

.sstory__review-quote-text {
    padding-left: 40px;
    display: block;
}

.sstory__review-deco {
    position: absolute;
    top: 40px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}

.sstory__review-deco span {
    display: block;
    height: 1px;
    background: #12240E;
    opacity: 0.15;
}

.sstory__review-deco span:nth-child(1) {
    width: 52px;
}

.sstory__review-deco span:nth-child(2) {
    width: 36px;
}

.sstory__review-deco span:nth-child(3) {
    width: 44px;
}

.sstory__review-deco span:nth-child(4) {
    width: 28px;
}

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

    .sstory__review-portrait {
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }

    .sstory__portrait-frame {
        width: 120px;
        height: 160px;
    }

    .sstory__portrait-name,
    .sstory__portrait-role {
        text-align: left;
    }

    .sstory__portrait-role {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .sstory__review {
        padding: 40px 0 80px;
        clip-path: polygon(0 0, 100% 0, 100% 97%, 0 100%);
    }

    .sstory__review-h2 {
        font-size: 21px;
    }

    .sstory__review-portrait {
        flex-direction: column;
        align-items: flex-start;
    }
}

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

.srvs__inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.srvs__title-blk {
    position: relative;
    padding: 80px 24px 80px;
    background-color: #12240E;
    overflow: hidden;
}

.srvs__grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.srvs__title-deco {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #56BD68;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.srvs__title-deco--b {
    position: absolute;
    bottom: -60px;
    left: 10%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #56BD68;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.srvs__title-row {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 80px;
}

.srvs__title-text {
    flex: 1 1 0;
}

.srvs__num-acc {
    display: block;
    font-size: 68px;
    line-height: 1.1;
    color: #56BD68;
    letter-spacing: 0.01em;
    font-style: italic;
    opacity: 0.55;
    margin-bottom: 8px;
}

.srvs__h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #EAF6E8;
    font-style: italic;
    margin: 0 0 24px;
}

.srvs__h1 span {
    color: #56BD68;
}

.srvs__sub {
    font-size: 21px;
    line-height: 1.5;
    color: #b8d4b2;
    letter-spacing: 0.02em;
    max-width: 520px;
    margin: 0;
}

.srvs__title-img-col {
    flex: 0 0 320px;
    position: relative;
}

.srvs__title-img-wrap {
    width: 320px;
    height: 240px;
    border-radius: 22px;
    overflow: hidden;
    opacity: 0.45;
    box-shadow: -1px 8px 60px 1px rgba(86, 189, 104, 0.13);
}

.srvs__title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(20%) saturate(1.1) brightness(0.85);
}

.srvs__title-border {
    position: absolute;
    inset: -6px;
    border-radius: 26px;
    border: 1px solid rgba(86, 189, 104, 0.18);
    pointer-events: none;
}

.srvs__title-border--out {
    position: absolute;
    inset: -12px;
    border-radius: 30px;
    border: 1px solid rgba(86, 189, 104, 0.08);
    pointer-events: none;
}

@media (max-width: 768px) {
    .srvs__title-row {
        flex-direction: column;
        gap: 40px;
    }

    .srvs__h1 {
        font-size: 37px;
    }

    .srvs__num-acc {
        font-size: 37px;
    }

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

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

    .srvs__title-border,
    .srvs__title-border--out {
        display: none;
    }
}

@media (max-width: 640px) {
    .srvs__title-blk {
        padding: 40px 24px;
    }

    .srvs__h1 {
        font-size: 37px;
    }
}

.srvs__det {
    position: relative;
    padding: 80px 24px;
    background: #fff;
}

.srvs__det-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(148deg, #EAF6E8 0%, #fff 55%);
}

.srvs__det-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
}

.srvs__det-top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.srvs__det-lbl {
    flex: 0 0 260px;
}

.srvs__det-eyebrow {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.srvs__det-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin: 0;
}

.srvs__det-body {
    flex: 1 1 0;
}

.srvs__para-num {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #12240E;
    margin: 0 0 24px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
}

.srvs__para-num:last-child {
    margin-bottom: 0;
}

.srvs__pnum {
    flex: 0 0 24px;
    font-size: 16px;
    line-height: 1.9;
    color: #56BD68;
    font-style: italic;
    letter-spacing: 0.01em;
}

.srvs__cards-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 24px;
    align-items: stretch;
}

.srvs__card {
    border-radius: 22px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    transition: box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1), transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.srvs__card:hover {
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
    transform: translateY(-2px);
}

.srvs__card--dark {
    background: #12240E;
    color: #EAF6E8;
}

.srvs__card--light {
    background: #EAF6E8;
    color: #12240E;
}

.srvs__card--mid {
    background: #56BD68;
    color: #12240E;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.srvs__card-num {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    font-style: italic;
    opacity: 0.18;
    position: absolute;
    top: 12px;
    right: 24px;
    pointer-events: none;
}

.srvs__card--dark .srvs__card-num {
    color: #56BD68;
    opacity: 0.22;
}

.srvs__card-h3 {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-style: italic;
    margin: 0 0 12px;
    position: relative;
    z-index: 1;
}

.srvs__card--dark .srvs__card-h3 {
    color: #EAF6E8;
}

.srvs__card--light .srvs__card-h3 {
    color: #12240E;
}

.srvs__card--mid .srvs__card-h3 {
    color: #12240E;
    font-size: 37px;
    line-height: 1.1;
}

.srvs__card-p {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    margin: 0;
    position: relative;
    z-index: 1;
}

.srvs__card--dark .srvs__card-p {
    color: #b8d4b2;
}

.srvs__card--mid .srvs__card-p {
    color: #12240E;
    opacity: 0.78;
}

.srvs__list-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    position: relative;
    z-index: 1;
}

.srvs__list-pair li {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    padding-left: 12px;
    position: relative;
}

.srvs__list-pair li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #56BD68;
}

.srvs__card--dark .srvs__list-pair li {
    color: #b8d4b2;
}

.srvs__img-card {
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    min-height: 260px;
    position: relative;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.srvs__img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: sepia(15%) saturate(1.05) brightness(0.95);
}

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

    .srvs__card--mid {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .srvs__det-top {
        flex-direction: column;
        gap: 24px;
    }

    .srvs__det-lbl {
        flex: 0 0 auto;
    }

    .srvs__cards-grid {
        grid-template-columns: 1fr;
    }

    .srvs__card--mid {
        grid-column: span 1;
    }

    .srvs__img-card {
        min-height: 200px;
    }
}

.srvs__form-sec {
    position: relative;
    padding: 80px 24px;
    background: #12240E;
    overflow: hidden;
}

.srvs__form-diag {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: #1a3314;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
    transition: background 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.srvs__form-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.srvs__quote-col {
    flex: 1 1 0;
}

.srvs__quote-blk {
    border-radius: 22px;
    padding: 40px;
    background: rgba(86, 189, 104, 0.08);
    box-shadow: inset 0 1px 0 rgba(86, 189, 104, 0.18), -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
    margin-bottom: 40px;
    position: relative;
}

.srvs__quote-border {
    position: absolute;
    inset: -4px;
    border-radius: 26px;
    border: 1px solid rgba(86, 189, 104, 0.14);
    pointer-events: none;
}

.srvs__quote-border--out {
    position: absolute;
    inset: -9px;
    border-radius: 30px;
    border: 1px solid rgba(86, 189, 104, 0.07);
    pointer-events: none;
}

.srvs__quote-text {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #EAF6E8;
    font-style: italic;
    margin: 0 0 24px;
}

.srvs__quote-acc {
    color: #56BD68;
    font-style: normal;
}

.srvs__quote-attr {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.srvs__portrait-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex: 0 0 48px;
    box-shadow: -1px 2px 3px 1px rgba(86, 189, 104, 0.05);
}

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

.srvs__quote-name {
    font-size: 16px;
    line-height: 1.5;
    color: #EAF6E8;
    letter-spacing: 0.02em;
    margin: 0;
}

.srvs__quote-role {
    font-size: 16px;
    line-height: 1.5;
    color: #56BD68;
    letter-spacing: 0.02em;
    margin: 0;
    opacity: 0.78;
}

.srvs__q-desc {
    font-size: 16px;
    line-height: 1.9;
    color: #b8d4b2;
    letter-spacing: 0.02em;
    margin: 0;
}

.srvs__form-col {
    flex: 0 0 520px;
}

.srvs__form-wrap {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: -1px 8px 60px 1px rgba(86, 189, 104, 0.13);
    position: relative;
}

.srvs__form-border {
    position: absolute;
    inset: -4px;
    border-radius: 26px;
    border: 1px solid rgba(86, 189, 104, 0.15);
    pointer-events: none;
}

.srvs__form-border--out {
    position: absolute;
    inset: -9px;
    border-radius: 30px;
    border: 1px solid rgba(86, 189, 104, 0.07);
    pointer-events: none;
}

.srvs__form-h3 {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin: 0 0 24px;
}

.srvs__field {
    position: relative;
    margin-bottom: 24px;
}

.srvs__field input {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 16px 8px;
    border: 1px solid rgba(18, 36, 14, 0.18);
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    letter-spacing: 0.01em;
    outline: none;
    transition: border-color 0.14s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.16s cubic-bezier(0.4, 0, 1, 1);
    appearance: none;
}

.srvs__field input:focus {
    border-color: #56BD68;
    box-shadow: inset 0 1px 0 rgba(86, 189, 104, 0.12), -1px 2px 3px 1px rgba(86, 189, 104, 0.05);
}

.srvs__field label {
    position: absolute;
    left: 16px;
    top: 14px;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(18, 36, 14, 0.5);
    letter-spacing: 0.01em;
    pointer-events: none;
    transition: top 0.12s cubic-bezier(0.4, 0, 1, 1), font-size 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
}

.srvs__field input:focus+label,
.srvs__field input:not(:placeholder-shown)+label {
    top: 4px;
    font-size: 12px;
    color: #56BD68;
}

.srvs__field input::placeholder {
    color: transparent;
}

.srvs__budget-lbl {
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    letter-spacing: 0.02em;
    margin: 0 0 12px;
    display: block;
}

.srvs__budget-opts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.srvs__budget-opt {
    display: block;
    position: relative;
}

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

.srvs__budget-opt span {
    display: block;
    padding: 8px 12px;
    border: 1px solid rgba(18, 36, 14, 0.2);
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    letter-spacing: 0.01em;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.12s cubic-bezier(0.4, 0, 1, 1), background 0.14s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1);
    user-select: none;
}

.srvs__budget-opt input[type="radio"]:checked+span {
    border-color: #56BD68;
    background: #EAF6E8;
    color: #12240E;
    box-shadow: inset 0 1px 0 rgba(86, 189, 104, 0.2);
}

.srvs__budget-opt span:hover {
    border-color: #56BD68;
    background: rgba(86, 189, 104, 0.06);
}

.srvs__budget-opt input[type="radio"]:focus+span {
    outline: 2px solid #56BD68;
    outline-offset: 2px;
}

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

.srvs__privacy input[type="checkbox"] {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #56BD68;
    cursor: pointer;
}

.srvs__privacy-txt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(18, 36, 14, 0.65);
    letter-spacing: 0.01em;
    margin: 0;
}

.srvs__privacy-txt a {
    color: #56BD68;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: opacity 0.11s cubic-bezier(0.4, 0, 1, 1);
}

.srvs__privacy-txt a:hover {
    opacity: 0.75;
}

.srvs__submit-btn {
    width: 100%;
    padding: 12px 24px;
    border: 2px solid #12240E;
    border-radius: 10px;
    background: transparent;
    font-size: 16px;
    line-height: 1.5;
    color: #12240E;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: background 0.14s cubic-bezier(0.4, 0, 1, 1), color 0.12s cubic-bezier(0.4, 0, 1, 1), border-color 0.12s cubic-bezier(0.4, 0, 1, 1);
    position: relative;
}

.srvs__submit-btn:hover {
    background: #12240E;
    color: #EAF6E8;
}

.srvs__submit-btn:focus {
    outline: 2px solid #56BD68;
    outline-offset: 3px;
}

.srvs__submit-btn:active {
    background: #56BD68;
    border-color: #56BD68;
    color: #12240E;
}

@media (max-width: 1024px) {
    .srvs__form-inner {
        flex-direction: column;
        gap: 40px;
    }

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

    .srvs__form-diag {
        display: none;
    }
}

@media (max-width: 640px) {
    .srvs__form-sec {
        padding: 40px 24px;
    }

    .srvs__budget-opts {
        grid-template-columns: 1fr;
    }

    .srvs__form-wrap {
        padding: 24px;
    }

    .srvs__quote-blk {
        padding: 24px;
    }
}

.abt-us {
    overflow-x: hidden;
    background: #fff;
}

.abt-us .vis-path {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 24px;
}

.abt-us .vis-path__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #56BD68;
    opacity: 0.4;
}

.abt-us .vis-path__dot--mid {
    opacity: 0.65;
    width: 8px;
    height: 8px;
}

.abt-us .vis-path__dot--end {
    opacity: 1;
    width: 10px;
    height: 10px;
}

.abt-us .pill-lbl {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 38px;
    border: 1px solid #56BD68;
    background: #EAF6E8;
    color: #12240E;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.abt-us .sec-one {
    background: linear-gradient(160deg, #12240E 0%, #1e3a18 100%);
    padding: 80px 24px 80px 24px;
    position: relative;
}

.abt-us .sec-one__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.abt-us .sec-one__dots-row {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.abt-us .sec-one__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #56BD68;
    opacity: 0.35;
}

.abt-us .sec-one__dot--b {
    opacity: 0.6;
    width: 7px;
    height: 7px;
}

.abt-us .sec-one__dot--c {
    opacity: 0.9;
    width: 9px;
    height: 9px;
}

.abt-us .sec-one__pill {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 38px;
    border: 1px solid rgba(86, 189, 104, 0.5);
    background: rgba(86, 189, 104, 0.12);
    color: #EAF6E8;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.abt-us .sec-one__h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #EAF6E8;
    margin: 0 0 24px 0;
    max-width: 900px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.abt-us .sec-one__h1 em {
    font-style: normal;
    color: #56BD68;
}

.abt-us .sec-one__sub {
    font-size: 21px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: rgba(234, 246, 232, 0.75);
    max-width: 620px;
    margin: 0;
    position: relative;
    z-index: 1;
}

.abt-us .sec-one__geo {
    position: absolute;
    right: -40px;
    top: 40px;
    width: 420px;
    height: 420px;
    border-radius: 22px;
    border: 1px solid rgba(86, 189, 104, 0.08);
    background: rgba(86, 189, 104, 0.04);
    transform: rotate(18deg);
    pointer-events: none;
}

.abt-us .sec-one__geo--sm {
    position: absolute;
    right: 80px;
    top: 80px;
    width: 220px;
    height: 220px;
    border-radius: 22px;
    border: 1px solid rgba(86, 189, 104, 0.12);
    background: transparent;
    transform: rotate(34deg);
    pointer-events: none;
}

.abt-us .sec-one__dots-grid {
    position: absolute;
    bottom: 40px;
    right: 24px;
    display: grid;
    grid-template-columns: repeat(6, 10px);
    grid-template-rows: repeat(4, 10px);
    gap: 8px;
    pointer-events: none;
    z-index: 0;
}

.abt-us .sec-one__dots-grid span {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #56BD68;
    opacity: 0.25;
    display: block;
}

.abt-us .sec-divider {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #EAF6E8;
}

.abt-us .sec-divider svg {
    display: block;
    width: 100%;
}

.abt-us .sec-two {
    background: #EAF6E8;
    padding: 80px 24px 80px 24px;
    position: relative;
}

.abt-us .sec-two__inner {
    max-width: 1500px;
    margin: 0 auto;
}

.abt-us .sec-two__top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.abt-us .sec-two__top-text {
    flex: 1 1 0;
    min-width: 0;
}

.abt-us .sec-two__top-img {
    flex: 0 0 480px;
    width: 480px;
}

.abt-us .sec-two__img-wrap {
    width: 480px;
    height: 380px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    position: relative;
}

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

.abt-us .sec-two__img-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 80px;
    height: 80px;
    border-radius: 22px;
    background: #56BD68;
    opacity: 0.18;
    pointer-events: none;
}

.abt-us .sec-two__h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0 0 24px 0;
    font-style: italic;
}

.abt-us .sec-two__para {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #2a4226;
    margin: 0 0 12px 0;
}

.abt-us .sec-two__para-num {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    font-weight: 700;
    margin-right: 8px;
}

.abt-us .sec-two__para-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 12px;
}

.abt-us .sec-two__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 12px 24px;
    border-radius: 10px;
    border: 1.5px solid #12240E;
    background: transparent;
    color: #12240E;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    transition: background 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.14s cubic-bezier(0.4, 0, 1, 1), border-color 0.16s ease-in;
}

.abt-us .sec-two__link:hover,
.abt-us .sec-two__link:focus {
    background: #12240E;
    color: #EAF6E8;
    outline: none;
}

.abt-us .sec-two__link svg {
    flex-shrink: 0;
    transition: transform 0.1s cubic-bezier(0.4, 0, 1, 1);
}

.abt-us .sec-two__link:hover svg,
.abt-us .sec-two__link:focus svg {
    transform: translateX(4px);
}

.abt-us .sec-two__zigzag {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.abt-us .sec-two__row {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: center;
}

.abt-us .sec-two__row--rev {
    flex-direction: row-reverse;
}

.abt-us .sec-two__row-img {
    flex: 0 0 440px;
    width: 440px;
}

.abt-us .sec-two__row-imgwrap {
    width: 440px;
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
    position: relative;
}

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

.abt-us .sec-two__row-text {
    flex: 1 1 0;
    min-width: 0;
}

.abt-us .sec-two__row-h3 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0 0 24px 0;
    font-style: italic;
}

.abt-us .sec-two__row-body {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #2a4226;
    margin: 0 0 12px 0;
}

.abt-us .sec-two__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    margin: 24px 0 0 0;
    padding: 0;
    list-style: none;
}

.abt-us .sec-two__list li {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
    padding: 8px 12px;
    border-radius: 10px;
    background: #fff;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.abt-us .sec-two__list-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #56BD68;
    flex-shrink: 0;
}

.abt-us .sec-two__team {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid rgba(18, 36, 14, 0.1);
}

.abt-us .sec-two__team-h3 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0 0 40px 0;
    font-style: italic;
}

.abt-us .sec-two__team-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.abt-us .sec-two__team-card {
    flex: 1 1 0;
    min-width: 0;
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.abt-us .sec-two__team-portrait {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.abt-us .sec-two__team-portrait img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.abt-us .sec-two__team-name {
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0;
}

.abt-us .sec-two__team-role {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    margin: 0;
}

.abt-us .sec-two__team-bio {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #2a4226;
    margin: 0;
}

.abt-us .sec-two__team-card--solo {
    max-width: 480px;
}

.abt-us .sec-two__halftone {
    position: absolute;
    top: 0;
    left: 0;
    width: 260px;
    height: 260px;
    pointer-events: none;
    opacity: 0.18;
    background-image: radial-gradient(circle, #56BD68 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
    -webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, transparent 70%);
}

.abt-us .sec-two__metrics {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.abt-us .sec-two__metric {
    flex: 1 1 160px;
    min-width: 0;
    background: #12240E;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.abt-us .sec-two__metric-val {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #56BD68;
    margin: 0;
}

.abt-us .sec-two__metric-lbl {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #EAF6E8;
    margin: 0;
    opacity: 0.8;
}

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

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

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

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

.abt-us .sec-one__inner {
    animation: slideInLeft 0.16s cubic-bezier(0.4, 0, 1, 1) both;
}

.abt-us .sec-two__top-text {
    animation: slideInLeft 0.14s cubic-bezier(0.4, 0, 1, 1) 0.08s both;
}

.abt-us .sec-two__top-img {
    animation: slideInRight 0.16s cubic-bezier(0.4, 0, 1, 1) 0.1s both;
}

.abt-us .sec-two__row:nth-child(odd) .sec-two__row-img {
    animation: slideInLeft 0.15s cubic-bezier(0.4, 0, 1, 1) 0.12s both;
}

.abt-us .sec-two__row:nth-child(odd) .sec-two__row-text {
    animation: slideInRight 0.17s cubic-bezier(0.4, 0, 1, 1) 0.14s both;
}

.abt-us .sec-two__row:nth-child(even) .sec-two__row-img {
    animation: slideInRight 0.15s cubic-bezier(0.4, 0, 1, 1) 0.12s both;
}

.abt-us .sec-two__row:nth-child(even) .sec-two__row-text {
    animation: slideInLeft 0.17s cubic-bezier(0.4, 0, 1, 1) 0.14s both;
}

@media (max-width: 1024px) {
    .abt-us .sec-two__top {
        flex-direction: column;
        gap: 40px;
    }

    .abt-us .sec-two__top-img {
        flex: 0 0 auto;
        width: 100%;
    }

    .abt-us .sec-two__img-wrap {
        width: 100%;
        height: 300px;
    }

    .abt-us .sec-two__row {
        flex-direction: column !important;
        gap: 40px;
    }

    .abt-us .sec-two__row-img {
        flex: 0 0 auto;
        width: 100%;
    }

    .abt-us .sec-two__row-imgwrap {
        width: 100%;
        height: 280px;
    }

    .abt-us .sec-two__team-grid {
        flex-direction: column;
        gap: 24px;
    }

    .abt-us .sec-two__team-card--solo {
        max-width: 100%;
    }

    .abt-us .sec-one__h1 {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    .abt-us .sec-one {
        padding: 40px 24px 80px 24px;
    }

    .abt-us .sec-two {
        padding: 40px 24px 40px 24px;
    }

    .abt-us .sec-two__top {
        margin-bottom: 40px;
    }

    .abt-us .sec-two__zigzag {
        gap: 40px;
    }

    .abt-us .sec-two__team {
        margin-top: 40px;
        padding-top: 40px;
    }

    .abt-us .sec-two__metrics {
        gap: 12px;
    }

    .abt-us .sec-two__list {
        grid-template-columns: 1fr;
    }

    .abt-us .sec-one__geo,
    .abt-us .sec-one__geo--sm {
        display: none;
    }

    .abt-us .sec-two__metrics {
        flex-direction: column;
    }

    .abt-us .sec-two__metric {
        flex: 0 0 auto;
    }
}

@media (max-width: 640px) {
    .abt-us .sec-one__h1 {
        font-size: 37px;
    }

    .abt-us .sec-two__h2,
    .abt-us .sec-two__row-h3,
    .abt-us .sec-two__team-h3 {
        font-size: 21px;
    }

    .abt-us .sec-two__top {
        gap: 24px;
    }
}

.ctc-us {
    background: #ffffff;
    overflow-x: clip;
    position: relative;
}

.ctc-us .pg__wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

.ctc-us .reach__row {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    padding: 80px 0;
}

.ctc-us .reach__left {
    flex: 0 0 420px;
    position: relative;
}

.ctc-us .reach__badge {
    display: inline-block;
    border: 1.5px solid #56BD68;
    border-radius: 4px;
    padding: 4px 12px;
    font-size: 16px;
    color: #56BD68;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
}

.ctc-us .reach__h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    margin: 0 0 24px 0;
    font-style: italic;
}

.ctc-us .reach__sub {
    font-size: 21px;
    line-height: 1.5;
    color: #3a4f36;
    margin: 0 0 40px 0;
    letter-spacing: 0.01em;
}

.ctc-us .reach__deco {
    width: 80px;
    height: 3px;
    background: #56BD68;
    border-radius: 0px;
    margin-bottom: 40px;
    opacity: 0.45;
}

.ctc-us .reach__img-frame {
    position: relative;
    width: 380px;
    height: 460px;
    overflow: hidden;
    border-radius: 22px 0px 22px 0px;
}

.ctc-us .reach__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.16s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .reach__img-frame:hover img {
    transform: scale(1.03);
}

.ctc-us .reach__img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 36, 14, 0.08) 0%, rgba(18, 36, 14, 0.38) 100%);
    border-radius: 22px 0px 22px 0px;
    pointer-events: none;
}

.ctc-us .reach__right {
    flex: 1;
    padding-top: 40px;
}

.ctc-us .reach__info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.ctc-us .reach__info-item {
    background: #EAF6E8;
    border-radius: 10px;
    padding: 24px;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    transition: box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1), transform 0.14s cubic-bezier(0.4, 0, 1, 1);
    position: relative;
    overflow: hidden;
}

.ctc-us .reach__info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #56BD68;
    border-radius: 10px 10px 0px 0px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.15s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .reach__info-item:hover::before {
    transform: scaleX(1);
}

.ctc-us .reach__info-item:hover {
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    transform: translateY(-2px);
}

.ctc-us .reach__info-lbl {
    font-size: 16px;
    color: #56BD68;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    font-weight: 600;
}

.ctc-us .reach__info-val {
    font-size: 16px;
    color: #12240E;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.ctc-us .reach__info-val a {
    color: #12240E;
    text-decoration: none;
    transition: color 0.11s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .reach__info-val a:hover {
    color: #56BD68;
}

.ctc-us .reach__note {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4f36;
    letter-spacing: 0.01em;
    border-left: none;
    padding: 12px 24px;
    background: linear-gradient(90deg, rgba(86, 189, 104, 0.10) 0%, rgba(234, 246, 232, 0.0) 100%);
    border-radius: 0px 10px 10px 0px;
    outline: 1.5px dashed rgba(86, 189, 104, 0.4);
    outline-offset: -1px;
}

.ctc-us .form__band {
    background: linear-gradient(105deg, #12240E 0%, #1e3a18 55%, #2a4d20 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ctc-us .form__band::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(86, 189, 104, 0.06);
    pointer-events: none;
}

.ctc-us .form__band::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 10%;
    width: 240px;
    height: 240px;
    border-radius: 38px;
    background: rgba(86, 189, 104, 0.04);
    pointer-events: none;
}

.ctc-us .form__inner {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.ctc-us .form__aside {
    flex: 0 0 340px;
    padding-top: 8px;
}

.ctc-us .form__aside-h2 {
    font-size: 37px;
    line-height: 1.1;
    color: #EAF6E8;
    margin: 0 0 24px 0;
    font-style: italic;
    letter-spacing: 0.01em;
}

.ctc-us .form__aside-p {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(234, 246, 232, 0.72);
    margin: 0 0 40px 0;
    letter-spacing: 0.01em;
}

.ctc-us .form__steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctc-us .form__step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.ctc-us .form__step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(86, 189, 104, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #56BD68;
    letter-spacing: 0.01em;
}

.ctc-us .form__step-txt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(234, 246, 232, 0.65);
    padding-top: 4px;
    letter-spacing: 0.01em;
}

.ctc-us .form__card {
    flex: 1;
    background: #ffffff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
}

.ctc-us .form__row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-bottom: 24px;
}

.ctc-us .form__field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.ctc-us .form__field--full {
    flex: 0 0 100%;
    margin-bottom: 24px;
}

.ctc-us .form__lbl {
    font-size: 16px;
    color: #12240E;
    letter-spacing: 0.01em;
    font-weight: 600;
    transition: color 0.11s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .form__inp {
    border: 1.5px solid rgba(18, 36, 14, 0.18);
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 16px;
    color: #12240E;
    background: #ffffff;
    outline: none;
    transition: border-color 0.13s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.15s cubic-bezier(0.4, 0, 1, 1);
    letter-spacing: 0.01em;
    width: 100%;
    box-sizing: border-box;
}

.ctc-us .form__inp::placeholder {
    color: rgba(18, 36, 14, 0.35);
}

.ctc-us .form__inp:focus {
    border-color: #56BD68;
    box-shadow: -1px 2px 3px 1px rgba(86, 189, 104, 0.05), inset 0 0 0 3px rgba(86, 189, 104, 0.07);
}

.ctc-us .form__srv-lbl {
    font-size: 16px;
    color: #12240E;
    letter-spacing: 0.01em;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.ctc-us .form__chk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.ctc-us .form__chk-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ctc-us .form__chk-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #56BD68;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 4px;
}

.ctc-us .form__chk-txt {
    font-size: 16px;
    color: #12240E;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.ctc-us .form__divider {
    height: 1px;
    background: rgba(18, 36, 14, 0.08);
    margin: 24px 0;
    border-radius: 0px;
}

.ctc-us .form__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.ctc-us .form__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #56BD68;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 4px;
}

.ctc-us .form__privacy-txt {
    font-size: 16px;
    color: #3a4f36;
    line-height: 1.5;
    letter-spacing: 0.01em;
}

.ctc-us .form__privacy-txt a {
    color: #56BD68;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.11s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .form__privacy-txt a:hover {
    color: #12240E;
}

.ctc-us .form__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px solid #56BD68;
    border-radius: 10px;
    background: transparent;
    color: #12240E;
    font-size: 16px;
    letter-spacing: 0.02em;
    padding: 12px 40px;
    cursor: pointer;
    transition: background 0.13s cubic-bezier(0.4, 0, 1, 1), color 0.11s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.16s cubic-bezier(0.4, 0, 1, 1);
    position: relative;
    overflow: hidden;
}

.ctc-us .form__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(86, 189, 104, 0.18) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.17s cubic-bezier(0.4, 0, 1, 1);
    pointer-events: none;
}

.ctc-us .form__btn:hover::before {
    transform: translateX(100%);
}

.ctc-us .form__btn:hover {
    background: #56BD68;
    color: #12240E;
    box-shadow: -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
}

.ctc-us .form__btn:focus {
    outline: 2px solid #56BD68;
    outline-offset: 3px;
}

.ctc-us .form__btn:active {
    background: #3da050;
    border-color: #3da050;
}

.ctc-us .alt__strip {
    background: #EAF6E8;
    padding: 80px 0;
}

.ctc-us .alt__row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
}

.ctc-us .alt__img-col {
    flex: 0 0 480px;
    position: relative;
}

.ctc-us .alt__img-wrap {
    width: 480px;
    height: 360px;
    overflow: hidden;
    border-radius: 0px 38px 0px 38px;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.ctc-us .alt__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.18s cubic-bezier(0.4, 0, 1, 1);
}

.ctc-us .alt__img-wrap:hover img {
    transform: scale(1.04);
}

.ctc-us .alt__accent-box {
    position: absolute;
    bottom: -24px;
    right: -12px;
    width: 140px;
    height: 140px;
    border-radius: 22px;
    border: 2px dashed rgba(86, 189, 104, 0.5);
    pointer-events: none;
    z-index: 0;
}

.ctc-us .alt__txt-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-top: 8px;
}

.ctc-us .alt__h2 {
    font-size: 37px;
    line-height: 1.1;
    color: #12240E;
    margin: 0;
    font-style: italic;
    letter-spacing: 0.01em;
}

.ctc-us .alt__para {
    font-size: 16px;
    line-height: 1.9;
    color: #3a4f36;
    margin: 0;
    letter-spacing: 0.01em;
}

.ctc-us .alt__para-num {
    font-size: 21px;
    color: rgba(86, 189, 104, 0.55);
    margin-right: 8px;
    font-style: italic;
}

.ctc-us .alt__detail-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ctc-us .alt__detail-list li {
    font-size: 16px;
    color: #12240E;
    line-height: 1.5;
    letter-spacing: 0.01em;
    padding: 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    transition: box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctc-us .alt__detail-list li:hover {
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.ctc-us .alt__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #56BD68;
    flex-shrink: 0;
}

@keyframes ctc-reveal {
    from {
        opacity: 0;
        transform: scale(0.97);
    }

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

.ctc-us .reach__left {
    animation: ctc-reveal 0.16s cubic-bezier(0.4, 0, 1, 1) both;
}

.ctc-us .reach__right {
    animation: ctc-reveal 0.18s cubic-bezier(0.4, 0, 1, 1) 0.05s both;
}

@media (max-width: 1280px) {
    .ctc-us .reach__row {
        gap: 40px;
    }

    .ctc-us .reach__left {
        flex: 0 0 340px;
    }

    .ctc-us .reach__img-frame {
        width: 320px;
        height: 380px;
    }

    .ctc-us .form__inner {
        gap: 40px;
    }

    .ctc-us .form__aside {
        flex: 0 0 280px;
    }

    .ctc-us .alt__img-col {
        flex: 0 0 380px;
    }

    .ctc-us .alt__img-wrap {
        width: 380px;
    }
}

@media (max-width: 1024px) {
    .ctc-us .reach__h1 {
        font-size: 37px;
    }

    .ctc-us .reach__row {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }

    .ctc-us .reach__left {
        flex: none;
        width: 100%;
    }

    .ctc-us .reach__img-frame {
        width: 100%;
        height: 320px;
    }

    .ctc-us .reach__right {
        padding-top: 0;
    }

    .ctc-us .form__inner {
        flex-direction: column;
        gap: 40px;
    }

    .ctc-us .form__aside {
        flex: none;
        width: 100%;
    }

    .ctc-us .alt__row {
        flex-direction: column;
        gap: 40px;
    }

    .ctc-us .alt__img-col {
        flex: none;
        width: 100%;
    }

    .ctc-us .alt__img-wrap {
        width: 100%;
        height: 280px;
    }

    .ctc-us .alt__accent-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .ctc-us .reach__info-grid {
        grid-template-columns: 1fr;
    }

    .ctc-us .form__row {
        flex-direction: column;
        gap: 24px;
    }

    .ctc-us .form__chk-grid {
        grid-template-columns: 1fr;
    }

    .ctc-us .form__card {
        padding: 24px;
    }

    .ctc-us .alt__detail-list {
        grid-template-columns: 1fr;
    }

    .ctc-us .form__band {
        padding: 40px 0;
    }

    .ctc-us .alt__strip {
        padding: 40px 0;
    }
}

@media (max-width: 640px) {
    .ctc-us .reach__h1 {
        font-size: 37px;
    }

    .ctc-us .pg__wrap {
        padding: 0 12px;
    }

    .ctc-us .reach__row {
        padding: 24px 0;
    }

    .ctc-us .form__btn {
        width: 100%;
    }
}

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

.opn__inner {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.opn__schema {
    display: none;
}

.opn__band {
    position: relative;
    background-color: #12240E;
    overflow: hidden;
}

.opn__band-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: repeating-linear-gradient(90deg,
            #56BD68 0px,
            #56BD68 18px,
            transparent 18px,
            transparent 30px);
}

.opn__band-grain {
    position: absolute;
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
}

.opn__band-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    padding: 40px 40px 0 40px;
    position: relative;
    z-index: 1;
}

.opn__band-txt {
    flex: 1 1 0;
    padding-bottom: 40px;
}

.opn__band-label {
    display: inline-block;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    border: 1px solid rgba(86, 189, 104, 0.35);
    border-radius: 4px;
    padding: 4px 12px;
    margin-bottom: 24px;
}

.opn__band-h1 {
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #ffffff;
    margin-bottom: 12px;
    font-style: italic;
}

.opn__band-h2sub {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 24px;
    font-style: normal;
}

.opn__band-desc {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

.opn__band-img-col {
    flex: 0 0 340px;
    width: 340px;
    position: relative;
    align-self: flex-end;
}

.opn__band-img-wrap {
    width: 340px;
    height: 420px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
    box-shadow: -1px 8px 60px 1px rgba(86, 189, 104, 0.13);
}

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

.opn__band-img-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #12240E);
    pointer-events: none;
}

@media (max-width: 768px) {
    .opn__band-row {
        flex-direction: column;
        padding: 40px 24px 0 24px;
        gap: 24px;
    }

    .opn__band-h1 {
        font-size: 37px;
    }

    .opn__band-h2sub {
        font-size: 21px;
    }

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

    .opn__band-img-wrap {
        width: 100%;
        height: 260px;
        border-radius: 10px 10px 0 0;
    }
}

.opn__ev {
    background-color: #EAF6E8;
    padding: 80px 40px;
}

.opn__ev-inner {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.opn__ev-left {
    flex: 0 0 380px;
}

.opn__ev-eyebrow {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    margin-bottom: 12px;
}

.opn__ev-heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin-bottom: 24px;
}

.opn__ev-img-wrap {
    width: 380px;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

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

.opn__ev-right {
    flex: 1 1 0;
}

.opn__ev-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.opn__ev-metric {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    transition: box-shadow 0.12s cubic-bezier(0.4, 0, 1, 1), transform 0.15s cubic-bezier(0.4, 0, 1, 1);
    border: 1px solid rgba(86, 189, 104, 0.15);
}

.opn__ev-metric:hover {
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    transform: translateY(-2px);
}

.opn__ev-num {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #56BD68;
    font-style: italic;
    margin-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.opn__ev-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 38px;
    background: #56BD68;
    color: #ffffff;
    font-size: 16px;
    font-style: normal;
    flex-shrink: 0;
}

.opn__ev-metric-label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
}

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

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

.opn__ev-para-num {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #56BD68;
    flex-shrink: 0;
    font-style: italic;
}

.opn__ev-para-txt {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
}

@media (max-width: 1024px) {
    .opn__ev-inner {
        flex-direction: column;
        gap: 40px;
    }

    .opn__ev-left {
        flex: 0 0 auto;
        width: 100%;
    }

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

@media (max-width: 640px) {
    .opn__ev {
        padding: 40px 24px;
    }

    .opn__ev-metrics {
        grid-template-columns: 1fr;
    }
}

.opn__fit {
    background-color: #12240E;
    padding: 80px 40px;
    position: relative;
}

.opn__fit-dashes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            #56BD68 0px,
            #56BD68 14px,
            transparent 14px,
            transparent 24px);
}

.opn__fit-inner {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.opn__fit-right {
    flex: 1 1 0;
}

.opn__fit-label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: rgba(86, 189, 104, 0.8);
    margin-bottom: 12px;
}

.opn__fit-heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 24px;
}

.opn__fit-intro {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
}

.opn__fit-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.opn__fit-item {
    padding: 24px;
    border-radius: 10px;
    border: 1px solid rgba(86, 189, 104, 0.2);
    background: rgba(86, 189, 104, 0.04);
    transition: border-color 0.1s cubic-bezier(0.4, 0, 1, 1), background 0.13s cubic-bezier(0.4, 0, 1, 1);
}

.opn__fit-item:focus-within {
    border-color: #56BD68;
    background: rgba(86, 189, 104, 0.09);
    outline: none;
    box-shadow: 0 0 0 3px rgba(86, 189, 104, 0.25);
}

.opn__fit-item-head {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #56BD68;
    margin-bottom: 8px;
    font-style: italic;
}

.opn__fit-item-txt {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.6);
}

.opn__fit-left {
    flex: 0 0 360px;
    position: relative;
}

.opn__fit-img-wrap {
    width: 360px;
    height: 440px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: -1px 8px 60px 1px rgba(86, 189, 104, 0.13);
    position: relative;
}

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

.opn__fit-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(18, 36, 14, 0.55) 0%, rgba(18, 36, 14, 0.1) 60%);
    pointer-events: none;
}

@media (max-width: 1024px) {
    .opn__fit-inner {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .opn__fit-left {
        flex: 0 0 auto;
        width: 100%;
    }

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

@media (max-width: 640px) {
    .opn__fit {
        padding: 40px 24px;
    }

    .opn__fit-cols {
        grid-template-columns: 1fr;
    }
}

.opn__how {
    padding: 80px 40px;
    background-color: #ffffff;
    position: relative;
}

.opn__how-dashes {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: repeating-linear-gradient(90deg,
            rgba(18, 36, 14, 0.12) 0px,
            rgba(18, 36, 14, 0.12) 14px,
            transparent 14px,
            transparent 24px);
}

.opn__how-inner {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.opn__how-top {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-end;
    margin-bottom: 40px;
}

.opn__how-topleft {
    flex: 1 1 0;
}

.opn__how-label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    margin-bottom: 12px;
}

.opn__how-heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
}

.opn__how-topright {
    flex: 0 0 420px;
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
}

.opn__how-steps {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.opn__how-step {
    flex: 1 1 0;
    padding: 24px;
    border-radius: 10px;
    background: #EAF6E8;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    transition: box-shadow 0.14s cubic-bezier(0.4, 0, 1, 1), transform 0.16s cubic-bezier(0.4, 0, 1, 1);
    animation: opn-flip 0.5s cubic-bezier(0.4, 0, 1, 1) both;
}

.opn__how-step:nth-child(1) {
    animation-delay: 0.05s;
}

.opn__how-step:nth-child(2) {
    animation-delay: 0.12s;
}

.opn__how-step:nth-child(3) {
    animation-delay: 0.19s;
}

.opn__how-step:nth-child(4) {
    animation-delay: 0.26s;
}

@keyframes opn-flip {
    from {
        opacity: 0;
        transform: rotateY(-25deg) scale(0.96);
    }

    to {
        opacity: 1;
        transform: rotateY(0deg) scale(1);
    }
}

.opn__how-step:hover {
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
    transform: translateY(-3px);
}

.opn__how-step-num {
    width: 32px;
    height: 32px;
    border-radius: 38px;
    background: #56BD68;
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
    font-style: italic;
}

.opn__how-step-head {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin-bottom: 8px;
}

.opn__how-step-txt {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
}

.opn__how-img-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
}

.opn__how-img-a {
    flex: 2 1 0;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.opn__how-img-a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.opn__how-img-b {
    flex: 1 1 0;
    height: 260px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.opn__how-img-b img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 1024px) {
    .opn__how-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .opn__how-topright {
        flex: 0 0 auto;
        width: 100%;
    }

    .opn__how-steps {
        flex-direction: column;
    }

    .opn__how-img-row {
        flex-direction: column;
    }

    .opn__how-img-a,
    .opn__how-img-b {
        flex: 0 0 auto;
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 640px) {
    .opn__how {
        padding: 40px 24px;
    }
}

.opn__ctx {
    padding: 80px 40px;
    background-color: #EAF6E8;
    position: relative;
}

.opn__ctx-inner {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
}

.opn__ctx-top {
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.opn__ctx-topleft {
    flex: 1 1 0;
}

.opn__ctx-label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #56BD68;
    margin-bottom: 12px;
}

.opn__ctx-heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin-bottom: 24px;
}

.opn__ctx-para {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
}

.opn__ctx-topright {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opn__ctx-stat {
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: -1px 2px 3px 1px rgba(18, 36, 14, 0.05);
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    transition: box-shadow 0.11s cubic-bezier(0.4, 0, 1, 1);
}

.opn__ctx-stat:hover {
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.opn__ctx-stat-num {
    width: 36px;
    height: 36px;
    border-radius: 38px;
    background: #12240E;
    color: #56BD68;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-style: italic;
}

.opn__ctx-stat-body {
    flex: 1 1 0;
}

.opn__ctx-stat-val {
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin-bottom: 4px;
}

.opn__ctx-stat-desc {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
}

.opn__ctx-portraits {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
}

.opn__ctx-portrait-card {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    flex: 1 1 0;
    background: #ffffff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: -1px 7px 25px 1px rgba(18, 36, 14, 0.09);
}

.opn__ctx-portrait-img {
    width: 120px;
    height: 160px;
    overflow: hidden;
    border-radius: 0;
    flex-shrink: 0;
    box-shadow: -1px 8px 60px 1px rgba(18, 36, 14, 0.13);
}

.opn__ctx-portrait-img img {
    width: 120px;
    height: 160px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.opn__ctx-portrait-body {
    flex: 1 1 0;
}

.opn__ctx-portrait-name {
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin-bottom: 4px;
}

.opn__ctx-portrait-role {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #56BD68;
    margin-bottom: 12px;
}

.opn__ctx-portrait-quote {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #12240E;
}

.opn__ctx-portrait-num {
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: flex-start;
}

.opn__ctx-portrait-pnum {
    font-size: 16px;
    line-height: 1.9;
    color: #56BD68;
    font-style: italic;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .opn__ctx-top {
        flex-direction: column;
        gap: 40px;
    }

    .opn__ctx-topright {
        flex: 0 0 auto;
        width: 100%;
    }

    .opn__ctx-portraits {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 640px) {
    .opn__ctx {
        padding: 40px 24px;
    }

    .opn__ctx-portrait-card {
        flex-direction: column;
    }

    .opn__ctx-portrait-img {
        width: 100%;
        height: 200px;
    }

    .opn__ctx-portrait-img img {
        width: 100%;
        height: 200px;
    }
}

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

.succ-page .succ__wrap {
    max-width: 640px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.succ-page .succ__icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 38px;
    background: #EAF6E8;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-shadow: -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
    flex-shrink: 0;
}

.succ-page .succ__icon-wrap svg {
    display: block;
}

.succ-page .succ__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.succ-page .succ__heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: 0.01em;
    color: #12240E;
    font-style: italic;
    margin: 0;
}

.succ-page .succ__desc {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: #2e4a29;
    margin: 0;
    max-width: 520px;
}

.succ-page .succ__note {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.01em;
    color: #4a6645;
    margin: 0;
    max-width: 480px;
}

.succ-page .succ__divider {
    width: 48px;
    height: 2px;
    background: #56BD68;
    border-radius: 4px;
    flex-shrink: 0;
}

.succ-page .succ__actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.succ-page .succ__btn--primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 10px;
    border: 2px solid #56BD68;
    background: transparent;
    color: #12240E;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.12s cubic-bezier(0.4, 0, 1, 1), color 0.14s cubic-bezier(0.4, 0, 1, 1), box-shadow 0.16s ease-in;
    box-shadow: -1px 2px 3px 1px rgba(86, 189, 104, 0.05);
}

.succ-page .succ__btn--primary:hover,
.succ-page .succ__btn--primary:focus-visible {
    background: #56BD68;
    color: #12240E;
    box-shadow: -1px 7px 25px 1px rgba(86, 189, 104, 0.09);
    outline: none;
}

.succ-page .succ__btn--primary:active {
    box-shadow: -1px 2px 3px 1px rgba(86, 189, 104, 0.05);
}

.succ-page .succ__btn--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 40px;
    border-radius: 10px;
    border: 2px solid #EAF6E8;
    background: transparent;
    color: #2e4a29;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.11s cubic-bezier(0.4, 0, 1, 1), background 0.15s ease-in;
}

.succ-page .succ__btn--secondary:hover,
.succ-page .succ__btn--secondary:focus-visible {
    border-color: #56BD68;
    background: #EAF6E8;
    outline: none;
}

.succ-page .succ__btn--secondary:active {
    background: transparent;
}

.succ-page .succ__confirm-badge {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 22px;
    background: #EAF6E8;
    border: 1px solid rgba(86, 189, 104, 0.22);
}

.succ-page .succ__confirm-badge span {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.01em;
    color: #12240E;
}

@media (max-width: 640px) {
    .succ-page {
        padding: 40px 24px;
    }

    .succ-page .succ__heading {
        font-size: 37px;
    }

    .succ-page .succ__desc {
        font-size: 21px;
    }

    .succ-page .succ__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .succ-page .succ__btn--primary,
    .succ-page .succ__btn--secondary {
        text-align: center;
    }
}