* {
    box-sizing: border-box
}

html {
    font-size: 100%
}

body {
    margin: 0;
    min-height: 100dvh;
    overflow-x: hidden;
    font-family: 'Work Sans', sans-serif
}

.top-bar {
    background: #181822;
    padding: 6px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 28px
}

.top-bar-link {
    color: #F6FAFA;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: .82
}

.top-bar-link i {
    font-size: 15px
}

.top-bar-notice {
    background: linear-gradient(90deg, #00DBA9 0%, #00c49a 100%);
    color: #181822;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    padding: 4px 14px;
    border-radius: 3px;
    letter-spacing: -.01em
}

.brand-row {
    background: #F6FAFA;
    padding: 28px 28px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    border-bottom: 2px solid #00DBA9
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: 28px
}

.brand-img-frame {
    width: 60px;
    height: 60px;
    border: 2px solid #181822;
    border-radius: 6px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 3px 2px 0 #18182214;
    overflow: hidden;
    flex-shrink: 0
}

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

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

.brand-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.1;
    color: #181822;
    letter-spacing: -.03em;
    text-decoration: none
}

.brand-sub {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #181822;
    opacity: .62
}

.brand-row-right {
    display: flex;
    align-items: center
}

.search-form {
    display: flex;
    align-items: center;
    gap: 6px
}

.search-field {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #181822;
    background: #fff;
    border: 2px solid #181822;
    border-radius: 6px;
    padding: 6px 14px;
    outline: none;
    width: 220px
}

.search-field::placeholder {
    color: #1818226b
}

.search-field:focus {
    box-shadow: 0 0 0 3px #00dba959;
    border-color: #00DBA9
}

.search-btn {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #F6FAFA;
    background: #181822;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.search-btn::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #00DBA9 0%, #00c49a 100%);
    transition: bottom .45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0
}

.search-btn:hover::after {
    bottom: 0
}

.search-btn:hover {
    color: #181822
}

.search-btn span,
.search-btn i {
    position: relative;
    z-index: 1
}

.search-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973
}

.nav-row {
    background: #181822;
    padding: 0 56px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap
}

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

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

.nav-link {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #F6FAFA;
    text-decoration: none;
    padding: 14px 28px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .01em;
    position: relative;
    transition: color .38s ease-in-out
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    background: #00DBA9;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transition: transform .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.nav-link:hover {
    color: #00DBA9
}

.nav-link:hover::before {
    transform: scaleX(1)
}

.nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973;
    border-radius: 3px
}

.nav-link.active {
    color: #00DBA9
}

.nav-link.active::before {
    transform: scaleX(1)
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 6px;
        padding: 6px 14px
    }

    .top-bar-contact {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center
    }

    .brand-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 14px
    }

    .brand-box {
        margin-left: 0
    }

    .search-field {
        width: 160px
    }

    .nav-row {
        padding: 0 14px;
        justify-content: flex-start
    }

    .nav-link {
        padding: 14px
    }
}

@media (max-width: 640px) {
    .top-bar-notice {
        display: none
    }

    .search-form {
        width: 100%
    }

    .search-field {
        width: 100%;
        flex: 1
    }

    .brand-row-right {
        width: 100%
    }

    .nav-link {
        padding: 14px 6px;
        font-size: 15px
    }
}

.foot-wrap {
    background: #181822;
    color: #F6FAFA
}

.foot-upper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 56px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 56px
}

.foot-brand-col {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.foot-logo-sep {
    width: 100%;
    height: 2px;
    background: #00dba940;
    margin-bottom: 14px;
    border: none
}

.foot-logo-frame {
    width: 60px;
    height: 60px;
    border: 2px solid #f6fafa2e;
    border-radius: 6px;
    background: #f6fafa0f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 18px 0 #00dba917;
    overflow: hidden;
    flex-shrink: 0
}

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

.foot-brand-name {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.1;
    color: #F6FAFA;
    letter-spacing: -.02em
}

.foot-brand-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: #f6fafa9e;
    max-width: 260px
}

.foot-col-label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #00DBA9;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 14px
}

.foot-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.foot-link {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #f6fafab8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    min-height: 44px;
    transition: color .38s ease-in-out
}

.foot-link:hover {
    color: #00DBA9
}

.foot-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973;
    border-radius: 3px
}

.foot-contact-item {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #f6fafab8;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    padding: 6px 0
}

.foot-contact-item i {
    margin-top: 2px;
    flex-shrink: 0;
    color: #00DBA9
}

.foot-contact-link {
    color: #f6fafab8;
    text-decoration: none;
    transition: color .38s ease-in-out
}

.foot-contact-link:hover {
    color: #00DBA9
}

.foot-contact-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973;
    border-radius: 3px
}

.foot-divider {
    max-width: 1400px;
    margin: 0 auto;
    height: 1px;
    background: #f6fafa1a;
    border: none
}

.foot-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px
}

.foot-copy {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    color: #f6fafa73
}

.foot-policy-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap
}

.foot-policy-link {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #f6fafa73;
    text-decoration: none;
    transition: color .38s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.foot-policy-link:hover {
    color: #00DBA9
}

.foot-policy-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973;
    border-radius: 3px
}

@media (max-width: 1024px) {
    .foot-upper {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 56px 28px 28px
    }

    .foot-brand-col {
        grid-column: 1 / -1
    }
}

@media (max-width: 640px) {
    .foot-upper {
        grid-template-columns: 1fr;
        padding: 28px 14px
    }

    .foot-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 14px
    }
}

.cookie-tile {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1000;
    background: #F6FAFA;
    border: 2px solid #181822;
    border-radius: 10px;
    box-shadow: 2px 9px 40px 0 #1818221c;
    padding: 28px;
    max-width: 340px;
    width: calc(100vw - 56px);
    display: none
}

.cookie-tile.sliding {
    transform: translateX(0)
}

.cookie-desc {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #181822;
    margin-bottom: 14px
}

.cookie-uses {
    list-style: none;
    margin: 0 0 14px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.cookie-use-item {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #181822b8;
    display: flex;
    align-items: center;
    gap: 6px
}

.cookie-use-item i {
    color: #00DBA9;
    font-size: 15px;
    flex-shrink: 0
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.cookie-accept {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    color: #181822;
    background: transparent;
    border: 2px solid #181822;
    border-radius: 6px;
    padding: 6px 14px;
    cursor: pointer;
    min-height: 44px;
    transition: background .42s cubic-bezier(0.16, 1, 0.3, 1), color .42s cubic-bezier(0.16, 1, 0.3, 1), border-color .42s cubic-bezier(0.16, 1, 0.3, 1)
}

.cookie-accept:hover {
    background: #181822;
    color: #F6FAFA
}

.cookie-accept:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973
}

.cookie-decline {
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #1818228c;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: underline;
    min-height: 44px;
    transition: color .38s ease-in-out
}

.cookie-decline:hover {
    color: #181822
}

.cookie-decline:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973;
    border-radius: 3px
}

.prefs-trigger {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: #181822;
    border: 2px solid #00DBA9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 2px 5px 18px 0 #18182217;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.prefs-trigger:hover {
    background: #00DBA9
}

.prefs-trigger:focus {
    outline: none;
    box-shadow: 0 0 0 3px #00dba973
}

.prefs-trigger i {
    color: #F6FAFA;
    font-size: 19px;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.prefs-trigger:hover i {
    color: #181822
}

.ygpn-agreement-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 56px 28px;
    background: #F6FAFA;
    color: #181822
}

.ygpn-agreement-content h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 28px;
    margin-top: 0;
    color: #181822
}

.ygpn-agreement-content h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.015em;
    margin-top: 56px;
    margin-bottom: 28px;
    color: #181822
}

.ygpn-agreement-content h3 {
    font-size: 31px;
    line-height: 1.4;
    letter-spacing: -.01em;
    margin-top: 56px;
    margin-bottom: 14px;
    color: #181822
}

.ygpn-agreement-content h4 {
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: -.005em;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #181822
}

.ygpn-agreement-content h5 {
    font-size: 19px;
    line-height: 1.4;
    letter-spacing: 0;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #181822
}

.ygpn-agreement-content h6 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    text-transform: uppercase;
    margin-top: 28px;
    margin-bottom: 14px;
    color: #181822
}

.ygpn-agreement-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 28px;
    color: #181822;
    max-width: 72ch
}

