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

body {
    margin: 0;
    overscroll-behavior: contain;
    overflow-x: hidden
}

.brand-bar {
    background: linear-gradient(135deg, #5C0BAF 0%, #3a0070 60%, #07D8C1 100%);
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

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

.brand-bar__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Cormorant', serif;
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .18s ease-out
}

.brand-bar__contact-item:hover {
    color: #07D8C1
}

.brand-bar__contact-item i {
    font-size: 15px;
    color: #FD7E00
}

.brand-bar__trust {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff1a;
    border: 1px solid #ffffff2e;
    border-radius: 28px;
    padding: 10px 20px
}

.brand-bar__trust-stars {
    display: flex;
    gap: 4px
}

.brand-bar__trust-stars i {
    color: #FD7E00;
    font-size: 15px
}

.brand-bar__trust-label {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    line-height: 1.4;
    color: #fff;
    letter-spacing: .01em
}

.site-header {
    background: linear-gradient(180deg, #fff 0%, #f5f0fa 55%, #f5f0fa00 100%);
    padding: 40px 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none
}

.site-header__logo-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: -1px 1px 2px 1px #fd7e000f -1px 6px 20px 1px #fd7e0014;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    flex-shrink: 0
}

.site-header__logo-wrap img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    max-width: 100%
}

.site-header__brand-name {
    font-family: 'Cormorant', serif;
    font-size: 41px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF
}

.site-header__brand-name span {
    color: #FD7E00
}

.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    position: relative
}

.primary-nav__item {
    position: relative
}

.primary-nav__link {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #2a1040;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color .18s ease-out, background .15s ease-out;
    min-height: 44px
}

.primary-nav__link:hover,
.primary-nav__link:focus {
    color: #5C0BAF;
    background: #5c0baf0f;
    outline: none
}

.primary-nav__link:focus-visible {
    outline: 2px solid #FD7E00;
    outline-offset: 2px
}

.primary-nav__link--has-sub i.bi-chevron-down {
    font-size: 12px;
    transition: transform .15s ease-out
}

.primary-nav__item:hover .primary-nav__link--has-sub i.bi-chevron-down,
.primary-nav__item:focus-within .primary-nav__link--has-sub i.bi-chevron-down {
    transform: rotate(180deg)
}

.primary-nav__item--active .primary-nav__link {
    color: #FD7E00;
    background: #fd7e0012;
    border-radius: 3px
}

.primary-nav__sub {
    display: none;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 16px;
    box-shadow: -1px 6px 20px 1px #fd7e0014 -1px 12px 40px 1px #fd7e0021;
    min-width: 220px;
    padding: 10px;
    z-index: 200
}

.primary-nav__item:hover .primary-nav__sub,
.primary-nav__item:focus-within .primary-nav__sub {
    display: block
}

.primary-nav__sub-link {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #2a1040;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    transition: color .14s ease-out, background .14s ease-out
}

.primary-nav__sub-link:hover,
.primary-nav__sub-link:focus {
    color: #07D8C1;
    background: #07d8c112;
    outline: none
}

.primary-nav__sub-link:focus-visible {
    outline: 2px solid #FD7E00;
    outline-offset: 2px
}

.primary-nav__divider {
    width: 1px;
    height: 20px;
    background: #5c0baf26;
    margin: 0 10px;
    flex-shrink: 0
}

.site-footer {
    background: #2a1040;
    padding: 40px 40px 20px
}

.site-footer__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px
}

.site-footer__logo-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    box-shadow: -1px 1px 2px 1px #07d8c10f -1px 6px 20px 1px #07d8c114
}

.site-footer__logo-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    max-width: 100%
}

.site-footer__legal {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px
}

.site-footer__legal-link {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #ffffffb3;
    text-decoration: none;
    transition: color .16s ease-out;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.site-footer__legal-link:hover {
    color: #07D8C1
}

.site-footer__legal-link:focus-visible {
    outline: 2px solid #FD7E00;
    outline-offset: 2px;
    border-radius: 3px
}

.site-footer__sep {
    color: #ffffff40;
    font-size: 15px
}

.site-footer__copy {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #ffffff73;
    text-align: center
}

.cookie-toast {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1200;
    max-width: 340px;
    width: calc(100vw - 40px);
    background: #fff;
    border-radius: 16px;
    box-shadow: -1px 12px 40px 1px #fd7e0021;
    padding: 20px;
    font-family: 'Cormorant', serif;
    transition: transform .18s ease-out, opacity .18s ease-out
}

.cookie-toast.toast--hidden {
    transform: translateY(-120%);
    opacity: 0
}

.cookie-toast__desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1040;
    letter-spacing: .01em;
    margin: 0 0 10px
}

.cookie-toast__uses {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1040;
    letter-spacing: .01em;
    padding-left: 20px;
    margin: 0 0 10px
}

.cookie-toast__uses li {
    margin-bottom: 4px
}

.cookie-toast__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #5C0BAF;
    letter-spacing: .01em;
    margin: 0 0 10px
}

.cookie-toast__panel {
    display: none;
    margin-bottom: 10px
}

.cookie-toast__panel.panel--open {
    display: block
}

.cookie-toast__toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-top: 1px solid #5c0baf1a
}

.cookie-toast__toggle-label {
    font-size: 15px;
    line-height: 1.4;
    color: #2a1040;
    letter-spacing: .01em
}

.cookie-toast__toggle-label--fixed {
    color: #2a104080;
    font-style: italic
}

.cookie-toast__checkbox {
    width: 20px;
    height: 20px;
    accent-color: #FD7E00;
    cursor: pointer
}

.cookie-toast__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.cookie-toast__btn {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color .16s ease-out;
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.cookie-toast__btn--accept {
    color: #FD7E00;
    font-weight: 700
}

.cookie-toast__btn--accept:hover,
.cookie-toast__btn--accept:focus {
    color: #5C0BAF
}

.cookie-toast__btn--reject {
    color: #2a1040
}

.cookie-toast__btn--reject:hover,
.cookie-toast__btn--reject:focus {
    color: #07D8C1
}

.cookie-toast__btn--settings {
    color: #2a10408c;
    font-size: 15px
}

.cookie-toast__btn--settings:hover,
.cookie-toast__btn--settings:focus {
    color: #5C0BAF
}

.cookie-toast__btn:focus-visible {
    outline: 2px solid #FD7E00;
    outline-offset: 2px;
    border-radius: 3px
}

@media (max-width: 1024px) {
    .brand-bar {
        padding: 10px 20px;
        flex-wrap: wrap;
        gap: 10px
    }

    .site-header {
        padding: 40px 20px 80px
    }

    .site-header__brand-name {
        font-size: 41px
    }
}

@media (max-width: 640px) {
    .brand-bar__contact {
        flex-wrap: wrap;
        gap: 10px
    }

    .brand-bar__trust {
        width: 100%;
        justify-content: center
    }

    .site-header__brand-name {
        font-size: 41px
    }

    .primary-nav__divider {
        display: none
    }

    .site-footer {
        padding: 40px 20px 20px
    }
}

@media (max-width: 360px) {
    .site-header__brand {
        flex-direction: column;
        text-align: center
    }

    .site-header__brand-name {
        font-size: 41px
    }

    .brand-bar {
        padding: 10px
    }
}

.terms-area {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 40px
}

.terms-area h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin-bottom: 40px;
    margin-top: 0
}

.terms-area h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin-top: 80px;
    margin-bottom: 20px
}

.terms-area h3 {
    font-size: 41px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #FD7E00;
    margin-top: 40px;
    margin-bottom: 20px
}

.terms-area h4 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #07D8C1;
    text-transform: uppercase;
    margin-top: 40px;
    margin-bottom: 10px
}

.terms-area h5 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #5C0BAF;
    margin-top: 20px;
    margin-bottom: 10px
}

.terms-area h6 {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #333c45;
    margin-top: 20px;
    margin-bottom: 10px
}

.terms-area p {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2b3138;
    margin-top: 0;
    margin-bottom: 20px
}

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

.terms-area a {
    color: #5C0BAF;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .18s ease-out, text-decoration-color .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.terms-area a:hover {
    color: #FD7E00;
    text-decoration-color: #FD7E00
}

.terms-area a:visited {
    color: #07D8C1
}

.terms-area hr {
    border: none;
    border-top: 2px solid #f0ece8;
    margin-top: 40px;
    margin-bottom: 40px;
    border-radius: 3px;
    box-shadow: -1px 1px 2px 1px #fd7e000f
}

@media (max-width: 1024px) {
    .terms-area {
        padding: 80px 40px
    }

    .terms-area h1 {
        font-size: 56px
    }

    .terms-area h2 {
        font-size: 41px
    }

    .terms-area h3 {
        font-size: 41px
    }
}

@media (max-width: 640px) {
    .terms-area {
        padding: 40px 20px
    }

    .terms-area h1 {
        font-size: 41px;
        line-height: 1.1
    }

    .terms-area h2 {
        font-size: 41px;
        margin-top: 40px
    }

    .terms-area h3 {
        font-size: 15px;
        line-height: 1.4
    }

    .terms-area h4,
    .terms-area h5,
    .terms-area h6 {
        font-size: 15px
    }

    .terms-area hr {
        margin-top: 40px;
        margin-bottom: 40px
    }
}

@media (max-width: 360px) {
    .terms-area {
        padding: 20px 10px
    }

    .terms-area h1 {
        font-size: 41px
    }

    .terms-area h2 {
        font-size: 41px
    }
}

.anl-det {
    background: #f5f3ef;
    overflow-x: clip;
    position: relative
}

