* {
    box-sizing: border-box
}

html {
    font-family: 'Literata', Georgia, serif;
    font-size: 17px;
    line-height: 1.55
}

body {
    margin: 0
}

.hd {
    background: #fff;
    border-bottom: 2px solid #00EF8A;
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    position: relative;
    z-index: 100
}

.hd__top {
    background: linear-gradient(135deg, #2a0305 0%, #820D11 100%);
    padding: 8px 0
}

.hd__top-row {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px
}

.hd__contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #FFFEDE;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .01em;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.hd__contact-item:hover,
.hd__contact-item:focus {
    color: #00EF8A;
    outline: none
}

.hd__contact-item:focus::before {
    content: attr(data-label);
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 11px;
    color: #FFFEDE;
    background: #820D11;
    padding: 2px 4px;
    border-radius: 3px;
    pointer-events: none;
    white-space: nowrap
}

.hd__contact-item--wrap {
    position: relative
}

.hd__icon-wrap {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.hd__main-row {
    max-width: 1366px;
    margin: 0 auto;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 0 40px;
    align-items: center
}

.hd__divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #00EF8A, transparent);
    border-radius: 3px;
    justify-self: center
}

.hd__brand {
    display: flex;
    align-items: center;
    gap: 20px
}

.hd__logo-card {
    width: 80px;
    height: 80px;
    background: #2a0305;
    border-radius: 8px;
    box-shadow: 2px 5px 22px 0 #820d111c inset 0 1px 0 #fffede14 inset 0 -1px 0 #0000002e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid #00ef8a38
}

.hd__logo-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block
}

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

.hd__brand-name {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 17px;
    font-weight: 700;
    color: #2a0305;
    letter-spacing: -.02em;
    line-height: 1.2;
    text-decoration: none
}

.hd__brand-name:hover,
.hd__brand-name:focus {
    color: #820D11;
    outline: none
}

.hd__brand-sub {
    font-size: 14px;
    color: #820D11;
    line-height: 1.2;
    font-style: italic
}

.hd__nav-area {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.hd__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
    align-items: center;
    justify-content: flex-end;
    list-style: none;
    margin: 0;
    padding: 0
}

.hd__nav-item {
    position: relative
}

.hd__nav-link {
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-family: 'Literata', Georgia, serif;
    font-weight: 700;
    color: #2a0305;
    text-decoration: none;
    border-radius: 3px;
    letter-spacing: .01em;
    line-height: 1.2;
    min-height: 44px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: color .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.hd__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #820D11;
    border-radius: 3px;
    transition: height .22s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.hd__nav-link:hover::after,
.hd__nav-link:focus::after {
    height: 100%
}

.hd__nav-link:hover,
.hd__nav-link:focus {
    color: #FFFEDE;
    outline: none
}

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

.hd__nav-link:focus::before {
    content: attr(data-label);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: #FFFEDE;
    background: #820D11;
    padding: 2px 4px;
    border-radius: 3px;
    pointer-events: none;
    white-space: nowrap;
    z-index: 10
}

.hd__nav-link--active {
    color: #820D11;
    background: #00ef8a1a
}

@media (max-width: 1280px) {
    .hd__main-row {
        padding: 20px;
        gap: 0 20px
    }

    .hd__top-row {
        padding: 0 20px
    }

    .hd__nav-link {
        padding: 8px
    }
}

@media (max-width: 768px) {
    .hd__main-row {
        grid-template-columns: 1fr;
        gap: 20px 0;
        padding: 20px
    }

    .hd__divider {
        display: none
    }

    .hd__nav-area {
        justify-content: flex-start
    }

    .hd__nav {
        justify-content: flex-start
    }

    .hd__top-row {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 8px 20px
    }
}

.ft {
    background: #2a0305;
    position: relative;
    overflow: hidden
}

.ft__geo {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.ft__geo-shape1 {
    position: absolute;
    top: -40px;
    right: -80px;
    width: 320px;
    height: 320px;
    border: 40px solid #00ef8a12;
    border-radius: 24px;
    transform: rotate(22deg)
}

.ft__geo-shape2 {
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border: 30px solid #fffede0d;
    border-radius: 40px;
    transform: rotate(-14deg)
}

.ft__geo-shape3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(8deg);
    width: 500px;
    height: 180px;
    border: 1px solid #00ef8a0f;
    border-radius: 14px
}

.ft__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1
}

.ft__logo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.ft__logo-card {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 10px 36px 0 #00ef8a1c;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00ef8a4d
}

.ft__logo-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block
}

.ft__brand-label {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: #FFFEDE;
    letter-spacing: -.03em;
    line-height: 1.2;
    text-align: center
}

.ft__desc-block {
    max-width: 640px;
    text-align: center
}

.ft__desc {
    font-size: 17px;
    line-height: 1.8;
    color: #fffedecc;
    font-family: 'Literata', Georgia, serif
}

.ft__values {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.ft__value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #00EF8A;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.2
}

.ft__value-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: #00EF8A;
    flex-shrink: 0
}

.ft__divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #00ef8a4d, transparent);
    border-radius: 3px
}

.ft__contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 40px;
    justify-content: center;
    align-items: center
}

.ft__contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fffedeb3;
    font-size: 14px;
    line-height: 1.2;
    transition: color .24s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative
}

.ft__contact-link:hover,
.ft__contact-link:focus {
    color: #00EF8A;
    outline: none
}

.ft__contact-link:focus::before {
    content: attr(data-label);
    position: absolute;
    top: -18px;
    left: 0;
    font-size: 11px;
    color: #2a0305;
    background: #00EF8A;
    padding: 2px 4px;
    border-radius: 3px;
    pointer-events: none;
    white-space: nowrap
}

.ft__contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ft__nav-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0
}

.ft__nav-link {
    font-size: 14px;
    color: #fffede8c;
    text-decoration: none;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 3px;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    min-height: 44px;
    display: flex;
    align-items: center
}

.ft__nav-link:hover,
.ft__nav-link:focus {
    color: #FFFEDE;
    background: #00ef8a1a;
    outline: none
}

.ft__nav-link:focus::before {
    content: attr(data-label)
}

.ft__copy {
    font-size: 14px;
    color: #fffede59;
    text-align: center;
    line-height: 1.55
}

.ft__addr {
    font-size: 14px;
    color: #fffede66;
    text-align: center;
    line-height: 1.55;
    font-style: normal
}

@media (max-width: 768px) {
    .ft__inner {
        padding: 80px 20px 40px;
        gap: 20px
    }

    .ft__contact-row {
        gap: 8px 20px
    }
}

.ck-strip {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 380px;
    width: calc(100vw - 40px);
    background: #fff;
    border: 1px solid #00ef8a66;
    border-radius: 8px;
    box-shadow: 2px 10px 36px 0 #00ef8a1c;
    z-index: 4000;
    padding: 20px
}

.ck-strip__uses {
    margin: 0 0 8px;
    padding: 0 0 0 20px;
    font-size: 14px;
    color: #2a0305;
    line-height: 1.55
}

.ck-strip__uses li {
    margin-bottom: 4px
}

.ck-strip__intro {
    font-size: 14px;
    color: #2a0305;
    line-height: 1.55;
    margin: 0 0 8px
}

.ck-strip__head {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 17px;
    font-weight: 700;
    color: #2a0305;
    line-height: 1.2;
    margin: 0 0 8px
}

.ck-strip__policy {
    font-size: 14px;
    color: #2a03058c;
    line-height: 1.55;
    margin: 0 0 20px
}

.ck-strip__policy a {
    color: #820D11;
    text-decoration: underline
}

.ck-strip__actions {
    display: flex;
    gap: 8px;
    align-items: center
}