.ygpn-agreement-content ul {
    margin-top: 0;
    margin-bottom: 28px;
    padding-left: 28px;
    list-style: none
}

.ygpn-agreement-content ol {
    margin-top: 0;
    margin-bottom: 28px;
    padding-left: 28px;
    list-style: decimal
}

.ygpn-agreement-content ul li {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #181822;
    position: relative;
    padding-left: 14px;
    max-width: 72ch
}

.ygpn-agreement-content ul li::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00DBA9
}

.ygpn-agreement-content ol li {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 14px;
    color: #181822;
    padding-left: 6px;
    max-width: 72ch
}

.ygpn-agreement-content a {
    color: #181822;
    text-decoration: underline;
    text-decoration-color: #00DBA9;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ygpn-agreement-content a:hover {
    color: #00DBA9;
    text-decoration-color: #00DBA9
}

.ygpn-agreement-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 56px;
    font-size: 15px;
    line-height: 1.7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 5px 18px 0 #00dba917
}

.ygpn-agreement-content thead {
    background: #181822
}

.ygpn-agreement-content thead th {
    color: #F6FAFA;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 14px 28px;
    text-align: left;
    font-weight: 600;
    border: none
}

.ygpn-agreement-content tbody tr {
    border-bottom: 1px solid #1818221a;
    transition: background .35s ease-in-out
}

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

.ygpn-agreement-content tbody tr:hover {
    background: #00dba90f
}

.ygpn-agreement-content td {
    padding: 14px 28px;
    color: #181822;
    font-size: 15px;
    line-height: 1.7;
    vertical-align: top;
    background: transparent
}

.ygpn-agreement-content th {
    padding: 14px 28px
}

.ygpn-agreement-content div {
    margin-bottom: 28px
}

@media (max-width: 768px) {
    .ygpn-agreement-content {
        padding: 56px 14px
    }

    .ygpn-agreement-content h1 {
        font-size: 41px
    }

    .ygpn-agreement-content h2 {
        font-size: 31px;
        margin-top: 56px
    }

    .ygpn-agreement-content h3 {
        font-size: 24px
    }

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

    .ygpn-agreement-content thead th,
    .ygpn-agreement-content td {
        padding: 14px
    }
}

@media (max-width: 640px) {
    .ygpn-agreement-content h1 {
        font-size: 31px
    }

    .ygpn-agreement-content h2 {
        font-size: 24px
    }

    .ygpn-agreement-content h3 {
        font-size: 19px
    }

    .ygpn-agreement-content p,
    .ygpn-agreement-content ul li,
    .ygpn-agreement-content ol li {
        font-size: 15px
    }
}

.srvs {
    background: #F6FAFA;
    overflow-x: clip
}

.srvs .split-top {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    min-height: 92vh;
    max-width: 100%;
    position: relative
}

.srvs .split-left {
    background: #181822;
    padding: 96px 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden
}

.srvs .split-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, #00dba921 0%, transparent 65%);
    pointer-events: none
}

.srvs .split-left::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 20%, #181822d9 0%, transparent 60%);
    pointer-events: none
}

.srvs .bg-num {
    position: absolute;
    top: 28px;
    right: -14px;
    font-size: 220px;
    font-weight: 900;
    color: #00dba90f;
    line-height: 1.1;
    letter-spacing: -.05em;
    user-select: none;
    pointer-events: none;
    z-index: 0
}

.srvs .split-left-body {
    position: relative;
    z-index: 1
}

.srvs .overline {
    display: block;
    width: 40px;
    height: 2px;
    background: #00DBA9;
    margin-bottom: 28px
}

.srvs .split-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #F6FAFA;
    margin: 0 0 28px
}

.srvs .split-h1 .outlined-word {
    color: transparent;
    -webkit-text-stroke: 1.5px #00DBA9
}

.srvs .split-desc {
    font-size: 19px;
    line-height: 1.7;
    color: #f6fafab8;
    margin: 0 0 56px;
    max-width: 380px
}

.srvs .split-meta {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center
}

.srvs .meta-chip {
    background: #00dba91f;
    border: 1px solid #00dba94d;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 15px;
    color: #00DBA9;
    letter-spacing: .04em
}

.srvs .split-right {
    position: relative;
    overflow: hidden;
    background: #F6FAFA
}

.srvs .split-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(15%) contrast(1.05)
}

.srvs .split-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 40%, #f6fafa8c 100%);
    z-index: 1;
    pointer-events: none
}

.srvs .split-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #18182247 0%, transparent 30%);
    z-index: 2;
    pointer-events: none
}

.srvs .grain-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    opacity: .045;
    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.9' 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 .divider-accent {
    height: 2px;
    background: #00DBA9;
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 112px)
}

.srvs .services-body {
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 56px
}

.srvs .body-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    margin-bottom: 96px;
    align-items: start
}

.srvs .body-label {
    position: sticky;
    top: 28px
}

.srvs .body-label-line {
    display: block;
    width: 40px;
    height: 2px;
    background: #00DBA9;
    margin-bottom: 14px
}

.srvs .body-label-text {
    font-size: 15px;
    color: #181822;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .55
}

.srvs .body-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.025em;
    color: #181822;
    margin: 0 0 28px
}

.srvs .body-h2 .underline-word {
    position: relative;
    display: inline-block
}

.srvs .body-h2 .underline-word::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00DBA9;
    transform: scaleX(0);
    transform-origin: left;
    animation: draw-line .55s cubic-bezier(0.16, 1, 0.3, 1) .4s forwards
}

@keyframes draw-line {
    to {
        transform: scaleX(1)
    }
}

.srvs .body-intro {
    font-size: 19px;
    line-height: 1.7;
    color: #181822b8;
    margin: 0;
    max-width: 560px
}

.srvs .four-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 28px;
    margin-bottom: 96px
}

.srvs .svc-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 3px 2px 0 #18182214;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden
}

.srvs .svc-card:hover {
    box-shadow: 2px 9px 40px 0 #1818221c;
    transform: rotate(-0.8deg) translateY(-3px)
}

.srvs .svc-card.accent-card {
    background: #181822;
    grid-row: span 2;
    display: flex;
    flex-direction: column
}

.srvs .svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #00dba90a 0%, transparent 70%);
    pointer-events: none
}

.srvs .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #00dba91a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #00DBA9;
    font-size: 22px
}

.srvs .svc-card.accent-card .card-icon {
    background: #00dba926
}

.srvs .card-h4 {
    font-size: 19px;
    line-height: 1.4;
    color: #181822;
    margin: 0 0 14px;
    letter-spacing: -.01em
}

.srvs .svc-card.accent-card .card-h4 {
    color: #F6FAFA;
    font-size: 24px
}

.srvs .card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #181822a6;
    margin: 0
}

.srvs .svc-card.accent-card .card-p {
    color: #f6fafa9e;
    font-size: 15px
}

.srvs .card-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0
}

.srvs .card-list li {
    font-size: 15px;
    line-height: 1.7;
    color: #f6fafab3;
    padding-left: 14px;
    position: relative
}

.srvs .card-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #00DBA9
}

.srvs .accent-card-img {
    margin-top: auto;
    border-radius: 6px;
    overflow: hidden;
    position: relative
}

.srvs .accent-card-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 6px
}

.srvs .accent-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #181822b3 0%, transparent 60%);
    border-radius: 6px;
    pointer-events: none
}

.srvs .before-after {
    background: #181822;
    border-radius: 16px;
    padding: 56px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden
}

.srvs .before-after::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 15% 85%, #00dba91f 0%, transparent 55%), radial-gradient(ellipse at 85% 15%, #181822e6 0%, transparent 50%);
    pointer-events: none
}

.srvs .ba-head {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
    z-index: 1
}

.srvs .ba-overline {
    display: block;
    width: 40px;
    height: 2px;
    background: #00DBA9;
    margin: 0 auto 14px
}

.srvs .ba-h3 {
    font-size: 31px;
    line-height: 1.1;
    color: #F6FAFA;
    letter-spacing: -.02em;
    margin: 0
}

.srvs .ba-steps {
    display: grid;
    grid-template-columns: 1fr 56px 1fr;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1
}

.srvs .ba-step {
    background: #f6fafa0d;
    border: 1px solid #f6fafa1a;
    border-radius: 10px;
    padding: 28px
}

.srvs .ba-step.step-after {
    background: #00dba914;
    border-color: #00dba940
}

