*,
::before,
::after {
    box-sizing: border-box
}

body {
    margin: 0;
    min-height: 100svh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Serif', serif;
    background: #FFF;
    color: #282828;
    font-size: 18px;
    line-height: 1.6
}

.top-bar {
    background: linear-gradient(135deg, #f7655d0a 0%, #3448ec0a 100%);
    border-bottom: 1px solid #28282814;
    padding: 12px 0
}

.top-bar__shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.top-bar__contact {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #282828;
    text-decoration: none;
    transition: color .22s ease-out
}

.top-bar__item:hover {
    color: #F7655D
}

.top-bar__item:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.top-bar__icon {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.top-bar__social {
    display: flex;
    gap: 12px
}

.top-bar__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF;
    border-radius: 48px;
    color: #282828;
    text-decoration: none;
    transition: background .25s ease-out, color .25s ease-out, box-shadow .25s ease-out;
    box-shadow: 0 3px 5px 0 #28282814
}

.top-bar__social-link:hover {
    background: #F7655D;
    color: #FFF;
    box-shadow: 0 4px 28px 0 #f7655d17
}

.top-bar__social-link:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.hdr {
    background: #FFF;
    position: relative;
    z-index: 100
}

.hdr__shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 24px 24px 0
}

.hdr__brand-hold {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f7655d26;
    margin-bottom: 24px
}

.hdr__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding-right: 36px
}

.hdr__brand::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 72px;
    background: linear-gradient(180deg, #F7655D 0%, #3448EC 100%);
    border-radius: 6px
}

.hdr__brand:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.hdr__logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    background: #FFF;
    padding: 8px;
    border-radius: 18px;
    box-shadow: 0 4px 28px 0 #28282817;
    border: 2px solid #3448ec1f
}

.hdr__brand-txt {
    font-size: 24px;
    font-weight: 700;
    color: #282828;
    line-height: 1.2;
    letter-spacing: 0
}

.hdr__tagline {
    font-size: 16px;
    color: #F7655D;
    margin-top: 4px;
    font-weight: 400
}

.hdr__nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    padding-bottom: 24px;
    flex-wrap: wrap
}

.hdr__menu {
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap
}

.hdr__menu-item {
    margin: 0
}

.hdr__menu-link {
    display: block;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 400;
    color: #282828;
    text-decoration: none;
    border-radius: 6px;
    transition: background .28s ease-out, color .28s ease-out, box-shadow .28s ease-out;
    position: relative;
    overflow: hidden
}

.hdr__menu-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #F7655D;
    transition: width .32s ease-out
}

.hdr__menu-link:hover {
    background: #f7655d0f;
    color: #F7655D
}

.hdr__menu-link:hover::before {
    width: 80%
}

.hdr__menu-link:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.hdr__cta {
    display: inline-block;
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF;
    background: linear-gradient(135deg, #F7655D 0%, #3448EC 100%);
    text-decoration: none;
    border-radius: 48px;
    transition: box-shadow .35s ease-out, transform .35s ease-out;
    box-shadow: 0 4px 28px 0 #f7655d17;
    position: relative;
    overflow: hidden
}

.hdr__cta::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 2px solid #fff0;
    border-radius: 48px;
    transition: border-color .35s ease-out;
    pointer-events: none
}

.hdr__cta:hover {
    box-shadow: 0 12px 44px 0 #f7655d1c;
    transform: translateY(-2px)
}

.hdr__cta:hover::after {
    border-color: #fff9
}

.hdr__cta:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.ftr {
    background: linear-gradient(180deg, #f7655d05 0%, #3448ec08 100%);
    border-top: 1px solid #28282814;
    padding: 72px 0 24px;
    margin-top: 72px
}

.ftr__shell {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px
}

.ftr__brand-zone {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 36px;
    margin-bottom: 36px;
    border-bottom: 2px solid #f7655d26
}

.ftr__brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    padding-right: 36px
}

.ftr__brand::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 72px;
    background: linear-gradient(180deg, #3448EC 0%, #F7655D 100%);
    border-radius: 6px
}

.ftr__brand:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.ftr__logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    background: #FFF;
    padding: 8px;
    border-radius: 18px;
    box-shadow: 0 4px 28px 0 #28282817;
    border: 2px solid #f7655d1f
}

.ftr__brand-txt {
    font-size: 24px;
    font-weight: 700;
    color: #282828;
    line-height: 1.2
}

.ftr__brand-desc {
    font-size: 16px;
    color: #F7655D;
    margin-top: 4px
}

.ftr__cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    margin-bottom: 36px
}

.ftr__col-head {
    font-size: 18px;
    font-weight: 700;
    color: #282828;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #3448ec26
}

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

.ftr__contact-item {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px
}

.ftr__contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px
}

.ftr__contact-link {
    color: #282828;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    transition: color .24s ease-out
}

.ftr__contact-link:hover {
    color: #F7655D
}

.ftr__contact-link:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.ftr__contact-txt {
    color: #282828;
    font-size: 16px;
    line-height: 1.6;
    margin: 0
}

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

.ftr__nav-item {
    margin-bottom: 8px
}

.ftr__nav-link {
    display: inline-block;
    padding: 8px 0;
    font-size: 16px;
    color: #282828;
    text-decoration: none;
    transition: color .26s ease-out, padding-left .26s ease-out;
    position: relative
}

.ftr__nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #F7655D;
    transition: width .26s ease-out
}

.ftr__nav-link:hover {
    color: #F7655D;
    padding-left: 16px
}

.ftr__nav-link:hover::before {
    width: 12px
}

.ftr__nav-link:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.ftr__bottom {
    padding-top: 24px;
    border-top: 1px solid #28282814;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap
}

.ftr__copy {
    font-size: 16px;
    color: #282828b3;
    margin: 0
}

.ftr__legal-list {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap
}

.ftr__legal-item {
    margin: 0
}

.ftr__legal-link {
    font-size: 16px;
    color: #282828;
    text-decoration: none;
    transition: color .22s ease-out
}

.ftr__legal-link:hover {
    color: #3448EC;
    text-decoration: underline
}

.ftr__legal-link:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.consent-banner {
    position: fixed;
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 880px;
    background: #FFF;
    border-radius: 18px;
    box-shadow: 0 12px 44px 0 #2828281c;
    padding: 24px 36px;
    z-index: 1000;
    border: 2px solid #3448ec1f;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .38s ease-out, transform .38s ease-out
}

.consent-banner.visible {
    opacity: 1;
    transform: translateY(0)
}

.consent-banner__txt {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    margin: 0 0 24px
}

.consent-banner__actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.consent-banner__btn {
    padding: 12px 36px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 48px;
    transition: background .3s ease-out, color .3s ease-out, box-shadow .3s ease-out;
    font-family: 'Noto Serif', serif
}

.consent-banner__btn.primary {
    background: linear-gradient(135deg, #F7655D 0%, #3448EC 100%);
    color: #FFF;
    box-shadow: 0 4px 28px 0 #f7655d17
}

.consent-banner__btn.primary:hover {
    box-shadow: 0 12px 44px 0 #f7655d1c;
    transform: translateY(-2px)
}

.consent-banner__btn.secondary {
    color: #282828;
    text-decoration: underline
}

.consent-banner__btn.secondary:hover {
    color: #F7655D
}

.consent-banner__btn:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.consent-banner__settings-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 16px;
    color: #3448EC;
    text-decoration: underline;
    cursor: pointer;
    transition: color .24s ease-out
}

.consent-banner__settings-link:hover {
    color: #F7655D
}

.consent-banner__settings-link:focus {
    outline: none;
    border-bottom: 4px solid #3448EC
}

.consent-banner__panel {
    display: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #28282814
}

.consent-banner__panel.active {
    display: block
}

.consent-banner__option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px
}

.consent-banner__checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer
}

.consent-banner__label {
    font-size: 16px;
    color: #282828;
    cursor: pointer
}

@media (max-width: 1024px) {
    .hdr__shell {
        padding: 24px 12px 0
    }

    .hdr__brand-hold {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }

    .hdr__brand::after {
        display: none
    }

    .hdr__nav-row {
        flex-direction: column;
        align-items: stretch
    }

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

    .hdr__menu-link {
        padding: 12px
    }

    .hdr__cta {
        text-align: center
    }

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

    .ftr__cols {
        grid-template-columns: 1fr
    }

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

    .consent-banner {
        max-width: calc(100% - 24px);
        left: 12px;
        right: 12px;
        margin: 0
    }
}

@media (max-width: 640px) {
    .hdr__logo {
        width: 72px;
        height: 72px
    }

    .hdr__brand-txt {
        font-size: 18px
    }

    .hdr__tagline {
        font-size: 16px
    }

    .ftr__logo {
        width: 72px;
        height: 72px
    }

    .ftr__brand-txt {
        font-size: 18px
    }

    .consent-banner__actions {
        flex-direction: column
    }

    .consent-banner__btn {
        width: 100%
    }
}

