@import "https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;600;700&display=swap";

html,
body {
    margin: 0;
    padding: 0
}

body {
    min-height: 100dvh;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    line-height: 1.65
}

:focus {
    outline: 3px solid #47B6FC;
    outline-offset: 3px
}

.page-header {
    position: relative;
    background: #fff;
    border-bottom: 2px solid #47B6FC;
    box-shadow: -1px 9px 36px 0 #47b6fc1c;
    overflow: visible
}

.page-header__top-bar {
    background: linear-gradient(90deg, #8C0E30 0%, #6a0b24 60%, #47B6FC 100%);
    padding: 8px 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px
}

.page-header__credential {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #FEFEA2;
    letter-spacing: .08em;
    line-height: 1.2;
    border: 1px solid #fefea266;
    border-radius: 4px;
    padding: 4px 12px;
    background: #fefea214
}

.page-header__body {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 36px 0;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
    min-height: 96px
}

.page-header__panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    flex: 1;
    min-width: 0;
    position: relative;
    padding-bottom: 0;
    padding-right: 76px
}

.header-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 2px solid #47B6FC;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    align-self: center;
    transition: background .2s ease, border-color .2s ease
}

.header-burger:hover {
    background: #47b6fc14
}

.header-burger__icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 20px
}

.header-burger__bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #8C0E30;
    border-radius: 1px;
    transition: transform .2s ease, opacity .2s ease
}

.page-header--menu-open .header-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.page-header--menu-open .header-burger__bar:nth-child(2) {
    opacity: 0
}

.page-header--menu-open .header-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.brand-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    text-decoration: none;
    align-self: center
}

.brand-box__img-wrap {
    width: 60px;
    height: 60px;
    padding: 8px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #47B6FC;
    box-shadow: -1px 7px 22px 0 #47b6fc1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.brand-box__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.brand-box__name {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: #1b0a10;
    line-height: 1.2;
    letter-spacing: .03em
}

.brand-box__sub {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 400;
    color: #8C0E30;
    line-height: 1.2;
    letter-spacing: .06em;
    display: block
}

.primary-nav {
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
    flex-shrink: 1;
    min-width: 0
}

.primary-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: flex-end
}

.primary-nav__item {
    display: block
}

.primary-nav__link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: #1b0a10;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 15px 15px 0 0;
    border: 2px solid transparent;
    border-bottom: none;
    line-height: 1.2;
    letter-spacing: .02em;
    position: relative;
    transition: color .25s ease-out, background .2s ease-out
}

.primary-nav__link::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #8C0E30;
    border-top: 2px solid #8C0E30;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity .2s ease-out, transform .2s ease-out;
    flex-shrink: 0
}

.primary-nav__link:hover {
    color: #8C0E30;
    background: #47b6fc14;
    border-color: #47B6FC
}

.primary-nav__link:hover::after {
    opacity: 1;
    transform: rotate(45deg) translateX(2px)
}

.primary-nav__link--active {
    color: #8C0E30;
    background: #8c0e300d;
    border-color: #47B6FC
}

.primary-nav__link--active::after {
    opacity: 1
}

@media (max-width: 1024px) {
    .page-header__body {
        padding: 24px 24px 0;
        gap: 12px
    }

    .primary-nav__link {
        font-size: 16px;
        padding: 12px
    }
}

@media (max-width: 768px) {
    .page-header__body {
        align-items: center;
        flex-wrap: nowrap;
        padding: 16px 24px;
        min-height: 0;
        gap: 12px
    }

    .header-burger {
        display: flex;
        margin-left: auto
    }

    .page-header__panel {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 200;
        flex: none;
        padding: 16px 24px 24px;
        padding-right: 24px;
        background: #fff;
        border-top: 1px solid #47b6fc33;
        box-shadow: 0 12px 32px #47b6fc26;
        align-items: stretch;
        gap: 20px
    }

    .page-header--menu-open .page-header__panel {
        display: flex
    }

    .page-header__panel .lang-toggle {
        position: static;
        transform: none;
        margin: 0;
        align-self: center
    }

    .primary-nav {
        width: 100%;
        align-items: stretch
    }

    .primary-nav__list {
        flex-direction: column;
        width: 100%;
        gap: 8px;
        align-items: stretch
    }

    .primary-nav__link {
        font-size: 16px;
        padding: 14px 16px;
        border-radius: 12px;
        border: 2px solid #47b6fc33;
        border-bottom: 2px solid #47b6fc33;
        justify-content: space-between
    }

    .page-header__top-bar {
        padding: 8px 24px;
        flex-wrap: wrap;
        justify-content: flex-start
    }

    body.menu-open {
        overflow: hidden
    }
}

@media (max-width: 360px) {
    .page-header__body {
        padding: 12px
    }

    .page-header__panel {
        padding: 12px
    }

    .brand-box__name {
        font-size: 16px
    }

    .primary-nav__link {
        padding: 12px;
        font-size: 16px
    }
}

.site-footer {
    background: #1b0a10;
    color: #e8d5db;
    padding: 72px 0 0
}

.site-footer__grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 36px 72px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px
}

.ftr-brand-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ftr-logo-box {
    width: 60px;
    height: 60px;
    padding: 8px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #47B6FC;
    box-shadow: -1px 7px 22px 0 #47b6fc1a;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ftr-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block
}

.ftr-brand-name {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: .03em
}

.ftr-brand-desc {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #c4a8b0;
    line-height: 1.65
}

.ftr-contact-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ftr-col-label {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    color: #FEFEA2;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
    border-bottom: 1px solid #47b6fc4d;
    padding-bottom: 8px
}

.ftr-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ftr-contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ftr-contact-item__label {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: #47B6FC;
    letter-spacing: .05em;
    line-height: 1.2
}

.ftr-contact-item__val {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #e8d5db;
    line-height: 1.45
}

.ftr-contact-item__link {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #e8d5db;
    text-decoration: none;
    line-height: 1.45;
    border-bottom: 1px solid #47b6fc4d;
    transition: color .2s ease-out, border-color .25s ease-out
}

.ftr-contact-item__link:hover {
    color: #47B6FC;
    border-color: #47B6FC
}

.ftr-links-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

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

.ftr-links-item__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #c4a8b0;
    text-decoration: none;
    line-height: 1.45;
    padding: 4px 0;
    transition: color .2s ease-out;
    position: relative
}

.ftr-links-item__link::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 2px solid #8C0E30;
    border-top: 2px solid #8C0E30;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: border-color .2s ease-out
}

.ftr-links-item__link:hover {
    color: #FEFEA2
}

.ftr-links-item__link:hover::before {
    border-color: #FEFEA2
}

.site-footer__bottom {
    background: #0f0508;
    border-top: 1px solid #47b6fc33
}

.site-footer__bottom-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px
}

.ftr-copy {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #7a5560;
    line-height: 1.2
}

.ftr-copy strong {
    color: #c4a8b0;
    font-weight: 600
}

@media (max-width: 1024px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
        padding: 0 24px 72px
    }

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

@media (max-width: 640px) {
    .site-footer__grid {
        grid-template-columns: 1fr;
        padding: 0 24px 36px;
        gap: 36px
    }

    .site-footer {
        padding: 36px 0 0
    }

    .site-footer__bottom-inner {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 360px) {
    .site-footer__grid {
        padding: 0 12px 36px
    }

    .site-footer__bottom-inner {
        padding: 24px 12px
    }
}

.cookie-tray {
    display: none;
    position: fixed;
    top: 24px;
    left: 24px;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    border: 2px solid #47B6FC;
    box-shadow: -1px 9px 36px 0 #47b6fc1c;
    z-index: 1500;
    padding: 24px;
    box-sizing: border-box
}

.cookie-tray__text {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #1b0a10;
    line-height: 1.65;
    margin: 0 0 24px
}

.cookie-tray__cats {
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px
}

.cookie-tray__cats.open {
    display: flex
}

.cookie-cat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px
}

.cookie-cat-row__label {
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    color: #1b0a10;
    line-height: 1.45
}

.cookie-cat-row__check {
    width: 18px;
    height: 18px;
    accent-color: #8C0E30;
    cursor: pointer
}

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

.cookie-btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    line-height: 1.2;
    border: 2px solid transparent;
    transition: background .2s ease-out, color .2s ease-out, border-color .25s ease-out;
    min-height: 44px;
    box-sizing: border-box
}

.cookie-btn--accept {
    background: #8C0E30;
    color: #fff;
    border-color: #8C0E30
}

.cookie-btn--accept:hover {
    background: #6a0b24;
    border-color: #6a0b24
}

.cookie-btn--accept:focus {
    outline: 3px solid #47B6FC;
    outline-offset: 3px
}

.cookie-btn--reject {
    background: #fff;
    color: #8C0E30;
    border-color: #8C0E30
}

.cookie-btn--reject:hover {
    background: #8c0e300f
}

.cookie-btn--reject:focus {
    outline: 3px solid #47B6FC;
    outline-offset: 3px
}

.cookie-btn--manage {
    background: transparent;
    color: #47B6FC;
    border-color: #47B6FC;
    font-weight: 400
}

.cookie-btn--manage:hover {
    background: #47b6fc14
}

.cookie-btn--manage:focus {
    outline: 3px solid #47B6FC;
    outline-offset: 3px
}

.pref-tab {
    display: none;
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 1400
}

.pref-tab__trigger {
    background: #8C0E30;
    color: #fff;
    font-family: 'EB Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 0 4px 4px 0;
    padding: 12px 8px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    min-height: 44px;
    min-width: 44px;
    letter-spacing: .05em;
    line-height: 1.2;
    transition: background .2s ease-out;
    box-shadow: -1px 7px 22px 0 #8c0e301a
}

.pref-tab__trigger:hover {
    background: #6a0b24
}

.pref-tab__trigger:focus {
    outline: 3px solid #47B6FC;
    outline-offset: 3px
}

.terms-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 36px;
    background: #fff;
    color: #2a2a35
}

.terms-wrapper h1 {
    font-size: 62px;
    line-height: 1.2;
    letter-spacing: -.5px;
    color: #1b1b2e;
    margin-bottom: 36px;
    margin-top: 0;
    padding-bottom: 24px;
    border-bottom: 2px solid #47B6FC
}