.srvs .ba-step-label {
    font-size: 15px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #f6fafa73;
    margin-bottom: 14px;
    display: block
}

.srvs .ba-step.step-after .ba-step-label {
    color: #00DBA9
}

.srvs .ba-step-h5 {
    font-size: 19px;
    line-height: 1.4;
    color: #F6FAFA;
    margin: 0 0 14px
}

.srvs .ba-step-p {
    font-size: 15px;
    line-height: 1.7;
    color: #f6fafa94;
    margin: 0
}

.srvs .ba-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00DBA9;
    font-size: 28px
}

.srvs .ring-block {
    position: relative;
    padding: 96px 56px;
    max-width: 1400px;
    margin: 0 auto
}

.srvs .ring-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 560px
}

.srvs .ring-center {
    position: relative;
    z-index: 2;
    background: #181822;
    border-radius: 16px;
    padding: 56px;
    max-width: 380px;
    text-align: center;
    box-shadow: 2px 9px 40px 0 #1818221c
}

.srvs .ring-center-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #00dba926;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #00DBA9;
    font-size: 30px
}

.srvs .ring-center-h3 {
    font-size: 24px;
    line-height: 1.4;
    color: #F6FAFA;
    margin: 0 0 14px;
    letter-spacing: -.01em
}

.srvs .ring-center-p {
    font-size: 15px;
    line-height: 1.7;
    color: #f6fafa9e;
    margin: 0
}

.srvs .ring-items {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.srvs .ring-item {
    position: absolute;
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    box-shadow: 2px 5px 18px 0 #18182217;
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 160px;
    pointer-events: all;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvs .ring-item:hover {
    transform: rotate(2deg) scale(1.04);
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.srvs .ring-item-icon {
    color: #00DBA9;
    font-size: 20px
}

.srvs .ring-item-label {
    font-size: 15px;
    line-height: 1.4;
    color: #181822;
    font-weight: 600
}

.srvs .ring-item-sub {
    font-size: 15px;
    line-height: 1.4;
    color: #1818228c
}

.srvs .ri-1 {
    top: 0;
    left: 5%
}

.srvs .ri-2 {
    top: 0;
    right: 5%
}

.srvs .ri-3 {
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.srvs .ri-4 {
    top: 50%;
    right: 0;
    transform: translateY(-50%)
}

.srvs .ri-5 {
    bottom: 0;
    left: 5%
}

.srvs .ri-6 {
    bottom: 0;
    right: 5%
}

.srvs .ri-3:hover,
.srvs .ri-4:hover {
    transform: translateY(-50%) rotate(2deg) scale(1.04)
}

.srvs .geo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.srvs .geo-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid #00dba91a;
    animation: geo-pulse 6s ease-in-out infinite
}

@keyframes geo-pulse {

    0%,
    100% {
        opacity: .4
    }

    50% {
        opacity: .9
    }
}

.srvs .geo-c1 {
    width: 420px;
    height: 420px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s
}

.srvs .geo-c2 {
    width: 580px;
    height: 580px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1.5s
}

.srvs .geo-c3 {
    width: 740px;
    height: 740px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 3s;
    border-color: #00dba90d
}

.srvs .second-sec {
    background: #F6FAFA;
    position: relative
}

.srvs .second-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 50%, #1818220a 100%);
    pointer-events: none
}

.srvs .sec2-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 56px
}

.srvs .sec2-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 96px
}

.srvs .sec2-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden
}

.srvs .sec2-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 10px
}

.srvs .sec2-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 60%, #00dba926 100%);
    border-radius: 10px;
    pointer-events: none
}

.srvs .sec2-text {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.srvs .sec2-h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #181822;
    letter-spacing: -.025em;
    margin: 0
}

.srvs .sec2-h2 .outlined-word {
    color: transparent;
    -webkit-text-stroke: 1.5px #181822
}

.srvs .sec2-p {
    font-size: 19px;
    line-height: 1.7;
    color: #181822b8;
    margin: 0
}

.srvs .sec2-p-sm {
    font-size: 15px;
    line-height: 1.7;
    color: #1818229e;
    margin: 0
}

.srvs .cta-row {
    display: flex;
    flex-direction: row;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap
}

.srvs .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #181822;
    background: #00DBA9;
    border: none;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 2px 3px 2px 0 #00dba914
}

.srvs .btn-primary::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #181822;
    transition: bottom .45s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0
}

.srvs .btn-primary:hover::after {
    bottom: 0
}

.srvs .btn-primary:hover {
    color: #00DBA9;
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.srvs .btn-primary span {
    position: relative;
    z-index: 1
}

.srvs .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    color: #181822;
    background: transparent;
    border: 1.5px solid #18182233;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .4s ease-in-out, color .4s ease-in-out
}

.srvs .btn-ghost:hover {
    border-color: #00DBA9;
    color: #00DBA9
}

.srvs .metrics-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px
}

.srvs .metric-item {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 3px 2px 0 #18182214;
    text-align: center;
    transition: box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.srvs .metric-item:hover {
    box-shadow: 2px 9px 40px 0 #1818221c
}

.srvs .metric-num {
    font-size: 41px;
    line-height: 1.1;
    color: #181822;
    letter-spacing: -.03em;
    margin-bottom: 6px;
    display: block
}

.srvs .metric-num em {
    color: #00DBA9;
    font-style: normal
}

.srvs .metric-label {
    font-size: 15px;
    line-height: 1.4;
    color: #18182294
}

@media (max-width: 1280px) {
    .srvs .four-cols {
        grid-template-columns: 1fr 1fr 1fr
    }

    .srvs .svc-card.accent-card {
        grid-column: span 3;
        grid-row: span 1
    }

    .srvs .accent-card-img img {
        height: 220px
    }

    .srvs .ring-item {
        width: 140px
    }
}

@media (max-width: 1024px) {
    .srvs .split-top {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .srvs .split-left {
        padding: 96px 56px;
        min-height: 60vh
    }

    .srvs .split-right {
        height: 400px
    }

    .srvs .split-h1 {
        font-size: 41px
    }

    .srvs .four-cols {
        grid-template-columns: 1fr 1fr
    }

    .srvs .svc-card.accent-card {
        grid-column: span 2
    }

    .srvs .sec2-grid {
        grid-template-columns: 1fr
    }

    .srvs .sec2-img-wrap img {
        height: 340px
    }

    .srvs .metrics-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .srvs .ring-wrap {
        min-height: 480px
    }

    .srvs .geo-c2,
    .srvs .geo-c3 {
        display: none
    }
}

@media (max-width: 768px) {
    .srvs .split-left {
        padding: 56px 28px
    }

    .srvs .split-h1 {
        font-size: 31px
    }

    .srvs .services-body {
        padding: 56px 28px
    }

    .srvs .body-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .srvs .body-label {
        position: static
    }

    .srvs .four-cols {
        grid-template-columns: 1fr
    }

    .srvs .svc-card.accent-card {
        grid-column: span 1
    }

    .srvs .ba-steps {
        grid-template-columns: 1fr;
        gap: 14px
    }

    .srvs .ba-arrow {
        transform: rotate(90deg)
    }

    .srvs .before-after {
        padding: 28px
    }

    .srvs .ring-block {
        padding: 56px 28px
    }

    .srvs .ring-wrap {
        min-height: auto;
        flex-direction: column;
        gap: 28px
    }

    .srvs .ring-items {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px
    }

    .srvs .ring-item {
        position: static;
        width: auto;
        transform: none !important
    }

    .srvs .ring-center {
        padding: 28px
    }

    .srvs .geo-bg {
        display: none
    }

    .srvs .sec2-inner {
        padding: 56px 28px
    }

    .srvs .metrics-strip {
        grid-template-columns: 1fr 1fr
    }

    .srvs .divider-accent {
        width: calc(100% - 56px)
    }
}

@media (max-width: 640px) {
    .srvs .split-h1 {
        font-size: 24px
    }

    .srvs .body-h2 {
        font-size: 31px
    }

    .srvs .sec2-h2 {
        font-size: 31px
    }

    .srvs .metrics-strip {
        grid-template-columns: 1fr
    }

    .srvs .ring-items {
        grid-template-columns: 1fr
    }

    .srvs .ba-h3 {
        font-size: 24px
    }

    .srvs .split-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px
    }

    .srvs .metric-num {
        font-size: 31px
    }
}

.evts-root {
    background: #F6FAFA;
    overflow-x: hidden
}

.evts-root .evts-title-block {
    padding: 96px 28px 56px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 56px;
    align-items: start;
    position: relative
}

.evts-root .evts-title-left {
    position: relative;
    z-index: 1
}

.evts-root .evts-quote-mark {
    position: absolute;
    top: -28px;
    left: -14px;
    font-size: 220px;
    line-height: 1.1;
    color: #181822;
    opacity: .04;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    font-style: normal
}

.evts-root .evts-overline {
    display: block;
    width: 32px;
    height: 2px;
    background: #00DBA9;
    margin-bottom: 14px
}

.evts-root .evts-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #181822;
    margin: 0 0 28px;
    max-width: 620px;
    position: relative;
    z-index: 1
}