@media (max-width: 360px) {
    body {
        font-size: 16px
    }

    .hdr__shell {
        padding: 12px 8px 0
    }

    .hdr__menu-link {
        font-size: 16px
    }

    .top-bar {
        padding: 8px 0
    }

    .top-bar__shell {
        padding: 0 12px
    }

    .ftr__shell {
        padding: 0 12px
    }

    .consent-banner {
        padding: 12px 24px
    }
}

.content-doc {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px
}

.content-doc p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #282828
}

.content-doc p:last-child {
    margin-bottom: 0
}

.content-doc strong,
.content-doc b {
    font-weight: 600;
    color: #282828
}

.content-doc ul,
.content-doc ol {
    margin-bottom: 24px;
    padding-left: 36px
}

.content-doc ul li,
.content-doc ol li {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 12px;
    color: #282828
}

.content-doc ul li:last-child,
.content-doc ol li:last-child {
    margin-bottom: 0
}

.content-doc ul {
    list-style-type: disc
}

.content-doc ol {
    list-style-type: decimal
}

.content-doc table {
    width: 100%;
    margin-bottom: 36px;
    border-collapse: collapse;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 5px 0 #28282814
}

.content-doc thead {
    background-color: #282828
}

.content-doc thead th {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 24px;
    text-align: left
}

.content-doc tbody tr {
    border-bottom: 1px solid #2828281a;
    transition: background-color .2s ease-out
}

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

.content-doc tbody tr:hover {
    background-color: #28282805
}

.content-doc tbody td {
    font-size: 18px;
    line-height: 1.6;
    padding: 24px;
    color: #282828
}

.content-doc hr {
    border: none;
    height: 1px;
    background-color: #28282826;
    margin: 36px 0
}

.content-doc div {
    margin-bottom: 24px
}

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

    .content-doc p,
    .content-doc ul li,
    .content-doc ol li,
    .content-doc tbody td {
        font-size: 16px
    }

    .content-doc thead th {
        font-size: 16px;
        padding: 12px
    }

    .content-doc tbody td {
        padding: 12px
    }

    .content-doc ul,
    .content-doc ol {
        padding-left: 24px
    }

    .content-doc table {
        display: block;
        overflow-x: auto
    }
}

.nws-dtl {
    background: #fff;
    color: #282828;
    max-width: 100%;
    overflow-x: clip
}

.nws-dtl__head {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    gap: 36px;
    overflow: hidden
}

.nws-dtl__head::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, #28282808 1px, transparent 1px), linear-gradient(0deg, #28282808 1px, transparent 1px);
    background-size: 48px 48px;
    opacity: .4;
    pointer-events: none;
    z-index: 0
}

.nws-dtl__head-txt {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    z-index: 1;
    animation: nws-dtl-slide-in .38s ease-out
}

@keyframes nws-dtl-slide-in {
    from {
        opacity: 0;
        transform: translateX(120px)
    }

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

.nws-dtl__tag {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #F7655D 0%, #3448EC 100%);
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .02em;
    border-radius: 48px;
    width: fit-content;
    font-weight: 600
}

.nws-dtl__h1 {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 700;
    color: #282828;
    margin: 0
}

.nws-dtl__h1-num {
    color: #F7655D;
    font-weight: 800
}

.nws-dtl__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #282828;
    opacity: .75;
    margin: 0
}

.nws-dtl__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 36px;
    margin-top: 12px
}

.nws-dtl__author {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    font-weight: 600
}

.nws-dtl__like {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #F7655D;
    font-weight: 600
}

.nws-dtl__like-icon {
    width: 20px;
    height: 20px;
    fill: #F7655D
}

.nws-dtl__head-img-wrap {
    position: relative;
    width: 380px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    z-index: 1
}

.nws-dtl__head-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f7655da6 0%, #3448eca6 100%);
    z-index: 1;
    pointer-events: none
}

.nws-dtl__head-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 16/9
}

@media (max-width: 1024px) {
    .nws-dtl__head {
        flex-direction: column;
        padding: 36px 24px
    }

    .nws-dtl__head-img-wrap {
        width: 100%
    }

    .nws-dtl__h1 {
        font-size: 48px
    }
}

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

    .nws-dtl__h1 {
        font-size: 36px
    }

    .nws-dtl__meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

.nws-dtl__body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    background: #fff
}

.nws-dtl__content {
    max-width: 820px;
    margin: 0 auto
}

.nws-dtl__content p {
    font-size: 18px;
    line-height: 1.9;
    color: #282828;
    margin: 0 0 24px
}

.nws-dtl__content h2 {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 700;
    color: #282828;
    margin: 72px 0 24px;
    text-transform: uppercase;
    letter-spacing: .01em
}

.nws-dtl__content h3 {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    color: #282828;
    margin: 36px 0 24px;
    text-transform: uppercase;
    letter-spacing: .01em
}

.nws-dtl__content mark {
    background: linear-gradient(135deg, #f7655d26 0%, #3448ec26 100%);
    color: #282828;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 600
}

.nws-dtl__content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

.nws-dtl__content li {
    font-size: 18px;
    line-height: 1.9;
    color: #282828;
    margin: 0 0 12px;
    padding-left: 36px;
    position: relative
}

.nws-dtl__content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #F7655D;
    border-radius: 48px
}

.nws-dtl__content blockquote {
    margin: 36px 0;
    padding: 24px 36px;
    border-left: none;
    background: #f7655d0d;
    border-radius: 18px;
    position: relative;
    box-shadow: 0 3px 5px 0 #f7655d14
}

.nws-dtl__content blockquote::before {
    content: '"';
    position: absolute;
    top: -24px;
    left: 24px;
    font-size: 120px;
    line-height: 1;
    color: #F7655D;
    opacity: .2;
    font-weight: 700
}

.nws-dtl__content blockquote p {
    font-size: 18px;
    line-height: 1.9;
    color: #282828;
    margin: 0;
    font-style: italic
}

.nws-dtl__content cite {
    display: block;
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #F7655D;
    font-style: normal;
    font-weight: 600
}

.nws-dtl__content details {
    margin: 24px 0;
    padding: 24px;
    background: #fff;
    border: 2px solid #3448ec26;
    border-radius: 18px;
    transition: border-color .27s ease-out, box-shadow .27s ease-out
}

.nws-dtl__content details:hover {
    border-color: #3448ec59;
    box-shadow: 0 4px 28px 0 #3448ec17
}

.nws-dtl__content details[open] {
    border-color: #3448EC;
    box-shadow: 0 4px 28px 0 #3448ec17
}

.nws-dtl__content summary {
    font-size: 18px;
    line-height: 1.6;
    color: #282828;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    text-transform: uppercase;
    letter-spacing: .01em;
    transition: color .22s ease-out
}

.nws-dtl__content summary::-webkit-details-marker {
    display: none
}

.nws-dtl__content summary:hover {
    color: #3448EC
}

.nws-dtl__content details[open] summary {
    margin-bottom: 24px;
    color: #3448EC
}

.nws-dtl__content a {
    color: #3448EC;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    transition: color .22s ease-out
}

.nws-dtl__content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3448EC;
    opacity: .5;
    border-radius: 48px;
    transition: opacity .22s ease-out
}

.nws-dtl__content a:hover {
    color: #F7655D
}

.nws-dtl__content a:hover::after {
    background: #F7655D;
    opacity: 1
}

@media (max-width: 640px) {
    .nws-dtl__body {
        padding: 36px 12px
    }

    .nws-dtl__content p,
    .nws-dtl__content li {
        font-size: 16px
    }

    .nws-dtl__content h2 {
        margin: 36px 0 24px
    }
}

.nws-dtl__metrics {
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    background: radial-gradient(ellipse at 50% 50%, #f7655d14 0%, #3448ec14 100%);
    overflow: hidden
}

.nws-dtl__metrics::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 24px, #f7655d08 24px, #f7655d08 48px);
    opacity: .3;
    pointer-events: none;
    animation: nws-dtl-pattern-float 18s linear infinite
}

@keyframes nws-dtl-pattern-float {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

.nws-dtl__metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    position: relative;
    z-index: 1
}

.nws-dtl__metric-card {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 3px 5px 0 #f7655d14;
    transition: transform .32s ease-out, box-shadow .32s ease-out;
    position: relative;
    overflow: hidden
}

.nws-dtl__metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F7655D 0%, #3448EC 100%);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .38s ease-out
}

.nws-dtl__metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 44px 0 #f7655d1c
}

.nws-dtl__metric-card:hover::before {
    transform: scaleY(1);
    transform-origin: top
}

.nws-dtl__metric-num {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 800;
    color: #F7655D;
    margin: 0 0 12px;
    display: block
}

.nws-dtl__metric-label {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin: 0
}

.nws-dtl__metric-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    opacity: .65;
    margin: 8px 0 0
}

@media (max-width: 640px) {
    .nws-dtl__metrics {
        padding: 36px 12px
    }

    .nws-dtl__metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .nws-dtl__metric-card {
        padding: 24px
    }

    .nws-dtl__metric-num {
        font-size: 62px
    }
}