.terms-wrapper h2 {
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #8C0E30;
    margin-top: 72px;
    margin-bottom: 24px
}

.terms-wrapper h3 {
    font-size: 18px;
    line-height: 1.45;
    letter-spacing: .02em;
    color: #1b1b2e;
    margin-top: 36px;
    margin-bottom: 12px
}

.terms-wrapper h4 {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .04em;
    color: #2a2a35;
    margin-top: 24px;
    margin-bottom: 8px
}

.terms-wrapper h5 {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #47B6FC;
    margin-top: 24px;
    margin-bottom: 8px
}

.terms-wrapper h6 {
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: .03em;
    color: #556;
    margin-top: 12px;
    margin-bottom: 8px
}

.terms-wrapper p {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a35;
    margin-top: 0;
    margin-bottom: 24px;
    max-width: 74ch
}

.terms-wrapper ul,
.terms-wrapper ol {
    margin-top: 0;
    margin-bottom: 24px;
    padding-left: 24px;
    max-width: 74ch
}

.terms-wrapper ul {
    list-style: none;
    padding-left: 0
}

.terms-wrapper ul li {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a35;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative
}

.terms-wrapper ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #47B6FC
}

.terms-wrapper ol {
    list-style: none;
    counter-reset: policy-counter;
    padding-left: 0
}

.terms-wrapper ol li {
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a35;
    margin-bottom: 8px;
    padding-left: 36px;
    position: relative;
    counter-increment: policy-counter
}

.terms-wrapper ol li::before {
    content: counter(policy-counter);
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: #FEFEA2;
    color: #1b1b2e;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.terms-wrapper ul ul,
.terms-wrapper ol ol,
.terms-wrapper ul ol,
.terms-wrapper ol ul {
    margin-top: 8px;
    margin-bottom: 8px
}

.terms-wrapper strong,
.terms-wrapper b {
    font-weight: 700;
    color: #1b1b2e
}

.terms-wrapper table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 36px;
    font-size: 16px;
    line-height: 1.45;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: -1px 7px 22px 0 #47b6fc1a
}

.terms-wrapper thead {
    background: #47B6FC
}

.terms-wrapper thead th {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 12px 24px;
    text-align: left
}

.terms-wrapper tbody tr {
    border-bottom: 1px solid #dde8f5;
    transition: background .15s ease-out
}

.terms-wrapper tbody tr:last-child {
    border-bottom: none
}

.terms-wrapper tbody tr:nth-child(even) {
    background: #f3f8fe
}

.terms-wrapper tbody tr:hover {
    background: #e8f4fd;
    transition: background .25s ease-out
}

.terms-wrapper td {
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.65;
    color: #2a2a35;
    vertical-align: top
}

.terms-wrapper th {
    padding: 12px 24px
}

.terms-wrapper div {
    font-size: 16px;
    line-height: 1.65
}

@media (max-width: 1024px) {
    .terms-wrapper {
        padding: 72px 36px
    }

    .terms-wrapper h1 {
        font-size: 62px
    }
}

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

    .terms-wrapper h1 {
        font-size: 18px;
        line-height: 1.2;
        padding-bottom: 12px
    }

    .terms-wrapper h2 {
        font-size: 16px;
        margin-top: 36px
    }

    .terms-wrapper h3 {
        font-size: 16px
    }

    .terms-wrapper table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 4px
    }

    .terms-wrapper thead th {
        padding: 8px 12px
    }

    .terms-wrapper td {
        padding: 8px 12px
    }
}

@media (max-width: 360px) {
    .terms-wrapper {
        padding: 24px 12px
    }

    .terms-wrapper h1 {
        font-size: 18px
    }

    .terms-wrapper p,
    .terms-wrapper ul li,
    .terms-wrapper ol li {
        font-size: 16px
    }
}

.dgtl-det {
    max-width: 1440px;
    margin: 0 auto;
    background: #fff;
    overflow-x: clip
}

.dgtl-det .strip-img {
    width: 72px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px 0 0 4px
}

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

.dgtl-det .strip-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #47b6fc38;
    pointer-events: none
}

.dgtl-det .strip-edge {
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: repeating-linear-gradient(to bottom, #47B6FC 0px, #47B6FC 8px, transparent 8px, transparent 16px)
}

.dgtl-det .title-bar {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: #f4f8ff;
    border-radius: 15px;
    margin: 36px 36px 0;
    box-shadow: -1px 7px 22px 0 #47b6fc1a;
    overflow: hidden
}

.dgtl-det .title-bar__body {
    flex: 1;
    padding: 36px 36px 36px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dgtl-det .title-bar__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.dgtl-det .tag-pill {
    background: #47B6FC;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block
}

.dgtl-det .cat-pill {
    background: #FEFEA2;
    color: #2a1a00;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block
}

.dgtl-det .read-time {
    font-size: 16px;
    line-height: 1.2;
    color: #555;
    letter-spacing: .04em
}

.dgtl-det .views-count {
    font-size: 16px;
    line-height: 1.2;
    color: #555;
    letter-spacing: .04em;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.dgtl-det .views-count svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.dgtl-det .title-bar__h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #12223a;
    margin: 0;
    letter-spacing: -.01em
}

.dgtl-det .title-bar__tagline {
    font-size: 18px;
    line-height: 1.45;
    color: #3a4a5a;
    margin: 0
}

.dgtl-det .title-bar__author {
    font-size: 16px;
    line-height: 1.2;
    color: #8C0E30;
    font-weight: 600;
    letter-spacing: .03em
}

.dgtl-det .title-bar__action {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #8C0E30;
    text-decoration: none;
    font-weight: 700;
    padding: 8px 0;
    position: relative;
    letter-spacing: .04em;
    transition: color .25s ease-out;
    width: fit-content
}

.dgtl-det .title-bar__action::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8C0E30;
    transition: width .35s ease-out
}

.dgtl-det .title-bar__action:hover::before {
    width: 100%
}

.dgtl-det .title-bar__action:hover {
    color: #47B6FC
}

.dgtl-det .title-bar__action .arr {
    display: inline-block;
    transition: transform .2s ease-out
}

.dgtl-det .title-bar__action:hover .arr {
    transform: translateX(4px)
}

.dgtl-det .img-band {
    margin: 36px 36px 0;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: -1px 9px 36px 0 #47b6fc1c
}

.dgtl-det .img-band img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    transition: transform .45s ease-out
}

.dgtl-det .img-band:hover img {
    transform: scale(1.025)
}

.dgtl-det .img-band__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #47b6fc14, #8c0e300f);
    pointer-events: none;
    border-radius: 15px
}

.dgtl-det .body-zone {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    margin: 36px 36px 0;
    align-items: start
}

.dgtl-det .art-body {
    background: #fff;
    border-radius: 15px;
    padding: 36px;
    box-shadow: -1px 3px 3px 0 #47b6fc12
}

.dgtl-det .art-body__text {
    font-size: 18px;
    line-height: 1.65;
    color: #1a2a3a
}

.dgtl-det .art-body__text p {
    margin: 0 0 12px
}

.dgtl-det .art-body__text h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #12223a;
    margin: 36px 0 12px;
    text-decoration: underline;
    text-decoration-color: #47B6FC;
    text-underline-offset: 6px
}

.dgtl-det .art-body__text h3 {
    font-size: 18px;
    line-height: 1.45;
    color: #8C0E30;
    margin: 24px 0 8px;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #FEFEA2;
    text-underline-offset: 4px
}

.dgtl-det .art-body__text strong {
    color: #12223a;
    font-weight: 700
}

.dgtl-det .art-body__text ul,
.dgtl-det .art-body__text ol {
    padding-left: 24px;
    margin: 0 0 12px
}

.dgtl-det .art-body__text li {
    margin-bottom: 8px;
    line-height: 1.65
}

.dgtl-det .art-body__text blockquote {
    margin: 24px 0;
    padding: 12px 24px;
    background: #f4f8ff;
    border-radius: 4px;
    font-size: 18px;
    line-height: 1.65;
    color: #2a3a4a;
    font-style: italic;
    box-shadow: inset 3px 0 0 0 #47B6FC
}

.dgtl-det .art-body__text details {
    background: #f9fbff;
    border-radius: 4px;
    padding: 12px 24px;
    margin: 12px 0;
    box-shadow: inset 0 2px 6px 0 #47b6fc14
}

.dgtl-det .art-body__text summary {
    font-weight: 700;
    color: #12223a;
    cursor: pointer;
    font-size: 18px;
    line-height: 1.45;
    transition: color .2s ease-out
}

.dgtl-det .art-body__text summary:hover {
    color: #8C0E30
}

.dgtl-det .side-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px
}

.dgtl-det .side-info {
    background: #FEFEA2;
    border-radius: 15px;
    padding: 24px;
    box-shadow: -1px 7px 22px 0 #47b6fc1a
}

.dgtl-det .side-info__label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #2a1a00;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase
}

.dgtl-det .side-info__item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.45;
    color: #1a2a3a
}

.dgtl-det .side-info__item svg {
    flex-shrink: 0;
    margin-top: 2px
}

.dgtl-det .side-cta {
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    border-radius: 15px;
    padding: 24px;
    box-shadow: -1px 9px 36px 0 #8c0e301c
}

.dgtl-det .side-cta__heading {
    font-size: 18px;
    line-height: 1.45;
    color: #fff;
    font-weight: 700;
    margin: 0 0 12px
}

.dgtl-det .side-cta__text {
    font-size: 16px;
    line-height: 1.65;
    color: #ffffffe6;
    margin: 0 0 12px
}

.dgtl-det .side-cta__btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #12223a;
    background: #FEFEA2;
    padding: 8px 24px;
    border-radius: 26px;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: background .2s ease-out, color .2s ease-out
}

.dgtl-det .side-cta__btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 2px solid transparent;
    transition: border-color .35s ease-out
}

.dgtl-det .side-cta__btn:hover::after {
    border-color: #fff
}

.dgtl-det .side-cta__btn:hover {
    background: #fff
}

.dgtl-det .side-cta__btn .arr {
    transition: transform .2s ease-out
}