.evts-root .evts-h1 .evts-underword {
    position: relative;
    display: inline-block
}

.evts-root .evts-h1 .evts-underword::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 3px;
    width: 0;
    background: #00DBA9;
    border-radius: 3px;
    animation: evts-underline-draw .55s cubic-bezier(0.16, 1, 0.3, 1) .4s forwards
}

@keyframes evts-underline-draw {
    to {
        width: 100%
    }
}

.evts-root .evts-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #181822;
    opacity: .75;
    max-width: 520px;
    margin: 0 0 28px;
    position: relative;
    z-index: 1
}

.evts-root .evts-counter-row {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
    position: relative;
    z-index: 1
}

.evts-root .evts-count-item {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.evts-root .evts-count-num {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: #181822;
    font-weight: 700
}

.evts-root .evts-count-label {
    font-size: 15px;
    line-height: 1.4;
    color: #181822;
    opacity: .6
}

.evts-root .evts-count-divider {
    width: 1px;
    height: 40px;
    background: #181822;
    opacity: .15
}

.evts-root .evts-title-img-col {
    position: relative
}

.evts-root .evts-title-img-wrap {
    width: 100%;
    height: 420px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.evts-root .evts-title-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.85) hue-rotate(0deg) brightness(0.97)
}

.evts-root .evts-title-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #00dba92e 0%, #18182238 100%);
    border-radius: 10px;
    pointer-events: none
}

.evts-root .evts-img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: #181822;
    color: #00DBA9;
    font-size: 15px;
    line-height: 1.4;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: .02em
}

.evts-root .evts-zigzag {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.evts-root .evts-cards-section {
    background: #181822;
    padding: 56px 28px;
    position: relative;
    overflow: hidden
}

.evts-root .evts-cards-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px solid #00dba914;
    box-shadow: 0 0 0 50px #00dba90a 0 0 0 100px #00dba905;
    pointer-events: none
}

.evts-root .evts-cards-inner {
    max-width: 1400px;
    margin: 0 auto
}

.evts-root .evts-cards-head {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 28px
}

.evts-root .evts-cards-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #F6FAFA;
    margin: 0
}

.evts-root .evts-cards-h2 .evts-overline-dark {
    display: block;
    width: 32px;
    height: 2px;
    background: #00DBA9;
    margin-bottom: 14px
}

.evts-root .evts-cards-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #F6FAFA;
    opacity: .6;
    max-width: 320px;
    text-align: right
}

.evts-root .evts-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.evts-root .evts-card {
    background: #f6fafa0d;
    border: 1px solid #f6fafa1a;
    border-radius: 10px;
    padding: 28px;
    position: relative;
    cursor: default;
    transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.evts-root .evts-card::before,
.evts-root .evts-card::after {
    content: '';
    position: absolute;
    background: #00DBA9;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none
}

.evts-root .evts-card::before {
    top: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    transform-origin: left
}

.evts-root .evts-card::after {
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 2px;
    border-radius: 0 0 3px 3px;
    transform: scaleX(0);
    transform-origin: right
}

.evts-root .evts-card:hover::before,
.evts-root .evts-card:hover::after {
    transform: scaleX(1)
}

.evts-root .evts-card:hover {
    border-color: #00dba94d;
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.evts-root .evts-card-num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 15px;
    line-height: 1.4;
    color: #00DBA9;
    opacity: .5;
    font-weight: 700;
    letter-spacing: .04em
}

.evts-root .evts-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #00dba91f;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: #00DBA9;
    font-size: 22px
}

.evts-root .evts-card-h4 {
    font-size: 19px;
    line-height: 1.4;
    color: #F6FAFA;
    margin: 0 0 14px;
    letter-spacing: -.01em
}

.evts-root .evts-card-p {
    font-size: 15px;
    line-height: 1.7;
    color: #F6FAFA;
    opacity: .6;
    margin: 0
}

.evts-root .evts-card-meta {
    display: flex;
    flex-direction: row;
    gap: 14px;
    margin-top: 28px;
    padding-top: 14px;
    border-top: 1px solid #f6fafa14;
    flex-wrap: wrap
}

.evts-root .evts-card-tag {
    font-size: 15px;
    line-height: 1.4;
    color: #00DBA9;
    background: #00dba91a;
    border-radius: 3px;
    padding: 6px 14px
}

.evts-root .evts-zigzag2 {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.evts-root .evts-featured-section {
    padding: 96px 28px;
    background: #F6FAFA;
    position: relative
}

.evts-root .evts-featured-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 28px;
    align-items: start
}

.evts-root .evts-feat-side {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.evts-root .evts-feat-side-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 5px 18px 0 #18182217;
    position: relative;
    overflow: hidden
}

.evts-root .evts-feat-side-card .evts-card-num {
    color: #181822;
    opacity: .12;
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.04em;
    top: 6px;
    right: 14px;
    font-weight: 700
}

.evts-root .evts-feat-side-h5 {
    font-size: 19px;
    line-height: 1.4;
    color: #181822;
    margin: 0 0 14px;
    letter-spacing: -.01em
}

.evts-root .evts-feat-side-p {
    font-size: 15px;
    line-height: 1.7;
    color: #181822;
    opacity: .7;
    margin: 0
}

.evts-root .evts-feat-side-tag {
    display: inline-block;
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.4;
    color: #00DBA9;
    background: #00dba91a;
    border-radius: 3px;
    padding: 6px 14px
}

.evts-root .evts-feat-center {
    position: relative
}

.evts-root .evts-feat-img-wrap {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 2px 9px 40px 0 #1818221c
}

.evts-root .evts-feat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(0.8) brightness(0.95);
    animation: evts-pan 18s linear infinite alternate
}

@keyframes evts-pan {
    from {
        object-position: 0 50%
    }

    to {
        object-position: 100% 50%
    }
}

.evts-root .evts-feat-img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 56px 28px 28px;
    background: linear-gradient(to top, #181822d9 0%, transparent 100%);
    border-radius: 0 0 10px 10px
}

.evts-root .evts-feat-img-caption .evts-overline {
    margin-bottom: 6px
}

.evts-root .evts-feat-cap-h3 {
    font-size: 31px;
    line-height: 1.1;
    color: #F6FAFA;
    margin: 0 0 14px;
    letter-spacing: -.02em
}

.evts-root .evts-feat-cap-p {
    font-size: 15px;
    line-height: 1.7;
    color: #F6FAFA;
    opacity: .8;
    margin: 0
}

.evts-root .evts-feat-center-label {
    margin-top: 28px
}

.evts-root .evts-feat-center-label .evts-overline {
    margin-bottom: 6px
}

.evts-root .evts-feat-center-h2 {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #181822;
    margin: 0 0 14px
}

.evts-root .evts-feat-center-p {
    font-size: 15px;
    line-height: 1.7;
    color: #181822;
    opacity: .7;
    margin: 0
}

.evts-root .evts-zigzag3 {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0
}

.evts-root .evts-schedule-section {
    background: #0f0f18;
    padding: 96px 28px;
    position: relative;
    overflow: hidden
}

.evts-root .evts-schedule-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 1px solid #00dba90f;
    box-shadow: 0 0 0 40px #00dba908 0 0 0 80px #00dba904;
    pointer-events: none
}

.evts-root .evts-schedule-inner {
    max-width: 1400px;
    margin: 0 auto
}

.evts-root .evts-sched-head {
    margin-bottom: 56px
}

.evts-root .evts-sched-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #F6FAFA;
    margin: 0 0 14px
}

.evts-root .evts-sched-sub {
    font-size: 19px;
    line-height: 1.7;
    color: #F6FAFA;
    opacity: .55;
    max-width: 560px;
    margin: 0
}