.nws-dtl__divider {
    max-width: 100%;
    height: 48px;
    margin: 0;
    padding: 0;
    overflow: visible
}

.nws-dtl__divider-svg {
    width: 100%;
    height: 100%;
    display: block
}

.abt-pg {
    background: #fff;
    color: #282828;
    overflow-x: clip
}

.abt-pg__title-hero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 36px;
    align-items: center;
    position: relative
}

.abt-pg__title-hero::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #F7655D 0%, #3448EC 100%);
    opacity: .06;
    pointer-events: none;
    z-index: 0
}

.abt-pg__title-hero::after {
    content: '';
    position: absolute;
    bottom: 36px;
    left: 72px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, #3448EC 0%, #F7655D 100%);
    opacity: .04;
    pointer-events: none;
    z-index: 0
}

.abt-pg__img-card {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #28282817
}

.abt-pg__img-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9
}

.abt-pg__txt-zone {
    position: relative;
    z-index: 1
}

.abt-pg__main-heading {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #282828
}

.abt-pg__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #3448EC;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    transition: background .27s ease-out, box-shadow .27s ease-out;
    box-shadow: 0 3px 5px 0 #28282814;
    position: relative
}

.abt-pg__cta-link::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 1px solid #fff0;
    border-radius: 6px;
    transition: border-color .27s ease-out;
    pointer-events: none
}

.abt-pg__cta-link:hover {
    background: #2838cc;
    box-shadow: 0 4px 28px 0 #3448ec17
}

.abt-pg__cta-link:hover::before {
    border-color: #ffffff4d
}

.abt-pg__cta-arrow {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.abt-pg__metrics-zone {
    background: #1a1a1c;
    padding: 72px 24px;
    position: relative;
    overflow: hidden
}

.abt-pg__metrics-zone::before {
    content: '';
    position: absolute;
    top: 0;
    right: 12%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #f7655d26 50%, transparent 100%);
    transform: rotate(12deg);
    pointer-events: none
}

.abt-pg__metrics-zone::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28%;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #3448ec1f 50%, transparent 100%);
    transform: rotate(-8deg);
    pointer-events: none
}

.abt-pg__metrics-contain {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt-pg__metrics-header {
    font-size: 72px;
    line-height: 1.2;
    margin: 0 0 72px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
    text-align: center
}

.abt-pg__metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px
}

.abt-pg__metric-box {
    background: #ffffff08;
    border: 1px solid #ffffff14;
    border-radius: 18px;
    padding: 36px 24px;
    text-align: center;
    transition: transform .32s ease-out, box-shadow .32s ease-out, border-color .32s ease-out;
    position: relative;
    animation: metric-reveal .45s ease-out backwards
}

.abt-pg__metric-box:nth-child(1) {
    animation-delay: .1s
}

.abt-pg__metric-box:nth-child(2) {
    animation-delay: .2s
}

.abt-pg__metric-box:nth-child(3) {
    animation-delay: .3s
}

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

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.abt-pg__metric-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 44px 0 #f7655d1c;
    border-color: #f7655d33
}

.abt-pg__metric-val {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 700;
    color: #F7655D;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.abt-pg__trend-arrow {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: #3448EC;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.abt-pg__metric-label {
    font-size: 18px;
    line-height: 1.6;
    color: #fffc;
    margin: 0
}

.abt-pg__story-zone {
    padding: 72px 24px;
    background: #fff;
    position: relative
}

.abt-pg__story-contain {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: start
}

.abt-pg__story-txt {
    max-width: 680px
}

.abt-pg__story-heading {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 36px;
    font-weight: 700;
    color: #282828
}

.abt-pg__story-p {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #282828
}

.abt-pg__story-p:last-child {
    margin-bottom: 0
}

.abt-pg__story-accent {
    font-weight: 700;
    color: #F7655D
}

.abt-pg__story-link {
    color: #3448EC;
    text-decoration: none;
    position: relative;
    transition: color .22s ease-out
}

.abt-pg__story-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 1px;
    background: currentColor;
    transform: scaleY(1);
    transition: transform .22s ease-out
}

.abt-pg__story-link:hover {
    color: #1e2cbc
}

.abt-pg__story-link:hover::after {
    transform: scaleY(2)
}

.abt-pg__story-visuals {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px
}

.abt-pg__story-img-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #28282817;
    position: relative;
    transition: box-shadow .35s ease-out
}

.abt-pg__story-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #28282800 70%);
    opacity: 0;
    transition: opacity .35s ease-out;
    pointer-events: none;
    z-index: 1
}

.abt-pg__story-img-wrap:hover::before {
    opacity: 1;
    background: radial-gradient(ellipse at center, transparent 40%, #28282866 70%)
}

.abt-pg__story-img-wrap:hover {
    box-shadow: 0 12px 44px 0 #f7655d1c
}

.abt-pg__story-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform .35s ease-out
}

.abt-pg__story-img-wrap:hover img {
    transform: scale(1.02)
}

.abt-pg__team-zone {
    padding: 72px 24px;
    background: linear-gradient(180deg, #f9f9fb 0%, #fff 100%);
    position: relative
}

.abt-pg__team-contain {
    max-width: 1320px;
    margin: 0 auto
}

.abt-pg__team-heading {
    font-size: 72px;
    line-height: 1.2;
    margin: 0 0 72px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #282828;
    text-align: center
}

.abt-pg__team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px
}

.abt-pg__person-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 5px 0 #28282814;
    transition: transform .28s ease-out, box-shadow .28s ease-out;
    position: relative;
    animation: person-reveal .4s ease-out backwards
}

.abt-pg__person-card:nth-child(1) {
    animation-delay: .08s
}

.abt-pg__person-card:nth-child(2) {
    animation-delay: .16s
}

.abt-pg__person-card:nth-child(3) {
    animation-delay: .24s
}

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

    to {
        clip-path: inset(0 0 0 0);
        opacity: 1
    }
}

.abt-pg__person-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 44px 0 #3448ec1c
}

.abt-pg__person-img-zone {
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #F7655D
}

.abt-pg__person-img-zone img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9
}

.abt-pg__person-info {
    padding: 24px
}

.abt-pg__person-name {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 700;
    color: #282828
}

.abt-pg__person-role {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #3448EC;
    font-weight: 600
}

.abt-pg__person-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #282828
}

.abt-pg__divider-svg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 48px;
    fill: #fff;
    pointer-events: none
}

@media (max-width: 1024px) {
    .abt-pg__title-hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 48px 24px
    }

    .abt-pg__main-heading {
        font-size: 48px
    }

    .abt-pg__metrics-header,
    .abt-pg__team-heading {
        font-size: 48px;
        margin-bottom: 48px
    }

    .abt-pg__story-contain {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .abt-pg__story-heading {
        font-size: 48px
    }

    .abt-pg__metrics-grid,
    .abt-pg__team-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 640px) {
    .abt-pg__title-hero {
        padding: 36px 12px
    }

    .abt-pg__main-heading {
        font-size: 36px;
        margin-bottom: 24px
    }

    .abt-pg__metrics-zone,
    .abt-pg__story-zone,
    .abt-pg__team-zone {
        padding: 48px 12px
    }

    .abt-pg__metrics-header,
    .abt-pg__team-heading {
        font-size: 36px;
        margin-bottom: 36px
    }

    .abt-pg__story-heading {
        font-size: 36px;
        margin-bottom: 24px
    }

    .abt-pg__metric-val {
        font-size: 48px
    }

    .abt-pg__trend-arrow {
        width: 24px;
        height: 24px
    }

    .abt-pg__metrics-grid,
    .abt-pg__team-grid {
        gap: 24px
    }

    .abt-pg__story-visuals {
        gap: 12px
    }
}

@media (max-width: 360px) {
    .abt-pg__main-heading {
        font-size: 24px
    }

    .abt-pg__metrics-header,
    .abt-pg__team-heading,
    .abt-pg__story-heading {
        font-size: 24px
    }

    .abt-pg__metric-val {
        font-size: 36px
    }

    .abt-pg__cta-link {
        padding: 12px 24px;
        font-size: 16px
    }
}

.srvc {
    background: #fff;
    color: #282828;
    overflow-x: clip
}

.srvc__hero {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: center;
    position: relative
}

.srvc__hero-img-zone {
    padding: 36px 24px;
    position: relative
}

.srvc__hero-img-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #f7655d1f, #3448ec14);
    border-radius: 18px;
    z-index: 1
}

.srvc__hero-visual {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    filter: saturate(0.85) brightness(1.05) hue-rotate(-8deg);
    box-shadow: 0 12px 44px 0 #f7655d1c;
    position: relative;
    z-index: 2;
    transition: transform .38s ease-out, box-shadow .38s ease-out
}

.srvc__hero-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 52px 0 #f7655d26
}

.srvc__hero-txt-zone {
    padding: 24px 36px 24px 12px
}