.dgtl-det .side-cta__btn:hover .arr {
    transform: translateX(4px)
}

.dgtl-det .side-about {
    background: #fff;
    border-radius: 15px;
    padding: 24px;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    position: relative
}

.dgtl-det .side-about::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: repeating-linear-gradient(to right, #47B6FC 0px, #47B6FC 8px, transparent 8px, transparent 16px)
}

.dgtl-det .side-about__label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #8C0E30;
    font-weight: 700;
    margin: 8px 0 12px;
    text-transform: uppercase
}

.dgtl-det .side-about__text {
    font-size: 16px;
    line-height: 1.65;
    color: #3a4a5a;
    margin: 0
}

.dgtl-det .metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 36px 36px 0
}

.dgtl-det .metric-card {
    background: #f4f8ff;
    border-radius: 15px;
    padding: 24px;
    text-align: center;
    box-shadow: -1px 7px 22px 0 #47b6fc1a;
    animation: shadow-pulse 3s ease-out infinite
}

.dgtl-det .metric-card:nth-child(2) {
    animation-delay: 1s
}

.dgtl-det .metric-card:nth-child(3) {
    animation-delay: 2s
}

@keyframes shadow-pulse {
    0% {
        box-shadow: -1px 3px 3px 0 #47b6fc12
    }

    50% {
        box-shadow: -1px 9px 36px 0 #47b6fc2e
    }

    100% {
        box-shadow: -1px 3px 3px 0 #47b6fc12
    }
}

.dgtl-det .metric-card__val {
    font-size: 62px;
    line-height: 1.2;
    color: #8C0E30;
    font-weight: 700;
    display: block
}

.dgtl-det .metric-card__lbl {
    font-size: 16px;
    line-height: 1.45;
    color: #3a4a5a;
    margin-top: 4px;
    display: block;
    letter-spacing: .04em
}

.dgtl-det .flip-reveal {
    animation: flip-in .45s ease-out both
}

@keyframes flip-in {
    from {
        transform: rotateY(90deg);
        opacity: 0
    }

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

.dgtl-det .divider-dash {
    margin: 36px 36px 0;
    height: 2px;
    background: repeating-linear-gradient(to right, #47B6FC 0px, #47B6FC 12px, transparent 12px, transparent 24px);
    border-radius: 4px
}

.dgtl-det .spacer-block {
    margin: 36px 36px 72px;
    padding: 36px;
    background: #FEFEA2;
    border-radius: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    box-shadow: -1px 7px 22px 0 #47b6fc1a;
    position: relative
}

.dgtl-det .spacer-block__empty {
    min-height: 120px;
    border-radius: 42px;
    border: 2px dashed #47B6FC;
    background: #47b6fc0a;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.dgtl-det .spacer-block__empty-label {
    font-size: 16px;
    line-height: 1.2;
    color: #47B6FC;
    letter-spacing: .08em;
    font-weight: 700;
    text-transform: uppercase
}

.dgtl-det .spacer-block__text {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dgtl-det .spacer-block__heading {
    font-size: 18px;
    line-height: 1.45;
    color: #12223a;
    font-weight: 700;
    margin: 0
}

.dgtl-det .spacer-block__body {
    font-size: 16px;
    line-height: 1.65;
    color: #2a3a4a;
    margin: 0
}

.dgtl-det .spacer-block__link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #8C0E30;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    width: fit-content;
    transition: color .2s ease-out
}

.dgtl-det .spacer-block__link::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8C0E30;
    transition: width .35s ease-out
}

.dgtl-det .spacer-block__link:hover::before {
    width: 100%
}

.dgtl-det .spacer-block__link:hover {
    color: #47B6FC
}

.dgtl-det .spacer-block__link .arr {
    transition: transform .2s ease-out
}

.dgtl-det .spacer-block__link:hover .arr {
    transform: translateX(4px)
}

.dgtl-det .connector-line {
    position: absolute;
    top: 50%;
    left: calc(50% - 36px);
    width: 72px;
    height: 2px;
    background: repeating-linear-gradient(to right, #8C0E30 0px, #8C0E30 6px, transparent 6px, transparent 12px);
    transform: translateY(-50%);
    pointer-events: none
}

@media (max-width: 1024px) {
    .dgtl-det .title-bar__h1 {
        font-size: 62px
    }

    .dgtl-det .body-zone {
        grid-template-columns: 1fr
    }

    .dgtl-det .side-panel {
        position: static
    }

    .dgtl-det .metrics-row {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media (max-width: 640px) {
    .dgtl-det .title-bar {
        margin: 24px 12px 0;
        flex-direction: column
    }

    .dgtl-det .strip-img {
        width: 100%;
        height: 72px;
        border-radius: 15px 15px 0 0
    }

    .dgtl-det .strip-img img {
        height: 72px;
        width: 100%
    }

    .dgtl-det .strip-edge {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 3px;
        background: repeating-linear-gradient(to right, #47B6FC 0px, #47B6FC 8px, transparent 8px, transparent 16px)
    }

    .dgtl-det .title-bar__h1 {
        font-size: 18px
    }

    .dgtl-det .title-bar__body {
        padding: 24px 12px
    }

    .dgtl-det .img-band {
        margin: 24px 12px 0
    }

    .dgtl-det .body-zone {
        margin: 24px 12px 0;
        gap: 24px
    }

    .dgtl-det .art-body {
        padding: 24px 12px
    }

    .dgtl-det .art-body__text h2 {
        font-size: 18px
    }

    .dgtl-det .metrics-row {
        grid-template-columns: 1fr;
        margin: 24px 12px 0;
        gap: 12px
    }

    .dgtl-det .metric-card__val {
        font-size: 18px
    }

    .dgtl-det .spacer-block {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 24px 12px 36px;
        padding: 24px 12px
    }

    .dgtl-det .connector-line {
        display: none
    }

    .dgtl-det .divider-dash {
        margin: 24px 12px 0
    }
}

@media (max-width: 360px) {
    .dgtl-det .title-bar__h1 {
        font-size: 16px
    }

    .dgtl-det .title-bar {
        margin: 12px 8px 0
    }

    .dgtl-det .img-band {
        margin: 12px 8px 0
    }

    .dgtl-det .body-zone {
        margin: 12px 8px 0
    }

    .dgtl-det .metrics-row {
        margin: 12px 8px 0
    }

    .dgtl-det .spacer-block {
        margin: 12px 8px 24px;
        padding: 12px 8px
    }

    .dgtl-det .divider-dash {
        margin: 12px 8px 0
    }
}

.cmp-pg {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip;
    background: #fff
}

.cmp-pg .dir-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    opacity: .18;
    pointer-events: none
}

.cmp-pg .dir-arrow svg {
    width: 100%;
    height: 100%
}

.cmp-pg .sec-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 36px 72px
}

.cmp-pg .sec-divider__line {
    flex: 1;
    height: 1px;
    background: #47B6FC;
    opacity: .35
}

.cmp-pg .sec-divider__num {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .18em;
    color: #47B6FC;
    font-weight: 700
}

@keyframes track-expand {
    from {
        letter-spacing: -.04em;
        opacity: 0
    }

    to {
        letter-spacing: .01em;
        opacity: 1
    }
}

@keyframes track-expand-wide {
    from {
        letter-spacing: -.06em;
        opacity: 0
    }

    to {
        letter-spacing: .06em;
        opacity: 1
    }
}

.cmp-pg .title-blk {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    padding: 36px 72px;
    position: relative;
    background: #fff
}

.cmp-pg .title-blk__frame {
    position: absolute;
    top: 12px;
    left: 36px;
    right: 36px;
    bottom: 12px;
    border: 1px solid #47b6fc38;
    border-radius: 15px;
    pointer-events: none
}

.cmp-pg .title-blk__img-col {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: -1px 9px 36px 0 #47b6fc1c
}

.cmp-pg .title-blk__img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.cmp-pg .title-blk__img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #00000073 0%, #00000014 60%, #00000061 100%);
    border-radius: 15px
}

.cmp-pg .title-blk__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 24px 36px 24px 12px
}

.cmp-pg .title-blk__label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .22em;
    color: #8C0E30;
    text-transform: uppercase;
    font-weight: 700
}

.cmp-pg .title-blk__h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0;
    animation: track-expand .45s ease-out both
}

.cmp-pg .title-blk__h1 span {
    display: block;
    font-size: 72px;
    line-height: 1.2;
    color: #47B6FC;
    animation: track-expand-wide .42s ease-out .08s both
}

.cmp-pg .title-blk__sub {
    font-size: 18px;
    line-height: 1.65;
    color: #2a2a3d;
    max-width: 520px;
    margin: 0
}

.cmp-pg .title-blk__sub strong {
    color: #8C0E30
}

.cmp-pg .title-blk__dir {
    top: 50%;
    left: 248px
}

.cmp-pg .steps-blk {
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    padding: 72px;
    position: relative
}

.cmp-pg .steps-blk__inner {
    max-width: 1200px;
    margin: 0 auto
}

.cmp-pg .steps-blk__heading-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 72px;
    align-items: start
}

.cmp-pg .steps-blk__h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    grid-column: 1 / 3;
    text-decoration: underline;
    text-decoration-color: #fefea280;
    text-underline-offset: 8px
}

.cmp-pg .steps-blk__intro {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffe0;
    margin: 0;
    grid-column: 3 / 4;
    padding-top: 8px
}

.cmp-pg .steps-rail {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative
}

.cmp-pg .steps-rail__line {
    position: absolute;
    left: 28px;
    top: 56px;
    bottom: 56px;
    width: 2px;
    background: #fefea24d
}

.cmp-pg .step-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding: 24px 0;
    position: relative
}

.cmp-pg .step-item+.step-item {
    border-top: 1px solid #ffffff1f
}

.cmp-pg .step-item__num {
    width: 56px;
    height: 56px;
    border-radius: 26px;
    background: #fefea226;
    border: 2px solid #fefea280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #FEFEA2;
    flex-shrink: 0;
    transition: background .22s ease-out, border-color .22s ease-out;
    position: relative;
    z-index: 1
}

.cmp-pg .step-item:hover .step-item__num {
    background: #fefea252;
    border-color: #FEFEA2
}