.ck-btn--ok {
    flex: 1;
    min-height: 44px;
    background: #820D11;
    color: #FFFEDE;
    border: none;
    border-radius: 3px;
    font-family: 'Literata', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    transition: background .25s cubic-bezier(0.4, 0, 0.2, 1), color .25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.ck-btn--ok::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #00EF8A;
    transition: height .22s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.ck-btn--ok:hover::after,
.ck-btn--ok:focus::after {
    height: 100%
}

.ck-btn--ok:hover,
.ck-btn--ok:focus {
    color: #2a0305;
    outline: none
}

.ck-btn--ok span {
    position: relative;
    z-index: 1
}

.ck-btn--skip {
    flex: 1;
    min-height: 44px;
    background: transparent;
    color: #820D11;
    border: 1px solid #820D11;
    border-radius: 3px;
    font-family: 'Literata', Georgia, serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    transition: background .25s cubic-bezier(0.4, 0, 0.2, 1), color .25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.ck-btn--skip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #820D11;
    transition: height .22s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.ck-btn--skip:hover::after,
.ck-btn--skip:focus::after {
    height: 100%
}

.ck-btn--skip:hover,
.ck-btn--skip:focus {
    color: #FFFEDE;
    outline: none
}

.ck-btn--skip span {
    position: relative;
    z-index: 1
}

.sao-terms-info {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px
}

.sao-terms-info h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 3px solid #00EF8A
}

.sao-terms-info h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #111;
    margin-top: 80px;
    margin-bottom: 20px
}

.sao-terms-info h3 {
    font-size: 17px;
    line-height: 1.55;
    letter-spacing: -.01em;
    color: #111;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 8px;
    text-transform: uppercase
}

.sao-terms-info h4 {
    font-size: 17px;
    line-height: 1.55;
    color: #111;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 8px
}

.sao-terms-info h5 {
    font-size: 14px;
    line-height: 1.55;
    color: #820D11;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: 20px;
    margin-bottom: 8px
}

.sao-terms-info h6 {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 4px
}

.sao-terms-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
    margin-bottom: 20px
}

.sao-terms-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px
}

.sao-terms-info ol {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    counter-reset: policy-counter
}

.sao-terms-info ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
    padding: 4px 0 4px 20px;
    position: relative
}

.sao-terms-info ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background-color: #00EF8A
}

.sao-terms-info ol li {
    font-size: 17px;
    line-height: 1.8;
    color: #222;
    padding: 4px 0 4px 40px;
    position: relative;
    counter-increment: policy-counter
}

.sao-terms-info ol li::before {
    content: counter(policy-counter);
    position: absolute;
    left: 0;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 8px;
    background-color: #FFFEDE;
    border: 1.5px solid #00EF8A;
    color: #111;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    display: flex;
    align-items: center;
    justify-content: center
}

.sao-terms-info ul li+li,
.sao-terms-info ol li+li {
    margin-top: 4px
}

.sao-terms-info ul ul,
.sao-terms-info ol ol,
.sao-terms-info ul ol,
.sao-terms-info ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
    padding-left: 20px
}

.sao-terms-info em,
.sao-terms-info i {
    font-style: italic;
    color: #820D11
}

.sao-terms-info a {
    color: #820D11;
    text-decoration: underline;
    text-decoration-color: #00EF8A;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), text-decoration-color .2s cubic-bezier(0.0, 0, 0.2, 1)
}

.sao-terms-info a:hover {
    color: #111;
    text-decoration-color: #820D11
}

.sao-terms-info a:visited {
    color: #5a090c
}

.sao-terms-info table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 14px;
    line-height: 1.55;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 2px 5px 22px 0 #00ef8a1c
}

.sao-terms-info thead {
    background-color: #111
}

.sao-terms-info thead th {
    color: #FFFEDE;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 20px;
    text-align: left;
    border: none
}

.sao-terms-info tbody tr {
    border-bottom: 1px solid #00ef8a2e;
    transition: background-color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.sao-terms-info tbody tr:nth-child(even) {
    background-color: #FFFEDE
}

.sao-terms-info tbody tr:nth-child(odd) {
    background-color: #fff
}

.sao-terms-info tbody tr:hover {
    background-color: #00ef8a14
}

.sao-terms-info td {
    font-size: 14px;
    line-height: 1.55;
    color: #222;
    padding: 20px;
    vertical-align: top;
    border: none
}

.sao-terms-info th {
    font-size: 14px;
    line-height: 1.55
}

.sao-terms-info hr {
    border: none;
    height: 1.5px;
    background: linear-gradient(90deg, #00EF8A 0%, #00ef8a26 60%, transparent 100%);
    margin: 80px 0;
    border-radius: 3px
}

@media (max-width: 768px) {
    .sao-terms-info {
        padding: 40px 20px
    }

    .sao-terms-info h1 {
        font-size: 36px
    }

    .sao-terms-info h2 {
        font-size: 36px;
        margin-top: 40px
    }

    .sao-terms-info h3 {
        margin-top: 20px
    }

    .sao-terms-info h4 {
        margin-top: 20px
    }

    .sao-terms-info hr {
        margin: 40px 0
    }

    .sao-terms-info table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 8px
    }

    .sao-terms-info thead th,
    .sao-terms-info td {
        padding: 20px 8px;
        min-width: 120px
    }
}

@media (max-width: 1280px) and (min-width: 769px) {
    .sao-terms-info {
        padding: 80px 40px
    }
}

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

.abt-us .pg-cap {
    background: #111;
    padding: 40px 0
}

.abt-us .pg-cap__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px
}

.abt-us .pg-cap__txt {
    flex: 1 1 0;
    min-width: 0
}

.abt-us .pg-cap__label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #00EF8A;
    border-bottom: 2px solid #00EF8A;
    padding-bottom: 4px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.abt-us .pg-cap__h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin: 0 0 20px
}

.abt-us .pg-cap__h1 span {
    color: #00EF8A
}

.abt-us .pg-cap__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #ccc;
    margin: 0;
    max-width: 520px
}

.abt-us .pg-cap__img-wrap {
    flex: 0 0 420px;
    width: 420px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: 2px 10px 36px 0 #00ef8a1c
}

.abt-us .pg-cap__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.6) brightness(0.85);
    transition: filter .22s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .pg-cap__img-wrap:hover img {
    filter: saturate(0.9) brightness(0.95);
    transform: scale(1.03)
}

.abt-us .pg-cap__dots {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: row;
    gap: 8px;
    pointer-events: none
}

.abt-us .pg-cap__dot {
    width: 7px;
    height: 7px;
    border-radius: 40px;
    background: #00EF8A;
    opacity: .7
}

.abt-us .pg-cap__dot--sm {
    width: 5px;
    height: 5px;
    opacity: .4;
    align-self: center
}

.abt-us .pg-cap__corners {
    position: absolute;
    top: 12px;
    right: 12px;
    pointer-events: none
}

.abt-us .pg-cap__corners svg {
    display: block
}

@keyframes clip-reveal {
    from {
        clip-path: inset(0 0 100% 0)
    }

    to {
        clip-path: inset(0 0 0% 0)
    }
}

.abt-us .reveal-clip {
    animation: clip-reveal .52s cubic-bezier(0.0, 0, 0.2, 1) both
}

.abt-us .reveal-clip--delay {
    animation: clip-reveal .48s cubic-bezier(0.0, 0, 0.2, 1) .15s both
}

.abt-us .identity-sec {
    background: #fff;
    padding: 80px 0 40px;
    position: relative
}

.abt-us .identity-sec::after {
    content: '';
    display: block;
    height: 48px;
    background: #fff;
    border-radius: 0 0 40px 40px
}

.abt-us .identity-sec__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.abt-us .identity-sec__eyebrow {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #820D11;
    margin: 0 0 20px
}

.abt-us .identity-sec__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #111;
    margin: 0 0 20px;
    padding-left: 16px;
    border-left: 4px solid #00EF8A !important
}