.srvc__hero-label {
    font-size: 16px;
    line-height: 1.6;
    color: #F7655D;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 12px
}

.srvc__hero-h {
    font-size: 72px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700;
    color: #282828
}

.srvc__hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 36px;
    color: #282828;
    max-width: 580px
}

.srvc__hero-link {
    display: inline-block;
    font-size: 16px;
    line-height: 1.6;
    color: #3448EC;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
    transition: color .22s ease-out
}

.srvc__hero-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #3448EC;
    clip-path: path('M0,1 Q25,0 50,1 T100,1');
    transition: background .22s ease-out
}

.srvc__hero-link:hover {
    color: #F7655D
}

.srvc__hero-link:hover::after {
    background: #F7655D
}

.srvc__hero-decor {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 240px;
    line-height: 1;
    font-weight: 700;
    color: #3448ec0a;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.srvc__divider-wave {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    height: 24px;
    position: relative
}

.srvc__divider-wave::before,
.srvc__divider-wave::after {
    content: '';
    position: absolute;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #282828;
    opacity: .08
}

.srvc__divider-wave::before {
    top: 8px;
    clip-path: path('M0,1 Q50,0 100,1 T200,1 T300,1 T400,1 T500,1 T600,1 T700,1 T800,1 T900,1 T1000,1 T1100,1 T1200,1')
}

.srvc__divider-wave::after {
    top: 16px;
    clip-path: path('M0,1 Q50,2 100,1 T200,1 T300,1 T400,1 T500,1 T600,1 T700,1 T800,1 T900,1 T1000,1 T1100,1 T1200,1')
}

.srvc__metrics {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    background: linear-gradient(180deg, #f7655d0a 0%, #fff0 100%);
    position: relative
}

.srvc__metrics-abbr {
    position: absolute;
    top: 36px;
    left: 24px;
    font-size: 320px;
    line-height: 1;
    font-weight: 700;
    color: #f7655d0f;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.srvc__metrics-top {
    background: #F7655D;
    padding: 24px 36px;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 4px 28px 0 #f7655d17;
    position: relative;
    z-index: 1
}

.srvc__metrics-top-h {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase
}

.srvc__metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
    z-index: 1
}

.srvc__metrics-card {
    background: #fff;
    padding: 36px 24px;
    border: 2px solid #f7655d1f;
    border-top: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform .28s ease-out, box-shadow .28s ease-out, border-color .28s ease-out;
    opacity: 0;
    animation: srvc-cascade .45s ease-out forwards
}

.srvc__metrics-card:nth-child(1) {
    animation-delay: .1s;
    border-radius: 0 0 0 18px
}

.srvc__metrics-card:nth-child(2) {
    animation-delay: .2s
}

.srvc__metrics-card:nth-child(3) {
    animation-delay: .3s;
    border-radius: 0 0 18px 0
}

@keyframes srvc-cascade {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.srvc__metrics-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 44px 0 #f7655d1c;
    border-color: #f7655d3d
}

.srvc__metrics-shape {
    width: 120px;
    height: 120px;
    border: 6px solid #3448EC;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
    position: relative;
    transition: border-color .32s ease-out
}

.srvc__metrics-card:hover .srvc__metrics-shape {
    border-color: #F7655D
}

.srvc__metrics-num {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 700;
    color: #282828;
    margin: 0
}

.srvc__metrics-label {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    margin: 0;
    font-weight: 700;
    text-transform: uppercase
}

.srvc__indicators {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    position: relative
}

.srvc__indicators-h {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 36px;
    font-weight: 700;
    color: #282828;
    text-align: center
}

.srvc__indicators-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: 0 0 72px
}

.srvc__indicator-circ {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #3448EC;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #282828;
    box-shadow: 0 3px 5px 0 #3448ec14;
    transition: transform .35s ease-out, border-color .35s ease-out, box-shadow .35s ease-out;
    opacity: 0;
    animation: srvc-cascade .42s ease-out forwards
}

.srvc__indicator-circ:nth-child(1) {
    animation-delay: .15s
}

.srvc__indicator-circ:nth-child(2) {
    animation-delay: .25s
}

.srvc__indicator-circ:nth-child(3) {
    animation-delay: .35s
}

.srvc__indicator-circ:nth-child(4) {
    animation-delay: .45s
}

.srvc__indicator-circ:nth-child(5) {
    animation-delay: .55s
}

.srvc__indicator-circ:hover {
    transform: scale(1.12);
    border-color: #F7655D;
    box-shadow: 0 8px 32px 0 #f7655d24
}

.srvc__content-wrap {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 72px;
    align-items: start
}

.srvc__content-txt {
    max-width: 680px
}

.srvc__content-h {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700;
    color: #282828;
    text-transform: uppercase
}

.srvc__content-p {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #282828
}

.srvc__content-p:last-child {
    margin: 0
}

.srvc__content-accent {
    font-weight: 700;
    color: #F7655D
}

.srvc__content-img-zone {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 44px 0 #3448ec1c;
    transition: transform .4s ease-out, box-shadow .4s ease-out
}

.srvc__content-img-zone:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 56px 0 #3448ec26
}

.srvc__content-img-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #3448ec14, #f7655d0a);
    z-index: 1;
    pointer-events: none
}

.srvc__content-visual {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: saturate(0.88) brightness(1.03)
}

@media (max-width: 1024px) {
    .srvc__hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 36px 24px
    }

    .srvc__hero-h {
        font-size: 62px
    }

    .srvc__hero-decor {
        font-size: 180px
    }

    .srvc__metrics-abbr {
        font-size: 240px
    }

    .srvc__metrics-grid {
        grid-template-columns: 1fr;
        gap: 0
    }

    .srvc__metrics-card:nth-child(1) {
        border-radius: 0
    }

    .srvc__metrics-card:nth-child(3) {
        border-radius: 0 0 18px 18px
    }

    .srvc__content-wrap {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .srvc__indicators-row {
        flex-wrap: wrap
    }
}

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

    .srvc__hero-h {
        font-size: 48px
    }

    .srvc__hero-txt-zone {
        padding: 12px
    }

    .srvc__hero-decor {
        font-size: 120px;
        top: 12px;
        right: 12px
    }

    .srvc__metrics {
        padding: 36px 12px
    }

    .srvc__metrics-abbr {
        font-size: 160px
    }

    .srvc__metrics-top {
        padding: 24px
    }

    .srvc__metrics-card {
        padding: 24px 12px
    }

    .srvc__metrics-shape {
        width: 100px;
        height: 100px
    }

    .srvc__metrics-num {
        font-size: 48px
    }

    .srvc__indicators {
        padding: 36px 12px
    }

    .srvc__indicators-h {
        font-size: 48px
    }

    .srvc__indicator-circ {
        width: 60px;
        height: 60px;
        font-size: 18px
    }

    .srvc__indicators-row {
        gap: 12px
    }

    .srvc__content-h {
        font-size: 18px
    }

    .srvc__content-p {
        font-size: 16px
    }
}

@media (max-width: 360px) {
    .srvc__hero-h {
        font-size: 36px
    }

    .srvc__metrics-num {
        font-size: 36px
    }

    .srvc__indicators-h {
        font-size: 36px
    }

    .srvc__indicator-circ {
        width: 50px;
        height: 50px;
        font-size: 16px
    }
}

.nws {
    background: #fff;
    color: #282828;
    overflow-x: clip
}

.nws__title-wrap {
    position: relative;
    padding: 72px 24px;
    overflow: hidden;
    background: linear-gradient(127deg, #F7655D 0%, #3448EC 100%)
}

.nws__title-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #ffffff26 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .3;
    pointer-events: none
}

.nws__title-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center
}

.nws__title-text {
    z-index: 1
}

.nws__title-h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0
}

.nws__title-sub {
    font-size: 24px;
    line-height: 1.6;
    color: #fffffff2;
    margin: 0
}

.nws__title-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 44px 0 #2828281c
}

.nws__title-img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.nws__title-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, #282828d9 0%, transparent 100%);
    pointer-events: none
}

@media (min-width: 1024px) {
    .nws__title-container {
        grid-template-columns: 1fr 1fr
    }

    .nws__title-wrap {
        padding: 72px 36px
    }
}

.nws__posts {
    padding: 72px 24px;
    background: #fff;
    position: relative
}

.nws__posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, #3448ec0a 0%, #f7655d0a 100%);
    pointer-events: none
}

.nws__posts::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 48%, #f7655d05 49%, #f7655d05 51%, transparent 52%), linear-gradient(-45deg, transparent 48%, #3448ec05 49%, #3448ec05 51%, transparent 52%);
    background-size: 48px 48px;
    pointer-events: none
}

.nws__posts-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.nws__posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px
}

@media (min-width: 640px) {
    .nws__posts-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width: 1024px) {
    .nws__posts-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .nws__posts {
        padding: 72px 36px
    }
}

.nws__card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 3px 5px 0 #28282814;
    transition: transform .35s ease-out, box-shadow .35s ease-out;
    display: flex;
    flex-direction: column;
    position: relative
}