.cmp-pg .step-item__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 8px
}

.cmp-pg .step-item__h4 {
    font-size: 18px;
    line-height: 1.45;
    color: #FEFEA2;
    margin: 0;
    font-weight: 700
}

.cmp-pg .step-item__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #ffffffd1;
    margin: 0
}

.cmp-pg .steps-blk__profiles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 72px;
    padding-top: 36px;
    border-top: 1px solid #ffffff2e
}

.cmp-pg .prof-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px;
    background: #ffffff14;
    border-radius: 15px;
    border: 1px solid #ffffff26;
    transition: background .28s ease-out, transform .2s ease-out;
    position: relative;
    overflow: hidden
}

.cmp-pg .prof-card:hover {
    background: #ffffff26;
    transform: translateY(-4px)
}

.cmp-pg .prof-card__img-wrap {
    width: 88px;
    height: 116px;
    border-radius: 42px;
    overflow: hidden;
    box-shadow: -1px 7px 22px 0 #8c0e301a;
    flex-shrink: 0
}

.cmp-pg .prof-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.cmp-pg .prof-card__name {
    font-size: 16px;
    line-height: 1.45;
    color: #fff;
    font-weight: 700;
    text-align: center;
    margin: 0
}

.cmp-pg .prof-card__role {
    font-size: 16px;
    line-height: 1.45;
    color: #fefea2d9;
    text-align: center;
    letter-spacing: .08em;
    margin: 0
}

.cmp-pg .prof-card__quote {
    font-size: 16px;
    line-height: 1.65;
    color: #ffffffc7;
    text-align: center;
    margin: 0
}

.cmp-pg .steps-blk__dir {
    bottom: 36px;
    right: 72px
}

@media (max-width: 1024px) {
    .cmp-pg .title-blk {
        grid-template-columns: 200px 1fr;
        padding: 24px 36px;
        gap: 24px
    }

    .cmp-pg .title-blk__h1 {
        font-size: 48px
    }

    .cmp-pg .title-blk__h1 span {
        font-size: 58px
    }

    .cmp-pg .steps-blk {
        padding: 36px
    }

    .cmp-pg .steps-blk__heading-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 36px
    }

    .cmp-pg .steps-blk__h2 {
        grid-column: 1;
        font-size: 48px
    }

    .cmp-pg .steps-blk__intro {
        grid-column: 1
    }

    .cmp-pg .steps-blk__profiles {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 36px
    }

    .cmp-pg .sec-divider {
        padding: 24px 36px
    }
}

@media (max-width: 640px) {
    .cmp-pg .title-blk {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 12px
    }

    .cmp-pg .title-blk__frame {
        left: 8px;
        right: 8px
    }

    .cmp-pg .title-blk__img-col {
        max-height: 180px
    }

    .cmp-pg .title-blk__text-col {
        padding: 0;
        gap: 12px
    }

    .cmp-pg .title-blk__h1 {
        font-size: 36px
    }

    .cmp-pg .title-blk__h1 span {
        font-size: 44px
    }

    .cmp-pg .steps-blk {
        padding: 24px
    }

    .cmp-pg .steps-blk__h2 {
        font-size: 36px
    }

    .cmp-pg .steps-rail__line {
        display: none
    }

    .cmp-pg .steps-blk__profiles {
        grid-template-columns: 1fr
    }

    .cmp-pg .sec-divider {
        padding: 24px
    }
}

@media (max-width: 360px) {
    .cmp-pg .title-blk__h1 {
        font-size: 28px
    }

    .cmp-pg .title-blk__h1 span {
        font-size: 34px
    }

    .cmp-pg .step-item {
        grid-template-columns: 44px 1fr;
        gap: 12px
    }

    .cmp-pg .step-item__num {
        width: 44px;
        height: 44px;
        font-size: 16px
    }
}

.dgst {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.dgst .metrics-band {
    background: #8C0E30;
    padding: 36px 72px;
    position: relative
}

.dgst .metrics-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 50%, #47b6fc14 60px, transparent 60px), radial-gradient(circle at 20% 50%, #47b6fc0d 90px, transparent 90px), radial-gradient(circle at 60% 30%, #fefea20f 50px, transparent 50px), radial-gradient(circle at 60% 30%, #fefea20a 80px, transparent 80px), radial-gradient(circle at 80% 70%, #47b6fc0f 70px, transparent 70px), radial-gradient(circle at 80% 70%, #47b6fc08 100px, transparent 100px);
    pointer-events: none
}

.dgst .metrics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
    max-width: 520px;
    margin: 0 auto;
    position: relative
}

.dgst .metric-cell {
    background: #ffffff12;
    border-radius: 15px;
    padding: 24px;
    text-align: center;
    box-shadow: -1px 7px 22px 0 #47b6fc1a;
    border-right: 3px solid #47B6FC;
    transition: transform .25s ease-out, background .2s ease-out
}

.dgst .metric-cell:hover {
    background: #ffffff21;
    transform: scale(1.04)
}

.dgst .metric-num {
    font-size: 62px;
    line-height: 1.2;
    color: #FEFEA2;
    font-weight: 700;
    display: block
}

.dgst .metric-lbl {
    font-size: 16px;
    line-height: 1.45;
    color: #ffffffd1;
    letter-spacing: .06em;
    display: block;
    margin-top: 4px
}

.dgst .metrics-band-head {
    font-size: 18px;
    line-height: 1.45;
    color: #fff9;
    letter-spacing: .1em;
    text-align: center;
    margin-bottom: 36px;
    position: relative
}

.dgst .title-strip {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 36px;
    padding: 72px 72px 36px;
    background: #fff;
    position: relative
}

.dgst .title-strip::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 72px;
    right: 72px;
    height: 1px;
    background: #47B6FC
}

.dgst .title-strip::before {
    content: '';
    position: absolute;
    top: 24px;
    right: 72px;
    width: 1px;
    height: 120px;
    background: #8c0e302e
}

.dgst .title-img-wrap {
    flex: 0 0 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: -1px 9px 36px 0 #47b6fc1c;
    opacity: .72;
    align-self: flex-start
}

.dgst .title-img-wrap img {
    width: 280px;
    height: 158px;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block
}

.dgst .title-text-zone {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dgst .title-eyebrow {
    font-size: 16px;
    line-height: 1.45;
    color: #8C0E30;
    letter-spacing: .09em
}

.dgst .title-h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #1b1b2e;
    font-weight: 700;
    margin: 0
}

.dgst .title-declare {
    font-size: 18px;
    line-height: 1.65;
    color: #2d2d3a;
    max-width: 560px
}

.dgst .divider-tick {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0 72px;
    gap: 0
}

.dgst .divider-tick-line {
    flex: 1;
    height: 1px;
    background: #47b6fc59;
    position: relative
}

.dgst .divider-tick-line::before,
.dgst .divider-tick-line::after {
    content: '';
    position: absolute;
    top: -4px;
    width: 1px;
    height: 8px;
    background: #47b6fc80
}

.dgst .divider-tick-line::before {
    left: 25%
}

.dgst .divider-tick-line::after {
    left: 75%
}

.dgst .divider-tick-dot {
    width: 6px;
    height: 6px;
    border-radius: 4px;
    background: #47B6FC;
    margin: 0 8px;
    flex-shrink: 0
}

.dgst .posts-band {
    padding: 36px 72px 72px;
    background: #f4f7fb;
    position: relative
}

.dgst .posts-band-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 160px;
    height: 160px;
    pointer-events: none;
    overflow: hidden
}

.dgst .posts-band-decor svg {
    width: 160px;
    height: 160px;
    opacity: .07
}

.dgst .posts-band-label {
    font-size: 16px;
    line-height: 1.45;
    color: #8C0E30;
    letter-spacing: .1em;
    margin-bottom: 24px;
    display: block
}

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

.dgst .post-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    display: flex;
    flex-direction: column;
    transition: box-shadow .22s ease-out, transform .22s ease-out;
    border-right: 3px solid #47B6FC;
    overflow: hidden;
    animation: dgst-grow-in .45s cubic-bezier(0.34, 1.56, 0.64, 1) both
}

.dgst .post-card:nth-child(1) {
    animation-delay: .05s
}

.dgst .post-card:nth-child(2) {
    animation-delay: .12s
}

.dgst .post-card:nth-child(3) {
    animation-delay: .19s
}

.dgst .post-card:nth-child(4) {
    animation-delay: .26s
}

.dgst .post-card:nth-child(5) {
    animation-delay: .33s
}

@keyframes dgst-grow-in {
    from {
        opacity: 0;
        transform: scale(0.9)
    }

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

.dgst .posts-grid:hover .post-card {
    transform: scale(0.97);
    box-shadow: -1px 3px 3px 0 #47b6fc0d
}

.dgst .posts-grid:hover .post-card:hover {
    transform: scale(1.03);
    box-shadow: -1px 9px 36px 0 #47b6fc1c
}

.dgst .post-card__img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0
}

.dgst .post-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease-out
}

.dgst .post-card:hover .post-card__img-wrap img {
    transform: scale(1.04)
}

.dgst .post-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.dgst .post-card__tags {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.dgst .post-card__tag {
    font-size: 16px;
    line-height: 1.45;
    color: #8C0E30;
    background: #8c0e3012;
    border-radius: 4px;
    padding: 4px 8px;
    letter-spacing: .05em
}

.dgst .post-card__cat {
    font-size: 16px;
    line-height: 1.45;
    color: #47B6FC;
    background: #47b6fc17;
    border-radius: 4px;
    padding: 4px 8px;
    letter-spacing: .05em
}

.dgst .post-card__ttl {
    font-size: 18px;
    line-height: 1.45;
    color: #1b1b2e;
    font-weight: 600;
    margin: 4px 0 0;
    text-decoration: none;
    display: block;
    transition: color .2s ease-out
}

.dgst .post-card__ttl:hover {
    color: #8C0E30
}

.dgst .post-card__desc {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a4a;
    margin: 0
}

.dgst .post-card__meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    flex-wrap: wrap
}

.dgst .post-card__author {
    font-size: 16px;
    line-height: 1.45;
    color: #555568;
    flex: 1 1 auto
}