.anl-det .spot-drift {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 320px;
    background: radial-gradient(ellipse at 30% 40%, #fd7e0012 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: driftspot 18s ease-out infinite alternate;
    z-index: 0
}

@keyframes driftspot {
    0% {
        transform: translate(-40px, 20px)
    }

    50% {
        transform: translate(60px, 80px)
    }

    100% {
        transform: translate(-20px, 140px)
    }
}

.anl-det .pub-band {
    border-top: 2px solid #fd7e002e;
    border-bottom: 1px dotted #5c0baf26;
    background: linear-gradient(to left, #07d8c10f, transparent);
    position: relative;
    z-index: 1
}

.anl-det .pub-band-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.anl-det .pub-meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    flex: 1
}

.anl-det .pub-label {
    font-size: 15px;
    line-height: 1.4;
    color: #3a2a1a;
    letter-spacing: .01em
}

.anl-det .pub-label span {
    color: #FD7E00
}

.anl-det .pub-label .sep {
    color: #07D8C1;
    margin: 0 10px
}

.anl-det .readtime-badge {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: #5c0baf12;
    border-radius: 3px;
    padding: 10px 20px;
    font-size: 15px;
    line-height: 1.4;
    color: #5C0BAF;
    letter-spacing: .02em;
    border-top: 2px solid #5C0BAF;
    border-bottom: 1px solid #5c0baf33
}

.anl-det .readtime-badge i {
    font-size: 15px
}

.anl-det .art-lead {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-bottom: 1px dotted #fd7e0033
}

.anl-det .art-lead-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start
}

.anl-det .art-lead-text {
    position: relative
}

.anl-det .art-category-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #07D8C1;
    border-bottom: 2px solid #07D8C1;
    padding-bottom: 10px;
    margin-bottom: 20px
}

.anl-det .art-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FD7E00;
    margin-bottom: 20px;
    max-width: 680px
}

.anl-det .art-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: #3a2a1a;
    letter-spacing: .01em;
    max-width: 560px;
    border-left: 3px solid #07D8C1;
    border-top: 1px solid #07d8c14d;
    padding: 20px;
    background: #07d8c10a;
    border-radius: 0 3px 3px 0
}

.anl-det .art-img-frame {
    position: relative
}

.anl-det .art-img-frame img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    display: block;
    clip-path: polygon(0 0, 100% 0, 100% 82%, 88% 100%, 0 100%);
    border-radius: 16px 0 0 16px;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    transition: clip-path .18s ease-out
}

.anl-det .art-img-frame:hover img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.anl-det .art-img-deco {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 0;
    border: 3px solid #fd7e0038;
    border-top: 6px solid #FD7E00;
    pointer-events: none;
    z-index: 2
}

.anl-det .art-body-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1
}

.anl-det .art-body-section {
    background: #fff;
    border-radius: 3px;
    border-top: 3px solid #FD7E00;
    border-bottom: 2px solid #fd7e001f;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    padding: 40px
}

.anl-det .art-body-section .art-body-content {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1f12;
    letter-spacing: .01em
}

.anl-det .art-body-section .art-body-content p {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #2a1f12
}

.anl-det .art-body-section .art-body-content h2 {
    font-size: 41px;
    line-height: 1.1;
    color: #5C0BAF;
    letter-spacing: .01em;
    margin-top: 40px;
    margin-bottom: 20px;
    text-decoration: underline;
    text-decoration-color: #5c0baf40;
    text-underline-offset: 6px
}

.anl-det .art-body-section .art-body-content h3 {
    font-size: 15px;
    line-height: 1.4;
    color: #FD7E00;
    letter-spacing: .02em;
    margin-top: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-color: #fd7e004d;
    text-underline-offset: 4px
}

.anl-det .art-body-section .art-body-content ul,
.anl-det .art-body-section .art-body-content ol {
    padding-left: 20px;
    margin-bottom: 20px
}

.anl-det .art-body-section .art-body-content li {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1f12;
    margin-bottom: 10px;
    letter-spacing: .01em
}

.anl-det .art-body-section .art-body-content code {
    background: #5c0baf12;
    border-radius: 3px;
    padding: 2px 8px;
    font-size: 15px;
    color: #5C0BAF;
    letter-spacing: .01em
}

.anl-det .art-aside {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.anl-det .aside-author-card {
    background: linear-gradient(to left, #fd7e000f, transparent);
    border-radius: 16px;
    border-top: 2px solid #fd7e0040;
    border-bottom: 1px solid #fd7e001a;
    padding: 20px;
    box-shadow: -1px 1px 2px 1px #fd7e000f
}

.anl-det .aside-author-name {
    font-size: 15px;
    line-height: 1.4;
    color: #2a1f12;
    letter-spacing: .01em;
    margin-bottom: 10px
}

.anl-det .aside-author-name strong {
    color: #FD7E00;
    display: block;
    font-size: 15px
}

.anl-det .aside-author-name .author-label {
    color: #5C0BAF;
    font-size: 15px
}

.anl-det .aside-nav-card {
    background: #fff;
    border-radius: 3px;
    border-top: 3px solid #07D8C1;
    border-bottom: 1px dotted #07d8c14d;
    padding: 20px;
    box-shadow: -1px 1px 2px 1px #07d8c10f
}

.anl-det .aside-nav-card h4 {
    font-size: 15px;
    line-height: 1.4;
    color: #07D8C1;
    letter-spacing: .02em;
    text-decoration: underline;
    text-decoration-color: #07d8c14d;
    text-underline-offset: 4px;
    margin-bottom: 20px
}

.anl-det .aside-links {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.anl-det .aside-link-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    line-height: 1.4;
    color: #2a1f12;
    text-decoration: none;
    letter-spacing: .01em;
    padding: 10px;
    border-radius: 3px;
    border-left: 2px solid transparent;
    border-top: 1px solid transparent;
    transition: border-color .15s ease-out, background .18s ease-out, color .15s ease-out
}

.anl-det .aside-link-item:hover {
    border-left-color: #FD7E00;
    border-top-color: #fd7e0026;
    background: #fd7e000a;
    color: #FD7E00
}

.anl-det .aside-link-item:visited {
    opacity: .7
}

.anl-det .aside-link-item i {
    color: #FD7E00;
    font-size: 15px;
    flex-shrink: 0
}

.anl-det .aside-metric-card {
    border-radius: 28px;
    background: linear-gradient(to left, #5C0BAF, #5c0bafbf);
    padding: 20px;
    box-shadow: -1px 12px 40px 1px #5c0baf21;
    border-top: 2px solid #ffffff26;
    border-bottom: 1px solid #ffffff14
}

.anl-det .aside-metric-card h5 {
    font-size: 15px;
    line-height: 1.4;
    color: #ffffffbf;
    letter-spacing: .02em;
    margin-bottom: 10px
}

.anl-det .metric-row {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 10px
}

.anl-det .metric-num {
    font-size: 41px;
    line-height: 1.1;
    color: #FD7E00;
    letter-spacing: .01em
}

.anl-det .metric-unit {
    font-size: 15px;
    line-height: 1.4;
    color: #fff9;
    letter-spacing: .02em
}

.anl-det .metric-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff8c;
    margin-top: 10px;
    letter-spacing: .01em
}

.anl-det .cta-strip {
    background: linear-gradient(to left, #07d8c11f, #fd7e0014);
    border-top: 2px solid #fd7e0038;
    border-bottom: 2px dotted #07d8c133;
    position: relative;
    z-index: 1
}

.anl-det .cta-strip-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.anl-det .cta-text-block {
    flex: 1;
    min-width: 280px
}

.anl-det .cta-text-block h3 {
    font-size: 41px;
    line-height: 1.1;
    color: #5C0BAF;
    letter-spacing: .01em;
    margin-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: #5c0baf33;
    text-underline-offset: 6px
}

.anl-det .cta-text-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1f12;
    letter-spacing: .01em;
    max-width: 480px
}

.anl-det .cta-actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.anl-det .btn-prim {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    background: #FD7E00;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    padding: 20px 40px;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    transition: background .18s ease-out, box-shadow .15s ease-out, gap .12s ease-out;
    overflow: hidden;
    position: relative
}

.anl-det .btn-prim i {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width .18s ease-out, opacity .15s ease-out;
    font-size: 15px
}

.anl-det .btn-prim:hover {
    background: #e06e00;
    box-shadow: -1px 12px 40px 1px #fd7e0021;
    gap: 10px
}

.anl-det .btn-prim:hover i {
    max-width: 20px;
    opacity: 1
}

.anl-det .btn-prim:focus {
    outline: 3px solid #FD7E00;
    outline-offset: 3px
}

.anl-det .btn-prim:active {
    background: #c96200;
    transform: scale(0.98)
}

.anl-det .btn-sec {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    background: transparent;
    color: #5C0BAF;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    padding: 20px 40px;
    border-radius: 3px;
    border: 2px solid #5C0BAF;
    cursor: pointer;
    text-decoration: none;
    transition: background .15s ease-out, color .12s ease-out, gap .18s ease-out
}

.anl-det .btn-sec i {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-width .18s ease-out, opacity .15s ease-out;
    font-size: 15px
}

.anl-det .btn-sec:hover {
    background: #5c0baf12;
    gap: 10px
}

.anl-det .btn-sec:hover i {
    max-width: 20px;
    opacity: 1
}

.anl-det .btn-sec:focus {
    outline: 3px solid #5C0BAF;
    outline-offset: 3px
}

.anl-det .btn-sec:active {
    background: #5c0baf24
}

.anl-det .art-author-strip {
    background: #fff;
    border-top: 1px dotted #5c0baf26;
    border-bottom: 2px solid #5c0baf1a;
    position: relative;
    z-index: 1
}

.anl-det .art-author-strip-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap
}

.anl-det .author-icon-block {
    width: 80px;
    height: 80px;
    border-radius: 28px;
    background: linear-gradient(to left, #fd7e0026, #07d8c11a);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border-top: 2px solid #fd7e004d;
    border-bottom: 1px solid #07d8c133;
    flex-shrink: 0;
    box-shadow: -1px 1px 2px 1px #fd7e000f
}

.anl-det .author-icon-block i {
    font-size: 41px;
    color: #FD7E00
}

.anl-det .author-info {
    flex: 1
}

.anl-det .author-info h4 {
    font-size: 15px;
    line-height: 1.4;
    color: #5C0BAF;
    letter-spacing: .02em;
    margin-bottom: 10px;
    text-decoration: underline;
    text-decoration-color: #5c0baf40;
    text-underline-offset: 4px
}

.anl-det .author-info-name {
    font-size: 41px;
    line-height: 1.1;
    color: #FD7E00;
    letter-spacing: .01em;
    margin-bottom: 10px
}

.anl-det .author-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #2a1f12;
    letter-spacing: .01em;
    max-width: 560px
}

@media (max-width: 1024px) {
    .anl-det .art-lead-inner {
        grid-template-columns: 1fr;
        padding: 40px 20px 20px
    }

    .anl-det .art-img-frame {
        max-width: 480px
    }

    .anl-det .art-body-wrap {
        grid-template-columns: 1fr;
        padding: 40px 20px
    }

    .anl-det .art-aside {
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .anl-det .art-h1 {
        font-size: 41px
    }
}

@media (max-width: 640px) {
    .anl-det .pub-band-inner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start
    }

    .anl-det .art-lead-inner {
        padding: 20px;
        gap: 20px
    }

    .anl-det .art-h1 {
        font-size: 41px
    }

    .anl-det .art-body-section {
        padding: 20px
    }

    .anl-det .art-aside {
        grid-template-columns: 1fr
    }

    .anl-det .cta-strip-inner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start
    }

    .anl-det .cta-text-block h3 {
        font-size: 15px
    }

    .anl-det .art-author-strip-inner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px
    }
}