.nws__card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #F7655D 0%, #3448EC 100%);
    opacity: 0;
    transition: opacity .25s ease-out
}

.nws__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 44px 0 #2828281c
}

.nws__card:hover::after {
    opacity: 1
}

.nws__card-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative
}

.nws__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease-out
}

.nws__card:hover .nws__card-img {
    transform: scale(1.08)
}

.nws__card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f7655df2;
    color: #fff;
    padding: 4px 12px;
    border-radius: 48px;
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 600
}

.nws__card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.nws__card-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 8px;
    color: #282828;
    font-weight: 600
}

.nws__card-link {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease-out
}

.nws__card-link:hover {
    color: #F7655D
}

.nws__card-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 12px;
    color: #282828;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0
}

.nws__card-desc {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 24px;
    color: #282828;
    flex: 1
}

.nws__card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0 0;
    border-top: 1px solid #2828281a
}

.nws__card-author {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    font-weight: 600
}

.nws__card-likes {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.6;
    color: #282828
}

.nws__card-likes::before {
    content: '';
    width: 18px;
    height: 18px;
    background: #F7655D;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%)
}

.nws__metrics {
    padding: 72px 24px;
    background: #282828;
    position: relative;
    overflow: hidden
}

.nws__metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at 50% 50%, #f7655d26 0%, transparent 70%);
    animation: nws-color-bleed 18s ease-in-out infinite;
    pointer-events: none
}

@keyframes nws-color-bleed {

    0%,
    100% {
        transform: translate(0, 0);
        opacity: .3
    }

    50% {
        transform: translate(25%, 0);
        opacity: .6
    }
}

.nws__metrics::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #0006 100%);
    pointer-events: none
}

.nws__metrics-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.nws__metrics-heading {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 36px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0;
    text-align: center
}

.nws__metrics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px
}

@media (min-width: 640px) {
    .nws__metrics-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (min-width: 1024px) {
    .nws__metrics-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .nws__metrics {
        padding: 72px 36px
    }
}

.nws__metric {
    text-align: center;
    padding: 24px;
    background: #ffffff0d;
    border-radius: 18px;
    transition: background .3s ease-out, transform .3s ease-out
}

.nws__metric:hover {
    background: #ffffff14;
    transform: translateY(-4px)
}

.nws__metric-num {
    font-size: 72px;
    line-height: 1.2;
    color: #F7655D;
    margin: 0 0 8px;
    font-weight: 600
}

.nws__metric-label {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffffe6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 300
}

.nws__split {
    padding: 72px 24px;
    background: #fff
}

.nws__split-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
    align-items: center
}

@media (min-width: 1024px) {
    .nws__split-container {
        grid-template-columns: 60fr 40fr
    }

    .nws__split {
        padding: 72px 36px
    }
}

.nws__split-content {
    padding-right: 0
}

@media (min-width: 1024px) {
    .nws__split-content {
        padding-right: 36px
    }
}

.nws__split-heading {
    font-size: 62px;
    line-height: 1.2;
    color: #282828;
    margin: 0 0 24px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0
}

.nws__split-text {
    font-size: 18px;
    line-height: 1.9;
    color: #282828;
    margin: 0 0 24px
}

.nws__split-text:last-child {
    margin-bottom: 0
}

.nws__split-accent {
    color: #F7655D;
    font-weight: 600
}

.nws__split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 36px;
    background: linear-gradient(127deg, #f7655d14 0%, #3448ec14 100%);
    border-radius: 18px
}

.nws__split-num {
    font-size: 72px;
    line-height: 1.2;
    font-weight: 600;
    color: #282828
}

.nws__split-num.old {
    color: #2828284d;
    text-decoration: line-through
}

.nws__split-num.new {
    color: #F7655D
}

.nws__split-arrow {
    font-size: 62px;
    line-height: 1.2;
    color: #3448EC
}

.nws__timeline {
    padding: 72px 24px;
    background: linear-gradient(127deg, #3448ec0a 0%, #f7655d0a 100%);
    position: relative
}

.nws__timeline-container {
    max-width: 1320px;
    margin: 0 auto
}

.nws__timeline-heading {
    font-size: 62px;
    line-height: 1.2;
    color: #282828;
    margin: 0 0 72px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0
}

.nws__timeline-track {
    position: relative;
    padding: 0 0 0 36px
}

@media (min-width: 1024px) {
    .nws__timeline-track {
        padding: 0
    }

    .nws__timeline {
        padding: 72px 36px
    }
}

.nws__timeline-track::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #F7655D 0%, #3448EC 100%)
}

@media (min-width: 1024px) {
    .nws__timeline-track::before {
        left: 50%;
        transform: translateX(-1px)
    }
}

.nws__timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding-left: 0
}

@media (min-width: 1024px) {
    .nws__timeline-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 72px;
        margin-bottom: 72px
    }

    .nws__timeline-item.right .nws__timeline-dot {
        left: auto;
        right: -18px
    }

    .nws__timeline-item.right .nws__timeline-box {
        grid-column: 2
    }
}

.nws__timeline-dot {
    position: absolute;
    left: 3px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: #F7655D;
    border-radius: 48px;
    border: 4px solid #fff;
    box-shadow: 0 4px 28px 0 #f7655d17;
    z-index: 1
}

@media (min-width: 1024px) {
    .nws__timeline-dot {
        left: 50%;
        transform: translateX(-9px)
    }
}

.nws__timeline-box {
    background: #fff;
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 3px 5px 0 #28282814
}

.nws__timeline-year {
    font-size: 24px;
    line-height: 1.2;
    color: #F7655D;
    margin: 0 0 12px;
    font-weight: 600
}

.nws__timeline-title {
    font-size: 24px;
    line-height: 1.6;
    color: #282828;
    margin: 0 0 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0
}

.nws__timeline-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    margin: 0
}

.nws__cta {
    padding: 72px 24px;
    background: #282828;
    position: relative;
    overflow: hidden
}

.nws__cta-img-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
    animation: nws-pan 60s linear infinite
}

@keyframes nws-pan {
    0% {
        transform: translateX(0)
    }

    50% {
        transform: translateX(-8%)
    }

    100% {
        transform: translateX(0)
    }
}

.nws__cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #0009 100%);
    pointer-events: none
}

.nws__cta-container {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1
}

.nws__cta-heading {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 24px;
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0
}

.nws__cta-text {
    font-size: 24px;
    line-height: 1.6;
    color: #fffffff2;
    margin: 0 0 36px;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto
}

.nws__cta-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #F7655D;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 4px 28px 0 #f7655d17;
    transition: transform .25s ease-out, box-shadow .25s ease-out, background .25s ease-out;
    position: relative;
    border: 2px solid transparent
}

.nws__cta-btn::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #fff;
    border-radius: 6px;
    opacity: 0;
    transition: opacity .25s ease-out
}

.nws__cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 44px 0 #f7655d1c;
    background: #3448EC
}

.nws__cta-btn:hover::before {
    opacity: 1
}

@media (min-width: 1024px) {
    .nws__cta {
        padding: 72px 36px
    }
}

.nws__divider {
    max-width: 1320px;
    margin: 0 auto;
    padding: 36px 24px;
    display: flex;
    align-items: center;
    gap: 24px
}

.nws__divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, #28282833 50%, transparent 100%)
}

.nws__divider-num {
    font-size: 24px;
    line-height: 1.2;
    color: #F7655D;
    font-weight: 600
}

@media (min-width: 1024px) {
    .nws__divider {
        padding: 36px
    }
}

.kontakt {
    background: #fff;
    color: #282828;
    overflow-x: clip
}

.kontakt__intro {
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 24px;
    position: relative;
    background: radial-gradient(ellipse at 50% 50%, #F7655D, #3448EC);
    overflow: hidden
}

.kontakt__intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fffffff2 0%, #fff0 100%);
    pointer-events: none
}

.kontakt__intro::after {
    content: '';
    position: absolute;
    top: 12%;
    left: 8%;
    width: 8px;
    height: 8px;
    background: #282828;
    border-radius: 48px;
    opacity: .08;
    box-shadow: 120px 45px 0 #282828, 240px 90px 0 #282828, 360px 30px 0 #282828, 480px 75px 0 #282828, 600px 15px 0 #282828, 720px 60px 0 #282828, 840px 100px 0 #282828, 960px 40px 0 #282828, 80px 180px 0 #282828, 200px 220px 0 #282828, 320px 160px 0 #282828, 440px 200px 0 #282828, 560px 240px 0 #282828, 680px 180px 0 #282828, 800px 210px 0 #282828, 920px 190px 0 #282828;
    pointer-events: none
}

.kontakt__intro-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.kontakt__intro-text h1 {
    font-size: 72px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700
}

.kontakt__intro-text p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 12px
}

.kontakt__intro-text p:last-child {
    margin-bottom: 0
}