.dgst .post-card__readtime {
    font-size: 16px;
    line-height: 1.45;
    color: #888;
    white-space: nowrap
}

.dgst .post-card__views {
    font-size: 16px;
    line-height: 1.45;
    color: #888;
    white-space: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px
}

.dgst .post-card__views svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0
}

.dgst .post-card__link-row {
    padding: 0 24px 24px;
    margin-top: -4px
}

.dgst .post-card__link {
    font-size: 16px;
    line-height: 1.45;
    color: #8C0E30;
    text-decoration: none;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    position: relative;
    letter-spacing: .04em;
    transition: color .2s ease-out
}

.dgst .post-card__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8C0E30;
    transition: width .25s ease-out
}

.dgst .post-card__link:hover::after {
    width: 100%
}

.dgst .post-card__link:hover {
    color: #6a0a24
}

.dgst .post-card__arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0
}

.dgst .about-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 72px;
    padding: 72px;
    background: #fff;
    position: relative
}

.dgst .about-strip::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 72px;
    width: 80px;
    height: 80px;
    border-top: 1px solid #47b6fc40;
    border-left: 1px solid #47b6fc40;
    border-radius: 4px 0 0 0;
    pointer-events: none
}

.dgst .about-text-col {
    flex: 1 1 auto;
    max-width: 560px
}

.dgst .about-h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #1b1b2e;
    font-weight: 700;
    margin: 0 0 24px;
    text-decoration: underline;
    text-decoration-color: #47B6FC;
    text-underline-offset: 8px
}

.dgst .about-p {
    font-size: 18px;
    line-height: 1.65;
    color: #2d2d3a;
    margin: 0 0 12px
}

.dgst .about-p-sm {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a4a;
    margin: 0
}

.dgst .about-aside {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dgst .about-pill {
    background: #47b6fc14;
    border-radius: 26px;
    padding: 12px 24px;
    font-size: 16px;
    line-height: 1.45;
    color: #1b1b2e;
    border-right: 3px solid #8C0E30;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    transition: background .2s ease-out, transform .18s ease-out
}

.dgst .about-pill:hover {
    background: #47b6fc26;
    transform: translateX(-4px)
}

.dgst .ai-strip {
    background: #1b1b2e !important;
    padding: 72px;
    position: relative;
    overflow: hidden
}

.dgst .ai-strip-decor {
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    pointer-events: none;
    overflow: hidden
}

.dgst .ai-strip-decor svg {
    opacity: .06
}

.dgst .ai-strip-inner {
    display: flex;
    flex-direction: row;
    gap: 72px;
    align-items: flex-start;
    max-width: 1000px
}

.dgst .ai-strip-label {
    font-size: 16px;
    line-height: 1.45;
    color: #47B6FC;
    letter-spacing: .1em;
    margin-bottom: 12px;
    display: block
}

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

.dgst .ai-p {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffc7;
    margin: 0 0 12px
}

.dgst .ai-p-sm {
    font-size: 16px;
    line-height: 1.65;
    color: #fff9;
    margin: 0
}

.dgst .ai-facts {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 8px
}

.dgst .ai-fact-item {
    border-radius: 15px;
    background: #ffffff0d;
    padding: 12px 24px;
    border-right: 3px solid #FEFEA2;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    transition: background .2s ease-out
}

.dgst .ai-fact-item:hover {
    background: #ffffff17
}

.dgst .ai-fact-label {
    font-size: 16px;
    line-height: 1.45;
    color: #FEFEA2;
    letter-spacing: .05em;
    display: block
}

.dgst .ai-fact-desc {
    font-size: 16px;
    line-height: 1.45;
    color: #fff9;
    display: block;
    margin-top: 4px
}

.dgst .cta-strip {
    padding: 72px;
    background: linear-gradient(90deg, #47B6FC 0%, #8C0E30 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 36px
}

.dgst .cta-h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    margin: 0;
    max-width: 500px
}

.dgst .cta-sub {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffd9;
    margin: 12px 0 0;
    max-width: 420px
}

.dgst .cta-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1.45;
    color: #8C0E30;
    background: #FEFEA2;
    border-radius: 42px;
    padding: 12px 36px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: -1px 7px 22px 0 #8c0e301a;
    border: 2px solid transparent;
    transition: background .22s ease-out, color .22s ease-out, border-color .22s ease-out;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative
}

.dgst .cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 42px;
    border: 2px solid #FEFEA2;
    opacity: 0;
    transition: opacity .22s ease-out
}

.dgst .cta-btn:hover {
    background: transparent;
    color: #FEFEA2;
    border-color: #FEFEA2
}

.dgst .cta-btn:hover::before {
    opacity: 1
}

.dgst .cta-btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

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

    .dgst .title-img-wrap {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px
    }

    .dgst .title-img-wrap img {
        width: 100%;
        height: auto
    }

    .dgst .posts-band {
        padding: 36px
    }

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

    .dgst .metrics-band {
        padding: 36px
    }

    .dgst .about-strip {
        padding: 36px;
        flex-direction: column;
        gap: 36px
    }

    .dgst .about-h2 {
        font-size: 62px
    }

    .dgst .ai-strip {
        padding: 36px
    }

    .dgst .ai-strip-inner {
        flex-direction: column;
        gap: 36px
    }

    .dgst .cta-strip {
        padding: 36px;
        flex-direction: column;
        align-items: flex-start
    }

    .dgst .divider-tick {
        padding: 0 36px
    }

    .dgst .title-strip::after {
        left: 36px;
        right: 36px
    }

    .dgst .title-strip::before {
        right: 36px
    }
}

@media (max-width: 640px) {
    .dgst .title-strip {
        padding: 24px;
        gap: 24px
    }

    .dgst .title-h1 {
        font-size: 62px
    }

    .dgst .posts-band {
        padding: 24px
    }

    .dgst .posts-grid {
        grid-template-columns: 1fr
    }

    .dgst .metrics-band {
        padding: 24px
    }

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

    .dgst .metric-num {
        font-size: 62px
    }

    .dgst .about-strip {
        padding: 24px
    }

    .dgst .about-h2 {
        font-size: 62px
    }

    .dgst .ai-strip {
        padding: 24px
    }

    .dgst .ai-h2 {
        font-size: 62px
    }

    .dgst .cta-strip {
        padding: 24px
    }

    .dgst .cta-h2 {
        font-size: 62px
    }

    .dgst .divider-tick {
        padding: 0 24px
    }

    .dgst .title-strip::after {
        left: 24px;
        right: 24px
    }

    .dgst .title-strip::before {
        right: 24px
    }

    .dgst .about-strip::before {
        left: 24px
    }
}

@media (max-width: 360px) {
    .dgst .title-h1 {
        font-size: 62px
    }

    .dgst .metrics-grid {
        grid-template-columns: 1fr
    }

    .dgst .cta-h2 {
        font-size: 62px
    }
}

.ctus-pg {
    max-width: 1440px;
    margin: 0 auto;
    background: #fff;
    overflow: hidden
}

.ctus-pg .pg-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #47B6FC, #8C0E30, transparent);
    border: none;
    margin: 0
}

.ctus-pg .reach-strip {
    background: #fff;
    padding: 72px 36px;
    position: relative
}

.ctus-pg .reach-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(135deg, #47b6fc0a 0px, #47b6fc0a 1px, transparent 1px, transparent 12px);
    pointer-events: none
}

.ctus-pg .reach-strip__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px 36px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative
}

.ctus-pg .reach-strip__text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center
}

.ctus-pg .reach-strip__eyebrow {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: .12em;
    color: #8C0E30;
    text-transform: uppercase;
    font-weight: 600
}

.ctus-pg .reach-strip__hdg {
    font-size: 62px;
    line-height: 1.2;
    color: #1b1b2e;
    font-weight: 800;
    margin: 0
}

.ctus-pg .reach-strip__hdg em {
    font-style: normal;
    position: relative;
    display: inline-block;
    white-space: nowrap
}

.ctus-pg .reach-strip__hdg em::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    border-radius: 4px
}

.ctus-pg .reach-strip__desc {
    font-size: 18px;
    line-height: 1.65;
    color: #2d2d3a;
    margin: 0;
    max-width: 480px
}

.ctus-pg .reach-strip__desc strong {
    color: #8C0E30
}

.ctus-pg .reach-strip__img-col {
    position: relative;
    display: flex;
    align-items: stretch
}

.ctus-pg .reach-strip__img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: -1px 9px 36px 0 #47b6fc1c;
    filter: grayscale(100%);
    transition: filter .45s ease-out
}

.ctus-pg .reach-strip__img-wrap:hover {
    filter: grayscale(0%)
}

.ctus-pg .reach-strip__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block
}

.ctus-pg .reach-strip__contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px
}

.ctus-pg .c-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 15px;
    background: #f5faff;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    transition: box-shadow .25s ease-out, background .2s ease-out
}

.ctus-pg .c-card:hover {
    box-shadow: -1px 7px 22px 0 #47b6fc1a;
    background: #edf6ff
}

.ctus-pg .c-card__icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.ctus-pg .c-card__icon svg {
    width: 22px;
    height: 22px
}

.ctus-pg .c-card__label {
    font-size: 16px;
    line-height: 1.2;
    color: #8C0E30;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px
}

.ctus-pg .c-card__val {
    font-size: 18px;
    line-height: 1.45;
    color: #1b1b2e;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease-out
}

.ctus-pg .c-card__val:hover {
    color: #47B6FC
}

.ctus-pg .c-card__val--plain {
    cursor: default
}

@keyframes brightness-pulse {

    0%,
    100% {
        filter: brightness(1)
    }

    50% {
        filter: brightness(1.025)
    }
}

.ctus-pg .form-panel {
    background: linear-gradient(to right, #edf6ff, #fdf0f3);
    padding: 72px 36px;
    animation: brightness-pulse 7s ease-in-out infinite;
    position: relative
}

.ctus-pg .form-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, #8c0e3006 0px, #8c0e3006 1px, transparent 1px, transparent 18px);
    pointer-events: none
}

.ctus-pg .form-panel__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 36px 72px;
    align-items: start;
    position: relative
}