.evts-root .evts-sched-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.evts-root .evts-sched-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 28px;
    border-radius: 10px;
    background: #f6fafa0a;
    border: 1px solid #f6fafa12;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative
}

.evts-root .evts-sched-item:hover {
    background: #00dba912;
    border-color: #00dba940
}

.evts-root .evts-sched-date {
    font-size: 15px;
    line-height: 1.4;
    color: #00DBA9;
    font-weight: 600;
    letter-spacing: .02em
}

.evts-root .evts-sched-body {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.evts-root .evts-sched-name {
    font-size: 19px;
    line-height: 1.4;
    color: #F6FAFA;
    letter-spacing: -.01em
}

.evts-root .evts-sched-detail {
    font-size: 15px;
    line-height: 1.4;
    color: #F6FAFA;
    opacity: .5
}

.evts-root .evts-sched-badge {
    font-size: 15px;
    line-height: 1.4;
    padding: 6px 14px;
    border-radius: 6px;
    font-weight: 600;
    white-space: nowrap
}

.evts-root .evts-badge-online {
    background: #00dba926;
    color: #00DBA9
}

.evts-root .evts-badge-live {
    background: #f6fafa1a;
    color: #F6FAFA
}

.evts-root .evts-sched-num {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 15px;
    line-height: 1.4;
    color: #F6FAFA;
    opacity: .15;
    font-weight: 700
}

@media (max-width: 1024px) {
    .evts-root .evts-title-block {
        grid-template-columns: 1fr;
        padding: 56px 28px
    }

    .evts-root .evts-title-img-col {
        display: none
    }

    .evts-root .evts-cards-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .evts-root .evts-featured-inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto
    }

    .evts-root .evts-feat-side:last-child {
        grid-column: 1 / -1;
        flex-direction: row
    }

    .evts-root .evts-feat-center {
        grid-column: 1 / -1;
        order: -1
    }

    .evts-root .evts-sched-item {
        grid-template-columns: 100px 1fr auto;
        gap: 14px
    }
}

@media (max-width: 768px) {
    .evts-root .evts-h1 {
        font-size: 41px
    }

    .evts-root .evts-cards-grid {
        grid-template-columns: 1fr
    }

    .evts-root .evts-featured-inner {
        grid-template-columns: 1fr
    }

    .evts-root .evts-feat-side:last-child {
        flex-direction: column
    }

    .evts-root .evts-feat-center {
        order: 0
    }

    .evts-root .evts-sched-item {
        grid-template-columns: 1fr;
        gap: 6px
    }

    .evts-root .evts-sched-badge {
        align-self: flex-start
    }

    .evts-root .evts-sched-num {
        display: none
    }

    .evts-root .evts-cards-head {
        flex-direction: column;
        align-items: flex-start
    }

    .evts-root .evts-cards-desc {
        text-align: left
    }
}

@media (max-width: 640px) {
    .evts-root .evts-h1 {
        font-size: 31px
    }

    .evts-root .evts-cards-h2 {
        font-size: 31px
    }

    .evts-root .evts-sched-h2 {
        font-size: 31px
    }

    .evts-root .evts-counter-row {
        flex-wrap: wrap
    }

    .evts-root .evts-title-block {
        padding: 56px 14px 28px
    }

    .evts-root .evts-cards-section {
        padding: 56px 14px
    }

    .evts-root .evts-featured-section {
        padding: 56px 14px
    }

    .evts-root .evts-schedule-section {
        padding: 56px 14px
    }
}

@media (min-width: 641px) {
    .evts-root .evts-card {
        transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
    }
}

.abus {
    background: #F6FAFA;
    overflow-x: clip
}

.abus .intro-band {
    position: relative;
    padding: 96px 28px 56px;
    background: linear-gradient(135deg, #181822 0%, #1e2235 40%, #00DBA9 100%);
    background-size: 300% 300%;
    animation: gradshift 8s ease-in-out infinite;
    overflow: hidden
}

@keyframes gradshift {
    0% {
        background-position: 0 50%
    }

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

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

.abus .intro-band::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, #00dba92e 0%, transparent 60%);
    pointer-events: none
}

.abus .quote-mark {
    position: absolute;
    top: 28px;
    right: 56px;
    font-size: 220px;
    line-height: 1.1;
    color: #00dba917;
    font-weight: 900;
    user-select: none;
    pointer-events: none;
    letter-spacing: -8px
}

.abus .deco-lines {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none
}

.abus .deco-lines span {
    display: block;
    height: 1px;
    background: #00dba959
}

.abus .deco-lines span:nth-child(1) {
    width: 56px
}

.abus .deco-lines span:nth-child(2) {
    width: 42px
}

.abus .deco-lines span:nth-child(3) {
    width: 28px
}

.abus .intro-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    position: relative;
    z-index: 1
}

.abus .intro-text {
    padding-top: 28px
}

.abus .overline-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #00DBA9;
    margin-bottom: 14px;
    animation: barwiden .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

@keyframes barwiden {
    from {
        width: 0;
        opacity: 0
    }

    to {
        width: 28px;
        opacity: 1
    }
}

.abus .intro-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #F6FAFA;
    margin: 0 0 28px;
    animation: fadeup .55s cubic-bezier(0.16, 1, 0.3, 1) .1s both
}

.abus .intro-h1 .underlined-word {
    position: relative;
    display: inline-block
}

.abus .intro-h1 .underlined-word::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    height: 3px;
    width: 100%;
    background: #00DBA9;
    transform: scaleX(0);
    transform-origin: left;
    animation: linereveal .55s cubic-bezier(0.16, 1, 0.3, 1) .7s forwards
}

@keyframes linereveal {
    to {
        transform: scaleX(1)
    }
}

.abus .intro-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.abus .intro-points li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #f6fafad1;
    font-size: 19px;
    line-height: 1.7;
    animation: fadeup .45s cubic-bezier(0.16, 1, 0.3, 1) both
}

.abus .intro-points li:nth-child(1) {
    animation-delay: .2s
}

.abus .intro-points li:nth-child(2) {
    animation-delay: .35s
}

.abus .intro-points li:nth-child(3) {
    animation-delay: .5s
}

.abus .intro-points li::before {
    content: "—";
    color: #00DBA9;
    flex-shrink: 0;
    margin-top: 2px
}

@keyframes fadeup {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

.abus .img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    animation: fadeup .55s cubic-bezier(0.16, 1, 0.3, 1) .25s both
}

.abus .img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at 0% 0%, #00dba973 0%, transparent 70%);
    pointer-events: none
}

.abus .img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    box-shadow: 2px 9px 40px 0 #1818221c;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.abus .img-wrap:hover img {
    box-shadow: 2px 18px 56px 0 #18182238
}

.abus .divider-diag {
    height: 28px;
    background: linear-gradient(105deg, #181822 50%, #F6FAFA 50%)
}

.abus .detail-section {
    padding: 96px 28px;
    background: #F6FAFA;
    position: relative
}

.abus .detail-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#00dba90f 1px, transparent 1px), linear-gradient(90deg, #00dba90f 1px, transparent 1px), linear-gradient(#18182208 1px, transparent 1px), linear-gradient(90deg, #18182208 1px, transparent 1px);
    background-size: 40px 40px, 40px 40px, 20px 20px, 20px 20px;
    pointer-events: none
}

.abus .detail-inner {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abus .detail-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-bottom: 56px;
    align-items: start
}

.abus .detail-heading-col {
    padding-top: 6px
}

.abus .section-overline {
    display: block;
    width: 28px;
    height: 3px;
    background: #00DBA9;
    margin-bottom: 14px
}

.abus .detail-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #181822;
    margin: 0 0 14px
}

.abus .detail-sub {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a4a;
    margin: 0
}

.abus .detail-body-col {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.abus .body-para {
    font-size: 19px;
    line-height: 1.7;
    color: #2a2a38;
    margin: 0
}

.abus .dot-row {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    margin: 14px 0
}

.abus .dot-row span {
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00DBA9;
    opacity: .7
}

.abus .dot-row span:nth-child(2) {
    opacity: .5
}

.abus .dot-row span:nth-child(3) {
    opacity: .3
}

.abus .img-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px
}

.abus .img-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 5px 18px 0 #00dba917;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.abus .img-card:hover {
    box-shadow: 2px 14px 40px 0 #00dba92e
}

.abus .img-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block
}

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