.abt-us .identity-sec__body {
    font-size: 17px;
    line-height: 1.55;
    color: #222;
    margin: 0 0 20px
}

.abt-us .identity-sec__body span {
    color: #820D11;
    font-weight: 600
}

.abt-us .identity-sec__col--right {
    padding-top: 8px
}

.abt-us .identity-sec__img-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 5px 22px 0 #820d111c
}

.abt-us .identity-sec__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1), brightness .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .identity-sec__img-wrap:hover img {
    transform: scale(1.04);
    filter: brightness(1.05)
}

.abt-us .identity-sec__fact-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 20px
}

.abt-us .identity-sec__fact {
    flex: 1 1 0;
    background: #FFFEDE;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 2px 1px 5px 0 #00ef8a0f
}

.abt-us .identity-sec__fact-num {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #820D11;
    display: block;
    margin-bottom: 4px
}

.abt-us .identity-sec__fact-lbl {
    font-size: 14px;
    line-height: 1.55;
    color: #444
}

.abt-us .method-sec {
    background: #FFFEDE;
    padding: 80px 0;
    position: relative
}

.abt-us .method-sec__curve-top {
    width: 100%;
    height: 48px;
    background: #fff;
    border-radius: 0 0 0 40px;
    margin-bottom: 0
}

.abt-us .method-sec__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px
}

.abt-us .method-sec__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 40px
}

.abt-us .method-sec__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #111;
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid #820D11 !important;
    flex: 1 1 0
}

.abt-us .method-sec__desc {
    font-size: 17px;
    line-height: 1.55;
    color: #333;
    margin: 0;
    flex: 1 1 0
}

.abt-us .method-sec__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.abt-us .method-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    position: relative;
    overflow: hidden;
    transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .method-card:hover {
    box-shadow: 2px 10px 36px 0 #00ef8a1c
}

.abt-us .method-card__num {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #FFFEDE;
    font-weight: 900;
    position: absolute;
    top: 8px;
    right: 20px;
    pointer-events: none;
    user-select: none
}

.abt-us .method-card__ico {
    width: 36px;
    height: 36px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-us .method-card__h4 {
    font-size: 17px;
    line-height: 1.2;
    color: #111;
    margin: 0 0 8px;
    letter-spacing: -.01em
}

.abt-us .method-card__p {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0
}

.abt-us .method-card__checkerboard {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-image: repeating-conic-gradient(#00EF8A 0% 25%, transparent 0% 50%);
    background-size: 8px 8px;
    opacity: 0;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .method-card:hover .method-card__checkerboard {
    opacity: 1
}

.abt-us .method-sec__imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px
}

.abt-us .method-sec__imgw {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 1px 5px 0 #820d110f
}

.abt-us .method-sec__imgw img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .26s cubic-bezier(0.4, 0, 0.2, 1), filter .22s cubic-bezier(0.0, 0, 0.2, 1)
}

.abt-us .method-sec__imgw:hover img {
    transform: scale(1.04);
    filter: brightness(1.06)
}

.abt-us .method-sec__rects {
    position: absolute;
    bottom: 20px;
    right: 40px;
    pointer-events: none
}

.abt-us .team-sec {
    background: #111;
    padding: 80px 0;
    position: relative
}

.abt-us .team-sec__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px
}

.abt-us .team-sec__hd {
    margin-bottom: 40px
}

.abt-us .team-sec__eyebrow {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #00EF8A;
    margin: 0 0 8px
}

.abt-us .team-sec__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #fff;
    margin: 0;
    padding-left: 16px;
    border-left: 4px solid #820D11 !important
}

.abt-us .team-sec__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.abt-us .team-sec__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.abt-us .team-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: #1a1a1a;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 2px 1px 5px 0 #00ef8a0f;
    transition: box-shadow .23s cubic-bezier(0.4, 0, 0.2, 1), background .22s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.abt-us .team-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-conic-gradient(#00ef8a12 0% 25%, transparent 0% 50%);
    background-size: 16px 16px;
    opacity: 0;
    transition: opacity .2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.abt-us .team-item:hover::before {
    opacity: 1
}

.abt-us .team-item:hover {
    background: #1d1d1d;
    box-shadow: 2px 5px 22px 0 #00ef8a1c
}

.abt-us .team-item__av {
    width: 56px;
    height: 56px;
    border-radius: 40px;
    background: linear-gradient(253deg, #00EF8A, #fff);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -2px 4px #820d112e inset 0 1px 2px #ffffff80
}

.abt-us .team-item__av-init {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    line-height: 1
}

.abt-us .team-item__info {
    flex: 1 1 0;
    min-width: 0
}

.abt-us .team-item__name {
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 4px
}

.abt-us .team-item__role {
    font-size: 14px;
    line-height: 1.55;
    color: #00EF8A;
    margin: 0 0 4px
}

.abt-us .team-item__desc {
    font-size: 14px;
    line-height: 1.55;
    color: #aaa;
    margin: 0
}

.abt-us .team-item__num {
    font-size: 48px;
    line-height: 1.2;
    color: #ffffff0a;
    font-weight: 900;
    letter-spacing: -.03em;
    flex-shrink: 0
}

.abt-us .team-sec__side {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.abt-us .team-sec__img-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 10px 36px 0 #00ef8a1c
}

.abt-us .team-sec__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.7) brightness(0.9);
    transition: filter .26s cubic-bezier(0.4, 0, 0.2, 1), transform .25s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us .team-sec__img-wrap:hover img {
    filter: saturate(1) brightness(1);
    transform: scale(1.03)
}

.abt-us .team-sec__quote {
    background: #FFFEDE;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 2px 5px 22px 0 #820d111c
}

.abt-us .team-sec__quote-txt {
    font-size: 17px;
    line-height: 1.55;
    color: #222;
    margin: 0 0 8px;
    font-style: italic
}

.abt-us .team-sec__quote-attr {
    font-size: 14px;
    line-height: 1.2;
    color: #820D11;
    margin: 0;
    text-align: right
}

.abt-us .team-sec__rects {
    position: absolute;
    top: 20px;
    left: 40px;
    pointer-events: none
}

@media (max-width: 1280px) {
    .abt-us .pg-cap__img-wrap {
        flex: 0 0 340px;
        width: 340px
    }

    .abt-us .identity-sec__inner {
        gap: 40px
    }

    .abt-us .method-sec__grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .abt-us .pg-cap__inner {
        flex-direction: column;
        padding: 0 20px
    }

    .abt-us .pg-cap__img-wrap {
        flex: 0 0 auto;
        width: 100%
    }

    .abt-us .pg-cap__h1 {
        font-size: 36px
    }

    .abt-us .identity-sec__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px
    }

    .abt-us .method-sec__inner {
        padding: 0 20px
    }

    .abt-us .method-sec__top {
        flex-direction: column;
        align-items: flex-start
    }

    .abt-us .method-sec__grid {
        grid-template-columns: 1fr
    }

    .abt-us .method-sec__imgs {
        grid-template-columns: 1fr
    }

    .abt-us .team-sec__inner {
        padding: 0 20px
    }

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

    .abt-us .identity-sec__fact-row {
        flex-direction: column
    }

    .abt-us .pg-cap {
        padding: 40px 0
    }
}

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

.cont-us .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px
}

.cont-us .reach-top {
    background: linear-gradient(253deg, #00EF8A, #FFFEDE 72%, #fff);
    padding: 80px 20px 40px;
    position: relative
}

.cont-us .reach-top__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 40px
}

.cont-us .reach-top__anchor {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 220px;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1.5px #00ef8a2e;
    pointer-events: none;
    user-select: none;
    overflow: hidden
}

.cont-us .reach-top__left {
    flex: 1 1 60%
}