@media (max-width: 360px) {
    .anl-det .art-h1 {
        font-size: 41px
    }

    .anl-det .pub-label {
        font-size: 15px
    }

    .anl-det .cta-actions {
        flex-direction: column;
        align-items: stretch
    }
}

.anlx-root {
    background: #f5f3ef;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden
}

.anlx-root .pg-band {
    width: 100%;
    padding: 80px 40px;
    box-sizing: border-box
}

.anlx-root .pg-band.tight {
    padding: 40px
}

.anlx-root .pg-band.dense {
    padding: 20px 40px
}

.anlx-root .title-block {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 80px 40px 40px;
    background: #fff;
    border-bottom: 3px solid #FD7E00;
    position: relative;
    box-sizing: border-box
}

.anlx-root .title-block::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #07D8C1, #FD7E00);
    border-radius: 0 3px 3px 0
}

.anlx-root .title-img-col {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 6px 20px 1px #fd7e0014
}

.anlx-root .title-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .18s ease-out, brightness .15s ease-out
}

.anlx-root .title-img-col:hover img {
    transform: scale(1.04);
    filter: brightness(1.06)
}

.anlx-root .title-img-col .img-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #ffffff8c, transparent 60%);
    pointer-events: none
}

.anlx-root .title-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px
}

.anlx-root .title-text-col .accent-phrase {
    font-size: 15px;
    letter-spacing: .02em;
    color: #5C0BAF;
    font-weight: 700;
    text-transform: uppercase
}

.anlx-root .title-text-col h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0
}

.anlx-root .title-text-col h1 span {
    color: #FD7E00
}

.anlx-root .title-text-col .sub-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    max-width: 560px;
    margin: 0
}

.anlx-root .title-dots {
    position: absolute;
    bottom: 20px;
    right: 40px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-end;
    pointer-events: none
}

.anlx-root .title-dots span {
    border-radius: 28px;
    background: #07d8c12e;
    display: block
}

.anlx-root .title-dots span:nth-child(1) {
    width: 8px;
    height: 8px
}

.anlx-root .title-dots span:nth-child(2) {
    width: 14px;
    height: 14px;
    background: #fd7e002e
}

.anlx-root .title-dots span:nth-child(3) {
    width: 10px;
    height: 10px;
    background: #5c0baf21
}

.anlx-root .div-shape {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
    gap: 10px
}

.anlx-root .div-shape .d-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, #07D8C1, transparent);
    max-width: 200px
}

.anlx-root .div-shape .d-line.rev {
    background: linear-gradient(to right, #07D8C1, transparent)
}

.anlx-root .div-shape .d-gem {
    width: 10px;
    height: 10px;
    background: #FD7E00;
    border-radius: 3px;
    transform: rotate(45deg)
}

.anlx-root .metrics-strip {
    background: linear-gradient(to left, #07D8C1, #07d8c114);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    box-sizing: border-box
}

.anlx-root .metric-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #ffffffb8;
    border-radius: 16px;
    box-shadow: -1px 1px 2px 1px #07d8c10f;
    animation: anlx-wave .6s ease-out both
}

.anlx-root .metric-item:nth-child(1) {
    animation-delay: .05s
}

.anlx-root .metric-item:nth-child(2) {
    animation-delay: .12s
}

.anlx-root .metric-item:nth-child(3) {
    animation-delay: .19s
}

.anlx-root .metric-item:nth-child(4) {
    animation-delay: .26s
}

@keyframes anlx-wave {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

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

.anlx-root .metric-item .m-val {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    font-weight: 800
}

.anlx-root .metric-item .m-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #2e2e2e;
    letter-spacing: .01em
}

.anlx-root .posts-area {
    padding: 80px 40px;
    background: #fff;
    box-sizing: border-box
}

.anlx-root .posts-area .area-head {
    margin-bottom: 40px
}

.anlx-root .posts-area .area-head h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #07D8C1;
    margin: 0 0 10px;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: #07d8c166
}

.anlx-root .posts-area .area-head p {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0;
    max-width: 600px
}

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

.anlx-root .post-card {
    background: #f5f3ef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 1px 2px 1px #fd7e000f;
    display: flex;
    flex-direction: column;
    transition: box-shadow .18s ease-out, transform .15s ease-out;
    animation: anlx-wave .5s ease-out both
}

.anlx-root .post-card:nth-child(1) {
    animation-delay: .07s
}

.anlx-root .post-card:nth-child(2) {
    animation-delay: .14s
}

.anlx-root .post-card:nth-child(3) {
    animation-delay: .21s
}

.anlx-root .post-card:nth-child(4) {
    animation-delay: .28s
}

.anlx-root .post-card:nth-child(5) {
    animation-delay: .35s
}

.anlx-root .post-card:nth-child(6) {
    animation-delay: .42s
}

.anlx-root .post-card:hover {
    box-shadow: -1px 12px 40px 1px #fd7e0021;
    transform: translateY(-3px)
}

.anlx-root .post-card .card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative
}

.anlx-root .post-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .2s ease-out, filter .18s ease-out
}

.anlx-root .post-card:hover .card-img img {
    transform: scale(1.05);
    filter: brightness(1.07)
}

.anlx-root .post-card .card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1
}

.anlx-root .post-card .card-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    font-size: 15px;
    color: #5C0BAF;
    letter-spacing: .01em
}

.anlx-root .post-card .card-meta .meta-sep {
    color: #FD7E00;
    font-weight: 700
}

.anlx-root .post-card .card-meta .meta-date {
    color: #2e2e2e;
    opacity: .7
}

.anlx-root .post-card h4 {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0;
    font-weight: 700
}

.anlx-root .post-card .card-sub {
    font-size: 15px;
    line-height: 1.4;
    color: #FD7E00;
    letter-spacing: .01em;
    font-weight: 600;
    margin: 0
}

.anlx-root .post-card .card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0
}

.anlx-root .post-card .card-author {
    font-size: 15px;
    line-height: 1.4;
    color: #2e2e2e;
    letter-spacing: .01em;
    margin-top: auto
}

.anlx-root .post-card .card-author span {
    color: #5C0BAF;
    font-weight: 600
}

.anlx-root .post-card .card-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: #FD7E00;
    color: #fff;
    font-size: 15px;
    letter-spacing: .01em;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 3px;
    text-decoration: none;
    transition: background .16s ease-out, padding-left .14s ease-out;
    overflow: hidden;
    position: relative;
    margin-top: 10px;
    align-self: flex-start
}

.anlx-root .post-card .card-link .lnk-icon {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .14s ease-out, transform .14s ease-out;
    font-size: 15px
}

.anlx-root .post-card .card-link:hover {
    background: #5C0BAF;
    padding-left: 14px
}

.anlx-root .post-card .card-link:hover .lnk-icon {
    opacity: 1;
    transform: translateX(0)
}

.anlx-root .post-card .card-link:focus {
    outline: 2px solid #5C0BAF;
    outline-offset: 2px
}

.anlx-root .sidebar-area {
    padding: 80px 40px;
    background: #f5f3ef;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start
}

.anlx-root .sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.anlx-root .sidebar-col .s-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.anlx-root .sidebar-col .s-card h5 {
    font-size: 15px;
    line-height: 1.4;
    color: #5C0BAF;
    font-weight: 700;
    letter-spacing: .02em;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: #5c0baf4d
}

.anlx-root .sidebar-col .s-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0
}

.anlx-root .sidebar-col .s-card .tag-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0
}