.abus .tier-card {
    background: #fff;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 3px 2px 0 #18182214;
    position: relative;
    border-top: 3px solid transparent;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1);
    animation: fadeup .45s cubic-bezier(0.16, 1, 0.3, 1) both
}

.abus .tiers-row .tier-card:nth-child(1) {
    animation-delay: .1s;
    border-top-color: #00dba94d
}

.abus .tiers-row .tier-card:nth-child(2) {
    animation-delay: .25s;
    border-top-color: #00DBA9
}

.abus .tiers-row .tier-card:nth-child(3) {
    animation-delay: .4s;
    border-top-color: #18182280
}

.abus .tier-card:hover {
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.abus .tier-label {
    font-size: 15px;
    letter-spacing: .08em;
    color: #00DBA9;
    font-weight: 700;
    margin: 0 0 14px;
    text-transform: uppercase
}

.abus .tier-name {
    font-size: 24px;
    line-height: 1.1;
    color: #181822;
    font-weight: 700;
    margin: 0 0 14px
}

.abus .tier-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #3a3a4a;
    margin: 0 0 14px
}

.abus .tier-feats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.abus .tier-feats li {
    font-size: 15px;
    line-height: 1.4;
    color: #2a2a38;
    display: flex;
    align-items: flex-start;
    gap: 6px
}

.abus .tier-feats li::before {
    content: "—";
    color: #00DBA9;
    flex-shrink: 0
}

.abus .tier-card.featured {
    background: #181822
}

.abus .tier-card.featured .tier-label {
    color: #00DBA9
}

.abus .tier-card.featured .tier-name {
    color: #F6FAFA
}

.abus .tier-card.featured .tier-desc {
    color: #f6fafab3
}

.abus .tier-card.featured .tier-feats li {
    color: #f6fafad9
}

.abus .tier-card.featured .tier-feats li::before {
    color: #00DBA9
}

.abus .cycle-group {
    display: flex;
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

.abus .cycle-item {
    padding: 6px 14px;
    border-radius: 6px;
    background: #00dba914;
    border: 1px solid #00dba933;
    font-size: 15px;
    color: #181822;
    animation: cyclehl 4.5s ease-in-out infinite
}

.abus .cycle-item:nth-child(1) {
    animation-delay: 0s
}

.abus .cycle-item:nth-child(2) {
    animation-delay: 1.5s
}

.abus .cycle-item:nth-child(3) {
    animation-delay: 3s
}

@keyframes cyclehl {

    0%,
    25%,
    100% {
        background: #00dba914;
        color: #181822;
        border-color: #00dba933
    }

    8%,
    18% {
        background: #00DBA9;
        color: #181822;
        border-color: #00DBA9
    }
}

.abus .person-strip {
    display: flex;
    flex-direction: row;
    gap: 28px;
    align-items: center;
    background: #00dba90f;
    border-radius: 10px;
    padding: 28px;
    margin-top: 56px;
    box-shadow: 2px 3px 2px 0 #00dba914
}

.abus .person-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #181822;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.abus .person-icon svg {
    width: 28px;
    height: 28px;
    stroke: #00DBA9;
    fill: none;
    stroke-width: 1.5
}

.abus .person-info {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.abus .person-name {
    font-size: 19px;
    font-weight: 700;
    color: #181822;
    margin: 0
}

.abus .person-role {
    font-size: 15px;
    color: #3a3a4a;
    margin: 0
}

.abus .person-note {
    font-size: 15px;
    line-height: 1.7;
    color: #2a2a38;
    margin: 0;
    flex: 1
}

@media (max-width: 1024px) {
    .abus .intro-grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abus .intro-h1 {
        font-size: 41px
    }

    .abus .detail-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .abus .tiers-row {
        grid-template-columns: 1fr 1fr
    }

    .abus .img-pair {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .abus .intro-band {
        padding: 56px 14px
    }

    .abus .intro-h1 {
        font-size: 31px
    }

    .abus .tiers-row {
        grid-template-columns: 1fr
    }

    .abus .detail-section {
        padding: 56px 14px
    }

    .abus .person-strip {
        flex-direction: column;
        align-items: flex-start
    }

    .abus .quote-mark {
        font-size: 120px;
        right: 14px
    }
}

@media (max-width: 640px) {
    .abus .intro-h1 {
        font-size: 24px
    }

    .abus .img-wrap img {
        height: 260px
    }

    .abus .cycle-group {
        gap: 6px
    }
}

@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
    .abus .img-wrap img {
        transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
    }

    .abus .tier-card {
        transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1)
    }
}

.prm {
    background: #F6FAFA;
    overflow-x: hidden
}

.prm .fade-in {
    opacity: 0;
    animation: fadeReveal .55s cubic-bezier(0.16, 1, 0.3, 1) forwards
}

.prm .fade-in:nth-child(1) {
    animation-delay: .1s
}

.prm .fade-in:nth-child(2) {
    animation-delay: .22s
}

.prm .fade-in:nth-child(3) {
    animation-delay: .34s
}

.prm .fade-in:nth-child(4) {
    animation-delay: .46s
}

@keyframes fadeReveal {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

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

@keyframes underlineDraw {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes bgCycle {

    0%,
    100% {
        background-color: #181822
    }

    50% {
        background-color: #0d2e27
    }
}

.prm .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 0
}

.prm .divider-line {
    height: 1px;
    width: 56px;
    background: #00DBA9;
    opacity: .4
}

.prm .divider-cross {
    width: 10px;
    height: 10px;
    position: relative;
    flex-shrink: 0
}

.prm .divider-cross::before,
.prm .divider-cross::after {
    content: '';
    position: absolute;
    background: #00DBA9;
    opacity: .6
}

.prm .divider-cross::before {
    width: 10px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.prm .divider-cross::after {
    width: 1px;
    height: 10px;
    left: 50%;
    top: 0;
    transform: translateX(-50%)
}

.prm .titl {
    max-width: 1400px;
    margin: 0 auto;
    padding: 96px 56px 56px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start;
    position: relative
}

.prm .titl-deco {
    position: absolute;
    top: 28px;
    right: 56px;
    font-size: 70px;
    font-weight: 900;
    line-height: 1.1;
    color: #181822;
    opacity: .04;
    pointer-events: none;
    user-select: none;
    letter-spacing: -4px
}

.prm .titl-diag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    pointer-events: none;
    overflow: hidden
}

.prm .titl-diag svg {
    width: 100%;
    height: 100%
}

.prm .titl-text {
    padding-top: 14px
}

.prm .overline {
    display: block;
    width: 32px;
    height: 2px;
    background: #00DBA9;
    margin-bottom: 14px
}

.prm .titl-h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #181822;
    letter-spacing: -1.5px;
    margin: 0 0 28px
}

.prm .titl-h1 .accent-word {
    position: relative;
    display: inline-block
}

.prm .titl-h1 .accent-word::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 3px;
    background: #00DBA9;
    width: 0;
    animation: underlineDraw .55s cubic-bezier(0.16, 1, 0.3, 1) .6s forwards
}

.prm .titl-theses {
    list-style: none;
    padding: 0;
    margin: 0 0 28px
}

.prm .titl-theses li {
    font-size: 19px;
    line-height: 1.7;
    color: #181822;
    padding: 6px 0;
    padding-left: 19px;
    position: relative
}

.prm .titl-theses li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #00DBA9;
    font-weight: 700
}

.prm .titl-img-wrap {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.prm .titl-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block
}

.prm .titl-img-grad {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, #1818228c, transparent);
    pointer-events: none
}

.prm .belong {
    background: #181822;
    animation: bgCycle 8s ease-in-out infinite;
    padding: 96px 0 56px
}

.prm .belong-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px
}

.prm .belong-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    margin-top: 56px
}

.prm .belong-head {
    max-width: 560px
}

.prm .belong-head .overline {
    background: #00DBA9
}

.prm .belong-h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #F6FAFA;
    letter-spacing: -1px;
    margin: 0 0 14px
}

.prm .belong-sub {
    font-size: 19px;
    line-height: 1.7;
    color: #f6fafaa6;
    margin: 0
}

.prm .belong-card {
    background: #f6fafa0a;
    border: 1px solid #00dba91f;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 5px 18px 0 #00dba917
}

.prm .belong-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #00dba91f;
    border-radius: 6px;
    margin-bottom: 14px
}

.prm .belong-card-icon i {
    font-size: 19px;
    color: #00DBA9
}