.cont-us .reach-top__label {
    display: inline-block;
    font-size: 14px;
    line-height: 1.55;
    color: #820D11;
    background: #820d1114;
    padding: 4px 20px;
    border-radius: 3px;
    margin-bottom: 20px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.cont-us .reach-top__h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b1b;
    margin: 0 0 20px
}

.cont-us .reach-top__h1 .acc {
    color: #820D11
}

.cont-us .reach-top__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #2e2e2e;
    max-width: 520px;
    margin: 0
}

.cont-us .reach-top__right {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.cont-us .reach-spot {
    position: absolute;
    border-radius: 40px;
    pointer-events: none
}

.cont-us .reach-spot--a {
    width: 320px;
    height: 320px;
    background: #00ef8a2e;
    filter: blur(60px);
    top: -40px;
    left: 10%;
    animation: spotbreathe 6s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate
}

.cont-us .reach-spot--b {
    width: 180px;
    height: 180px;
    background: #820d1117;
    filter: blur(40px);
    bottom: 0;
    right: 20%;
    animation: spotbreathe 9s cubic-bezier(0.0, 0, 0.2, 1) infinite alternate-reverse
}

@keyframes spotbreathe {
    from {
        transform: scale(1);
        opacity: .7
    }

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

.cont-us .info-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px
}

.cont-us .info-card__icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px
}

.cont-us .info-card__body {
    flex: 1 1 auto
}

.cont-us .info-card__lbl {
    font-size: 14px;
    line-height: 1.2;
    color: #820D11;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 4px
}

.cont-us .info-card__val {
    font-size: 14px;
    line-height: 1.55;
    color: #1b1b1b;
    text-decoration: none;
    display: block
}

.cont-us .info-card__val:hover {
    color: #820D11
}

.cont-us .wave-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff
}

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

.cont-us .form-belt {
    background: #fff;
    padding: 80px 20px;
    position: relative
}

.cont-us .form-belt__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start
}

.cont-us .form-belt__meta {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.cont-us .form-belt__eyebrow {
    font-size: 14px;
    line-height: 1.2;
    color: #820D11;
    text-transform: uppercase;
    letter-spacing: .07em
}

.cont-us .form-belt__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #1b1b1b;
    margin: 0;
    padding-left: 12px;
    border-left: 3px solid #00EF8A
}

.cont-us .form-belt__desc {
    font-size: 17px;
    line-height: 1.55;
    color: #2e2e2e;
    margin: 0
}

.cont-us .form-belt__img-wrap {
    margin-top: 20px;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 10px 36px 0 #00ef8a1c
}

.cont-us .form-belt__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.cont-us .frm {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #FFFEDE;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 2px 1px 5px 0 #00ef8a0f
}

.cont-us .frm__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.cont-us .frm__field {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.cont-us .frm__field--full {
    grid-column: 1 / -1
}

.cont-us .frm__lbl {
    font-size: 14px;
    line-height: 1.2;
    color: #1b1b1b;
    letter-spacing: .03em
}

.cont-us .frm__lbl .req {
    color: #820D11;
    margin-left: 2px
}

.cont-us .frm__inp,
.cont-us .frm__sel {
    font-size: 17px;
    line-height: 1.55;
    color: #1b1b1b;
    background: #fff;
    border: 1.5px solid #d4d4d4;
    border-radius: 8px;
    padding: 8px 20px;
    outline: none;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    appearance: none;
    -webkit-appearance: none
}

.cont-us .frm__inp::placeholder {
    font-size: 14px;
    color: #a0a0a0
}

.cont-us .frm__inp:focus,
.cont-us .frm__sel:focus {
    border-color: #00EF8A;
    box-shadow: 2px 1px 5px 0 #00ef8a0f
}

.cont-us .frm__sel-wrap {
    position: relative
}

.cont-us .frm__sel-wrap::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #820D11;
    pointer-events: none
}

.cont-us .frm__sel {
    cursor: pointer;
    padding-right: 40px
}

.cont-us .frm__radio-grp {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap
}

.cont-us .frm__radio-opt {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.cont-us .frm__radio-opt input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #00EF8A;
    cursor: pointer
}

.cont-us .frm__radio-opt .opt-lbl {
    font-size: 14px;
    line-height: 1.55;
    color: #2e2e2e;
    cursor: pointer
}

.cont-us .frm__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px
}

.cont-us .frm__privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #820D11;
    cursor: pointer
}

.cont-us .frm__privacy-txt {
    font-size: 14px;
    line-height: 1.55;
    color: #2e2e2e
}

.cont-us .frm__privacy-txt a {
    color: #820D11;
    text-decoration: underline;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.cont-us .frm__privacy-txt a:hover {
    color: #1b1b1b
}

.cont-us .frm__btn {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.2;
    color: #1b1b1b;
    background: #00EF8A;
    border: none;
    border-radius: 8px;
    padding: 20px 40px;
    cursor: pointer;
    overflow: hidden;
    transition: color .24s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    align-self: flex-start
}

.cont-us .frm__btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #820D11;
    transition: height .26s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0
}

.cont-us .frm__btn:hover::before {
    height: 100%
}

.cont-us .frm__btn:hover {
    color: #fff;
    box-shadow: 2px 10px 36px 0 #820d111c
}

.cont-us .frm__btn span,
.cont-us .frm__btn svg {
    position: relative;
    z-index: 1
}

.cont-us .frm__btn:focus-visible {
    outline: 2px solid #820D11;
    outline-offset: 2px
}

.cont-us .split-bg {
    background: linear-gradient(to bottom, #f4f4f0 50%, #fff 50%);
    padding: 80px 20px
}

.cont-us .split-bg__inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.cont-us .split-bg__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px
}

.cont-us .split-bg__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #1b1b1b;
    margin: 0;
    padding-left: 12px;
    border-left: 3px solid #820D11
}

.cont-us .split-bg__note {
    font-size: 14px;
    line-height: 1.55;
    color: #2e2e2e;
    max-width: 340px;
    text-align: right;
    margin: 0
}

.cont-us .cards-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.cont-us .detail-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    overflow: hidden;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    z-index: 1
}

.cont-us .detail-card:focus-within,
.cont-us .detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 2px 10px 36px 0 #00ef8a1c;
    z-index: 2 !important
}

.cont-us .detail-card__top {
    background: linear-gradient(253deg, #00EF8A, #FFFEDE);
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px
}

.cont-us .detail-card__ico {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.cont-us .detail-card__ttl {
    font-size: 17px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 600;
    margin: 0
}

.cont-us .detail-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.cont-us .detail-card__txt {
    font-size: 14px;
    line-height: 1.55;
    color: #2e2e2e;
    margin: 0
}

.cont-us .detail-card__link {
    font-size: 14px;
    line-height: 1.55;
    color: #820D11;
    text-decoration: none;
    display: inline-block;
    position: relative
}

.cont-us .detail-card__link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1.5px;
    background: #820D11;
    transition: width .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.cont-us .detail-card__link:hover::after {
    width: 100%
}

.cont-us .detail-card__img-wrap {
    aspect-ratio: 4/3;
    overflow: hidden
}

.cont-us .detail-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.cont-us .detail-card:hover .detail-card__img-wrap img {
    transform: scale(1.04)
}

.cont-us .detail-card__bar-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 0 20px 20px
}

.cont-us .detail-card__bar-num {
    font-size: 36px;
    line-height: 1.2;
    color: #1b1b1b;
    font-weight: 700;
    letter-spacing: -.02em
}

.cont-us .detail-card__bar-track {
    flex: 1 1 auto;
    height: 3px;
    background: #e8e8e0;
    border-radius: 3px;
    overflow: hidden
}

.cont-us .detail-card__bar-fill {
    height: 100%;
    background: #00EF8A;
    border-radius: 3px
}

.cont-us .dot-bg {
    position: relative
}

.cont-us .dot-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #00ef8a1f 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    pointer-events: none;
    z-index: 0;
    opacity: .7
}