.kontakt__intro-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 44px 0 #f7655d1c;
    background: linear-gradient(135deg, #282828 0%, #F7655D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.kontakt__intro-img::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    border: 4px solid #fff3;
    border-radius: 48px;
    animation: kontakt-pulse 3.2s ease-in-out infinite
}

@keyframes kontakt-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.02);
        opacity: .7
    }
}

.kontakt__form-sec {
    background: #f4f4f4;
    padding: 72px 24px;
    position: relative
}

.kontakt__form-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #282828
}

.kontakt__form-sec::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: #F7655D
}

.kontakt__form-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 72px;
    align-items: start
}

.kontakt__form-sidebar {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 4px 28px 0 #3448ec17;
    border: 2px solid #e8e8e8;
    position: relative
}

.kontakt__form-sidebar::after {
    content: '';
    position: absolute;
    top: 0;
    right: -2px;
    bottom: 0;
    width: 3px;
    background: #3448EC;
    border-radius: 6px
}

.kontakt__form-sidebar h2 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .02em
}

.kontakt__availability {
    margin-bottom: 36px
}

.kontakt__availability h3 {
    font-size: 18px;
    line-height: 1.2;
    margin: 0 0 12px;
    font-weight: 600;
    color: #F7655D
}

.kontakt__time-slot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 16px;
    line-height: 1.6
}

.kontakt__time-slot::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #3448EC;
    border-radius: 48px;
    flex-shrink: 0
}

.kontakt__info-item {
    margin-bottom: 24px
}

.kontakt__info-item:last-child {
    margin-bottom: 0
}

.kontakt__info-label {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    margin: 0 0 4px;
    color: #3448EC
}

.kontakt__info-value {
    font-size: 16px;
    line-height: 1.6;
    margin: 0
}

.kontakt__info-value a {
    color: #282828;
    text-decoration: none;
    position: relative;
    transition: color .22s ease-out
}

.kontakt__info-value a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #F7655D;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .28s ease-out
}

.kontakt__info-value a:hover {
    color: #F7655D
}

.kontakt__info-value a:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.kontakt__form-main {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 4px 28px 0 #f7655d17;
    border: 2px solid #e8e8e8;
    position: relative
}

.kontakt__form-main::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid #3448EC;
    border-radius: 18px;
    opacity: 0;
    transition: opacity .35s ease-out;
    pointer-events: none
}

.kontakt__form-main:focus-within::before {
    opacity: 1
}

.kontakt__form-main h2 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 36px;
    font-weight: 700
}

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

.kontakt__field {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.kontakt__field.full {
    grid-column: 1 / -1
}

.kontakt__label {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #282828
}

.kontakt__input,
.kontakt__select {
    padding: 12px 24px;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.6;
    background: #fff;
    transition: border-color .18s ease-out, box-shadow .18s ease-out;
    outline: none
}

.kontakt__input::placeholder {
    color: #999;
    text-overflow: ellipsis
}

.kontakt__input:focus,
.kontakt__select:focus {
    border-color: #3448EC;
    box-shadow: 0 3px 5px 0 #3448ec14
}

.kontakt__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23282828' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 24px center;
    padding-right: 48px;
    cursor: pointer
}

.kontakt__privacy {
    display: flex;
    align-items: start;
    gap: 12px;
    margin-bottom: 24px;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 6px;
    border: 1px solid #e8e8e8
}

.kontakt__checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #3448EC;
    flex-shrink: 0
}

.kontakt__privacy-text {
    font-size: 16px;
    line-height: 1.6;
    margin: 0
}

.kontakt__privacy-text a {
    color: #3448EC;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    transition: color .24s ease-out
}

.kontakt__privacy-text a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .26s ease-out
}

.kontakt__privacy-text a:hover {
    color: #F7655D
}

.kontakt__privacy-text a:hover::after {
    transform: scaleX(1);
    transform-origin: left
}

.kontakt__submit {
    width: 100%;
    padding: 12px 36px;
    background: #3448EC;
    color: #fff;
    border: 2px solid #3448EC;
    border-radius: 6px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease-out, border-color .2s ease-out, box-shadow .2s ease-out;
    position: relative;
    overflow: hidden
}

.kontakt__submit::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid #fff;
    border-radius: 6px;
    opacity: 0;
    transition: opacity .25s ease-out;
    pointer-events: none
}

.kontakt__submit:hover {
    background: #F7655D;
    border-color: #F7655D;
    box-shadow: 0 4px 28px 0 #f7655d17
}

.kontakt__submit:hover::before {
    opacity: 1
}

.kontakt__submit:active {
    transform: translateY(2px)
}

.kontakt__metrics {
    padding: 72px 24px;
    background: radial-gradient(ellipse at 50% 50%, #ffff 0%, #f4f4f4ff 100%);
    position: relative
}

.kontakt__metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #3448EC
}

.kontakt__metrics::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    right: 0;
    height: 2px;
    background: #282828
}

.kontakt__metrics-container {
    max-width: 1320px;
    margin: 0 auto
}

.kontakt__metrics-header {
    text-align: center;
    margin-bottom: 72px
}

.kontakt__metrics-header h2 {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700
}

.kontakt__metrics-header p {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 720px
}

.kontakt__metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px
}

.kontakt__metric-card {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 3px 5px 0 #28282814;
    border: 2px solid #e8e8e8;
    position: relative;
    transition: transform .32s ease-out, box-shadow .32s ease-out
}

.kontakt__metric-card::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid transparent;
    border-radius: 18px;
    transition: border-color .38s ease-out;
    pointer-events: none
}

.kontakt__metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 44px 0 #2828281c
}

.kontakt__metric-card:hover::before {
    border-color: #3448EC
}

.kontakt__metric-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 50%, #F7655D, #3448EC);
    border-radius: 48px;
    position: relative;
    animation: kontakt-icon-pulse 2.8s ease-in-out infinite
}

@keyframes kontakt-icon-pulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.02)
    }
}

.kontakt__metric-icon svg {
    width: 36px;
    height: 36px;
    fill: #fff
}

.kontakt__metric-number {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px;
    color: #3448EC
}

.kontakt__metric-label {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    margin: 0;
    font-weight: 600;
    color: #282828
}

@media (max-width: 1024px) {
    .kontakt__intro-wrap {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .kontakt__intro-text h1 {
        font-size: 62px
    }

    .kontakt__form-container {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .kontakt__form-sidebar::after {
        display: none
    }

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

    .kontakt__metrics-header h2 {
        font-size: 48px
    }
}

@media (max-width: 640px) {
    .kontakt__intro {
        padding: 36px 24px
    }

    .kontakt__intro-text h1 {
        font-size: 48px
    }

    .kontakt__intro-text p {
        font-size: 16px
    }

    .kontakt__form-sec {
        padding: 36px 24px
    }

    .kontakt__form-sidebar,
    .kontakt__form-main {
        padding: 24px
    }

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

    .kontakt__metrics {
        padding: 36px 24px
    }

    .kontakt__metrics-header {
        margin-bottom: 36px
    }

    .kontakt__metrics-header h2 {
        font-size: 36px
    }

    .kontakt__metric-number {
        font-size: 48px
    }
}

@media (max-width: 360px) {
    .kontakt__intro-text h1 {
        font-size: 36px
    }

    .kontakt__metrics-header h2 {
        font-size: 32px
    }

    .kontakt__metric-number {
        font-size: 42px
    }
}

.first {
    background: #fff;
    color: #282828;
    max-width: 1320px;
    margin: 0 auto;
    overflow-x: clip
}

.first__intro {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 36px;
    padding: 24px 72px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.first__intro::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 40%;
    height: 140%;
    background: radial-gradient(ellipse at center, #f4655d14, #3448ec0d);
    clip-path: path('M0,0 Q200,100 0,300 Q150,200 0,0');
    pointer-events: none;
    z-index: 0
}

.first__intro::after {
    content: '';
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 35%;
    height: 120%;
    background: radial-gradient(ellipse at center, #3448ec0f, #f4655d0a);
    clip-path: path('M300,0 Q100,150 300,300 Q200,150 300,0');
    pointer-events: none;
    z-index: 0
}

.first__intro-txt {
    position: relative;
    z-index: 1
}

.first__intro-label {
    font-size: 16px;
    line-height: 1.6;
    color: #F7655D;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 12px;
    font-weight: 600
}

.first__intro-h1 {
    font-size: 62px;
    line-height: 1.2;
    margin: 0;
    font-weight: 700;
    color: #282828
}

.first__intro-vis {
    position: relative;
    z-index: 1;
    height: 380px;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 12px 44px 0 #2828281c
}

.first__intro-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative
}

.first__intro-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #28282840);
    pointer-events: none
}

.first__diff {
    padding: 72px;
    background: #f7655d08;
    position: relative;
    overflow: hidden
}

.first__diff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F7655D 50%, transparent);
    opacity: .3
}

.first__diff-inner {
    max-width: 720px;
    margin: 0 auto;
    text-align: center
}

.first__diff-h2 {
    font-size: 72px;
    line-height: 1.2;
    margin: 0 0 36px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: #282828
}