.ctus-pg .form-panel__aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 8px
}

.ctus-pg .form-panel__aside-hdg {
    font-size: 18px;
    line-height: 1.45;
    color: #1b1b2e;
    font-weight: 700;
    margin: 0
}

.ctus-pg .form-panel__aside-body {
    font-size: 16px;
    line-height: 1.65;
    color: #2d2d3a;
    margin: 0
}

.ctus-pg .form-panel__aside-img {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: -1px 7px 22px 0 #8c0e301a
}

.ctus-pg .form-panel__aside-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block
}

.ctus-pg .form-panel__aside-links {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus-pg .form-panel__aside-link {
    font-size: 16px;
    line-height: 1.45;
    color: #8C0E30;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s ease-out, gap .25s ease-out
}

.ctus-pg .form-panel__aside-link:hover {
    color: #47B6FC;
    gap: 12px
}

.ctus-pg .form-panel__aside-link::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 4px;
    transition: width .25s ease-out
}

.ctus-pg .form-panel__aside-link:hover::after {
    width: 28px
}

.ctus-pg .frm {
    background: #fff;
    border-radius: 26px;
    padding: 36px;
    box-shadow: -1px 9px 36px 0 #8c0e301c;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ctus-pg .frm__hdg {
    font-size: 18px;
    line-height: 1.45;
    color: #1b1b2e;
    font-weight: 800;
    margin: 0
}

.ctus-pg .frm__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

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

.ctus-pg .frm__field--full {
    grid-column: 1 / -1
}

.ctus-pg .frm__label {
    font-size: 16px;
    line-height: 1.2;
    color: #2d2d3a;
    font-weight: 600;
    letter-spacing: .04em
}

.ctus-pg .frm__label--req::after {
    content: ' *';
    color: #8C0E30
}

.ctus-pg .frm__input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    line-height: 1.45;
    color: #1b1b2e;
    background: #f5faff;
    border: 2px solid #d0e8f8;
    border-radius: 15px;
    outline: none;
    box-shadow: inset 0 3px 6px #47b6fc12;
    transition: border-color .2s ease-out, box-shadow .25s ease-out;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none
}

.ctus-pg .frm__input::placeholder {
    color: #2d2d3a59
}

.ctus-pg .frm__input:focus {
    border-color: #47B6FC;
    box-shadow: inset 0 3px 6px #47b6fc12 0 0 0 3px #47b6fc26
}

.ctus-pg .frm__select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    font-size: 16px;
    line-height: 1.45;
    color: #1b1b2e;
    background: #f5faff;
    border: 2px solid #d0e8f8;
    border-radius: 15px;
    outline: none;
    box-shadow: inset 0 3px 6px #47b6fc12;
    transition: border-color .2s ease-out, box-shadow .25s ease-out;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238C0E30' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer
}

.ctus-pg .frm__select:focus {
    border-color: #47B6FC;
    box-shadow: inset 0 3px 6px #47b6fc12 0 0 0 3px #47b6fc26
}

.ctus-pg .frm__priority-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ctus-pg .frm__priority-label {
    font-size: 16px;
    line-height: 1.2;
    color: #2d2d3a;
    font-weight: 600;
    letter-spacing: .04em
}

.ctus-pg .frm__priority-opts {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.ctus-pg .frm__priority-opt {
    position: relative
}

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

.ctus-pg .frm__priority-opt label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 42px;
    border: 2px solid #d0e8f8;
    background: #f5faff;
    font-size: 16px;
    line-height: 1.2;
    color: #2d2d3a;
    cursor: pointer;
    transition: border-color .2s ease-out, background .2s ease-out, color .15s ease-out;
    user-select: none
}

.ctus-pg .frm__priority-opt label::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 42px;
    background: #d0e8f8;
    flex-shrink: 0;
    transition: background .2s ease-out
}

.ctus-pg .frm__priority-opt input[type="radio"]:checked+label {
    border-color: #8C0E30;
    background: #fdf0f3;
    color: #8C0E30;
    font-weight: 700
}

.ctus-pg .frm__priority-opt input[type="radio"]:checked+label::before {
    background: #8C0E30
}

.ctus-pg .frm__priority-opt input[type="radio"]:focus-visible+label {
    outline: 3px solid #47B6FC;
    outline-offset: 2px
}

.ctus-pg .frm__priority-opt label:hover {
    border-color: #47B6FC;
    background: #edf6ff
}

.ctus-pg .frm__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: #f5faff;
    border-radius: 15px;
    border: 2px solid #d0e8f8
}

.ctus-pg .frm__privacy-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #8C0E30;
    cursor: pointer
}

.ctus-pg .frm__privacy-text {
    font-size: 16px;
    line-height: 1.65;
    color: #2d2d3a;
    margin: 0
}

.ctus-pg .frm__privacy-text a {
    color: #8C0E30;
    text-decoration: underline;
    transition: color .2s ease-out
}

.ctus-pg .frm__privacy-text a:hover {
    color: #47B6FC
}

.ctus-pg .frm__submit-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px
}

.ctus-pg .frm__btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 36px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    border: none;
    border-radius: 26px;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow .35s ease-out, transform .2s ease-out;
    box-shadow: -1px 7px 22px 0 #8c0e301a
}

.ctus-pg .frm__btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 26px;
    border: 2px solid transparent;
    background: linear-gradient(to right, #8C0E30, #47B6FC) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity .25s ease-out
}

.ctus-pg .frm__btn:hover::before {
    opacity: 1
}

.ctus-pg .frm__btn:hover {
    box-shadow: -1px 9px 36px 0 #8c0e301c;
    transform: translateY(-2px)
}

.ctus-pg .frm__btn:active {
    transform: translateY(0)
}

.ctus-pg .frm__btn:focus-visible {
    outline: 3px solid #47B6FC;
    outline-offset: 3px
}

.ctus-pg .frm__btn-arrow {
    display: inline-block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    transition: width .25s ease-out
}

.ctus-pg .frm__btn-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -4px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg)
}

.ctus-pg .frm__btn:hover .frm__btn-arrow {
    width: 28px
}

.ctus-pg .frm__note {
    font-size: 16px;
    line-height: 1.45;
    color: #2d2d3a8c;
    margin: 0
}

@media (max-width: 1024px) {
    .ctus-pg .reach-strip__grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .ctus-pg .reach-strip__hdg {
        font-size: 62px
    }

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

    .ctus-pg .form-panel__aside {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start
    }

    .ctus-pg .form-panel__aside-img {
        width: 280px;
        flex-shrink: 0
    }
}

@media (max-width: 640px) {
    .ctus-pg .reach-strip {
        padding: 36px 24px
    }

    .ctus-pg .reach-strip__hdg {
        font-size: 62px
    }

    .ctus-pg .frm__row {
        grid-template-columns: 1fr
    }

    .ctus-pg .frm__priority-opts {
        flex-direction: column
    }

    .ctus-pg .form-panel {
        padding: 36px 24px
    }

    .ctus-pg .frm {
        padding: 24px
    }

    .ctus-pg .frm__submit-wrap {
        flex-direction: column;
        align-items: flex-start
    }

    .ctus-pg .form-panel__aside {
        flex-direction: column
    }

    .ctus-pg .form-panel__aside-img {
        width: 100%
    }
}

@media (max-width: 360px) {
    .ctus-pg .reach-strip__hdg {
        font-size: 62px
    }

    .ctus-pg .frm__btn {
        padding: 12px 24px;
        font-size: 16px
    }
}

.entr {
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.entr .pg-title {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    padding: 72px 72px 36px;
    gap: 72px;
    position: relative;
    background: #fff
}

.entr .pg-title__img-col {
    position: relative
}

.entr .pg-title__img-frame {
    width: 100%;
    aspect-ratio: 16/9;
    clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 8% 100%, 0 92%);
    overflow: hidden;
    position: relative
}

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

.entr .pg-title__img-tint {
    position: absolute;
    inset: 0;
    background: #47b6fc2e;
    pointer-events: none
}

.entr .pg-title__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px
}

.entr .pg-title__eyebrow {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .12em;
    color: #8C0E30;
    text-transform: uppercase
}

.entr .pg-title__h1 {
    font-size: 62px;
    line-height: 1.2;
    color: #111;
    margin: 0
}

.entr .pg-title__counter-row {
    display: flex;
    align-items: baseline;
    gap: 12px
}

.entr .pg-title__count-num {
    font-size: 72px;
    line-height: 1.2;
    color: #47B6FC;
    font-weight: 700
}

.entr .pg-title__count-label {
    font-size: 16px;
    line-height: 1.45;
    color: #444
}

.entr .pg-title__lead {
    font-size: 18px;
    line-height: 1.65;
    color: #333;
    max-width: 480px
}

.entr .pg-title__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #8C0E30;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    border: none;
    background: none;
    cursor: pointer;
    transition: color .25s ease-out
}

.entr .pg-title__cta::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8C0E30;
    transition: width .35s ease-out
}

.entr .pg-title__cta:hover::after,
.entr .pg-title__cta:focus::after {
    width: 100%
}

.entr .pg-title__cta-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.entr .divider-chevron {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #fff
}

.entr .divider-chevron svg {
    display: block;
    width: 100%
}

.entr .divider-chevron--light svg {
    fill: #f4f8ff
}

.entr .divider-chevron--white svg {
    fill: #fff
}

.entr .divider-chevron--tint svg {
    fill: #fefdf0
}

.entr .divider-chevron--mid svg {
    fill: #f0f4f8
}

.entr .exp-block {
    background: #f4f8ff;
    padding: 72px 72px 36px
}

.entr .exp-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start
}

.entr .exp-block__portrait-wrap {
    aspect-ratio: 3/4;
    width: 100%;
    max-width: 320px;
    overflow: hidden;
    box-shadow: -1px 7px 22px 0 #47b6fc1a
}

.entr .exp-block__portrait-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.entr .exp-block__text {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 12px
}

.entr .exp-block__label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .1em;
    color: #47B6FC;
    text-transform: uppercase
}

.entr .exp-block__h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #111;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #FEFEA2;
    text-underline-offset: 6px;
    text-decoration-thickness: 4px
}