.anlx-root .sidebar-col .s-card .tag-list li {
    font-size: 15px;
    line-height: 1.4;
    background: #07d8c11f;
    color: #2e2e2e;
    padding: 10px;
    border-radius: 3px;
    letter-spacing: .01em
}

.anlx-root .main-col {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.anlx-root .main-col h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FD7E00;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: #fd7e0059
}

.anlx-root .main-col .body-text {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0
}

.anlx-root .tip-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.anlx-root .tip-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: -1px 1px 2px 1px #fd7e000f;
    animation: anlx-wave .5s ease-out both
}

.anlx-root .tip-list li:nth-child(1) {
    animation-delay: .08s
}

.anlx-root .tip-list li:nth-child(2) {
    animation-delay: .16s
}

.anlx-root .tip-list li:nth-child(3) {
    animation-delay: .24s
}

.anlx-root .tip-list li:nth-child(4) {
    animation-delay: .32s
}

.anlx-root .tip-list li .tip-num {
    font-size: 15px;
    font-weight: 800;
    color: #FD7E00;
    min-width: 28px;
    letter-spacing: .01em
}

.anlx-root .pattern-area {
    padding: 80px 40px;
    background: #fff;
    position: relative;
    box-sizing: border-box;
    overflow: hidden
}

.anlx-root .pattern-area .bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .04;
    background-image: repeating-linear-gradient(135deg, #5C0BAF 0px, #5C0BAF 2px, transparent 2px, transparent 18px);
    z-index: 0
}

.anlx-root .pattern-area .pat-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.anlx-root .pattern-area h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin: 0;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
    text-decoration-color: #5c0baf4d
}

.anlx-root .steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.anlx-root .step-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: #f5f3ef;
    border-radius: 16px;
    border-top: 3px solid #07D8C1;
    box-shadow: -1px 6px 20px 1px #07d8c114;
    animation: anlx-wave .55s ease-out both
}

.anlx-root .step-item:nth-child(1) {
    animation-delay: .06s
}

.anlx-root .step-item:nth-child(2) {
    animation-delay: .14s
}

.anlx-root .step-item:nth-child(3) {
    animation-delay: .22s
}

.anlx-root .step-item .step-num {
    font-size: 41px;
    line-height: 1.1;
    color: #07d8c140;
    font-weight: 900;
    letter-spacing: .01em
}

.anlx-root .step-item h5 {
    font-size: 15px;
    line-height: 1.4;
    color: #1b1b1b;
    font-weight: 700;
    margin: 0;
    letter-spacing: .01em
}

.anlx-root .step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0
}

.anlx-root .cta-strip {
    padding: 80px 40px;
    background: linear-gradient(to left, #5C0BAF, #5c0bafd1);
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden
}

.anlx-root .cta-strip::before {
    content: '';
    display: block;
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 28px;
    background: #07d8c11f;
    pointer-events: none;
    transform: rotate(20deg)
}

.anlx-root .cta-strip .cta-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 600px
}

.anlx-root .cta-strip .cta-text h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0
}

.anlx-root .cta-strip .cta-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffe0;
    margin: 0
}

.anlx-root .cta-strip .cta-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: #FD7E00;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    padding: 20px 40px;
    border-radius: 3px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .16s ease-out, padding-left .14s ease-out;
    flex-shrink: 0
}

.anlx-root .cta-strip .cta-btn .btn-icon {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .14s ease-out, transform .14s ease-out
}

.anlx-root .cta-strip .cta-btn:hover {
    background: #07D8C1;
    padding-left: 34px
}

.anlx-root .cta-strip .cta-btn:hover .btn-icon {
    opacity: 1;
    transform: translateX(0)
}

.anlx-root .cta-strip .cta-btn:focus {
    outline: 2px solid #fff;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .anlx-root .title-block {
        grid-template-columns: 160px 1fr;
        gap: 20px;
        padding: 40px 20px
    }

    .anlx-root .title-text-col h1 {
        font-size: 41px
    }

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

    .anlx-root .metrics-strip {
        grid-template-columns: repeat(2, 1fr);
        padding: 40px 20px
    }

    .anlx-root .sidebar-area {
        grid-template-columns: 1fr;
        padding: 40px 20px
    }

    .anlx-root .steps-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .anlx-root .cta-strip {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px 20px
    }

    .anlx-root .posts-area {
        padding: 40px 20px
    }

    .anlx-root .pattern-area {
        padding: 40px 20px
    }
}

@media (max-width: 640px) {
    .anlx-root .title-block {
        grid-template-columns: 1fr;
        padding: 40px 20px 20px
    }

    .anlx-root .title-img-col {
        height: 180px
    }

    .anlx-root .title-text-col h1 {
        font-size: 41px
    }

    .anlx-root .posts-grid {
        grid-template-columns: 1fr
    }

    .anlx-root .metrics-strip {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
        gap: 10px
    }

    .anlx-root .metric-item .m-val {
        font-size: 41px
    }

    .anlx-root .steps-row {
        grid-template-columns: 1fr
    }

    .anlx-root .cta-strip .cta-btn {
        padding: 20px;
        width: 100%;
        justify-content: center
    }
}

@media (max-width: 360px) {
    .anlx-root .title-text-col h1 {
        font-size: 41px
    }

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

    .anlx-root .posts-area,
    .anlx-root .sidebar-area,
    .anlx-root .pattern-area,
    .anlx-root .cta-strip {
        padding: 20px 10px
    }
}

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

.lp-pg .reveal-child {
    opacity: 0;
    transform: translateY(16px);
    animation: lp-reveal .18s ease-out forwards
}

.lp-pg .reveal-child:nth-child(1) {
    animation-delay: .06s
}

.lp-pg .reveal-child:nth-child(2) {
    animation-delay: .12s
}

.lp-pg .reveal-child:nth-child(3) {
    animation-delay: .18s
}

.lp-pg .reveal-child:nth-child(4) {
    animation-delay: .24s
}

.lp-pg .reveal-child:nth-child(5) {
    animation-delay: .3s
}

.lp-pg .reveal-child:nth-child(6) {
    animation-delay: .36s
}

@keyframes lp-reveal {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.lp-pg .dot-mark {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    vertical-align: middle
}

.lp-pg .zigzag-divider {
    width: 100%;
    height: 18px;
    display: block;
    overflow: hidden
}

.lp-pg .btn-prime {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 40px;
    background: #FD7E00;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    transition: background .18s ease-out, box-shadow .18s ease-out;
    text-decoration: none
}

.lp-pg .btn-prime .btn-icon {
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .16s ease-out, transform .16s ease-out
}

.lp-pg .btn-prime .btn-label {
    transition: transform .16s ease-out
}

.lp-pg .btn-prime:hover .btn-icon {
    opacity: 1;
    transform: translateX(0)
}

.lp-pg .btn-prime:hover .btn-label {
    transform: translateX(6px)
}

.lp-pg .btn-prime:hover {
    background: #e06e00;
    box-shadow: -1px 12px 40px 1px #fd7e0021
}

.lp-pg .btn-prime:active {
    animation: lp-flash .15s ease-out
}

@keyframes lp-flash {
    0% {
        background: #07D8C1
    }

    100% {
        background: #e06e00
    }
}

.lp-pg .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: transparent;
    color: #5C0BAF;
    border: 2px solid #5C0BAF;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .01em;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .14s ease-out, color .14s ease-out
}

.lp-pg .btn-ghost:hover {
    border-color: #FD7E00;
    color: #FD7E00
}

.lp-pg .section-underline {
    display: block;
    width: 48px;
    height: 3px;
    background: #FD7E00;
    border-radius: 0;
    margin-top: 10px;
    margin-bottom: 20px
}

.lp-pg .arrow-deco {
    display: inline-block;
    width: 22px;
    height: 22px;
    opacity: .18;
    pointer-events: none
}

.lp-pg .prog-top {
    background: #fff;
    padding: 80px 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 80px;
    position: relative
}

.lp-pg .prog-top__deco {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(to left, #07D8C1, transparent);
    opacity: .1;
    pointer-events: none
}

.lp-pg .prog-top__text {
    flex: 1 1 480px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.lp-pg .prog-top__eyebrow {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    color: #07D8C1;
    margin-bottom: 10px;
    line-height: 1.4
}

.lp-pg .prog-top__h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin: 0 0 20px
}

.lp-pg .prog-top__lead {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2e;
    margin: 0 0 20px;
    max-width: 480px
}

.lp-pg .prog-top__meta {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px
}

.lp-pg .prog-top__meta-item {
    display: flex;
    flex-direction: column;
    gap: 0
}

.lp-pg .prog-top__meta-label {
    font-size: 15px;
    color: #555;
    letter-spacing: .01em;
    line-height: 1.4
}

.lp-pg .prog-top__meta-val {
    font-size: 15px;
    font-weight: 700;
    color: #FD7E00;
    letter-spacing: .02em;
    line-height: 1.4
}

.lp-pg .prog-top__img-col {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative
}

.lp-pg .prog-top__img {
    width: 320px;
    height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    box-shadow: -1px 12px 40px 1px #fd7e0021;
    display: block;
    max-width: 100%
}

.lp-pg .prog-top__img-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #5C0BAF;
    color: #fff;
    border-radius: 16px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    box-shadow: -1px 6px 20px 1px #07d8c114;
    line-height: 1.4
}

.lp-pg .prog-top__actions {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap
}

.lp-pg .mod-strip {
    background: linear-gradient(to left, #07D8C1, #07d8c10f);
    padding: 80px 40px;
    position: relative
}

.lp-pg .mod-strip__glass {
    background: #ffffff9e;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid #07d8c12e;
    padding: 40px;
    box-shadow: -1px 6px 20px 1px #07d8c114
}

.lp-pg .mod-strip__top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px
}