.first__diff-p {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #282828
}

.first__diff-p:last-of-type {
    margin-bottom: 0
}

.first__diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 72px 0 0
}

.first__diff-card {
    background: #fff;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 3px 5px 0 #28282814;
    transition: transform .25s ease-out, box-shadow .25s ease-out;
    position: relative;
    overflow: hidden
}

.first__diff-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #F7655D, #3448EC);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease-out
}

.first__diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 44px 0 #2828281c
}

.first__diff-card:hover::before {
    transform: scaleX(1)
}

.first__diff-card-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin: 0 0 12px;
    display: block
}

.first__diff-card-h3 {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 8px;
    font-weight: 600;
    color: #282828
}

.first__diff-card-txt {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    color: #282828
}

.first__outcome {
    padding: 72px;
    position: relative;
    background: #fff
}

.first__outcome-divider {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 48px;
    overflow: hidden
}

.first__outcome-svg {
    width: 100%;
    height: 100%;
    display: block;
    fill: #f7655d08
}

.first__outcome-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    align-items: center
}

.first__outcome-content {
    animation: first-reveal .45s ease-out forwards;
    clip-path: inset(0 100% 0 0)
}

@keyframes first-reveal {
    to {
        clip-path: inset(0 0 0 0)
    }
}

.first__outcome-h2 {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700;
    color: #282828
}

.first__outcome-p {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #282828
}

.first__outcome-p:last-of-type {
    margin-bottom: 0
}

.first__outcome-p strong {
    font-weight: 700;
    color: #F7655D
}

.first__outcome-visual {
    position: relative
}

.first__outcome-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 48px;
    display: block;
    box-shadow: 0 4px 28px 0 #28282817
}

.first__outcome-shape {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 180px;
    height: 180px;
    background: radial-gradient(ellipse at center, #F7655D, #3448EC);
    opacity: .12;
    border-radius: 48px;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
    pointer-events: none;
    z-index: -1
}

.first__gap {
    padding: 72px;
    background: #3448ec0a;
    position: relative
}

.first__gap-inner {
    max-width: 920px;
    margin: 0 auto
}

.first__gap-h2 {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 36px;
    font-weight: 700;
    color: #282828;
    text-align: center
}

.first__gap-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin: 0 0 72px
}

.first__gap-metric {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 4px 28px 0 #3448ec17;
    position: relative;
    overflow: hidden
}

.first__gap-metric::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3448EC, #F7655D)
}

.first__gap-num {
    font-size: 72px;
    line-height: 1.2;
    margin: 0 0 8px;
    font-weight: 700;
    background: radial-gradient(ellipse at center, #F7655D, #3448EC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}

.first__gap-label {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #282828;
    font-weight: 600
}

.first__gap-txt {
    font-size: 18px;
    line-height: 1.9;
    margin: 0 0 24px;
    color: #282828;
    text-align: center
}

.first__gap-txt:last-of-type {
    margin-bottom: 0
}

.first__gap-cta {
    text-align: center;
    margin: 36px 0 0
}

.first__gap-btn {
    display: inline-block;
    padding: 12px 36px;
    background: #282828;
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background .2s ease-out, box-shadow .2s ease-out;
    border: 2px solid #282828;
    position: relative;
    overflow: hidden
}

.first__gap-btn::before {
    content: '';
    position: absolute;
    inset: 4px;
    border: 2px solid #fff;
    border-radius: 4px;
    opacity: 0;
    transition: opacity .2s ease-out;
    pointer-events: none
}

.first__gap-btn:hover {
    background: #F7655D;
    border-color: #F7655D;
    box-shadow: 0 4px 28px 0 #f7655d17
}

.first__gap-btn:hover::before {
    opacity: 1
}

.first__gap-btn:active {
    transform: translateY(1px)
}

@media (max-width: 1280px) {
    .first__intro {
        padding: 24px 36px
    }

    .first__diff {
        padding: 72px 36px
    }

    .first__outcome {
        padding: 72px 36px
    }

    .first__gap {
        padding: 72px 36px
    }
}

@media (max-width: 1024px) {
    .first__intro {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px
    }

    .first__intro-h1 {
        font-size: 48px
    }

    .first__intro-vis {
        height: 320px
    }

    .first__diff {
        padding: 72px 24px
    }

    .first__diff-h2 {
        font-size: 48px
    }

    .first__diff-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .first__outcome {
        padding: 72px 24px
    }

    .first__outcome-wrap {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .first__outcome-h2 {
        font-size: 48px
    }

    .first__gap {
        padding: 72px 24px
    }

    .first__gap-h2 {
        font-size: 48px
    }

    .first__gap-num {
        font-size: 62px
    }
}

@media (max-width: 640px) {
    .first__intro {
        padding: 12px
    }

    .first__intro-h1 {
        font-size: 36px
    }

    .first__intro-vis {
        height: 240px
    }

    .first__diff {
        padding: 36px 12px
    }

    .first__diff-h2 {
        font-size: 36px;
        margin-bottom: 24px
    }

    .first__diff-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 36px
    }

    .first__outcome {
        padding: 36px 12px
    }

    .first__outcome-h2 {
        font-size: 36px
    }

    .first__outcome-img {
        height: 280px;
        border-radius: 18px
    }

    .first__outcome-shape {
        width: 120px;
        height: 120px;
        border-radius: 18px
    }

    .first__gap {
        padding: 36px 12px
    }

    .first__gap-h2 {
        font-size: 36px;
        margin-bottom: 24px
    }

    .first__gap-metrics {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px
    }

    .first__gap-num {
        font-size: 48px
    }

    .first__gap-metric {
        padding: 24px
    }
}

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

    .first__diff-h2 {
        font-size: 24px
    }

    .first__outcome-h2 {
        font-size: 24px
    }

    .first__gap-h2 {
        font-size: 24px
    }

    .first__gap-num {
        font-size: 36px
    }
}

.lrn-prg {
    background: #fff;
    color: #282828;
    overflow-x: clip
}

.lrn-prg__hero {
    background: #282828;
    color: #fff;
    padding: 72px 24px;
    position: relative;
    overflow: hidden
}

.lrn-prg__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, #f7655d26, #3448ec26);
    pointer-events: none;
    animation: lrn-prg-vignette 8s ease-in-out infinite
}

@keyframes lrn-prg-vignette {

    0%,
    100% {
        opacity: .6;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.08)
    }
}

.lrn-prg__hero-deco {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(90deg, transparent, transparent 12px, #f7655d4d 12px, #f7655d4d 24px);
    z-index: 1
}

.lrn-prg__hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 2
}

.lrn-prg__hero-tag {
    display: inline-block;
    background: #f7655d33;
    color: #F7655D;
    padding: 8px 24px;
    border-radius: 48px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 24px
}

.lrn-prg__hero h1 {
    font-size: 72px;
    line-height: 1.2;
    margin: 0 0 36px;
    font-weight: 700
}

.lrn-prg__hero-desc {
    font-size: 24px;
    line-height: 1.6;
    max-width: 880px;
    margin: 0;
    opacity: .92
}

@media (max-width: 1024px) {
    .lrn-prg__hero h1 {
        font-size: 62px
    }

    .lrn-prg__hero-desc {
        font-size: 18px
    }
}

@media (max-width: 640px) {
    .lrn-prg__hero {
        padding: 36px 24px
    }

    .lrn-prg__hero h1 {
        font-size: 36px
    }

    .lrn-prg__hero-desc {
        font-size: 16px
    }
}

.lrn-prg__metrics {
    background: #fafcfd;
    padding: 72px 24px;
    position: relative
}

.lrn-prg__metrics::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: url('data:image/svg+xml,<svg width="100" height="3" xmlns="http://www.w3.org/2000/svg"><path d="M0 1.5 Q 25 0,50 1.5 T 100 1.5" stroke="%23F7655D" stroke-width="2" fill="none"/></svg>') repeat-x
}

.lrn-prg__metrics-wrap {
    max-width: 1320px;
    margin: 0 auto
}

.lrn-prg__metrics h2 {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 72px;
    text-align: center;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px
}

.lrn-prg__metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    margin-bottom: 72px
}

.lrn-prg__metric-card {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 3px 5px 0 #28282814;
    transition: transform .28s ease-out, box-shadow .28s ease-out;
    position: relative;
    overflow: hidden
}

.lrn-prg__metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #F7655D, #3448EC);
    opacity: 0;
    transition: opacity .32s ease-out
}

.lrn-prg__metric-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 44px 0 #2828281c
}

.lrn-prg__metric-card:hover::before {
    opacity: 1
}