.prm .belong-card-title {
    font-size: 19px;
    line-height: 1.4;
    color: #F6FAFA;
    margin: 0 0 6px;
    letter-spacing: -.3px
}

.prm .belong-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #f6fafa99;
    margin: 0
}

.prm .belong-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 28px
}

.prm .belong-img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer
}

.prm .belong-img-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.prm .belong-img-box:hover img {
    transform: scale(1.04)
}

.prm .belong-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #181822e0;
    color: #F6FAFA;
    font-size: 15px;
    line-height: 1.4;
    padding: 14px;
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.prm .belong-img-box:hover .belong-caption {
    opacity: 1
}

.prm .proof {
    padding: 96px 0 56px;
    background: #F6FAFA;
    position: relative
}

.prm .proof-diag {
    position: absolute;
    top: 28px;
    right: 28px;
    pointer-events: none;
    opacity: .06
}

.prm .proof-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px
}

.prm .proof-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 56px;
    align-items: start;
    margin-top: 56px
}

.prm .proof-img-col {
    position: relative
}

.prm .proof-img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 5px 18px 0 #18182217;
    cursor: pointer
}

.prm .proof-img-box img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.prm .proof-img-box:hover img {
    transform: scale(1.04)
}

.prm .proof-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #181822e0;
    color: #F6FAFA;
    font-size: 15px;
    line-height: 1.4;
    padding: 14px;
    opacity: 0;
    transition: opacity .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.prm .proof-img-box:hover .proof-caption {
    opacity: 1
}

.prm .proof-anchor-icon {
    position: absolute;
    bottom: -28px;
    right: -14px;
    font-size: 70px;
    color: #00DBA9;
    opacity: .18;
    pointer-events: none;
    line-height: 1
}

.prm .proof-text-col {
    padding-top: 6px
}

.prm .proof-h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #181822;
    letter-spacing: -1px;
    margin: 0 0 28px
}

.prm .proof-para {
    font-size: 19px;
    line-height: 1.7;
    color: #181822;
    margin: 0 0 28px
}

.prm .proof-items {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.prm .proof-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: #fff;
    border-radius: 6px;
    box-shadow: 2px 3px 2px 0 #18182214
}

.prm .proof-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #181822, #00DBA9);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center
}

.prm .proof-item-icon i {
    font-size: 19px;
    color: #F6FAFA
}

.prm .proof-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: #181822;
    margin: 0
}

.prm .proof-event-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 28px;
    font-size: 15px;
    color: #181822;
    text-decoration: none;
    border-bottom: 2px solid #00DBA9;
    padding-bottom: 3px;
    transition: color .35s ease-in-out
}

.prm .proof-event-link:hover {
    color: #00DBA9
}

.prm .value {
    padding: 96px 0;
    background: #181822;
    position: relative
}

.prm .value-hatch {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.prm .value-hatch svg {
    width: 100%;
    height: 100%;
    opacity: .04
}

.prm .value-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 56px;
    position: relative
}

.prm .value-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
    margin-bottom: 56px
}

.prm .value-h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #F6FAFA;
    letter-spacing: -1px;
    margin: 0 0 14px
}

.prm .value-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #f6fafaa6;
    margin: 0
}

.prm .value-right-text {
    font-size: 15px;
    line-height: 1.7;
    color: #f6fafa99;
    margin: 0;
    padding-top: 56px
}

.prm .value-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    margin-bottom: 56px
}

.prm .value-col {
    border-top: 2px solid #00dba94d;
    padding-top: 28px
}

.prm .value-col-num {
    font-size: 41px;
    line-height: 1.1;
    color: #00DBA9;
    letter-spacing: -1px;
    font-weight: 700;
    margin: 0 0 6px
}

.prm .value-col-label {
    font-size: 15px;
    line-height: 1.4;
    color: #f6fafa80;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.prm .value-col-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #f6fafaa6;
    margin: 0
}

.prm .value-img-row {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start
}

.prm .value-img-box {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 2px 9px 40px 0 #00dba91c;
    cursor: pointer
}

.prm .value-img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.prm .value-img-box:hover img {
    transform: scale(1.04)
}

.prm .value-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #181822e6;
    color: #F6FAFA;
    font-size: 15px;
    line-height: 1.4;
    padding: 14px;
    opacity: 0;
    transition: opacity .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.prm .value-img-box:hover .value-caption {
    opacity: 1
}

.prm .value-quote {
    background: #00dba914;
    border-radius: 10px;
    padding: 28px;
    box-shadow: 2px 3px 2px 0 #00dba914
}

.prm .value-quote-text {
    font-size: 19px;
    line-height: 1.7;
    color: #F6FAFA;
    margin: 0 0 14px;
    font-style: italic
}

.prm .value-quote-author {
    font-size: 15px;
    color: #f6fafa80;
    margin: 0
}

.prm .value-quote-author span {
    color: #00DBA9
}

@media (max-width: 1024px) {
    .prm .titl {
        grid-template-columns: 1fr;
        padding: 56px 28px 28px
    }

    .prm .titl-img-wrap img {
        height: 320px
    }

    .prm .titl-deco {
        font-size: 56px
    }

    .prm .belong-grid {
        grid-template-columns: 1fr 1fr
    }

    .prm .proof-layout {
        grid-template-columns: 1fr
    }

    .prm .proof-img-col {
        max-width: 420px
    }

    .prm .value-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .prm .value-right-text {
        padding-top: 0
    }

    .prm .value-img-row {
        grid-template-columns: 1fr
    }

    .prm .value-cols {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width: 768px) {
    .prm .titl {
        padding: 56px 14px 28px;
        gap: 28px
    }

    .prm .titl-h1 {
        font-size: 41px
    }

    .prm .belong-inner {
        padding: 0 28px
    }

    .prm .belong-grid {
        grid-template-columns: 1fr
    }

    .prm .belong-img-row {
        grid-template-columns: 1fr
    }

    .prm .proof-inner {
        padding: 0 28px
    }

    .prm .value-inner {
        padding: 0 28px
    }

    .prm .value-cols {
        grid-template-columns: 1fr
    }

    .prm .belong-h2 {
        font-size: 31px
    }

    .prm .proof-h2 {
        font-size: 31px
    }

    .prm .value-h2 {
        font-size: 31px
    }
}

@media (max-width: 640px) {
    .prm .titl {
        padding: 28px 14px
    }

    .prm .titl-h1 {
        font-size: 31px
    }

    .prm .titl-theses li {
        font-size: 15px
    }

    .prm .belong-inner {
        padding: 0 14px
    }

    .prm .proof-inner {
        padding: 0 14px
    }

    .prm .value-inner {
        padding: 0 14px
    }

    .prm .value {
        padding: 56px 0
    }

    .prm .belong {
        padding: 56px 0 28px
    }

    .prm .proof {
        padding: 56px 0 28px
    }
}

@media (min-width: 769px) {
    .prm .belong-img-box {
        transition: none
    }
}

.ctus {
    background: #F6FAFA;
    overflow-x: clip
}

.ctus .pg-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 28px
}

.ctus .title-band {
    background: linear-gradient(160deg, #181822 0%, #181822 55%, #00DBA9 100%);
    padding: 96px 28px 56px;
    position: relative
}

.ctus .title-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(#f6fafa0a 1px, transparent 1px), linear-gradient(90deg, #f6fafa0a 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none
}

.ctus .title-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 56px
}

.ctus .title-text {
    flex: 1 1 0
}

.ctus .overline-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: #00DBA9;
    margin-bottom: 14px;
    border-radius: 3px
}

.ctus .pg-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: #F6FAFA;
    margin: 0 0 28px
}

.ctus .pg-h1 .accent-word {
    position: relative;
    display: inline-block
}

.ctus .pg-h1 .accent-word::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: #00DBA9;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline-draw .55s cubic-bezier(0.16, 1, 0.3, 1) .4s forwards;
    border-radius: 3px
}

@keyframes underline-draw {
    to {
        transform: scaleX(1)
    }
}

.ctus .title-sub {
    font-size: 19px;
    line-height: 1.7;
    color: #f6fafab8;
    margin: 0
}

.ctus .title-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
    color: #181822;
    background: #00DBA9;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 2px 5px 18px 0 #00dba917;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .title-link:hover {
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.ctus .wave-div {
    line-height: 0;
    margin-bottom: -2px
}

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

.ctus .form-band {
    background: #F6FAFA;
    padding: 56px 28px
}