.lp-pg .mod-strip__heading-col {
    flex: 0 0 320px
}

.lp-pg .mod-strip__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin: 0
}

.lp-pg .mod-strip__desc {
    flex: 1 1 300px;
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2e;
    margin: 0;
    padding-top: 10px
}

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

.lp-pg .mod-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: -1px 1px 2px 1px #fd7e000f;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 3px solid #FD7E00;
    transition: box-shadow .16s cubic-bezier(0.4, 0, 0.6, 1), transform .16s cubic-bezier(0.4, 0, 0.6, 1)
}

.lp-pg .mod-item:hover {
    box-shadow: -1px 12px 40px 1px #fd7e0021;
    transform: translateY(-3px)
}

.lp-pg .mod-item__num {
    font-size: 41px;
    font-weight: 800;
    line-height: 1.1;
    color: #FD7E00;
    letter-spacing: .01em
}

.lp-pg .mod-item__title {
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2e;
    line-height: 1.4;
    letter-spacing: .01em;
    margin: 0
}

.lp-pg .mod-item__body {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a42;
    margin: 0
}

.lp-pg .mod-item__tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px
}

.lp-pg .mod-item__tag {
    font-size: 15px;
    color: #5C0BAF;
    background: #5c0baf12;
    border-radius: 3px;
    padding: 0 10px;
    line-height: 1.6;
    letter-spacing: .01em
}

.lp-pg .tier-band {
    background: #f5f2fc;
    padding: 80px 40px;
    position: relative
}

.lp-pg .tier-band__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FD7E00;
    margin: 0 0 10px;
    text-align: center
}

.lp-pg .tier-band__sub {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a42;
    text-align: center;
    margin: 0 auto 40px;
    max-width: 560px
}

.lp-pg .tier-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr 1fr;
    gap: 20px;
    max-width: 960px;
    margin: 0 auto 80px
}

.lp-pg .tier-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    position: relative;
    transition: box-shadow .2s ease-out
}

.lp-pg .tier-card:hover {
    box-shadow: -1px 12px 40px 1px #fd7e0021
}

.lp-pg .tier-card.featured {
    background: #5C0BAF;
    color: #fff
}

.lp-pg .tier-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FD7E00;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 3px;
    padding: 0 10px;
    line-height: 1.6;
    letter-spacing: .01em;
    white-space: nowrap
}

.lp-pg .tier-card__name {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #5C0BAF;
    line-height: 1.4;
    margin: 0
}

.lp-pg .tier-card.featured .tier-card__name {
    color: #07D8C1
}

.lp-pg .tier-card__price {
    font-size: 41px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #2a2a2e;
    margin: 0
}

.lp-pg .tier-card.featured .tier-card__price {
    color: #fff
}

.lp-pg .tier-card__price span {
    font-size: 15px;
    font-weight: 400;
    color: #888
}

.lp-pg .tier-card.featured .tier-card__price span {
    color: #ffffffa6
}

.lp-pg .tier-feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.lp-pg .tier-feat-list li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2e;
    letter-spacing: .01em
}

.lp-pg .tier-card.featured .tier-feat-list li {
    color: #ffffffe0
}

.lp-pg .tier-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 3px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    cursor: pointer;
    text-decoration: none;
    transition: background .16s ease-out, color .16s ease-out;
    border: 2px solid #FD7E00;
    background: transparent;
    color: #FD7E00
}

.lp-pg .tier-card__cta:hover {
    background: #FD7E00;
    color: #fff
}

.lp-pg .tier-card.featured .tier-card__cta {
    background: #FD7E00;
    color: #fff;
    border-color: #FD7E00
}

.lp-pg .tier-card.featured .tier-card__cta:hover {
    background: #e06e00;
    border-color: #e06e00
}

.lp-pg .expert-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
    flex-wrap: wrap
}

.lp-pg .expert-card {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: -1px 1px 2px 1px #fd7e000f
}

.lp-pg .expert-card__portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    display: block
}

.lp-pg .expert-card__name {
    font-size: 15px;
    font-weight: 700;
    color: #2a2a2e;
    line-height: 1.4;
    text-align: center;
    margin: 0
}

.lp-pg .expert-card__role {
    font-size: 15px;
    color: #5C0BAF;
    line-height: 1.4;
    text-align: center;
    margin: 0
}

.lp-pg .expert-card__quote {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a42;
    text-align: center;
    margin: 0
}

.lp-pg .rating-strip {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap
}

.lp-pg .rating-num {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #FD7E00;
    letter-spacing: .01em
}

.lp-pg .rating-label {
    font-size: 15px;
    color: #555;
    line-height: 1.4
}

.lp-pg .stars-row {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.lp-pg .star-svg {
    width: 20px;
    height: 20px
}

.lp-pg .img-content-block {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    flex-wrap: wrap
}

.lp-pg .img-content-block__img {
    width: 260px;
    height: 340px;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: -1px 6px 20px 1px #07d8c114;
    max-width: 100%
}

.lp-pg .img-content-block__text {
    flex: 1 1 280px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.lp-pg .feat-row {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.lp-pg .feat-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2e;
    letter-spacing: .01em
}

.lp-pg .feat-item strong {
    color: #FD7E00
}

.lp-pg .analytics-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #5C0BAF;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .01em;
    border-bottom: 2px solid #5c0baf40;
    padding-bottom: 2px;
    transition: color .14s ease-out, border-color .14s ease-out
}

.lp-pg .analytics-link:hover {
    color: #FD7E00;
    border-color: #FD7E00
}

.lp-pg .analytics-link:visited {
    opacity: .7
}

@media (max-width: 1024px) {
    .lp-pg .prog-top {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px
    }

    .lp-pg .prog-top__img-col {
        flex: 0 0 auto
    }

    .lp-pg .prog-top__text {
        max-width: 100%
    }

    .lp-pg .mod-list {
        grid-template-columns: repeat(2, 1fr)
    }

    .lp-pg .tier-grid {
        grid-template-columns: 1fr;
        max-width: 420px
    }

    .lp-pg .mod-strip__top {
        flex-direction: column;
        gap: 20px
    }

    .lp-pg .mod-strip__heading-col {
        flex: 0 0 auto
    }

    .lp-pg .mod-strip {
        padding: 40px 20px
    }

    .lp-pg .tier-band {
        padding: 40px 20px
    }

    .lp-pg .img-content-block {
        flex-direction: column
    }

    .lp-pg .img-content-block__img {
        width: 100%;
        height: 240px
    }
}

@media (max-width: 640px) {
    .lp-pg .prog-top__h1 {
        font-size: 41px
    }

    .lp-pg .mod-list {
        grid-template-columns: 1fr
    }

    .lp-pg .prog-top__meta {
        flex-direction: column;
        gap: 10px
    }

    .lp-pg .prog-top__actions {
        flex-direction: column;
        align-items: flex-start
    }

    .lp-pg .mod-strip__glass {
        padding: 20px
    }

    .lp-pg .expert-row {
        flex-direction: column;
        gap: 20px
    }

    .lp-pg .rating-strip {
        flex-direction: column;
        gap: 20px
    }
}

@media (max-width: 360px) {
    .lp-pg .prog-top__h1 {
        font-size: 41px
    }

    .lp-pg .tier-band {
        padding: 40px 10px
    }
}

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

.ld-root .ld-schema {
    display: none
}

.ld-root .diamond-div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 0;
    overflow: hidden
}

.ld-root .diamond-div span {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #FD7E00;
    transform: rotate(45deg);
    flex-shrink: 0;
    opacity: .5
}

.ld-root .diamond-div::before,
.ld-root .diamond-div::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to left, #07D8C1, transparent);
    opacity: .3
}

.ld-root .band-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #FD7E00, #07D8C1);
    border-radius: 0 3px 3px 0
}

.ld-root .concentric {
    position: absolute;
    pointer-events: none;
    z-index: 0
}

.ld-root .concentric svg {
    opacity: .05
}

@keyframes grid-pulse {

    0%,
    100% {
        opacity: .04
    }

    50% {
        opacity: .09
    }
}

.ld-root .grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(#fd7e001f 1px, transparent 1px), linear-gradient(90deg, #fd7e001f 1px, transparent 1px);
    background-size: 48px 48px;
    animation: grid-pulse 6s ease-out infinite
}

.ld-root .ld-strip {
    position: relative;
    padding: 40px 80px;
    background: #fff;
    border-top: 2px solid #FD7E00;
    overflow: hidden
}

.ld-root .ld-strip .strip-edge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, #07D8C1, transparent)
}

.ld-root .ld-strip .strip-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1
}

.ld-root .ld-strip .strip-text {
    flex: 1;
    min-width: 0
}

.ld-root .ld-strip .strip-label {
    font-size: 15px;
    letter-spacing: .02em;
    color: #5C0BAF;
    line-height: 1.4;
    margin-bottom: 10px;
    display: block
}

.ld-root .ld-strip .strip-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FD7E00;
    margin: 0 0 10px;
    font-weight: 800
}

.ld-root .ld-strip .strip-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    max-width: 520px
}

.ld-root .ld-strip .strip-img-wrap {
    flex-shrink: 0;
    width: 220px;
    height: 180px;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

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

.ld-root .ld-strip .strip-img-wrap .scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(to bottom, transparent 0px, transparent 3px, #00000014 3px, #00000014 4px);
    pointer-events: none;
    z-index: 1
}

.ld-root .ld-objection {
    position: relative;
    padding: 80px 80px 80px 84px;
    background: #f5f0eb;
    overflow: hidden
}

.ld-root .ld-objection .grid-bg {
    background-size: 60px 60px
}

.ld-root .ld-objection .obj-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 40px;
    align-items: start
}