.lrn-prg__metric-icon {
    width: 72px;
    height: 72px;
    background: radial-gradient(ellipse at 50% 50%, #F7655D, #3448EC);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 28px 0 #f7655d17;
    transition: transform .35s ease-out
}

.lrn-prg__metric-card:hover .lrn-prg__metric-icon {
    transform: scale(1.1) rotate(5deg)
}

.lrn-prg__metric-icon svg {
    width: 36px;
    height: 36px;
    fill: #fff
}

.lrn-prg__metric-num {
    font-size: 62px;
    line-height: 1.2;
    font-weight: 700;
    color: #F7655D;
    margin: 0 0 12px
}

.lrn-prg__metric-label {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    color: #282828;
    font-weight: 600
}

.lrn-prg__ratio-viz {
    background: #fff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 3px 5px 0 #28282814
}

.lrn-prg__ratio-label {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 0 24px;
    font-weight: 600;
    text-align: center
}

.lrn-prg__ratio-bar {
    display: flex;
    height: 48px;
    border-radius: 48px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px #2828280f
}

.lrn-prg__ratio-seg {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: flex-basis .42s ease-out;
    position: relative
}

.lrn-prg__ratio-seg--theory {
    flex-basis: 35%;
    background: #3448EC
}

.lrn-prg__ratio-seg--practice {
    flex-basis: 65%;
    background: #F7655D
}

.lrn-prg__ratio-viz:hover .lrn-prg__ratio-seg--theory {
    flex-basis: 40%
}

.lrn-prg__ratio-viz:hover .lrn-prg__ratio-seg--practice {
    flex-basis: 60%
}

@media (max-width: 1024px) {
    .lrn-prg__metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .lrn-prg__metrics h2 {
        font-size: 36px
    }
}

@media (max-width: 640px) {
    .lrn-prg__metrics {
        padding: 36px 24px
    }

    .lrn-prg__metric-num {
        font-size: 36px
    }

    .lrn-prg__metric-label {
        font-size: 16px
    }
}

.lrn-prg__structure {
    background: #fff;
    padding: 72px 24px;
    position: relative
}

.lrn-prg__structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="1440" height="800" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="80" height="80" patternUnits="userSpaceOnUse"><path d="M 80 0 L 0 0 0 80" fill="none" stroke="%23f0f0f0" stroke-width="1"/></pattern></defs><rect width="1440" height="800" fill="url(%23grid)"/></svg>');
    opacity: .4;
    pointer-events: none
}

.lrn-prg__structure-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.lrn-prg__structure h2 {
    font-size: 62px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700
}

.lrn-prg__structure-lead {
    font-size: 24px;
    line-height: 1.6;
    margin: 0 0 72px;
    max-width: 960px
}

.lrn-prg__cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    margin-bottom: 72px
}

.lrn-prg__col {
    position: relative
}

.lrn-prg__col--theory {
    background: linear-gradient(135deg, #3448ec0d 0%, #3448ec05 100%);
    padding: 36px;
    border-radius: 18px;
    border: 2px solid #3448ec26
}

.lrn-prg__col--practice {
    background: linear-gradient(135deg, #f7655d0d 0%, #f7655d05 100%);
    padding: 36px;
    border-radius: 18px;
    border: 2px solid #f7655d26
}

.lrn-prg__col h3 {
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 24px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px
}

.lrn-prg__col--theory h3 {
    color: #3448EC
}

.lrn-prg__col--practice h3 {
    color: #F7655D
}

.lrn-prg__col-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.lrn-prg__col-item {
    padding: 12px 0 12px 36px;
    position: relative;
    font-size: 18px;
    line-height: 1.6;
    border-bottom: 1px solid #28282814
}

.lrn-prg__col-item:last-child {
    border-bottom: none
}

.lrn-prg__col-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border-radius: 6px;
    transition: transform .25s ease-out
}

.lrn-prg__col--theory .lrn-prg__col-item::before {
    background: #3448EC
}

.lrn-prg__col--practice .lrn-prg__col-item::before {
    background: #F7655D
}

.lrn-prg__col-item:hover::before {
    transform: translateY(-50%) scale(1.3)
}

.lrn-prg__connector {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    pointer-events: none;
    z-index: 2
}

.lrn-prg__connector svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 12px #28282826)
}

.lrn-prg__connector-line {
    stroke: #F7655D;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: lrn-prg-draw 3s ease-out forwards
}

@keyframes lrn-prg-draw {
    to {
        stroke-dashoffset: 0
    }
}

.lrn-prg__connector-circle {
    fill: #3448EC;
    animation: lrn-prg-pulse 2s ease-in-out infinite
}

@keyframes lrn-prg-pulse {

    0%,
    100% {
        opacity: .8;
        transform: scale(1)
    }

    50% {
        opacity: 1;
        transform: scale(1.15)
    }
}

.lrn-prg__img-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 44px 0 #2828281c
}

.lrn-prg__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: blur(4px);
    transition: filter .38s ease-out
}

.lrn-prg__img-wrap:hover img {
    filter: blur(0)
}

@media (max-width: 1024px) {
    .lrn-prg__cols {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .lrn-prg__connector {
        display: none
    }

    .lrn-prg__structure h2 {
        font-size: 36px
    }

    .lrn-prg__structure-lead {
        font-size: 18px
    }
}

@media (max-width: 640px) {
    .lrn-prg__structure {
        padding: 36px 24px
    }

    .lrn-prg__col h3 {
        font-size: 18px
    }

    .lrn-prg__col-item {
        font-size: 16px
    }
}

.success-pg {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    min-height: 100vh;
    padding: 72px 24px;
    display: flex;
    align-items: center;
    justify-content: center
}

.success-pg .msg-wrap {
    max-width: 680px;
    width: 100%;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 12px 44px 0 #2828281c;
    padding: 72px 36px;
    text-align: center
}

.success-pg .icon-box {
    width: 128px;
    height: 128px;
    margin: 0 auto 36px;
    background: radial-gradient(ellipse at center, #F7655D 0%, #3448EC 100%);
    border-radius: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.success-pg .icon-box::before {
    content: '';
    position: absolute;
    width: 56px;
    height: 4px;
    background: #fff;
    transform: rotate(45deg);
    top: 50%;
    left: 35%;
    margin-top: 8px;
    border-radius: 6px
}

.success-pg .icon-box::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 4px;
    background: #fff;
    transform: rotate(-45deg);
    top: 50%;
    left: 32%;
    margin-top: 2px;
    border-radius: 6px
}

.success-pg .main-hdg {
    font-size: 62px;
    line-height: 1.2;
    color: #282828;
    margin: 0 0 24px;
    font-weight: 700
}

.success-pg .desc-txt {
    font-size: 18px;
    line-height: 1.6;
    color: #282828;
    margin: 0 0 36px;
    opacity: .87
}

.success-pg .info-msg {
    background: #f9f9f9;
    border-radius: 6px;
    padding: 24px;
    margin: 0 0 36px;
    border-left: 4px solid #F7655D
}

.success-pg .info-msg p {
    font-size: 16px;
    line-height: 1.6;
    color: #282828;
    margin: 0
}

.success-pg .info-msg p strong {
    color: #F7655D;
    font-weight: 700
}

.success-pg .btn-grp {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.success-pg .btn-main {
    display: inline-block;
    padding: 12px 36px;
    background: #282828;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    transition: transform .25s ease-out, box-shadow .25s ease-out;
    box-shadow: 0 4px 28px 0 #28282817;
    position: relative;
    overflow: hidden
}

.success-pg .btn-main::before {
    content: '';
    position: absolute;
    inset: 2px;
    border: 2px solid #fff3;
    border-radius: 4px;
    opacity: 0;
    transition: opacity .35s ease-out
}

.success-pg .btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 44px 0 #2828281c
}

.success-pg .btn-main:hover::before {
    opacity: 1
}

.success-pg .btn-sec {
    display: inline-block;
    padding: 12px 36px;
    background: transparent;
    color: #3448EC;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    border: 2px solid #3448EC;
    transition: background .2s ease-out, color .2s ease-out
}

.success-pg .btn-sec:hover {
    background: #3448EC;
    color: #fff
}

.success-pg .detail-list {
    margin: 36px 0 0;
    padding: 24px;
    background: #3448ec0a;
    border-radius: 6px;
    text-align: left
}

.success-pg .detail-list h2 {
    font-size: 18px;
    line-height: 1.2;
    color: #282828;
    margin: 0 0 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px
}

.success-pg .detail-list ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.success-pg .detail-list li {
    font-size: 16px;
    line-height: 1.9;
    color: #282828;
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px
}

.success-pg .detail-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: #F7655D;
    border-radius: 48px
}

@media (max-width: 640px) {
    .success-pg {
        padding: 36px 12px
    }

    .success-pg .msg-wrap {
        padding: 36px 24px
    }

    .success-pg .main-hdg {
        font-size: 24px
    }

    .success-pg .icon-box {
        width: 96px;
        height: 96px;
        margin-bottom: 24px
    }

    .success-pg .icon-box::before {
        width: 42px;
        height: 3px;
        margin-top: 6px
    }

    .success-pg .icon-box::after {
        width: 21px;
        height: 3px;
        margin-top: 2px
    }

    .success-pg .btn-grp {
        flex-direction: column
    }

    .success-pg .btn-main,
    .success-pg .btn-sec {
        width: 100%
    }
}