.entr .exp-block__quote {
    font-size: 18px;
    line-height: 1.65;
    color: #222;
    border-top: 2px solid #47B6FC;
    padding-top: 12px
}

.entr .exp-block__body {
    font-size: 16px;
    line-height: 1.65;
    color: #444
}

.entr .exp-block__person {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.entr .exp-block__person-name {
    font-size: 16px;
    line-height: 1.2;
    color: #111;
    font-weight: 600
}

.entr .exp-block__person-role {
    font-size: 16px;
    line-height: 1.2;
    color: #8C0E30
}

.entr .offer-block {
    background: #fff;
    padding: 72px
}

.entr .offer-block__top {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 36px
}

.entr .offer-block__h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #111;
    margin: 0 0 12px;
    text-decoration: underline;
    text-decoration-color: #FEFEA2;
    text-underline-offset: 6px;
    text-decoration-thickness: 4px
}

.entr .offer-block__intro {
    font-size: 18px;
    line-height: 1.65;
    color: #444
}

.entr .offer-block__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.entr .offer-card {
    border: 1px solid #e2ecf7;
    border-radius: 15px;
    padding: 36px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fff;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    transition: box-shadow .25s ease-out, border-color .2s ease-out;
    position: relative
}

.entr .offer-card:hover {
    box-shadow: -1px 9px 36px 0 #47b6fc1c;
    border-color: #47B6FC
}

.entr .offer-card__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0
}

.entr .offer-card__h3 {
    font-size: 18px;
    line-height: 1.45;
    color: #111;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #FEFEA2;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px
}

.entr .offer-card__text {
    font-size: 16px;
    line-height: 1.65;
    color: #555
}

.entr .offer-card__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-top: 8px
}

.entr .offer-card__tag {
    display: inline-block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .08em;
    color: #8C0E30;
    background: #FEFEA2;
    border-radius: 4px;
    padding: 4px 8px;
    align-self: flex-start
}

.entr .gap-block {
    background: #fefdf0;
    padding: 72px;
    position: relative;
    overflow: hidden
}

.entr .gap-block__circuit {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .04
}

.entr .gap-block__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start
}

.entr .gap-block__left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entr .gap-block__h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #111;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #FEFEA2;
    text-underline-offset: 6px;
    text-decoration-thickness: 4px
}

.entr .gap-block__body {
    font-size: 16px;
    line-height: 1.65;
    color: #444
}

.entr .gap-block__stat {
    border: 2px solid #47B6FC;
    outline: 5px solid #47B6FC;
    outline-offset: 3px;
    border-radius: 4px;
    padding: 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: flex-start;
    box-shadow: -1px 7px 22px 0 #47b6fc1a
}

.entr .gap-block__stat-num {
    font-size: 72px;
    line-height: 1.2;
    color: #47B6FC;
    font-weight: 700
}

.entr .gap-block__stat-label {
    font-size: 16px;
    line-height: 1.45;
    color: #333
}

.entr .gap-block__right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entr .gap-block__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    box-shadow: -1px 9px 36px 0 #47b6fc1c
}

.entr .gap-block__roles {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.entr .gap-role {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    padding: 12px;
    border-radius: 4px;
    background: #fff;
    box-shadow: -1px 3px 3px 0 #47b6fc12
}

.entr .gap-role__badge {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .07em;
    color: #fff;
    background: #8C0E30;
    border-radius: 4px;
    padding: 4px 8px;
    white-space: nowrap
}

.entr .gap-role__desc {
    font-size: 16px;
    line-height: 1.45;
    color: #444
}

.entr .grad-block {
    background: #f0f4f8;
    padding: 72px
}

.entr .grad-block__inner {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: 72px;
    align-items: start
}

.entr .grad-block__left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entr .grad-block__h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #111;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #FEFEA2;
    text-underline-offset: 6px;
    text-decoration-thickness: 4px
}

.entr .grad-block__lead {
    font-size: 18px;
    line-height: 1.65;
    color: #333
}

.entr .grad-block__body {
    font-size: 16px;
    line-height: 1.65;
    color: #555
}

.entr .grad-block__steps {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.entr .grad-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 12px;
    align-items: start
}

.entr .grad-step__num {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: linear-gradient(90deg, #47B6FC 0%, #8C0E30 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    flex-shrink: 0
}

.entr .grad-step__text {
    font-size: 16px;
    line-height: 1.65;
    color: #333;
    padding-top: 8px
}

.entr .grad-block__right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.entr .grad-block__img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 26px;
    display: block;
    box-shadow: -1px 9px 36px 0 #8c0e301c
}

.entr .grad-block__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.2;
    color: #8C0E30;
    text-decoration: none;
    padding: 12px 0;
    position: relative;
    transition: color .2s ease-out;
    align-self: flex-start
}

.entr .grad-block__link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8C0E30;
    transition: width .4s ease-out
}

.entr .grad-block__link:hover::after,
.entr .grad-block__link:focus::after {
    width: 100%
}

.entr .grad-block__link-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.entr .shadow-load {
    animation: shadow-build .45s ease-out forwards
}

@keyframes shadow-build {
    from {
        box-shadow: -1px 0 0 0 #47b6fc00
    }

    to {
        box-shadow: -1px 9px 36px 0 #47b6fc1c
    }
}

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

    .entr .pg-title__h1 {
        font-size: 62px
    }

    .entr .exp-block {
        padding: 36px
    }

    .entr .exp-block__grid {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .entr .exp-block__portrait-wrap {
        max-width: 240px
    }

    .entr .offer-block {
        padding: 36px
    }

    .entr .offer-block__cards {
        grid-template-columns: 1fr 1fr
    }

    .entr .gap-block {
        padding: 36px
    }

    .entr .gap-block__inner {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .entr .grad-block {
        padding: 36px
    }

    .entr .grad-block__inner {
        grid-template-columns: 1fr;
        gap: 36px
    }
}

@media (max-width: 640px) {
    .entr .pg-title {
        padding: 24px;
        gap: 24px
    }

    .entr .pg-title__h1 {
        font-size: 62px
    }

    .entr .pg-title__count-num {
        font-size: 62px
    }

    .entr .offer-block {
        padding: 24px
    }

    .entr .offer-block__cards {
        grid-template-columns: 1fr
    }

    .entr .gap-block {
        padding: 24px
    }

    .entr .grad-block {
        padding: 24px
    }

    .entr .exp-block {
        padding: 24px
    }

    .entr .gap-block__stat-num {
        font-size: 62px
    }

    .entr .grad-block__h2,
    .entr .gap-block__h2,
    .entr .exp-block__h2,
    .entr .offer-block__h2 {
        font-size: 62px
    }
}

@media (max-width: 360px) {
    .entr .pg-title__h1 {
        font-size: 62px
    }

    .entr .pg-title {
        padding: 24px 12px
    }

    .entr .offer-block,
    .entr .gap-block,
    .entr .grad-block,
    .entr .exp-block {
        padding: 24px 12px
    }
}

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

.abt-us * {
    box-sizing: border-box
}

.abt-us .pg-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px
}

.abt-us ::selection {
    background: #47B6FC;
    color: #1a1a2e
}

.abt-us input::placeholder,
.abt-us textarea::placeholder {
    color: #28283c61
}

.abt-us .ttl-blk {
    position: relative;
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    padding: 72px 24px
}

.abt-us .ttl-blk::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 30%, #fefea22e 0%, transparent 45%), radial-gradient(circle at 80% 70%, #8c0e3040 0%, transparent 50%), radial-gradient(circle at 60% 10%, #47b6fc38 0%, transparent 40%);
    pointer-events: none
}

.abt-us .ttl-frame {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    border: 1px solid #fefea259;
    padding: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center
}

.abt-us .ttl-frame::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border: 1px solid #fefea226;
    pointer-events: none
}

.abt-us .ttl-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .ttl-label {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .12em;
    color: #FEFEA2;
    text-transform: uppercase
}

.abt-us .ttl-h1 {
    font-size: 72px;
    line-height: 1.2;
    color: #fff;
    margin: 0
}

.abt-us .ttl-h1 span {
    font-size: 62px;
    display: block;
    color: #FEFEA2;
    line-height: 1.2
}

.abt-us .ttl-desc {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffe0;
    max-width: 480px
}

.abt-us .ttl-img-col {
    position: relative
}

.abt-us .ttl-img-wrap {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: -1px 9px 36px 0 #47b6fc1c
}

.abt-us .ttl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0px);
    display: block;
    transition: filter .45s ease-out
}

.abt-us .ttl-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #47b6fc47, #8c0e302e);
    pointer-events: none
}

.abt-us .ttl-img-blur {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    background: linear-gradient(to top, #8c0e3059, transparent);
    pointer-events: none
}

.abt-us .ttl-math-deco {
    position: absolute;
    top: -24px;
    right: -12px;
    font-size: 180px;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1px #fefea22e;
    pointer-events: none;
    user-select: none;
    overflow: hidden
}

.abt-us .divider-arrows {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    background: #fff
}

.abt-us .divider-arrows .arr {
    width: 12px;
    height: 12px;
    border-right: 2px solid #47B6FC;
    border-bottom: 2px solid #47B6FC;
    transform: rotate(-45deg);
    opacity: .5
}

.abt-us .divider-arrows .arr:nth-child(2) {
    opacity: .35
}

.abt-us .divider-arrows .arr:nth-child(3) {
    opacity: .2
}

.abt-us .mission-strip {
    background: #f4f8fd;
    padding: 72px 24px;
    position: relative
}

.abt-us .mission-strip .math-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 320px;
    line-height: 1.2;
    color: transparent;
    -webkit-text-stroke: 1px #47b6fc12;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    overflow: hidden
}

.abt-us .mission-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start
}

.abt-us .mission-col-a {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .mission-col-b {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .ms-eyebrow {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .1em;
    color: #8C0E30;
    text-transform: uppercase
}

.abt-us .ms-h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #47B6FC;
    text-underline-offset: 8px
}

.abt-us .ms-body {
    font-size: 18px;
    line-height: 1.65;
    color: #2c2c3e
}

.abt-us .ms-body-sm {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a50
}

.abt-us .ms-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: -1px 7px 22px 0 #8c0e301a
}

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