.ld-root .ld-objection .obj-left {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ld-root .ld-objection .obj-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin: 0;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #07D8C1;
    text-underline-offset: 6px
}

.ld-root .ld-objection .obj-stat-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none
}

.ld-root .ld-objection .obj-stat-list li {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ld-root .ld-objection .obj-stat-list .stat-label {
    font-size: 15px;
    line-height: 1.4;
    color: #2a2a2a;
    letter-spacing: .01em
}

.ld-root .ld-objection .obj-stat-list .stat-label strong {
    color: #FD7E00
}

.ld-root .ld-objection .obj-stat-list .stat-bar-track {
    width: 100%;
    height: 6px;
    background: #5c0baf1f;
    border-radius: 3px;
    overflow: hidden
}

.ld-root .ld-objection .obj-stat-list .stat-bar-fill {
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(to left, #07D8C1, #FD7E00);
    transition: width .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.ld-root .ld-objection .obj-right {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ld-root .ld-objection .obj-right p {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    letter-spacing: .01em
}

.ld-root .ld-objection .obj-img {
    width: 100%;
    max-width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 6px 20px 1px #fd7e0014
}

.ld-root .ld-objection .obj-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.ld-root .ld-objection .obj-tags {
    font-size: 15px;
    line-height: 1.4;
    color: #5C0BAF;
    letter-spacing: .01em
}

.ld-root .ld-objection .obj-tags span {
    color: #2a2a2a
}

.ld-root .ld-evidence {
    position: relative;
    padding: 80px 80px 80px 84px;
    background: #1a0a2e;
    overflow: hidden
}

.ld-root .ld-evidence .ev-bg-img {
    position: absolute;
    inset: 0;
    z-index: 0
}

.ld-root .ld-evidence .ev-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: .08
}

.ld-root .ld-evidence .ev-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.ld-root .ld-evidence .ev-top {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 40px;
    align-items: start
}

.ld-root .ld-evidence .ev-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #07D8C1;
    margin: 0;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #FD7E00;
    text-underline-offset: 6px
}

.ld-root .ld-evidence .ev-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #d4cfe0;
    margin: 0;
    letter-spacing: .01em
}

.ld-root .ld-evidence .ev-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.ld-root .ld-evidence .ev-metric {
    background: #ffffff0d;
    border: 1px solid #07d8c133;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: background .15s ease-out, border-color .15s ease-out
}

.ld-root .ld-evidence .ev-metrics:hover .ev-metric {
    opacity: .5
}

.ld-root .ld-evidence .ev-metrics .ev-metric:hover {
    opacity: 1;
    background: #ffffff1a;
    border-color: #fd7e0080
}

.ld-root .ld-evidence .ev-metric .met-val {
    font-size: 41px;
    line-height: 1.1;
    color: #FD7E00;
    font-weight: 800;
    letter-spacing: .01em
}

.ld-root .ld-evidence .ev-metric .met-label {
    font-size: 15px;
    line-height: 1.4;
    color: #d4cfe0;
    letter-spacing: .01em
}

.ld-root .ld-evidence .ev-metric .met-bar {
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to left, #07D8C1, #FD7E00);
    margin-top: 10px
}

.ld-root .ld-evidence .ev-review {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    background: #ffffff0a;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid #fd7e0026
}

.ld-root .ld-evidence .ev-review .rev-portrait {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #FD7E00
}

.ld-root .ld-evidence .ev-review .rev-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.ld-root .ld-evidence .ev-review .rev-text {
    flex: 1;
    min-width: 0
}

.ld-root .ld-evidence .ev-review .rev-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #d4cfe0;
    margin: 0 0 10px;
    letter-spacing: .01em
}

.ld-root .ld-evidence .ev-review .rev-name {
    font-size: 15px;
    line-height: 1.4;
    color: #07D8C1;
    letter-spacing: .01em
}

.ld-root .ld-evidence .ev-review .rev-stars {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.ld-root .ld-evidence .ev-review .rev-stars i {
    color: #FD7E00;
    font-size: 15px
}

.ld-root .ld-example {
    position: relative;
    padding: 80px 80px 80px 84px;
    background: #fff;
    overflow: hidden
}

.ld-root .ld-example .ex-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 30%;
    gap: 40px;
    align-items: start
}

.ld-root .ld-example .ex-main {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ld-root .ld-example .ex-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FD7E00;
    margin: 0;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #5C0BAF;
    text-underline-offset: 6px
}

.ld-root .ld-example .ex-main p {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    margin: 0;
    letter-spacing: .01em
}

.ld-root .ld-example .ex-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    margin: 0;
    list-style: none
}

.ld-root .ld-example .ex-steps li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #5c0baf1a;
    transition: background .12s ease-out, border-color .12s ease-out
}

.ld-root .ld-example .ex-steps li:hover {
    background: #fd7e000d;
    border-color: #fd7e004d
}

.ld-root .ld-example .ex-steps li .step-num {
    font-size: 15px;
    line-height: 1.4;
    color: #FD7E00;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    letter-spacing: .01em
}

.ld-root .ld-example .ex-steps li .step-txt {
    font-size: 15px;
    line-height: 1.4;
    color: #2a2a2a;
    letter-spacing: .01em
}

.ld-root .ld-example .ex-steps li .step-txt strong {
    color: #5C0BAF
}

.ld-root .ld-example .ex-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ld-root .ld-example .ex-sidebar .sb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.ld-root .ld-example .ex-sidebar .sb-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 12px 40px 1px #fd7e0021
}

.ld-root .ld-example .ex-sidebar .sb-img img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .22s cubic-bezier(0.4, 0, 0.6, 1)
}

.ld-root .ld-example .ex-sidebar .sb-img img:hover {
    transform: scale(1.04)
}

.ld-root .ld-example .ex-sidebar .sb-img.wide {
    grid-column: span 2
}

.ld-root .ld-example .ex-cta-row {
    display: flex;
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap
}

.ld-root .ld-example .btn-primary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 10px 20px;
    background: #FD7E00;
    color: #fff;
    border-radius: 28px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    transition: background .18s cubic-bezier(0.4, 0, 0.6, 1), box-shadow .18s cubic-bezier(0.4, 0, 0.6, 1);
    overflow: hidden;
    position: relative
}

.ld-root .ld-example .btn-primary .btn-icon {
    display: inline-flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    transition: width .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.ld-root .ld-example .btn-primary:hover .btn-icon {
    width: 20px
}

.ld-root .ld-example .btn-primary:hover {
    background: #e06e00;
    box-shadow: -1px 12px 40px 1px #fd7e0021
}

.ld-root .ld-example .btn-primary:focus {
    outline: 2px solid #5C0BAF;
    outline-offset: 3px
}

.ld-root .ld-example .btn-secondary {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 10px 20px;
    background: transparent;
    color: #5C0BAF;
    border-radius: 28px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    border: 1.5px solid #5C0BAF;
    cursor: pointer;
    text-decoration: none;
    font-weight: 600;
    transition: background .15s ease-out, color .15s ease-out;
    overflow: hidden;
    position: relative
}

.ld-root .ld-example .btn-secondary .btn-icon {
    display: inline-flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    transition: width .15s cubic-bezier(0.4, 0, 0.6, 1)
}

.ld-root .ld-example .btn-secondary:hover .btn-icon {
    width: 20px
}

.ld-root .ld-example .btn-secondary:hover {
    background: #5c0baf0f
}

.ld-root .ld-example .btn-secondary:focus {
    outline: 2px solid #FD7E00;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .ld-root .ld-strip {
        padding: 40px
    }

    .ld-root .ld-strip .strip-h1 {
        font-size: 41px
    }

    .ld-root .ld-strip .strip-img-wrap {
        width: 160px;
        height: 140px
    }

    .ld-root .ld-objection {
        padding: 40px 40px 40px 44px
    }

    .ld-root .ld-objection .obj-inner {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .ld-root .ld-evidence {
        padding: 40px 40px 40px 44px
    }

    .ld-root .ld-evidence .ev-top {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .ld-root .ld-evidence .ev-metrics {
        grid-template-columns: repeat(2, 1fr)
    }

    .ld-root .ld-example {
        padding: 40px 40px 40px 44px
    }

    .ld-root .ld-example .ex-inner {
        grid-template-columns: 1fr;
        gap: 20px
    }
}

@media (max-width: 640px) {
    .ld-root .ld-strip {
        padding: 20px
    }

    .ld-root .ld-strip .strip-inner {
        flex-direction: column;
        gap: 20px
    }

    .ld-root .ld-strip .strip-h1 {
        font-size: 41px
    }

    .ld-root .ld-strip .strip-img-wrap {
        width: 100%;
        height: 160px
    }

    .ld-root .ld-objection {
        padding: 20px 20px 20px 24px
    }

    .ld-root .ld-objection .obj-h2 {
        font-size: 41px
    }

    .ld-root .ld-evidence {
        padding: 20px 20px 20px 24px
    }

    .ld-root .ld-evidence .ev-h2 {
        font-size: 41px
    }

    .ld-root .ld-evidence .ev-metrics {
        grid-template-columns: 1fr 1fr
    }

    .ld-root .ld-evidence .ev-review {
        flex-direction: column;
        align-items: flex-start
    }

    .ld-root .ld-example {
        padding: 20px 20px 20px 24px
    }

    .ld-root .ld-example .ex-h2 {
        font-size: 41px
    }

    .ld-root .ld-example .ex-sidebar .sb-grid {
        grid-template-columns: 1fr
    }

    .ld-root .ld-example .ex-sidebar .sb-img.wide {
        grid-column: span 1
    }
}

@media (max-width: 360px) {
    .ld-root .ld-strip .strip-h1 {
        font-size: 41px
    }

    .ld-root .ld-evidence .ev-metrics {
        grid-template-columns: 1fr
    }

    .ld-root .ld-evidence .ev-metric .met-val {
        font-size: 41px
    }
}

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

.abt-us .grad-band {
    background: linear-gradient(170deg, #5C0BAF 0%, #FD7E00 55%, #07D8C1 100%);
    background-size: 300% 300%;
    animation: gradShift 8s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate;
    padding: 80px 40px;
    position: relative
}

@keyframes gradShift {
    0% {
        background-position: 100% 0
    }

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

.abt-us .grad-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(90deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 60px), repeating-linear-gradient(0deg, #ffffff0a 0px, #ffffff0a 1px, transparent 1px, transparent 60px);
    pointer-events: none
}

.abt-us .grad-band__inner {
    max-width: 900px;
    position: relative;
    z-index: 1
}

.abt-us .grad-band__label {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    color: #ffffffbf;
    margin-bottom: 20px;
    display: block
}

.abt-us .grad-band__h1 {
    font-size: 70px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 20px
}

.abt-us .grad-band__h1 .accent-bracket {
    color: #07D8C1
}

.abt-us .grad-band__sub {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #ffffffe0;
    max-width: 560px;
    margin: 0
}

.abt-us .grad-band__img-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 38%;
    overflow: hidden
}

.abt-us .grad-band__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    mix-blend-mode: luminosity;
    opacity: .35
}

.abt-us .grad-band__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #5C0BAF 0%, transparent 60%);
    pointer-events: none
}

.abt-us .grad-band__arrow {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #ffffff80;
    border-bottom: 2px solid #ffffff80;
    transform: rotate(45deg);
    margin-top: 40px;
    animation: arrowBounce 1.8s ease-out infinite
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: rotate(45deg) translateY(0)
    }

    50% {
        transform: rotate(45deg) translateY(5px)
    }
}