.cont-us .dot-bg>* {
    position: relative;
    z-index: 1
}

@media (max-width: 1280px) {
    .cont-us .form-belt__inner {
        gap: 40px
    }

    .cont-us .reach-top__anchor {
        font-size: 140px;
        right: 20px
    }
}

@media (max-width: 768px) {
    .cont-us .reach-top__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .cont-us .reach-top__anchor {
        font-size: 80px;
        top: 8px;
        right: 8px
    }

    .cont-us .reach-top__right {
        flex: 0 0 auto;
        width: 100%
    }

    .cont-us .reach-top {
        padding: 80px 20px 20px
    }

    .cont-us .form-belt__inner {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .cont-us .form-belt__img-wrap {
        display: none
    }

    .cont-us .frm__row {
        grid-template-columns: 1fr
    }

    .cont-us .frm {
        padding: 20px
    }

    .cont-us .cards-trio {
        grid-template-columns: 1fr
    }

    .cont-us .split-bg__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }

    .cont-us .split-bg__note {
        text-align: left;
        max-width: 100%
    }

    .cont-us .reach-top__h1 {
        font-size: 36px
    }
}

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

.srv__inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px
}

.srv__grain-bg {
    position: relative;
    background-color: #f5f5ed;
    padding: 80px 0 40px
}

.srv__grain-bg::before {
    content: '';
    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%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0
}

.srv__title-row {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px
}

.srv__title-left {
    flex: 0 0 auto;
    width: 56%
}

.srv__title-right {
    flex: 1 1 auto;
    padding-top: 8px
}

.srv__accent-bar {
    display: block;
    width: 4px;
    height: 40px;
    background: #00EF8A;
    border-radius: 3px;
    margin-bottom: 20px
}

.srv__h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #1b1b18;
    margin: 0 0 20px
}

.srv__h1 span {
    color: #820D11
}

.srv__tagline {
    font-size: 17px;
    line-height: 1.55;
    color: #3a3a35;
    margin: 0 0 40px;
    max-width: 480px
}

.srv__cta-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center
}

.srv__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.55;
    border-radius: 8px;
    border: 2px solid #820D11;
    background: #820D11;
    color: #FFFEDE;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1), border-color .22s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1
}

.srv__btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #FFFEDE;
    z-index: -1;
    transition: height .25s cubic-bezier(0.0, 0, 0.2, 1)
}

.srv__btn:hover {
    color: #820D11
}

.srv__btn:hover::after {
    height: 100%
}

.srv__btn--ghost {
    background: transparent;
    color: #820D11
}

.srv__btn--ghost::after {
    background: #820D11
}

.srv__btn--ghost:hover {
    color: #FFFEDE
}

.srv__img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 5px 22px 0 #00ef8a1c
}

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

.srv__img-vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, #820d112e 0%, transparent 60%), linear-gradient(to bottom, transparent 60%, #1b1b1861 100%);
    pointer-events: none;
    border-radius: 14px
}

.srv__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #FFFEDE;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.2;
    color: #1b1b18;
    box-shadow: 2px 1px 5px 0 #00ef8a0f;
    font-weight: 600
}

.srv__shapes {
    position: absolute;
    top: 40px;
    right: -20px;
    z-index: 0;
    pointer-events: none
}

.srv__shape-brace {
    font-size: 120px;
    line-height: 1;
    color: #00ef8a21;
    font-weight: 300;
    user-select: none
}

.srv__divider {
    border: none;
    border-top: 2px dotted #d4d4c8;
    margin: 40px 0 0
}

.srv__cards-bg {
    background: #fff;
    padding: 80px 0
}

.srv__section-label {
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #820D11;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: block
}

.srv__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #1b1b18;
    margin: 0 0 40px
}

.srv__three-col {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: 20px;
    align-items: stretch
}

.srv__card {
    border-radius: 14px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 2px 1px 5px 0 #00ef8a0f;
    background: #FFFEDE;
    position: relative;
    transition: box-shadow .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv__card:hover {
    box-shadow: 2px 10px 36px 0 #00ef8a1c
}

.srv__card--center {
    background: #1b1b18;
    color: #FFFEDE;
    padding: 40px 20px;
    position: relative;
    overflow: hidden
}

.srv__card--center .srv__card-h {
    color: #00EF8A
}

.srv__card--center .srv__card-body {
    color: #d4d4c8
}

.srv__card--center::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    background: #00ef8a14;
    pointer-events: none
}

.srv__card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center
}

.srv__card-h {
    font-size: 17px;
    line-height: 1.2;
    color: #1b1b18;
    margin: 0;
    font-weight: 700;
    position: relative;
    padding-left: 12px
}

.srv__card-h::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: #00EF8A;
    border-radius: 3px
}

.srv__card--center .srv__card-h::before {
    background: #820D11
}

.srv__card-body {
    font-size: 14px;
    line-height: 1.8;
    color: #3a3a35;
    margin: 0
}

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

.srv__num-list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.55;
    color: #3a3a35;
    border-bottom: 1px dotted #d4d4c8;
    padding-bottom: 8px
}

.srv__num-list li:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.srv__num-list .num {
    font-size: 17px;
    font-weight: 700;
    color: #820D11;
    flex-shrink: 0;
    margin-left: 8px
}

.srv__img2-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    box-shadow: 2px 10px 36px 0 #820d111c
}

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

.srv__img2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, #00ef8a17 0%, transparent 55%);
    pointer-events: none
}

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

.srv__process-col {
    flex: 1 1 0
}

.srv__process-img-col {
    flex: 0 0 340px
}

.srv__step {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 2px dotted #d4d4c8;
    position: relative;
    cursor: default
}

.srv__step:last-child {
    border-bottom: none
}