.ctus .form-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 56px;
    align-items: start
}

.ctus .form-col {
    background: #fff;
    border-radius: 16px;
    padding: 56px;
    box-shadow: 2px 9px 40px 0 #1818221c
}

.ctus .form-overline {
    display: block;
    width: 28px;
    height: 3px;
    background: #00DBA9;
    margin-bottom: 14px;
    border-radius: 3px
}

.ctus .form-heading {
    font-size: 31px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #181822;
    margin: 0 0 28px
}

.ctus .contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.ctus .field-row {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ctus .field-label {
    font-size: 15px;
    font-weight: 600;
    color: #181822
}

.ctus .field-input {
    background: #F6FAFA;
    border: 1.5px solid #18182224;
    border-radius: 6px;
    padding: 14px;
    font-size: 15px;
    color: #181822;
    outline: none;
    transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box
}

.ctus .field-input::placeholder {
    color: #18182261
}

.ctus .field-input:focus {
    border-color: #00DBA9;
    box-shadow: 2px 3px 2px 0 #00dba914
}

.ctus .radio-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ctus .radio-label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: #181822;
    cursor: pointer;
    padding: 14px;
    border-radius: 6px;
    border: 1.5px solid #18182224;
    background: #F6FAFA;
    transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), background .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .radio-label:hover {
    border-color: #00DBA9;
    background: #00dba90f
}

.ctus .radio-label input[type="radio"] {
    accent-color: #00DBA9;
    width: 18px;
    height: 18px;
    cursor: pointer
}

.ctus .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px
}

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

.ctus .privacy-text {
    font-size: 15px;
    line-height: 1.7;
    color: #181822b8
}

.ctus .privacy-text a {
    color: #181822;
    text-decoration: underline
}

.ctus .submit-btn {
    background: linear-gradient(160deg, #00DBA9 0%, #00c49a 100%);
    color: #181822;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 2px 5px 18px 0 #00dba917;
    position: relative;
    overflow: hidden;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .submit-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -100%;
    width: 100%;
    height: 100%;
    background: #1818221a;
    transition: bottom .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ctus .submit-btn:hover::before {
    bottom: 0
}

.ctus .submit-btn:hover {
    box-shadow: 2px 9px 40px 0 #00dba91c
}

.ctus .submit-btn:focus {
    outline: 2px solid #181822;
    outline-offset: 2px
}

.ctus .info-col {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.ctus .info-card {
    background: #181822;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 2px 5px 18px 0 #18182217
}

.ctus .info-card-label {
    font-size: 15px;
    font-weight: 600;
    color: #00DBA9;
    margin: 0 0 14px;
    letter-spacing: .06em;
    text-transform: uppercase
}

.ctus .info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f6fafa14
}

.ctus .info-item:last-child {
    border-bottom: none;
    padding-bottom: 0
}

.ctus .info-icon {
    width: 36px;
    height: 36px;
    background: #00dba924;
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #00DBA9;
    font-size: 19px
}

.ctus .info-detail {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ctus .info-detail-label {
    font-size: 15px;
    color: #f6fafa80
}

.ctus .info-detail-val {
    font-size: 15px;
    color: #F6FAFA;
    font-weight: 600
}

.ctus .info-detail-val a {
    color: #F6FAFA;
    text-decoration: none
}

.ctus .info-detail-val a:hover {
    color: #00DBA9
}

.ctus .steps-band {
    background: #181822;
    padding: 96px 28px;
    position: relative
}

.ctus .steps-arrow {
    position: absolute;
    top: 28px;
    right: 56px;
    opacity: .12;
    pointer-events: none
}

.ctus .steps-inner {
    max-width: 1400px;
    margin: 0 auto
}

.ctus .steps-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 56px;
    gap: 28px
}

.ctus .steps-head-block {
    flex: 1 1 0
}

.ctus .steps-overline {
    display: block;
    width: 28px;
    height: 3px;
    background: #00DBA9;
    margin-bottom: 14px;
    border-radius: 3px
}

.ctus .steps-heading {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #F6FAFA;
    margin: 0
}

.ctus .steps-desc {
    font-size: 19px;
    line-height: 1.7;
    color: #f6fafa99;
    margin: 0;
    max-width: 380px
}

.ctus .steps-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative
}

.ctus .step-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    position: relative
}

.ctus .step-item::after {
    content: '';
    position: absolute;
    top: 42px;
    right: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, #00DBA9 0%, #00dba933 100%)
}

.ctus .step-item:last-child::after {
    display: none
}

.ctus .step-item::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 0;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, #00dba933 0%, #00DBA9 100%)
}

.ctus .step-item:first-child::before {
    display: none
}

.ctus .step-num {
    width: 42px;
    height: 42px;
    background: #00dba91f;
    border: 1.5px solid #00DBA9;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 700;
    color: #00DBA9;
    position: relative;
    z-index: 1
}

.ctus .step-title {
    font-size: 19px;
    font-weight: 700;
    color: #F6FAFA;
    margin: 0
}

.ctus .step-text {
    font-size: 15px;
    line-height: 1.7;
    color: #f6fafa99;
    margin: 0
}

.ctus .wave-div2 {
    line-height: 0;
    margin-top: -2px
}

.ctus .wave-div2 svg {
    display: block;
    width: 100%
}

@keyframes row-appear {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

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

.ctus .anim-row {
    animation: row-appear .55s cubic-bezier(0.16, 1, 0.3, 1) both
}

.ctus .anim-row:nth-child(1) {
    animation-delay: .05s
}

.ctus .anim-row:nth-child(2) {
    animation-delay: .15s
}

.ctus .anim-row:nth-child(3) {
    animation-delay: .25s
}

.ctus .anim-row:nth-child(4) {
    animation-delay: .35s
}

@media (max-width: 1024px) {
    .ctus .form-layout {
        grid-template-columns: 1fr
    }

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

    .ctus .step-item:nth-child(2)::after {
        display: none
    }

    .ctus .step-item:nth-child(3)::before {
        display: none
    }
}

@media (max-width: 768px) {
    .ctus .pg-h1 {
        font-size: 41px
    }

    .ctus .title-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px
    }

    .ctus .form-col {
        padding: 28px
    }

    .ctus .steps-top {
        flex-direction: column;
        align-items: flex-start
    }

    .ctus .steps-heading {
        font-size: 31px
    }
}

@media (max-width: 640px) {
    .ctus .steps-list {
        grid-template-columns: 1fr
    }

    .ctus .step-item::after,
    .ctus .step-item::before {
        display: none
    }

    .ctus .pg-h1 {
        font-size: 31px
    }

    .ctus .title-band {
        padding: 56px 14px 28px
    }

    .ctus .form-band {
        padding: 28px 14px
    }

    .ctus .steps-band {
        padding: 56px 14px
    }
}

.success-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 96px 28px;
    background: #F6FAFA
}

.success-page .success-card {
    background: #fff;
    border-radius: 16px;
    padding: 56px;
    max-width: 560px;
    width: 100%;
    box-shadow: 2px 9px 40px 0 #1818221c;
    text-align: center
}

.success-page .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    background: linear-gradient(135deg, #181822 0%, #00DBA9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px
}

.success-page .icon-wrap svg {
    display: block
}

.success-page .success-label {
    font-size: 15px;
    letter-spacing: .08em;
    color: #00DBA9;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block
}

.success-page .success-heading {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: -.02em;
    color: #181822;
    margin: 0 0 14px
}

.success-page .success-text {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a4a;
    margin: 0 0 28px
}

.success-page .divider {
    width: 48px;
    height: 3px;
    background: #00DBA9;
    border-radius: 3px;
    margin: 0 auto 28px
}

.success-page .success-note {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5a6e;
    margin: 0 0 56px
}

.success-page .back-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #F6FAFA;
    background: linear-gradient(160deg, #181822 0%, #00DBA9 100%);
    border-radius: 10px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 2px 5px 18px 0 #00dba917;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), opacity .35s ease-in-out
}

.success-page .back-btn:hover {
    box-shadow: 2px 9px 40px 0 #00dba91c;
    opacity: .88
}

.success-page .back-btn:focus {
    outline: 2px solid #00DBA9;
    outline-offset: 3px
}

@media (max-width: 640px) {
    .success-page {
        padding: 56px 14px
    }

    .success-page .success-card {
        padding: 28px 14px
    }

    .success-page .success-heading {
        font-size: 31px
    }
}