.abt-us .ms-stat-row {
    display: flex;
    flex-direction: row;
    gap: 24px
}

.abt-us .ms-stat {
    flex: 1;
    background: #fff;
    border-radius: 15px;
    padding: 24px;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow .25s ease-out, transform .2s ease-out
}

.abt-us .ms-stat:hover {
    box-shadow: -1px 9px 36px 0 #47b6fc1c;
    transform: translateY(-3px)
}

.abt-us .ms-stat-num {
    font-size: 62px;
    line-height: 1.2;
    color: #47B6FC
}

.abt-us .ms-stat-lbl {
    font-size: 16px;
    line-height: 1.45;
    color: #3a3a50
}

.abt-us .divider-line {
    height: 2px;
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    margin: 0
}

.abt-us .team-strip {
    background: #fff;
    padding: 72px 24px;
    position: relative
}

.abt-us .team-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px
}

.abt-us .team-hdr {
    text-align: center
}

.abt-us .tm-h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0 0 12px;
    text-decoration: underline;
    text-decoration-color: #FEFEA2;
    text-underline-offset: 8px
}

.abt-us .tm-sub {
    font-size: 18px;
    line-height: 1.65;
    color: #3a3a50;
    max-width: 560px;
    margin: 0 auto
}

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

.abt-us .tm-card {
    background: #f4f8fd;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: -1px 3px 3px 0 #47b6fc12;
    transition: box-shadow .35s ease-out, transform .25s ease-out;
    display: flex;
    flex-direction: column
}

.abt-us .tm-card:hover {
    box-shadow: -1px 9px 36px 0 #47b6fc1c;
    transform: translateY(-4px)
}

.abt-us .tm-portrait {
    aspect-ratio: 5/7;
    overflow: hidden;
    border-radius: 15px;
    margin: 12px 12px 0
}

.abt-us .tm-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.abt-us .tm-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px
}

.abt-us .tm-name {
    font-size: 18px;
    line-height: 1.45;
    color: #1b1b2e
}

.abt-us .tm-role {
    font-size: 16px;
    line-height: 1.45;
    color: #8C0E30;
    letter-spacing: .06em;
    text-transform: uppercase
}

.abt-us .tm-bio {
    font-size: 16px;
    line-height: 1.65;
    color: #3a3a50
}

.abt-us .tm-card-plain {
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    border-radius: 26px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: -1px 7px 22px 0 #8c0e301a
}

.abt-us .tm-plain-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-icon 3.2s ease-out infinite
}

.abt-us .tm-plain-icon svg {
    width: 48px;
    height: 48px
}

@keyframes float-icon {

    0%,
    100% {
        transform: translateY(0px)
    }

    50% {
        transform: translateY(-8px)
    }
}

.abt-us .tm-plain-q {
    font-size: 18px;
    line-height: 1.65;
    color: #fff
}

.abt-us .tm-plain-name {
    font-size: 16px;
    line-height: 1.45;
    color: #FEFEA2;
    letter-spacing: .08em
}

.abt-us .divider-dots {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    background: #f4f8fd
}

.abt-us .divider-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 42px;
    background: #47B6FC
}

.abt-us .divider-dots .dot:nth-child(2) {
    background: #8C0E30;
    width: 10px;
    height: 10px
}

.abt-us .divider-dots .dot:nth-child(3) {
    background: #FEFEA2;
    border: 1px solid #ccc
}

.abt-us .approach-strip {
    position: relative;
    padding: 72px 24px;
    background: #1b1b2e
}

.abt-us .approach-bg-img {
    position: absolute;
    inset: 0;
    overflow: hidden
}

.abt-us .approach-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: .22
}

.abt-us .approach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #1b1b2eeb, #8c0e30c7);
    pointer-events: none
}

.abt-us .approach-inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 36px
}

.abt-us .ap-hdr {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 640px
}

.abt-us .ap-eyebrow {
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: .12em;
    color: #FEFEA2;
    text-transform: uppercase
}

.abt-us .ap-h2 {
    font-size: 62px;
    line-height: 1.2;
    color: #fff;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #fefea280;
    text-underline-offset: 8px
}

.abt-us .ap-intro {
    font-size: 18px;
    line-height: 1.65;
    color: #ffffffd1
}

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

.abt-us .ap-item {
    background: #ffffff0f;
    border: 1px solid #fefea226;
    border-radius: 15px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background .25s ease-out, border-color .2s ease-out;
    box-shadow: inset 0 2px 6px #47b6fc14
}

.abt-us .ap-item:hover {
    background: #47b6fc1f;
    border-color: #47b6fc66
}

.abt-us .ap-item-icon {
    width: 36px;
    height: 36px;
    animation: float-icon 2.8s ease-out infinite
}

.abt-us .ap-item-icon svg {
    width: 36px;
    height: 36px
}

.abt-us .ap-item:nth-child(2) .ap-item-icon {
    animation-delay: .5s
}

.abt-us .ap-item:nth-child(3) .ap-item-icon {
    animation-delay: 1s
}

.abt-us .ap-item:nth-child(4) .ap-item-icon {
    animation-delay: 1.5s
}

.abt-us .ap-item-h {
    font-size: 18px;
    line-height: 1.45;
    color: #FEFEA2;
    margin: 0
}

.abt-us .ap-item-p {
    font-size: 16px;
    line-height: 1.65;
    color: #ffffffc7
}

.abt-us .ap-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.abt-us .ap-img-wrap {
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: -1px 7px 22px 0 #47b6fc1a
}

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

.abt-us .ap-img-wrap:hover img {
    transform: scale(1.04)
}

@media (max-width: 1024px) {
    .abt-us .ttl-frame {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .abt-us .ttl-h1 {
        font-size: 62px
    }

    .abt-us .ttl-h1 span {
        font-size: 48px
    }

    .abt-us .mission-inner {
        grid-template-columns: 1fr
    }

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

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

    .abt-us .ap-img-row {
        grid-template-columns: 1fr 1fr
    }

    .abt-us .ms-h2 {
        font-size: 48px
    }

    .abt-us .tm-h2 {
        font-size: 48px
    }

    .abt-us .ap-h2 {
        font-size: 48px
    }
}

@media (max-width: 640px) {
    .abt-us .ttl-frame {
        padding: 24px
    }

    .abt-us .ttl-h1 {
        font-size: 48px
    }

    .abt-us .ttl-h1 span {
        font-size: 36px
    }

    .abt-us .ttl-math-deco {
        font-size: 100px
    }

    .abt-us .ms-h2,
    .abt-us .tm-h2,
    .abt-us .ap-h2 {
        font-size: 36px
    }

    .abt-us .ms-stat-row {
        flex-direction: column
    }

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

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

    .abt-us .ap-img-row {
        grid-template-columns: 1fr
    }

    .abt-us .mission-strip,
    .abt-us .team-strip,
    .abt-us .approach-strip {
        padding: 36px 24px
    }
}

@media (max-width: 360px) {
    .abt-us .ttl-blk {
        padding: 36px 12px
    }

    .abt-us .ttl-frame {
        padding: 12px
    }

    .abt-us .pg-inner {
        padding: 0 12px
    }
}

.success-pg {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 72px 24px;
    background: #fff;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box
}

.success-pg .success-wrap {
    max-width: 560px;
    width: 100%;
    text-align: center
}

.success-pg .success-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 42px;
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    box-shadow: -1px 7px 22px 0 #47b6fc1a
}

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

.success-pg .success-heading {
    font-size: 62px;
    line-height: 1.2;
    color: #1b1b2e;
    margin: 0 0 24px;
    letter-spacing: -.5px
}

.success-pg .success-heading span {
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, #47B6FC, #8C0E30);
    border-radius: 4px;
    margin: 12px auto 0
}

.success-pg .success-desc {
    font-size: 18px;
    line-height: 1.65;
    color: #2e2e3a;
    margin: 0 0 36px
}

.success-pg .success-note {
    font-size: 16px;
    line-height: 1.45;
    color: #4a4a5a;
    background: #f4f8ff;
    border-radius: 15px;
    padding: 24px;
    margin: 0 0 36px;
    box-shadow: inset 0 3px 6px 0 #47b6fc12;
    text-align: left
}

.success-pg .success-note strong {
    color: #1b1b2e
}

.success-pg .success-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    line-height: 1.45;
    color: #8C0E30;
    text-decoration: none;
    letter-spacing: .03em;
    position: relative;
    padding: 8px 4px;
    transition: color .25s ease-out, gap .2s ease-out
}

.success-pg .success-back-link::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 4px;
    right: 100%;
    height: 1px;
    background: #8C0E30;
    transition: right .35s ease-out
}

.success-pg .success-back-link:hover::after {
    right: 4px
}

.success-pg .success-back-link:hover {
    color: #47B6FC;
    gap: 12px
}

.success-pg .success-back-link:hover::after {
    background: #47B6FC
}

.success-pg .success-back-link:focus-visible {
    outline: 2px solid #47B6FC;
    outline-offset: 4px;
    border-radius: 4px
}

.success-pg .success-back-arrow {
    width: 18px;
    height: 18px;
    display: block;
    flex-shrink: 0;
    transition: transform .2s ease-out
}

.success-pg .success-back-link:hover .success-back-arrow {
    transform: translateX(3px)
}

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

    .success-pg .success-heading {
        font-size: 62px
    }

    .success-pg .success-icon-wrap {
        width: 60px;
        height: 60px;
        margin-bottom: 24px
    }
}

@media (max-width: 360px) {
    .success-pg .success-heading {
        font-size: 18px
    }

    .success-pg .success-desc {
        font-size: 16px
    }
}

/* lang-toggle */
.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 4px;
    border: 1px solid #47B6FC;
    border-radius: 8px;
    background: #fff;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2
}

.lang-toggle__btn {
    font-family: 'EB Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    line-height: 1;
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: #8C0E30;
    cursor: pointer;
    transition: background .15s ease, color .15s ease
}

.lang-toggle__btn:hover {
    background: #fefea2aa
}

.lang-toggle__btn--active {
    background: #47B6FC;
    color: #fff
}

.lang-toggle__btn--active:hover {
    background: #3aa0e8;
    color: #fff
}