.srv__step-num {
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
    color: #e8e8e0;
    flex-shrink: 0;
    width: 40px;
    text-align: right;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv__step:hover .srv__step-num {
    color: #00EF8A
}

.srv__step-text h5 {
    font-size: 17px;
    line-height: 1.2;
    color: #1b1b18;
    margin: 0 0 8px;
    font-weight: 700
}

.srv__step-text p {
    font-size: 14px;
    line-height: 1.8;
    color: #3a3a35;
    margin: 0
}

.srv__reveal-mask {
    position: relative;
    overflow: hidden;
    border-radius: 14px
}

.srv__reveal-mask img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.srv__reveal-cover {
    position: absolute;
    inset: 0;
    background: #820D11;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path .25s cubic-bezier(0.0, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none
}

.srv__img2-wrap.srv__reveal-mask:hover .srv__reveal-cover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.srv__reveal-txt {
    color: #FFFEDE;
    font-size: 17px;
    line-height: 1.55;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transition: opacity .22s cubic-bezier(0.4, 0, 0.2, 1) .12s
}

.srv__img2-wrap.srv__reveal-mask:hover .srv__reveal-txt {
    opacity: 1
}

.srv__shake {
    display: inline-block;
    animation: shakeIt 4s 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite
}

@keyframes shakeIt {

    0%,
    88%,
    100% {
        transform: translateX(0)
    }

    90% {
        transform: translateX(-5px)
    }

    92% {
        transform: translateX(5px)
    }

    94% {
        transform: translateX(-4px)
    }

    96% {
        transform: translateX(4px)
    }

    98% {
        transform: translateX(0)
    }
}

.srv__bracket-left {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    line-height: 1;
    color: #00ef8a12;
    font-weight: 300;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.srv__bracket-right {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 200px;
    line-height: 1;
    color: #820d110f;
    font-weight: 300;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.srv__rel {
    position: relative
}

.srv__z1 {
    position: relative;
    z-index: 1
}

@media (max-width: 1280px) {
    .srv__inner {
        padding: 0 20px
    }

    .srv__three-col {
        grid-template-columns: 1fr 1fr 1fr
    }

    .srv__title-row {
        gap: 40px
    }

    .srv__title-left {
        width: 52%
    }
}

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

    .srv__title-left {
        width: 100%
    }

    .srv__three-col {
        grid-template-columns: 1fr
    }

    .srv__process-row {
        flex-direction: column
    }

    .srv__process-img-col {
        flex: none;
        width: 100%
    }

    .srv__h1 {
        font-size: 36px
    }

    .srv__h2 {
        font-size: 36px
    }

    .srv__grain-bg {
        padding: 40px 0
    }

    .srv__bracket-left,
    .srv__bracket-right {
        display: none
    }

    .srv__shapes {
        display: none
    }
}

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

.ld-pg *,
.ld-pg ::before,
.ld-pg ::after {
    box-sizing: border-box
}

.ld-pg ::selection {
    background: #00EF8A;
    color: #111
}

.ld-pg .acc {
    color: #00EF8A
}

.ld-pg .acc-red {
    color: #820D11
}

@keyframes ld-elastic-in {
    0% {
        opacity: 0;
        transform: translateY(32px) scaleY(0.94)
    }

    60% {
        opacity: 1;
        transform: translateY(-6px) scaleY(1.02)
    }

    80% {
        transform: translateY(3px) scaleY(0.99)
    }

    100% {
        opacity: 1;
        transform: translateY(0) scaleY(1)
    }
}

.ld-pg .elastic-load {
    animation: ld-elastic-in .72s cubic-bezier(0.4, 0, 0.2, 1) both
}

.ld-pg .elastic-load--delay {
    animation-delay: .14s
}

.ld-pg .elastic-load--delay2 {
    animation-delay: .26s
}

.ld-pg .inner-cap {
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px
}

.ld-pg .divband {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 auto;
    padding: 8px 0
}

.ld-pg .divband__line {
    height: 1px;
    width: 120px;
    background: linear-gradient(253deg, #00EF8A, #fff);
    border-radius: 40px
}

.ld-pg .divband__dot {
    width: 8px;
    height: 8px;
    border-radius: 40px;
    background: #00EF8A;
    box-shadow: 2px 1px 5px 0 #00ef8a0f
}

.ld-pg .tb {
    background: #fff;
    padding-bottom: 80px;
    padding-top: 40px
}

.ld-pg .tb__strip {
    width: 100%;
    height: 180px;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 78%, 56% 100%, 0 78%);
    margin-bottom: 40px;
    box-shadow: 2px 5px 22px 0 #00ef8a1c
}

.ld-pg .tb__strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block
}

.ld-pg .tb__body {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    position: relative
}

.ld-pg .tb__quote-mark {
    font-size: 220px;
    line-height: 1.2;
    color: #FFFEDE;
    position: absolute;
    left: 28px;
    top: -40px;
    pointer-events: none;
    user-select: none;
    font-style: normal;
    z-index: 0;
    letter-spacing: -8px
}

.ld-pg .tb__txt {
    position: relative;
    z-index: 1;
    max-width: 720px
}

.ld-pg .tb__label {
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #820D11;
    margin-bottom: 8px
}

.ld-pg .tb__h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin-bottom: 20px
}

.ld-pg .tb__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #333;
    max-width: 560px
}

.ld-pg .comm {
    background: linear-gradient(180deg, #FFFEDE 0%, #fff 100%);
    padding: 80px 0 40px
}

.ld-pg .comm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px
}

.ld-pg .comm__card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    transition: box-shadow .22s cubic-bezier(0.4, 0, 0.2, 1), transform .2s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid #00EF8A
}

.ld-pg .comm__card:hover {
    box-shadow: 2px 10px 36px 0 #00ef8a1c;
    transform: translateY(-2px)
}

.ld-pg .comm__card-ico {
    width: 36px;
    height: 36px;
    margin-bottom: 8px
}

.ld-pg .comm__card-h {
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -.01em;
    color: #111;
    margin-bottom: 8px;
    padding-left: 12px;
    border-left: 3px solid #820D11
}

.ld-pg .comm__card-p {
    font-size: 14px;
    line-height: 1.55;
    color: #444
}

.ld-pg .comm__sec-h {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin-bottom: 8px;
    padding-left: 16px;
    border-left: 4px solid #00EF8A
}

.ld-pg .comm__sec-p {
    font-size: 17px;
    line-height: 1.55;
    color: #444;
    max-width: 580px
}

.ld-pg .nums {
    background: #111;
    padding: 80px 0;
    position: relative
}

.ld-pg .nums__bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    height: 100%;
    background: linear-gradient(253deg, #00ef8a12, transparent);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    pointer-events: none;
    overflow: hidden
}

.ld-pg .nums__row {
    display: flex;
    flex-direction: row;
    gap: 4px;
    align-items: stretch
}

.ld-pg .nums__item {
    flex: 1;
    padding: 40px 20px;
    border-radius: 8px;
    background: #fffede0a;
    transition: background .24s cubic-bezier(0.0, 0, 0.2, 1);
    position: relative
}

.ld-pg .nums__item:hover {
    background: #00ef8a12
}

.ld-pg .nums__item:hover .nums__val {
    text-shadow: 2px 10px 36px #00ef8a1c;
    color: #00EF8A
}

.ld-pg .nums__val {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.03em;
    color: #fff;
    transition: color .2s cubic-bezier(0.4, 0, 0.2, 1), text-shadow .26s cubic-bezier(0.4, 0, 0.2, 1);
    display: block
}

.ld-pg .nums__unit {
    font-size: 17px;
    color: #00EF8A;
    line-height: 1.2
}

.ld-pg .nums__lbl {
    font-size: 14px;
    line-height: 1.55;
    color: #aaa;
    margin-top: 8px;
    display: block
}

.ld-pg .nums__h {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    margin-bottom: 40px;
    padding-left: 16px;
    border-left: 4px solid #00EF8A
}

.ld-pg .sup {
    background: #fff;
    padding: 80px 0 40px
}

.ld-pg .sup__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.ld-pg .sup__img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 2px 5px 22px 0 #820d110f;
    aspect-ratio: 4/3
}

.ld-pg .sup__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ld-pg .sup__h {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 4px solid #820D11
}

.ld-pg .sup__p {
    font-size: 17px;
    line-height: 1.55;
    color: #333;
    margin-bottom: 20px
}

.ld-pg .sup__list {
    list-style: none;
    margin: 0;
    padding: 0
}

.ld-pg .sup__list li {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #FFFEDE;
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    gap: 20px
}

.ld-pg .sup__list li span:last-child {
    font-size: 14px;
    color: #820D11;
    text-align: right;
    white-space: nowrap
}

.ld-pg .ltv {
    background: linear-gradient(180deg, #fff 0%, #FFFEDE 100%);
    padding: 80px 0
}

.ld-pg .ltv__cols {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 40px;
    align-items: start
}

.ld-pg .ltv__left-h {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 4px solid #00EF8A
}

.ld-pg .ltv__left-p {
    font-size: 17px;
    line-height: 1.55;
    color: #444
}

.ld-pg .ltv__right {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ld-pg .ltv__row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 2px 1px 5px 0 #00ef8a0f;
    transition: box-shadow .28s cubic-bezier(0.0, 0, 0.2, 1), background .2s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .ltv__row:hover {
    box-shadow: 2px 10px 36px 0 #00ef8a1c;
    background: #FFFEDE
}

.ld-pg .ltv__row-num {
    font-size: 36px;
    line-height: 1.2;
    color: #FFFEDE;
    background: #111;
    border-radius: 8px;
    min-width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -.02em;
    flex-shrink: 0
}

.ld-pg .ltv__row-body h5 {
    font-size: 17px;
    line-height: 1.2;
    color: #111;
    margin: 0 0 4px;
    letter-spacing: -.01em
}

.ld-pg .ltv__row-body p {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0
}

.ld-pg .grad {
    background: #111;
    padding: 80px 0
}

.ld-pg .grad__top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px
}

.ld-pg .grad__h {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #fff;
    padding-left: 16px;
    border-left: 4px solid #00EF8A;
    flex: 1
}

.ld-pg .grad__intro {
    font-size: 17px;
    line-height: 1.55;
    color: #bbb;
    flex: 1
}

.ld-pg .grad__img-wrap {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 10px 36px 0 #820d111c;
    margin-bottom: 40px
}

.ld-pg .grad__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.ld-pg .grad__cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px
}