.abt-us .divider-thick {
    height: 4px;
    background: linear-gradient(to left, #07D8C1, transparent);
    border: none;
    margin: 0
}

.abt-us .story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #f5f0eb
}

.abt-us .story-grid__left {
    padding: 80px 40px;
    position: relative
}

.abt-us .story-grid__left::after {
    content: "";
    position: absolute;
    right: 0;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, #FD7E00 40%, #FD7E00 60%, transparent)
}

.abt-us .story-grid__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin: 0 0 20px;
    text-decoration: underline;
    text-decoration-color: #FD7E00;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px
}

.abt-us .story-grid__h2 .accent-q {
    color: #FD7E00
}

.abt-us .story-grid__body {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2a2020;
    margin: 0 0 20px
}

.abt-us .story-grid__body:last-child {
    margin-bottom: 0
}

.abt-us .story-grid__right {
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px
}

.abt-us .metric-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap
}

.abt-us .metric-card {
    flex: 1;
    min-width: 140px;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: -1px 1px 2px 1px #fd7e000f -1px 6px 20px 1px #fd7e0014;
    border: 1px solid #fd7e001f;
    transition: box-shadow .18s ease-out, border-color .15s ease-out;
    animation: borderGlow 3.5s cubic-bezier(0.4, 0, 0.6, 1) infinite alternate
}

@keyframes borderGlow {
    0% {
        border-color: #fd7e001f
    }

    100% {
        border-color: #fd7e0073
    }
}

.abt-us .metric-card:hover {
    box-shadow: -1px 6px 20px 1px #fd7e0021 -1px 12px 40px 1px #fd7e0021
}

.abt-us .metric-card__num {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #FD7E00;
    display: block
}

.abt-us .metric-card__label {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #4a3a2a;
    display: block;
    margin-top: 10px
}

.abt-us .story-grid__img-wrap {
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

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

.abt-us .story-grid__img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, #f5f0eb, transparent);
    pointer-events: none
}

.abt-us .divider-accent {
    height: 4px;
    background: #FD7E00;
    border: none;
    margin: 0;
    width: 80px;
    margin-left: 40px
}

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

.abt-us .team-strip__bg {
    position: absolute;
    inset: 0;
    background-attachment: fixed;
    background-image: url(/product_images/block-15-260709.jpg);
    background-size: cover;
    background-position: center;
    opacity: .04;
    pointer-events: none
}

.abt-us .team-strip__top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}

.abt-us .team-strip__h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #07D8C1;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #5C0BAF;
    text-underline-offset: 6px;
    text-decoration-thickness: 2px
}

.abt-us .team-strip__h2 .accent-q {
    color: #5C0BAF
}

.abt-us .team-strip__desc {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2a2020;
    max-width: 420px;
    margin: 0
}

.abt-us .team-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 1
}

.abt-us .team-member {
    background: #f5f0eb;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: -1px 1px 2px 1px #07d8c10f;
    transition: box-shadow .2s cubic-bezier(0.4, 0, 0.6, 1)
}

.abt-us .team-member:hover {
    box-shadow: -1px 6px 20px 1px #07d8c114 -1px 12px 40px 1px #07d8c121
}

.abt-us .team-member__portrait {
    width: 80px;
    height: 80px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0
}

.abt-us .team-member__portrait img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: top;
    display: block
}

.abt-us .team-member__name {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #5C0BAF;
    font-weight: 700;
    margin: 0
}

.abt-us .team-member__role {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #FD7E00;
    margin: 0
}

.abt-us .team-member__bio {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2a2020;
    margin: 0
}

.abt-us .team-member--no-portrait {
    border-left: 3px solid #07D8C1;
    border-top: 1px solid #07d8c133;
    border-right: 1px solid #07d8c11a;
    border-bottom: 1px solid #07d8c11a
}

.abt-us .team-member__icon {
    width: 80px;
    height: 80px;
    border-radius: 28px;
    background: linear-gradient(to left, #07D8C1, #07d8c133);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.abt-us .team-member__icon .bi {
    font-size: 41px;
    color: #5C0BAF;
    line-height: 1
}

.abt-us .team-strip__bottom {
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.abt-us .value-pill {
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .01em;
    color: #2a2020;
    background: #f5f0eb;
    border-radius: 3px;
    padding: 10px 20px;
    border: 1px solid #5c0baf26;
    transition: background .15s ease-out, border-color .18s ease-out
}

.abt-us .value-pill:hover {
    background: #5c0baf0f;
    border-color: #5c0baf59
}

.abt-us .value-pill .pill-label {
    color: #5C0BAF;
    font-weight: 700
}

.abt-us .value-pill .pill-colon {
    color: #FD7E00
}

.abt-us .team-strip__img-pair {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1
}

.abt-us .img-fade-wrap {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative
}

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

.abt-us .img-fade-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, #ffffffb3, transparent 50%);
    pointer-events: none
}

.abt-us .arrow-read {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #5c0baf66;
    border-bottom: 2px solid #5c0baf66;
    transform: rotate(-45deg);
    margin-left: 10px;
    vertical-align: middle
}

@media (max-width: 1024px) {
    .abt-us .grad-band__h1 {
        font-size: 56px
    }

    .abt-us .grad-band__img-wrap {
        width: 30%
    }

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

@media (max-width: 640px) {
    .abt-us .grad-band {
        padding: 40px 20px
    }

    .abt-us .grad-band__h1 {
        font-size: 41px
    }

    .abt-us .grad-band__img-wrap {
        display: none
    }

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

    .abt-us .story-grid__left::after {
        display: none
    }

    .abt-us .story-grid__left,
    .abt-us .story-grid__right {
        padding: 40px 20px
    }

    .abt-us .team-strip {
        padding: 40px 20px
    }

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

    .abt-us .team-strip__top {
        flex-direction: column;
        align-items: flex-start
    }

    .abt-us .team-strip__img-pair {
        flex-direction: column
    }

    .abt-us .divider-accent {
        margin-left: 20px
    }

    .abt-us .metric-row {
        flex-direction: column
    }

    .abt-us .story-grid__h2 {
        font-size: 41px
    }
}

@media (max-width: 360px) {
    .abt-us .grad-band__h1 {
        font-size: 41px
    }

    .abt-us .grad-band {
        padding: 40px 10px
    }

    .abt-us .story-grid__left,
    .abt-us .story-grid__right {
        padding: 40px 10px
    }

    .abt-us .team-strip {
        padding: 40px 10px
    }
}

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

.ctc-pg .fog-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(105deg, #ffffff12 0%, transparent 60%);
    pointer-events: none;
    animation: fog-move 18s linear infinite alternate;
    z-index: 0
}

@keyframes fog-move {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-25%)
    }
}

.ctc-pg .pg-band {
    position: relative;
    padding: 80px 40px;
    background: #f4f1ec;
    box-shadow: inset 0 0 80px 20px #fd7e000a
}

.ctc-pg .pg-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, #fd7e000f 0%, transparent 55%), radial-gradient(ellipse at 100% 100%, #5c0baf0d 0%, transparent 55%);
    pointer-events: none
}

.ctc-pg .band-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.ctc-pg .band-left {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.ctc-pg .band-label {
    font-size: 15px;
    letter-spacing: .02em;
    color: #3a3a3a;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 10px
}

.ctc-pg .band-label .lbl-dot {
    width: 8px;
    height: 8px;
    border-radius: 0;
    background: #FD7E00;
    flex-shrink: 0;
    transform: rotate(45deg)
}

.ctc-pg .band-h1 {
    font-size: 56px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #2a2a2a;
    margin: 0
}

.ctc-pg .band-h1 .acc {
    color: #FD7E00
}

.ctc-pg .band-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #3d3d3d;
    margin: 0;
    max-width: 440px
}