.ld-pg .grad__card {
    border-radius: 14px;
    background: #fffede0d;
    padding: 20px;
    border-bottom: 3px solid #820D11;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.ld-pg .grad__card:hover {
    background: #00ef8a0f
}

.ld-pg .grad__card-h {
    font-size: 14px;
    line-height: 1.2;
    color: #00EF8A;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.ld-pg .grad__card-p {
    font-size: 14px;
    line-height: 1.55;
    color: #ccc
}

.ld-pg .story {
    background: #fff;
    padding: 80px 0
}

.ld-pg .story__layout {
    display: grid;
    grid-template-columns: 3fr 5fr;
    gap: 80px;
    align-items: start
}

.ld-pg .story__meta {
    padding-top: 8px
}

.ld-pg .story__name {
    font-size: 17px;
    line-height: 1.2;
    color: #111;
    letter-spacing: -.01em;
    margin-bottom: 4px
}

.ld-pg .story__role {
    font-size: 14px;
    line-height: 1.55;
    color: #888;
    margin-bottom: 20px
}

.ld-pg .story__badge {
    display: inline-block;
    background: #FFFEDE;
    color: #820D11;
    font-size: 14px;
    line-height: 1.55;
    padding: 4px 8px;
    border-radius: 3px
}

.ld-pg .story__h {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 4px solid #820D11
}

.ld-pg .story__p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px
}

.ld-pg .story__pull {
    font-size: 17px;
    line-height: 1.55;
    color: #111;
    padding: 20px;
    background: #FFFEDE;
    border-radius: 8px;
    box-shadow: 2px 1px 5px 0 #820d110f
}

@media (max-width: 1280px) {
    .ld-pg .comm__grid {
        grid-template-columns: 1fr 1fr
    }

    .ld-pg .grad__cards {
        grid-template-columns: 1fr 1fr;
        gap: 8px
    }

    .ld-pg .ltv__cols {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .ld-pg .inner-cap {
        padding-left: 20px;
        padding-right: 20px
    }

    .ld-pg .tb__body {
        padding: 0 20px;
        flex-direction: column
    }

    .ld-pg .tb__h1 {
        font-size: 36px
    }

    .ld-pg .tb__quote-mark {
        font-size: 120px;
        left: 10px;
        top: -20px
    }

    .ld-pg .comm__grid {
        grid-template-columns: 1fr
    }

    .ld-pg .nums__row {
        flex-direction: column;
        gap: 4px
    }

    .ld-pg .sup__layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ld-pg .ltv__cols {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ld-pg .grad__top {
        flex-direction: column;
        gap: 20px
    }

    .ld-pg .grad__cards {
        grid-template-columns: 1fr 1fr
    }

    .ld-pg .story__layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .ld-pg .tb__strip {
        height: 120px
    }

    .ld-pg .nums {
        padding: 40px 0
    }

    .ld-pg .ltv {
        padding: 40px 0
    }

    .ld-pg .grad {
        padding: 40px 0
    }

    .ld-pg .story {
        padding: 40px 0
    }

    .ld-pg .comm {
        padding: 40px 0 20px
    }

    .ld-pg .sup {
        padding: 40px 0 20px
    }
}

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

.lrn-prog .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px
}

.lrn-prog ::selection {
    background: #00EF8A;
    color: #111
}

@keyframes border-trace {
    0% {
        clip-path: inset(0 100% 100% 0)
    }

    25% {
        clip-path: inset(0 0 100% 0)
    }

    50% {
        clip-path: inset(0 0 0 100%)
    }

    75% {
        clip-path: inset(100% 0 0 0)
    }

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

.lrn-prog .trc-border {
    position: absolute;
    inset: 0;
    border: 2px solid #00EF8A;
    border-radius: 8px;
    animation: border-trace 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    pointer-events: none
}

.lrn-prog .prog-head {
    background: #fff;
    padding: 80px 0 40px;
    position: relative
}

.lrn-prog .prog-head__grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center
}

.lrn-prog .prog-head__text {
    position: relative
}

.lrn-prog .prog-head__tag {
    display: inline-block;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #820D11;
    border: 1px solid #820D11;
    border-radius: 3px;
    padding: 4px 8px;
    margin-bottom: 20px;
    text-transform: uppercase
}

.lrn-prog .prog-head__h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin: 0 0 20px
}

.lrn-prog .prog-head__h1 span {
    color: #00EF8A;
    -webkit-background-clip: unset
}

.lrn-prog .prog-head__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #333;
    margin: 0 0 40px;
    max-width: 520px
}

.lrn-prog .prog-head__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    line-height: 1.2;
    color: #fff;
    background: #820D11;
    border-radius: 8px;
    padding: 20px 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .prog-head__link::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: #00EF8A;
    transition: height .25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.lrn-prog .prog-head__link:hover::before {
    height: 100%
}

.lrn-prog .prog-head__link:hover {
    color: #111
}

.lrn-prog .prog-head__link svg,
.lrn-prog .prog-head__link span {
    position: relative;
    z-index: 1
}

.lrn-prog .prog-head__img-col {
    position: relative
}

.lrn-prog .prog-head__img-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 10px 36px 0 #00ef8a1c
}

.lrn-prog .prog-head__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.18) saturate(1.1) brightness(0.97)
}

.lrn-prog .prog-head__img-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, #00ef8a21, #fff0);
    pointer-events: none
}

.lrn-prog .prog-head__spot {
    position: absolute;
    border-radius: 40px;
    pointer-events: none;
    z-index: 0
}

.lrn-prog .prog-head__spot--a {
    width: 280px;
    height: 280px;
    background: #00ef8a21;
    top: -40px;
    right: -40px;
    filter: blur(60px)
}

.lrn-prog .prog-head__spot--b {
    width: 180px;
    height: 180px;
    background: #820d1112;
    bottom: 0;
    left: -20px;
    filter: blur(40px)
}

.lrn-prog .prog-head__wavy {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none
}

.lrn-prog .steps-blk {
    background: #FFFEDE;
    padding: 80px 0;
    position: relative
}

.lrn-prog .steps-blk__top {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 40px
}

.lrn-prog .steps-blk__label {
    font-size: 14px;
    line-height: 1.2;
    color: #820D11;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px
}

.lrn-prog .steps-blk__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #111;
    margin: 0;
    position: relative;
    padding-left: 20px
}

.lrn-prog .steps-blk__h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: #00EF8A;
    border-radius: 3px
}

.lrn-prog .steps-blk__desc {
    font-size: 17px;
    line-height: 1.55;
    color: #333;
    margin: 20px 0 0
}

.lrn-prog .steps-blk__line {
    width: 40px;
    height: 2px;
    background: #00EF8A;
    margin: 20px 0
}

.lrn-prog .steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.lrn-prog .step-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 2px 1px 5px 0 #00ef8a0f;
    position: relative;
    transition: box-shadow .24s cubic-bezier(0.4, 0, 0.2, 1), transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .step-card:hover {
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    transform: translateY(-4px)
}

.lrn-prog .step-card__num {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #00EF8A;
    letter-spacing: -.03em;
    margin-bottom: 8px
}