.ctc-pg .contact-facts {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ctc-pg .fact-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: -1px 1px 2px 1px #fd7e000f;
    transition: box-shadow .18s ease-out
}

.ctc-pg .fact-row:hover {
    box-shadow: -1px 6px 20px 1px #fd7e0014
}

.ctc-pg .fact-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    background: linear-gradient(180deg, #FD7E00 0%, #fd7e00b3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ctc-pg .fact-icon i {
    color: #fff;
    font-size: 20px
}

.ctc-pg .fact-body {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ctc-pg .fact-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #888;
    letter-spacing: .02em
}

.ctc-pg .fact-lbl .colon {
    color: #FD7E00
}

.ctc-pg .fact-val {
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    letter-spacing: .01em;
    font-weight: 600
}

.ctc-pg .fact-val a {
    color: #2a2a2a;
    text-decoration: none;
    transition: color .15s ease-out
}

.ctc-pg .fact-val a:visited {
    opacity: .7
}

.ctc-pg .fact-val a:hover {
    color: #FD7E00
}

.ctc-pg .img-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: -1px 12px 40px 1px #fd7e0021;
    border: 3px solid #fff;
    outline: 1px solid #fd7e0026
}

.ctc-pg .img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(1.08)
}

.ctc-pg .img-frame .img-brace {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    border-top: 3px solid #07D8C1;
    border-left: 3px solid #07D8C1;
    border-radius: 3px 0 0 0;
    pointer-events: none
}

.ctc-pg .img-frame .img-brace-br {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-bottom: 3px solid #FD7E00;
    border-right: 3px solid #FD7E00;
    border-radius: 0 0 3px 0;
    pointer-events: none
}

.ctc-pg .form-band {
    position: relative;
    padding: 80px 40px;
    background: #fff
}

.ctc-pg .form-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 100% 0%, #07d8c10d 0%, transparent 50%), radial-gradient(ellipse at 0% 100%, #5c0baf0a 0%, transparent 50%);
    pointer-events: none
}

.ctc-pg .wavy-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin-bottom: 0
}

.ctc-pg .wavy-div svg {
    display: block;
    width: 100%
}

.ctc-pg .form-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.ctc-pg .form-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px
}

.ctc-pg .form-h2 {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #2a2a2a;
    margin: 0;
    text-decoration: underline;
    text-decoration-color: #07d8c166;
    text-underline-offset: 6px
}

.ctc-pg .form-h2 .acc {
    color: #5C0BAF
}

.ctc-pg .form-sub {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
    max-width: 560px
}

.ctc-pg .cform {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.ctc-pg .cform .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.ctc-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ctc-pg .field-grp label {
    font-size: 15px;
    line-height: 1.4;
    color: #3a3a3a;
    letter-spacing: .02em;
    font-weight: 600
}

.ctc-pg .field-grp label .req {
    color: #FD7E00;
    margin-left: 2px
}

.ctc-pg .field-grp input[type="text"],
.ctc-pg .field-grp input[type="email"],
.ctc-pg .field-grp input[type="tel"] {
    padding: 10px 20px;
    border: 1.5px solid #ddd;
    border-radius: 3px;
    font-size: 15px;
    line-height: 1.6;
    color: #2a2a2a;
    background: #faf9f7;
    box-shadow: inset -1px 1px 2px 1px #fd7e000a;
    transition: border-color .16s ease-out, box-shadow .16s ease-out;
    outline: none;
    width: 100%;
    letter-spacing: .01em
}

.ctc-pg .field-grp input[type="text"]::placeholder,
.ctc-pg .field-grp input[type="email"]::placeholder,
.ctc-pg .field-grp input[type="tel"]::placeholder {
    font-style: italic;
    opacity: .55
}

.ctc-pg .field-grp input[type="text"]:focus,
.ctc-pg .field-grp input[type="email"]:focus,
.ctc-pg .field-grp input[type="tel"]:focus {
    border-color: #FD7E00;
    box-shadow: inset -1px 1px 2px 1px #fd7e0014
}

.ctc-pg .radio-grp {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ctc-pg .radio-grp .radio-lbl {
    font-size: 15px;
    line-height: 1.4;
    color: #3a3a3a;
    letter-spacing: .02em;
    font-weight: 600
}

.ctc-pg .radio-grp .radio-lbl .req {
    color: #FD7E00;
    margin-left: 2px
}

.ctc-pg .radio-opts {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px
}

.ctc-pg .radio-opts label {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border: 1.5px solid #ddd;
    border-radius: 28px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1.4;
    color: #3a3a3a;
    background: #faf9f7;
    transition: border-color .18s ease-out, background .18s ease-out, color .18s ease-out;
    letter-spacing: .01em
}

.ctc-pg .radio-opts label:hover {
    border-color: #FD7E00;
    background: #fd7e000d
}

.ctc-pg .radio-opts input[type="radio"] {
    accent-color: #FD7E00;
    width: 16px;
    height: 16px;
    cursor: pointer
}

.ctc-pg .radio-opts input[type="radio"]:checked+span {
    color: #FD7E00;
    font-weight: 600
}

.ctc-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;
    background: #f4f1ec;
    border-radius: 16px;
    border: 1px solid #5c0baf1a
}

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

.ctc-pg .privacy-row .prv-text {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    letter-spacing: .01em
}

.ctc-pg .privacy-row .prv-text a {
    color: #5C0BAF;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .15s ease-out
}

.ctc-pg .privacy-row .prv-text a:visited {
    opacity: .7
}

.ctc-pg .privacy-row .prv-text a:hover {
    opacity: .75
}

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

.ctc-pg .btn-send {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 40px;
    background: #FD7E00;
    color: #fff;
    border: none;
    border-radius: 3px;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    transition: background .14s ease-out, box-shadow .14s ease-out, transform .14s ease-out
}

.ctc-pg .btn-send .btn-icon {
    display: flex;
    align-items: center;
    font-size: 16px;
    transform: translateX(-6px);
    opacity: 0;
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1), opacity .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctc-pg .btn-send .btn-txt {
    transition: transform .18s cubic-bezier(0.4, 0, 0.6, 1)
}

.ctc-pg .btn-send:hover .btn-icon {
    transform: translateX(0);
    opacity: 1
}

.ctc-pg .btn-send:hover .btn-txt {
    transform: translateX(6px)
}

.ctc-pg .btn-send:hover {
    background: #e06e00;
    box-shadow: -1px 12px 40px 1px #fd7e0021;
    transform: translateY(-1px)
}

.ctc-pg .btn-send:focus {
    outline: 3px solid #fd7e0080;
    outline-offset: 2px
}

.ctc-pg .btn-send:active {
    transform: translateY(0)
}

.ctc-pg .submit-note {
    font-size: 15px;
    line-height: 1.4;
    color: #888;
    letter-spacing: .01em
}

.ctc-pg .type-reveal span {
    display: inline-block;
    opacity: 0;
    animation: char-in .12s ease-out forwards
}

@keyframes char-in {
    from {
        opacity: 0;
        transform: translateY(4px)
    }

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

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

    .ctc-pg .img-frame {
        max-height: 340px
    }
}

@media (max-width: 640px) {

    .ctc-pg .pg-band,
    .ctc-pg .form-band {
        padding: 40px 20px
    }

    .ctc-pg .band-h1 {
        font-size: 41px
    }

    .ctc-pg .form-h2 {
        font-size: 41px
    }

    .ctc-pg .cform .row-2 {
        grid-template-columns: 1fr
    }

    .ctc-pg .radio-opts {
        flex-direction: column
    }

    .ctc-pg .submit-row {
        flex-direction: column;
        align-items: flex-start
    }
}

@media (max-width: 360px) {

    .ctc-pg .pg-band,
    .ctc-pg .form-band {
        padding: 40px 10px
    }

    .ctc-pg .band-h1 {
        font-size: 41px
    }
}

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

.success-pg .success-card {
    max-width: 560px;
    width: 100%;
    background: #f5f2ef;
    border-radius: 16px;
    padding: 40px;
    box-shadow: -1px 6px 20px 1px #fd7e0014;
    text-align: center
}

.success-pg .success-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 28px;
    background: #FD7E00;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px
}

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

.success-pg .success-card .success-title {
    font-size: 41px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #5C0BAF;
    margin: 0 0 20px
}

.success-pg .success-card .success-msg {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2a2520;
    margin: 0 0 40px
}

.success-pg .success-card .success-msg span {
    color: #FD7E00
}

.success-pg .success-card .divider {
    width: 40px;
    height: 3px;
    background: #07D8C1;
    border-radius: 3px;
    margin: 0 auto 40px
}

.success-pg .success-card .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 40px;
    background: #FD7E00;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    letter-spacing: .02em;
    border-radius: 3px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: -1px 1px 2px 1px #fd7e000f;
    transition: background-color .18s ease-out, box-shadow .15s cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    overflow: hidden
}

.success-pg .success-card .back-btn svg {
    flex-shrink: 0;
    transition: transform .18s ease-out
}

.success-pg .success-card .back-btn:hover {
    background: #5C0BAF;
    box-shadow: -1px 6px 20px 1px #fd7e0021
}

.success-pg .success-card .back-btn:hover svg {
    transform: translateX(-3px)
}

.success-pg .success-card .back-btn:focus {
    outline: 2px solid #07D8C1;
    outline-offset: 3px
}

.success-pg .success-card .back-btn:active {
    background: #07D8C1
}

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

    .success-pg .success-card {
        padding: 40px 20px
    }

    .success-pg .success-card .success-title {
        font-size: 41px
    }
}