.lrn-prog .step-card__title {
    font-size: 17px;
    line-height: 1.2;
    color: #111;
    font-weight: 600;
    margin: 0 0 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8e8e0
}

.lrn-prog .step-card__body {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0
}

.lrn-prog .steps-blk__tri {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none
}

.lrn-prog .modules-blk {
    background: #fff;
    padding: 80px 0 60px;
    position: relative
}

.lrn-prog .modules-blk__bg-pat {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(253deg, #00ef8a08 0px, #00ef8a08 1px, transparent 1px, transparent 40px);
    pointer-events: none;
    z-index: 0
}

.lrn-prog .modules-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.lrn-prog .modules-blk__hd {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px
}

.lrn-prog .modules-blk__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #111;
    margin: 0;
    position: relative;
    padding-left: 20px
}

.lrn-prog .modules-blk__h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: #820D11;
    border-radius: 3px
}

.lrn-prog .modules-blk__count {
    font-size: 14px;
    line-height: 1.2;
    color: #820D11;
    border: 1px solid #820d1133;
    border-radius: 3px;
    padding: 4px 8px;
    white-space: nowrap
}

.lrn-prog .mod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.lrn-prog .mod-item {
    border: 1px solid #e8e8e0;
    border-radius: 14px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .mod-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, #00ef8a12, #fffede66);
    opacity: 0;
    transition: opacity .24s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: 14px
}

.lrn-prog .mod-item:hover {
    border-color: #00EF8A
}

.lrn-prog .mod-item:hover::after {
    opacity: 1
}

.lrn-prog .mod-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #FFFEDE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 2px 1px 5px 0 #820d110f
}

.lrn-prog .mod-item__h4 {
    font-size: 17px;
    line-height: 1.2;
    color: #111;
    font-weight: 600;
    margin: 0 0 8px;
    position: relative;
    z-index: 1
}

.lrn-prog .mod-item__h4::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: #00EF8A;
    margin-top: 8px;
    border-radius: 3px
}

.lrn-prog .mod-item__p {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 0;
    position: relative;
    z-index: 1
}

.lrn-prog .mod-item__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 20px;
    position: relative;
    z-index: 1
}

.lrn-prog .mod-item__tag {
    font-size: 14px;
    line-height: 1.2;
    color: #820D11;
    background: #820d110f;
    border-radius: 3px;
    padding: 4px 8px
}

.lrn-prog .modules-blk__img-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 40px;
    align-items: center
}

.lrn-prog .modules-blk__img-frame {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 2px 5px 22px 0 #820d111c
}

.lrn-prog .modules-blk__img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: sepia(0.12) brightness(0.98)
}

.lrn-prog .modules-blk__img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(253deg, transparent 60%, #ffffffd9);
    z-index: 1;
    pointer-events: none
}

.lrn-prog .modules-blk__aside {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lrn-prog .aside-stat {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #FFFEDE;
    border-radius: 8px;
    box-shadow: 2px 1px 5px 0 #00ef8a0f
}

.lrn-prog .aside-stat__val {
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
    color: #820D11;
    letter-spacing: -.02em;
    white-space: nowrap
}

.lrn-prog .aside-stat__txt {
    font-size: 14px;
    line-height: 1.55;
    color: #444;
    margin: 8px 0 0
}

.lrn-prog .faq-blk {
    background: #111;
    padding: 80px 0;
    position: relative
}

.lrn-prog .faq-blk__bg-pat {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(253deg, #00ef8a0a 0px, #00ef8a0a 1px, transparent 1px, transparent 60px);
    pointer-events: none
}

.lrn-prog .faq-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.lrn-prog .faq-blk__h2 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.015em;
    color: #fff;
    margin: 0 0 8px;
    position: relative;
    padding-left: 20px
}

.lrn-prog .faq-blk__h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: #00EF8A;
    border-radius: 3px
}

.lrn-prog .faq-blk__sub {
    font-size: 17px;
    line-height: 1.55;
    color: #aaa;
    margin: 0 0 40px
}

.lrn-prog .faq-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.lrn-prog .faq-item {
    background: #fffede0f;
    border: 1px solid #ffffff14;
    border-radius: 14px;
    overflow: hidden;
    position: relative
}

.lrn-prog .faq-item__btn {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
    text-align: left;
    position: relative;
    z-index: 2;
    transition: background .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .faq-item__btn:hover {
    background: #00ef8a12
}

.lrn-prog .faq-item__q {
    font-size: 17px;
    line-height: 1.55;
    color: #fff;
    font-weight: 600;
    flex: 1
}

.lrn-prog .faq-item__ico {
    width: 24px;
    height: 24px;
    border-radius: 40px;
    border: 1.5px solid #00EF8A;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .22s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prog .faq-item--open .faq-item__ico {
    transform: rotate(45deg)
}

.lrn-prog .faq-item__ans {
    font-size: 14px;
    line-height: 1.8;
    color: #ccc;
    padding: 0 20px 20px;
    display: none
}

.lrn-prog .faq-item--open .faq-item__ans {
    display: block !important
}

.lrn-prog .faq-blk__wavy {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    line-height: 0;
    pointer-events: none
}

@media (max-width: 1280px) {
    .lrn-prog .prog-head__grid {
        grid-template-columns: 1fr 340px;
        gap: 40px
    }

    .lrn-prog .steps-list {
        grid-template-columns: repeat(2, 1fr)
    }

    .lrn-prog .mod-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .lrn-prog .modules-blk__img-row {
        grid-template-columns: 1fr
    }

    .lrn-prog .modules-blk__img-frame {
        max-width: 480px
    }
}

@media (max-width: 768px) {
    .lrn-prog .prog-head {
        padding: 40px 0
    }

    .lrn-prog .prog-head__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lrn-prog .prog-head__h1 {
        font-size: 36px
    }

    .lrn-prog .steps-blk__top {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .lrn-prog .steps-list {
        grid-template-columns: 1fr
    }

    .lrn-prog .mod-grid {
        grid-template-columns: 1fr
    }

    .lrn-prog .faq-list {
        grid-template-columns: 1fr
    }

    .lrn-prog .modules-blk__img-row {
        grid-template-columns: 1fr
    }

    .lrn-prog .modules-blk__h2,
    .lrn-prog .modules-blk__hd {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .lrn-prog .steps-blk {
        padding: 40px 0
    }

    .lrn-prog .modules-blk {
        padding: 40px 0
    }

    .lrn-prog .faq-blk {
        padding: 40px 0
    }
}

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

.succ-page .succ-card {
    max-width: 560px;
    width: 100%;
    background: #FFFEDE;
    border-radius: 14px;
    padding: 40px;
    box-shadow: 2px 5px 22px 0 #00ef8a1c;
    text-align: center
}

.succ-page .succ-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: block
}

.succ-page .succ-card__title {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: #111;
    margin: 0 0 20px;
    padding-left: 12px;
    border-top: 3px solid #00EF8A;
    padding-top: 20px
}

.succ-page .succ-card__text {
    font-size: 17px;
    line-height: 1.55;
    color: #333;
    margin: 0 0 40px
}

.succ-page .succ-card__text span {
    color: #00EF8A;
    font-weight: 600
}

.succ-page .succ-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 20px 40px;
    background: #111;
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color .22s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 2px 1px 5px 0 #00ef8a0f
}

.succ-page .succ-card__btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #00EF8A;
    transition: height .25s cubic-bezier(0.0, 0, 0.2, 1);
    z-index: 0
}

.succ-page .succ-card__btn:hover::before {
    height: 100%
}

.succ-page .succ-card__btn:hover {
    color: #111
}

.succ-page .succ-card__btn svg,
.succ-page .succ-card__btn span {
    position: relative;
    z-index: 1
}

.succ-page .succ-card__divider {
    width: 40px;
    height: 3px;
    background: #820D11;
    border-radius: 3px;
    margin: 20px auto
}