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

html {
    box-sizing: border-box;
    font-size: 100%
}

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

html,
body {
    margin: 0
}

body {
    padding: 0;
    min-height: 100vh;
    font-family: 'PT Sans', sans-serif
}

:focus-visible {
    outline: 2px solid #CAA348;
    outline-offset: 3px;
    transition: outline-offset .35s cubic-bezier(0.16, 1, 0.3, 1)
}

.hd {
    background: #fff;
    border-bottom: 1px solid #CEDBD3;
    box-shadow: 0 1px 6px 0 #caa34814;
    position: relative;
    z-index: 100
}

.hd-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: stretch;
    gap: 0;
    min-height: 110px
}

.brand-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 40px 24px 0;
    border-right: 1px solid #CEDBD3;
    flex-shrink: 0;
    gap: 8px
}

.logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f0e8;
    border-radius: 24px;
    padding: 8px 12px;
    box-shadow: 0 1px 6px 0 #caa34814 inset 0 1px 3px 0 #caa3481a;
    border: 1px solid #caa3482e;
    text-decoration: none
}

.logo-shell img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block
}

.brand-name {
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1b1410;
    letter-spacing: .02em;
    line-height: 1.1;
    margin: 0;
    padding: 0
}

.brand-since {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #7a6840;
    letter-spacing: .01em;
    line-height: 1.6
}

.nav-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 0 24px 40px;
    gap: 4px
}

.nav-label {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #7a6840;
    letter-spacing: .01em;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px
}

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

.nav-links li {
    display: flex;
    align-items: center
}

.nav-links li:not(:last-child)::after {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background: #CEDBD3;
    border-radius: 50%;
    margin-left: 8px;
    flex-shrink: 0
}

.nav-links a {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    color: #2a1f0a;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.6;
    padding: 8px 4px;
    border-radius: 2px;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 44px;
    display: inline-flex;
    align-items: center
}

.nav-links a:hover {
    color: #A22EBB
}

.nav-links a[data-active] {
    color: #CAA348;
    font-weight: 700
}

.nav-accent {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #CAA348 0%, #b8903a 100%);
    color: #fff;
    border-radius: 9px;
    padding: 8px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none;
    box-shadow: 0 4px 14px 0 #caa34817;
    transition: filter .4s ease-in-out, box-shadow .4s ease-in-out;
    min-height: 44px
}

.nav-accent:hover {
    filter: brightness(1.08);
    box-shadow: 0 9px 52px 0 #caa3481a;
    color: #fff
}

.hd-strip {
    background: linear-gradient(90deg, #A22EBB 0%, #8a1fa0 100%);
    padding: 8px 40px
}

.hd-strip-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px
}

.strip-tag {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #fff;
    letter-spacing: .02em;
    line-height: 1.6
}

.strip-tag strong {
    font-weight: 700
}

.strip-sep {
    width: 1px;
    height: 16px;
    background: #ffffff4d;
    flex-shrink: 0
}

.ft {
    background: #1b1410;
    position: relative
}

.ft-top {
    background: #CAA348;
    padding: 8px 40px
}

.ft-top-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.ft-tagline {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #1b1410;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.6
}

.ft-body {
    max-width: 1500px;
    margin: 0 auto;
    padding: 40px 40px 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px
}

.ft-brand {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-logo-sep {
    width: 100%;
    height: 1px;
    background: #cedbd32e;
    margin-bottom: 4px
}

.ft-logo-shell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff14;
    border-radius: 24px;
    padding: 8px 12px;
    border: 1px solid #cedbd338;
    box-shadow: 0 1px 6px 0 #a22ebb14
}

.ft-logo-shell img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    display: block
}

.ft-brand-name {
    font-family: 'PT Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f5f0e8;
    letter-spacing: .02em;
    line-height: 1.1
}

.ft-contact {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ft-contact-head {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #CAA348;
    letter-spacing: .02em;
    line-height: 1.6;
    text-transform: uppercase
}

.ft-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 8px
}

.ft-contact-item i {
    color: #CAA348;
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0
}

.ft-contact-item a,
.ft-contact-item span {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #CEDBD3;
    letter-spacing: .01em;
    line-height: 1.6;
    text-decoration: none;
    transition: color .45s ease-in-out
}

.ft-contact-item a:hover {
    color: #CAA348
}

.ft-nav-col {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.ft-nav-head {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #CAA348;
    letter-spacing: .02em;
    line-height: 1.6;
    text-transform: uppercase
}

.ft-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.ft-nav-list a {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #CEDBD3;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.6;
    padding: 4px 0;
    display: inline-block;
    transition: color .4s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.ft-nav-list a:hover {
    color: #CAA348
}

.ft-bottom {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px 24px;
    border-top: 1px solid #cedbd31f;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
}

.ft-copy {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #cedbd38c;
    letter-spacing: .01em;
    line-height: 1.6
}

.ft-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 24px;
    list-style: none;
    margin: 0;
    padding: 0
}

.ft-legal-links a {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #cedbd38c;
    text-decoration: none;
    letter-spacing: .01em;
    line-height: 1.6;
    transition: color .4s ease-in-out;
    min-height: 44px;
    display: flex;
    align-items: center
}

.ft-legal-links a:hover {
    color: #CAA348
}

.ck-popup {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 4000;
    width: 340px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 9px 52px 0 #a22ebb1a 0 4px 14px 0 #a22ebb17;
    border: 1px solid #CEDBD3;
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 12px;
    transform: translateX(calc(-100% - 24px));
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ck-popup.visible {
    transform: translateX(0)
}

.ck-desc {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #2a1f0a;
    line-height: 1.6;
    letter-spacing: .01em
}

.ck-headline {
    font-family: 'PT Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1b1410;
    line-height: 1.1;
    letter-spacing: .01em
}

.ck-btns {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 4px
}

.ck-accept {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #A22EBB;
    background: transparent;
    border: 1.5px solid #A22EBB;
    border-radius: 9px;
    padding: 8px 24px;
    cursor: pointer;
    letter-spacing: .01em;
    line-height: 1.6;
    min-height: 44px;
    transition: background .4s ease-in-out, color .4s ease-in-out
}

.ck-accept:hover {
    background: #A22EBB;
    color: #fff
}

.ck-accept:focus-visible {
    outline: 2px solid #A22EBB;
    outline-offset: 3px
}

.ck-decline {
    font-family: 'PT Sans', sans-serif;
    font-size: 15px;
    color: #7a6840;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: .01em;
    line-height: 1.6;
    padding: 4px 0;
    text-align: center;
    text-decoration: underline;
    min-height: 44px;
    transition: color .4s ease-in-out
}

.ck-decline:hover {
    color: #A22EBB
}

.ck-decline:focus-visible {
    outline: 2px solid #CAA348;
    outline-offset: 3px
}

@media (max-width: 1024px) {
    .hd-inner {
        padding: 0 24px;
        flex-wrap: wrap;
        min-height: auto
    }

    .brand-block {
        padding: 24px 24px 24px 0
    }

    .nav-block {
        padding: 24px 0 24px 24px
    }

    .ft-body {
        grid-template-columns: 1fr 1fr;
        padding: 40px 24px 24px
    }

    .ft-brand {
        grid-column: 1 / -1
    }

    .ft-top {
        padding: 8px 24px
    }

    .ft-bottom {
        padding: 24px
    }

    .hd-strip {
        padding: 8px 24px
    }
}

@media (max-width: 640px) {
    .hd-inner {
        flex-direction: column;
        padding: 0 12px;
        gap: 0
    }

    .brand-block {
        border-right: none;
        border-bottom: 1px solid #CEDBD3;
        padding: 24px 0;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap
    }

    .nav-block {
        padding: 12px 0 24px
    }

    .ft-body {
        grid-template-columns: 1fr;
        padding: 24px 12px;
        gap: 24px
    }

    .ft-brand {
        grid-column: auto
    }

    .ft-bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 12px;
        gap: 12px
    }

    .ft-top {
        padding: 8px 12px
    }

    .ft-top-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .hd-strip {
        padding: 8px 12px
    }

    .hd-strip-inner {
        flex-wrap: wrap;
        gap: 8px
    }
}

@media (max-width: 360px) {
    .nav-accent {
        padding: 8px 12px;
        font-size: 15px
    }

    .ck-popup {
        left: 12px;
        bottom: 12px;
        max-width: calc(100vw - 24px);
        padding: 12px
    }
}

.doc-body {
    max-width: 1500px;
    margin: 0 auto;
    padding: 80px 40px;
    color: #2a2118;
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: .01em
}

.doc-body ul,
.doc-body ol {
    padding-left: 24px;
    margin: 24px 0
}

.doc-body li {
    margin: 8px 0;
    line-height: 1.6;
    font-size: 16px;
    letter-spacing: .01em;
    color: #2a2118
}

.doc-body ul li {
    list-style-type: disc
}

.doc-body ol li {
    list-style-type: decimal
}

.doc-body ul ul,
.doc-body ol ol,
.doc-body ul ol,
.doc-body ol ul {
    margin: 8px 0;
    padding-left: 24px
}

.doc-body a {
    color: #7a1e90;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1), text-decoration-color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.doc-body a:hover {
    color: #A22EBB;
    text-decoration-color: #CAA348
}

.doc-body a:visited {
    color: #6b1a80
}

.doc-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 15px;
    letter-spacing: .01em;
    box-shadow: 0 1px 6px 0 #caa34814;
    border-radius: 9px;
    overflow: hidden
}

.doc-body thead {
    background: #CEDBD3
}

.doc-body thead th {
    padding: 12px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    color: #1e2d27;
    border-bottom: 2px solid #CAA348
}

.doc-body tbody tr {
    border-bottom: 1px solid #e8eeeb;
    transition: background .4s ease-in-out
}

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

.doc-body tbody tr:hover {
    background: #f4f8f6
}

.doc-body td {
    padding: 12px 24px;
    font-size: 15px;
    color: #2a2118;
    line-height: 1.6;
    vertical-align: top
}

.doc-body th {
    padding: 12px 24px;
    font-size: 15px;
    color: #1e2d27;
    line-height: 1.6;
    vertical-align: top
}

.doc-body hr {
    border: none;
    border-top: 1px solid #CEDBD3;
    margin: 40px 0;
    opacity: .8
}

.doc-body div {
    margin: 24px 0;
    line-height: 1.6;
    font-size: 16px;
    color: #2a2118
}

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

@media (max-width: 640px) {
    .doc-body {
        padding: 40px 24px
    }

    .doc-body table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 9px
    }

    .doc-body thead th,
    .doc-body td,
    .doc-body th {
        padding: 12px;
        white-space: nowrap
    }

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

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

    .doc-body thead th,
    .doc-body td,
    .doc-body th {
        padding: 8px;
        font-size: 15px
    }
}

.trac-pg {
    background: #fff;
    color: #1e1e2e;
    overflow-x: clip
}

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

.trac-pg .fade-in.d1 {
    animation-delay: .1s
}

.trac-pg .fade-in.d2 {
    animation-delay: .25s
}

.trac-pg .fade-in.d3 {
    animation-delay: .4s
}

@keyframes fadeAppear {
    to {
        opacity: 1
    }
}

.trac-pg .grad-line {
    display: inline-block;
    position: relative
}

.trac-pg .grad-line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #CAA348 30%, #A22EBB 70%, transparent 100%);
    border-radius: 2px
}

.trac-pg .num-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #CAA348, #A22EBB);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0
}

.trac-pg .diag-wrap {
    position: relative;
    overflow: hidden
}

.trac-pg .diag-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 140%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #caa3482e, transparent);
    transform: rotate(-8deg);
    pointer-events: none
}

.trac-pg .band-div {
    height: 40px;
    background: linear-gradient(180deg, #caa34821 0%, transparent 100%);
    margin: 0
}

.trac-pg .band-div-up {
    height: 40px;
    background: linear-gradient(0deg, #a22ebb14 0%, transparent 100%)
}

.trac-pg .btn-pri {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #CAA348 0%, #A22EBB 100%);
    color: #fff;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px 0 #caa34817;
    transition: filter .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease-in-out
}

.trac-pg .btn-pri:hover {
    filter: brightness(1.12);
    box-shadow: 0 9px 52px 0 #caa3481a
}

.trac-pg .btn-pri:focus {
    outline: 3px solid #CAA348;
    outline-offset: 3px
}

.trac-pg .btn-sec {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #A22EBB;
    border-radius: 9px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .02em;
    text-decoration: none;
    border: 2px solid #A22EBB;
    cursor: pointer;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s ease-in-out
}

.trac-pg .btn-sec:hover {
    background: #a22ebb14
}

.trac-pg .btn-sec:focus {
    outline: 3px solid #A22EBB;
    outline-offset: 3px
}

.trac-pg .strip-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 9px
}

.trac-pg .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(180deg, #1e1e2e8c 0%, transparent 100%);
    border-radius: 9px 9px 0 0;
    pointer-events: none
}

.trac-pg .shape-circle {
    position: absolute;
    border-radius: 24px;
    pointer-events: none
}

.trac-pg .inset-glow {
    box-shadow: inset 0 1px 6px 0 #caa34821 0 1px 6px 0 #caa34814
}

.trac-pg section {
    position: relative
}

.trac-pg .pg-max {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px
}

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

.trac-pg .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.trac-pg .metric-big {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .01em;
    background: linear-gradient(135deg, #CAA348, #A22EBB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.trac-pg .metric-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5a72;
    letter-spacing: .01em;
    margin-top: 4px
}

.trac-pg .card-item {
    background: #fff;
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 4px 14px 0 #caa34817;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s ease-in-out
}

.trac-pg .card-item:hover {
    box-shadow: 0 9px 52px 0 #caa3481a;
    transform: translateY(-2px)
}

.trac-pg .card-item .ci-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: linear-gradient(135deg, #caa34826, #a22ebb1f);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px
}

.trac-pg .card-item .ci-icon i {
    font-size: 20px;
    color: #CAA348
}

.trac-pg .card-item h5 {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: .01em;
    color: #1e1e2e;
    margin: 0 0 8px
}

.trac-pg .card-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #3e3e52;
    margin: 0;
    text-align: justify
}

.trac-pg .step-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #cedbd380
}

.trac-pg .step-row:last-child {
    border-bottom: none
}

.trac-pg .step-row .sr-txt h6 {
    font-size: 16px;
    line-height: 1.1;
    font-weight: 700;
    color: #1e1e2e;
    margin: 0 0 4px;
    letter-spacing: .01em
}

.trac-pg .step-row .sr-txt p {
    font-size: 15px;
    line-height: 1.6;
    color: #3e3e52;
    margin: 0;
    text-align: justify
}

.trac-pg .tag-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    background: #cedbd380;
    color: #2a2a3e;
    border: 1px solid #caa34833
}

.trac-pg .hover-fade-wrap {
    position: relative
}

.trac-pg .hover-fade-wrap .hf-base {
    transition: opacity .45s ease-in-out
}

.trac-pg .hover-fade-wrap .hf-over {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity .45s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: linear-gradient(135deg, #caa348eb, #a22ebbe0);
    color: #fff;
    padding: 24px;
    text-align: center
}

.trac-pg .hover-fade-wrap:hover .hf-base {
    opacity: 0
}

.trac-pg .hover-fade-wrap:hover .hf-over {
    opacity: 1
}

.trac-pg .hf-over p {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin: 0
}

.trac-pg .sec1 {
    padding: 80px 0 0
}

.trac-pg .sec1-inner {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: stretch
}

.trac-pg .sec1-img-col {
    width: 200px;
    flex-shrink: 0;
    position: relative
}

.trac-pg .sec1-img-wrap {
    position: relative;
    width: 200px;
    height: 100%;
    min-height: 320px;
    border-radius: 9px;
    overflow: hidden
}

.trac-pg .sec1-txt {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 8px 0
}

.trac-pg .sec1-txt h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: .01em;
    color: #1e1e2e;
    margin: 0
}

.trac-pg .sec1-txt h1 .big-w {
    font-size: 64px
}

.trac-pg .sec1-txt p {
    font-size: 16px;
    line-height: 1.6;
    color: #3e3e52;
    margin: 0;
    max-width: 600px;
    text-align: justify
}

.trac-pg .sec1-tags {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px
}

.trac-pg .sec1-shape1 {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: linear-gradient(135deg, #caa3481f, #a22ebb14);
    top: -20px;
    right: -20px;
    transform: rotate(20deg)
}

.trac-pg .sec1-shape2 {
    width: 40px;
    height: 40px;
    border-radius: 24px;
    background: #cedbd399;
    bottom: 40px;
    left: -12px;
    transform: rotate(-10deg)
}

.trac-pg .sec1-btns {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap
}

@media (max-width: 1024px) {
    .trac-pg .sec1-txt h1 {
        font-size: 48px
    }
}

@media (max-width: 640px) {
    .trac-pg .sec1 {
        padding: 40px 0 0
    }

    .trac-pg .sec1-inner {
        flex-direction: column;
        gap: 24px
    }

    .trac-pg .sec1-img-col {
        width: 100%
    }

    .trac-pg .sec1-img-wrap {
        width: 100%;
        height: 200px;
        min-height: unset
    }

    .trac-pg .sec1-txt h1 {
        font-size: 34px
    }
}

.trac-pg .sec2 {
    padding: 80px 0;
    background: #cedbd32e
}

.trac-pg .sec2-head {
    margin-bottom: 40px
}

.trac-pg .sec2-head h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1e2e;
    letter-spacing: .01em;
    margin: 0 0 12px
}

.trac-pg .sec2-head p {
    font-size: 16px;
    line-height: 1.6;
    color: #3e3e52;
    max-width: 560px;
    margin: 0;
    text-align: justify
}

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

.trac-pg .sec2-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    padding: 24px;
    background: #fff;
    border-radius: 9px;
    box-shadow: 0 1px 6px 0 #caa34814
}

.trac-pg .sec2-met-item {
    text-align: center;
    padding: 12px
}

@media (max-width: 1024px) {
    .trac-pg .sec2-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .trac-pg .sec2-metrics {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 640px) {
    .trac-pg .sec2 {
        padding: 40px 0
    }

    .trac-pg .sec2-grid {
        grid-template-columns: 1fr
    }

    .trac-pg .sec2-metrics {
        grid-template-columns: 1fr
    }

    .trac-pg .sec2-head h2 {
        font-size: 34px
    }
}

.trac-pg .sec3 {
    padding: 80px 0
}

.trac-pg .sec3-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.trac-pg .sec3-left h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1e2e;
    letter-spacing: .01em;
    margin: 0 0 24px
}

.trac-pg .sec3-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #3e3e52;
    margin: 0 0 24px;
    text-align: justify
}

.trac-pg .sec3-right {
    display: flex;
    flex-direction: column;
    gap: 0
}

.trac-pg .sec3-img-block {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 24px
}

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

    .trac-pg .sec3-left h2 {
        font-size: 34px
    }
}

@media (max-width: 640px) {
    .trac-pg .sec3 {
        padding: 40px 0
    }
}

.trac-pg .sec4 {
    padding: 80px 0;
    background: #cedbd326
}

.trac-pg .sec4-inner {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.trac-pg .sec4-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center
}

.trac-pg .sec4-top h2 {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1e2e;
    letter-spacing: .01em;
    margin: 0
}

.trac-pg .sec4-top p {
    font-size: 16px;
    line-height: 1.6;
    color: #3e3e52;
    margin: 0;
    text-align: justify
}

.trac-pg .sec4-access-box {
    background: #fff;
    border-radius: 9px;
    padding: 40px;
    box-shadow: 0 4px 14px 0 #caa34817;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 640px;
    margin: 0 auto;
    width: 100%
}

.trac-pg .sec4-access-box h3 {
    font-size: 34px;
    line-height: 1.1;
    font-weight: 800;
    color: #1e1e2e;
    margin: 0;
    letter-spacing: .01em
}

.trac-pg .sec4-access-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #3e3e52;
    margin: 0;
    text-align: justify
}

.trac-pg .access-steps {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.trac-pg .access-step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 9px;
    background: #cedbd333;
    transition: background .4s ease-in-out
}

.trac-pg .access-step:hover {
    background: #caa34814
}

.trac-pg .access-step span.as-txt {
    font-size: 15px;
    line-height: 1.6;
    color: #1e1e2e;
    font-weight: 600;
    letter-spacing: .01em
}

.trac-pg .sec4-cta {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.trac-pg .sec4-note {
    font-size: 15px;
    color: #5a5a72;
    line-height: 1.6;
    letter-spacing: .01em
}

@media (max-width: 1024px) {
    .trac-pg .sec4-top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .trac-pg .sec4-top h2 {
        font-size: 34px
    }
}

@media (max-width: 640px) {
    .trac-pg .sec4 {
        padding: 40px 0
    }

    .trac-pg .sec4-access-box {
        padding: 24px
    }

    .trac-pg .sec4-access-box h3 {
        font-size: 20px
    }
}

@media (max-width: 360px) {
    .trac-pg .sec1-txt h1 {
        font-size: 20px
    }

    .trac-pg .metric-big {
        font-size: 48px
    }

    .trac-pg .btn-pri,
    .trac-pg .btn-sec {
        padding: 12px 24px;
        font-size: 15px
    }
}

.dbt {
    background: #fff;
    color: #1b1b1b;
    overflow-x: hidden
}

.dbt .pg-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px
}

.dbt .ttl-blk {
    position: relative;
    padding: 80px 0
}

.dbt .ttl-blk .frm {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
    pointer-events: none
}

.dbt .ttl-blk .frm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #caa34847;
    border-radius: 9px
}

.dbt .ttl-blk .img-z {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    border-radius: 9px;
    overflow: hidden;
    margin-bottom: 40px
}

.dbt .ttl-blk .img-z img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.dbt .ttl-blk .img-z::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(to bottom, #1b1b1bb8 0%, transparent 100%);
    pointer-events: none
}

.dbt .ttl-blk .txt-z {
    max-width: 820px;
    padding: 0 80px
}

.dbt .ttl-blk .eyebrow {
    font-size: 15px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #CAA348;
    margin-bottom: 12px;
    display: block
}

.dbt .ttl-blk h1 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 24px
}

.dbt .ttl-blk h1 span {
    font-size: 48px;
    display: block
}

.dbt .ttl-blk .sub {
    font-size: 20px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 40px;
    max-width: 560px;
    text-align: justify
}

.dbt .ttl-blk .act-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap
}

.dbt .ttl-blk .btn-prim {
    display: inline-block;
    padding: 16px 40px;
    background: #CAA348;
    color: #fff;
    font-size: 16px;
    letter-spacing: .02em;
    border-radius: 9px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px 0 #caa34817
}

.dbt .ttl-blk .btn-prim:hover {
    background: #b8903c;
    box-shadow: 0 9px 52px 0 #caa3481a
}

.dbt .ttl-blk .btn-sec {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #1b1b1b;
    font-size: 16px;
    letter-spacing: .02em;
    border-radius: 9px;
    text-decoration: none;
    border: 1.5px solid #1b1b1b38;
    cursor: pointer;
    transition: border-color .4s ease-in-out, color .4s ease-in-out
}

.dbt .ttl-blk .btn-sec:hover {
    border-color: #CAA348;
    color: #CAA348
}

.dbt .sup-blk {
    padding: 80px 0;
    background: #f5f2ec;
    position: relative
}

.dbt .sup-blk::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #CAA348 30%, #A22EBB 70%, transparent)
}

.dbt .sup-blk .circ-deco {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 260px;
    height: 260px;
    pointer-events: none;
    overflow: hidden
}

.dbt .sup-blk .circ-deco svg {
    width: 100%;
    height: 100%;
    opacity: .07
}

.dbt .sup-blk .pg-wrap {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start
}

.dbt .sup-blk .sup-left {
    flex: 1 1 340px
}

.dbt .sup-blk .sup-right {
    flex: 1 1 460px
}

.dbt .sup-blk h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 24px
}

.dbt .sup-blk h2 em {
    font-style: normal;
    font-size: 64px;
    display: block
}

.dbt .sup-blk .sup-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 9px 52px 0 #caa3481a
}

.dbt .sup-blk .sup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.dbt .sup-blk .sup-img:hover img {
    transform: scale(1.03)
}

.dbt .sup-blk .sup-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0 0 24px;
    text-align: justify
}

.dbt .sup-blk .icon-leg {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dbt .sup-blk .leg-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.dbt .sup-blk .leg-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px
}

.dbt .sup-blk .leg-ico.gold {
    background: #caa34826;
    color: #CAA348
}

.dbt .sup-blk .leg-ico.purp {
    background: #a22ebb1f;
    color: #A22EBB
}

.dbt .sup-blk .leg-ico.teal {
    background: #cedbd380;
    color: #3a7a5a
}

.dbt .sup-blk .leg-txt {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e
}

.dbt .sup-blk .leg-txt strong {
    display: block;
    font-size: 15px;
    color: #1b1b1b;
    margin-bottom: 4px
}

.dbt .avail-blk {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.dbt .avail-blk .av-head {
    margin-bottom: 40px
}

.dbt .avail-blk h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 12px
}

.dbt .avail-blk .av-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    max-width: 560px
}

.dbt .avail-blk .av-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.dbt .avail-blk .av-card {
    border-radius: 9px;
    padding: 40px 24px;
    position: relative;
    box-shadow: 0 1px 6px 0 #caa34814;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
    background: #fdfaf4;
    overflow: hidden
}

.dbt .avail-blk .av-card:hover {
    box-shadow: 0 9px 52px 0 #caa3481a;
    transform: translateY(-3px)
}

.dbt .avail-blk .av-card.featured {
    background: #1b1b1b
}

.dbt .avail-blk .av-card.featured .av-num {
    color: #caa34866
}

.dbt .avail-blk .av-card.featured h4 {
    color: #fff
}

.dbt .avail-blk .av-card.featured p {
    color: #c8c8c8
}

.dbt .avail-blk .av-card.featured .av-tag {
    background: #caa34833;
    color: #CAA348
}

.dbt .avail-blk .av-num {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #caa34833;
    letter-spacing: -.02em;
    margin-bottom: 8px
}

.dbt .avail-blk h4 {
    font-size: 20px;
    line-height: 1.1;
    color: #1b1b1b;
    margin: 0 0 12px;
    letter-spacing: .01em
}

.dbt .avail-blk .av-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0 0 24px;
    text-align: justify
}

.dbt .avail-blk .av-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 2px;
    background: #caa3481f;
    color: #8a6820;
    font-size: 15px;
    letter-spacing: .02em
}

.dbt .avail-blk .av-img-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.dbt .avail-blk .av-img-box {
    aspect-ratio: 16/9;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 4px 14px 0 #caa34817
}

.dbt .avail-blk .av-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.dbt .avail-blk .av-img-box:hover img {
    transform: scale(1.04)
}

.dbt .voices-blk {
    padding: 80px 0;
    background: #CEDBD3;
    position: relative;
    overflow: hidden
}

.dbt .voices-blk .bg-anim {
    position: absolute;
    inset: 0;
    animation: desat 8s ease-in-out infinite alternate;
    pointer-events: none;
    background: #CEDBD3
}

@keyframes desat {
    0% {
        filter: saturate(1)
    }

    100% {
        filter: saturate(0.35)
    }
}

.dbt .voices-blk .pg-wrap {
    position: relative;
    z-index: 1
}

.dbt .voices-blk .v-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start
}

.dbt .voices-blk .v-port {
    position: relative
}

.dbt .voices-blk .port-img {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 9px 52px 0 #a22ebb1a
}

.dbt .voices-blk .port-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.dbt .voices-blk .port-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    background: #fff;
    border-radius: 9px;
    padding: 12px 24px;
    box-shadow: 0 4px 14px 0 #caa34817
}

.dbt .voices-blk .port-badge .pb-name {
    font-size: 16px;
    color: #1b1b1b;
    display: block;
    font-weight: 600
}

.dbt .voices-blk .port-badge .pb-role {
    font-size: 15px;
    color: #666;
    display: block
}

.dbt .voices-blk .v-quotes {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.dbt .voices-blk h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 40px
}

.dbt .voices-blk h2 span {
    font-size: 34px;
    display: block
}

.dbt .voices-blk .q-card {
    background: #fff;
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #a22ebb14;
    transition: box-shadow .4s ease-in-out
}

.dbt .voices-blk .q-card:hover {
    box-shadow: 0 4px 14px 0 #a22ebb17
}

.dbt .voices-blk .q-text {
    font-size: 16px;
    line-height: 1.6;
    color: #2e2e2e;
    margin: 0 0 12px;
    text-align: justify
}

.dbt .voices-blk .q-attr {
    font-size: 15px;
    color: #888
}

.dbt .voices-blk .q-attr strong {
    color: #A22EBB
}

.dbt .voices-blk .stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    margin-bottom: 8px
}

.dbt .voices-blk .star {
    width: 14px;
    height: 14px
}

.dbt .exp-blk {
    padding: 80px 0;
    background: #fff;
    position: relative
}

.dbt .exp-blk .circ-corner {
    position: absolute;
    top: -40px;
    left: -40px;
    pointer-events: none
}

.dbt .exp-blk .circ-corner svg {
    opacity: .06
}

.dbt .exp-blk .pg-wrap {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start
}

.dbt .exp-blk .exp-left h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 24px
}

.dbt .exp-blk .exp-left h2 em {
    font-style: normal;
    font-size: 64px;
    display: block
}

.dbt .exp-blk .exp-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #2e2e2e;
    text-align: justify;
    margin: 0 0 24px
}

.dbt .exp-blk .exp-left .ul-num {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.dbt .exp-blk .exp-left .ul-num li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #2e2e2e
}

.dbt .exp-blk .exp-left .ul-num li .n-circ {
    width: 28px;
    height: 28px;
    border-radius: 24px;
    background: #CAA348;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

.dbt .exp-blk .exp-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.dbt .exp-blk .exp-metric {
    background: #fdfaf4;
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #caa34814
}

.dbt .exp-blk .exp-metric .em-val {
    font-size: 48px;
    line-height: 1.1;
    color: #CAA348;
    font-weight: 700;
    letter-spacing: -.01em
}

.dbt .exp-blk .exp-metric .em-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #3a3a3a;
    margin-top: 4px
}

.dbt .exp-blk .exp-metric.dark {
    background: #1b1b1b
}

.dbt .exp-blk .exp-metric.dark .em-val {
    color: #CAA348
}

.dbt .exp-blk .exp-metric.dark .em-lbl {
    color: #c8c8c8
}

.dbt .exp-blk .exp-metric.purp {
    background: #a22ebb0f
}

.dbt .exp-blk .exp-metric.purp .em-val {
    color: #A22EBB
}

.dbt .env-blk {
    padding: 80px 0;
    background: #1b1b1b;
    position: relative;
    overflow: hidden
}

.dbt .env-blk::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, transparent, #A22EBB 40%, #CAA348 80%, transparent)
}

.dbt .env-blk h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 12px
}

.dbt .env-blk h2 em {
    font-style: normal;
    font-size: 34px;
    color: #CAA348;
    display: block
}

.dbt .env-blk .env-sub {
    font-size: 16px;
    line-height: 1.6;
    color: #c8c8c8;
    max-width: 520px;
    margin: 0 0 40px
}

.dbt .env-blk .env-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start
}

.dbt .env-blk .env-items {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.dbt .env-blk .env-item {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start;
    padding: 24px;
    background: #ffffff0a;
    border-radius: 9px;
    border: 1px solid #ffffff14;
    transition: background .4s ease-in-out, border-color .4s ease-in-out
}

.dbt .env-blk .env-item:hover {
    background: #caa34812;
    border-color: #caa34833
}

.dbt .env-blk .env-ico {
    width: 44px;
    height: 44px;
    border-radius: 9px;
    background: #caa3481f;
    color: #CAA348;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px
}

.dbt .env-blk .env-txt h5 {
    font-size: 16px;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: .01em
}

.dbt .env-blk .env-txt p {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
    margin: 0;
    text-align: justify
}

.dbt .env-blk .env-side {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.dbt .env-blk .env-stat {
    background: #ffffff0a;
    border-radius: 9px;
    padding: 24px;
    border: 1px solid #ffffff14
}

.dbt .env-blk .es-val {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 700;
    color: #A22EBB
}

.dbt .env-blk .es-lbl {
    font-size: 15px;
    color: #aaa;
    margin-top: 4px;
    line-height: 1.6
}

.dbt .env-blk .env-cta {
    margin-top: 40px
}

.dbt .env-blk .env-cta a {
    display: inline-block;
    padding: 16px 40px;
    background: #CAA348;
    color: #fff;
    font-size: 16px;
    letter-spacing: .02em;
    border-radius: 9px;
    text-decoration: none;
    transition: background-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px 0 #caa34817
}

.dbt .env-blk .env-cta a:hover {
    background: #b8903c;
    box-shadow: 0 9px 52px 0 #caa3481a
}

@media (max-width: 1024px) {
    .dbt .ttl-blk h1 {
        font-size: 48px
    }

    .dbt .ttl-blk h1 span {
        font-size: 34px
    }

    .dbt .ttl-blk .txt-z {
        padding: 0 40px
    }

    .dbt .sup-blk .pg-wrap {
        flex-direction: column;
        gap: 40px
    }

    .dbt .avail-blk .av-grid {
        grid-template-columns: 1fr 1fr
    }

    .dbt .voices-blk .v-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .dbt .voices-blk .port-img {
        aspect-ratio: 3/2
    }

    .dbt .exp-blk .pg-wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .dbt .env-blk .env-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 640px) {
    .dbt .ttl-blk {
        padding: 40px 0
    }

    .dbt .ttl-blk .txt-z {
        padding: 0 12px
    }

    .dbt .ttl-blk h1 {
        font-size: 34px
    }

    .dbt .ttl-blk h1 span {
        font-size: 20px
    }

    .dbt .ttl-blk .sub {
        font-size: 16px
    }

    .dbt .ttl-blk .frm {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px
    }

    .dbt .sup-blk {
        padding: 40px 0
    }

    .dbt .sup-blk h2 em {
        font-size: 34px
    }

    .dbt .avail-blk .av-grid {
        grid-template-columns: 1fr
    }

    .dbt .avail-blk .av-img-row {
        grid-template-columns: 1fr
    }

    .dbt .voices-blk {
        padding: 40px 0
    }

    .dbt .exp-blk {
        padding: 40px 0
    }

    .dbt .env-blk {
        padding: 40px 0
    }

    .dbt .env-blk h2 {
        font-size: 34px
    }

    .dbt .voices-blk h2 {
        font-size: 34px
    }
}

@media (max-width: 360px) {
    .dbt .pg-wrap {
        padding: 0 12px
    }

    .dbt .ttl-blk h1 {
        font-size: 34px
    }

    .dbt .avail-blk .av-grid {
        grid-template-columns: 1fr
    }
}

.stdy-mat {
    background: #fff;
    overflow-x: clip
}

.stdy-mat .pg-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px
}

.stdy-mat .div-sep {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 0
}

.stdy-mat .div-sep span {
    display: block;
    width: 40px;
    height: 2px;
    background: #CAA348
}

.stdy-mat .div-sep i {
    width: 8px;
    height: 8px;
    border: 2px solid #A22EBB;
    transform: rotate(45deg);
    display: block;
    flex-shrink: 0
}

.stdy-mat .acc-word {
    color: #A22EBB
}

.stdy-mat .grad-line {
    display: inline-block;
    position: relative
}

.stdy-mat .grad-line::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 3px;
    background: linear-gradient(105deg, transparent 0%, #CAA348 30%, #A22EBB 70%, transparent 100%);
    border-radius: 2px
}

.stdy-mat .tb {
    background: #1a1200;
    background: #18120a;
    background: #191208;
    position: relative;
    padding: 80px 0
}

.stdy-mat .tb-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none
}

.stdy-mat .tb-bg .circ {
    position: absolute;
    border-radius: 24px;
    background: #CAA348;
    opacity: .06
}

.stdy-mat .tb-bg .circ-a {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    top: -80px;
    right: 12%
}

.stdy-mat .tb-bg .circ-b {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    bottom: -40px;
    left: 8%;
    background: #A22EBB;
    opacity: .07
}

.stdy-mat .tb-bg .circ-c {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: 40px;
    left: 30%;
    opacity: .05
}

.stdy-mat .tb-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    position: relative
}

.stdy-mat .tb-text {
    flex: 1 1 0;
    min-width: 0
}

.stdy-mat .tb-eyebrow {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #CAA348;
    margin-bottom: 12px;
    text-transform: uppercase
}

.stdy-mat .tb-h1 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #f5ecd5;
    margin: 0 0 24px
}

.stdy-mat .tb-h1 em {
    font-style: normal;
    color: #CAA348
}

.stdy-mat .tb-pts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.stdy-mat .tb-pts li {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: #c8bfad;
    letter-spacing: .01em
}

.stdy-mat .tb-pts li .num-dot {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #CAA348;
    color: #18120a;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px
}

.stdy-mat .tb-img-col {
    flex: 0 0 420px;
    position: relative;
    border-radius: 9px;
    overflow: hidden
}

.stdy-mat .tb-img-col img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 9px
}

.stdy-mat .tb-img-col::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, #18120a 0%, transparent 55%);
    border-radius: 9px;
    pointer-events: none
}

.stdy-mat .mat-grid-sec {
    padding: 80px 0;
    background: #f7f3ec;
    position: relative
}

.stdy-mat .mat-grid-sec .bg-pat {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden
}

.stdy-mat .mat-grid-sec .bg-pat svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .04;
    animation: pat-drift 18s linear infinite
}

@keyframes pat-drift {
    0% {
        transform: translate(0, 0) rotate(0deg)
    }

    100% {
        transform: translate(24px, 16px) rotate(3deg)
    }
}

.stdy-mat .mg-head {
    max-width: 680px;
    margin: 0 0 40px
}

.stdy-mat .mg-head h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1e1408;
    margin: 0 0 12px
}

.stdy-mat .mg-head h2 .big-w {
    font-size: 64px
}

.stdy-mat .mg-head p {
    font-size: 16px;
    line-height: 1.6;
    color: #3d2e18;
    text-align: justify;
    letter-spacing: .01em;
    margin: 0
}

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

.stdy-mat .mat-card {
    background: #fff;
    border-radius: 9px;
    padding: 40px 24px 24px;
    box-shadow: 0 4px 14px 0 #caa34817;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1), transform .45s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative
}

.stdy-mat .mat-card:hover {
    box-shadow: 0 9px 52px 0 #caa3481a;
    transform: translateY(-4px)
}

.stdy-mat .mat-card .card-ico {
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: linear-gradient(135deg, #f5ecd5 0%, #CEDBD3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: inset 0 2px 8px 0 #caa34826
}

.stdy-mat .mat-card .card-ico i {
    font-size: 20px;
    color: #CAA348
}

.stdy-mat .mat-card h4 {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1e1408;
    margin: 0
}

.stdy-mat .mat-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d2e18;
    text-align: justify;
    letter-spacing: .01em;
    margin: 0;
    flex: 1
}

.stdy-mat .mat-card .tag-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px
}

.stdy-mat .mat-card .tag {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    padding: 4px 12px;
    border-radius: 2px;
    background: #f5ecd5;
    color: #7a5a1e
}

.stdy-mat .mat-card .card-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 34px;
    line-height: 1.1;
    color: #CAA348;
    opacity: .15;
    letter-spacing: .01em;
    font-weight: 700
}

.stdy-mat .res-sec {
    padding: 80px 0;
    background: #fff
}

.stdy-mat .res-layout {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 40px;
    align-items: start
}

.stdy-mat .res-left h3 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1e1408;
    margin: 0 0 24px
}

.stdy-mat .res-left h3 .big-w {
    font-size: 64px
}

.stdy-mat .res-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px
}

.stdy-mat .res-step {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.stdy-mat .rs-num {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CAA348 0%, #A22EBB 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center
}

.stdy-mat .rs-body h5 {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1e1408;
    margin: 0 0 8px
}

.stdy-mat .rs-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #3d2e18;
    text-align: justify;
    letter-spacing: .01em;
    margin: 0
}

.stdy-mat .res-img-wrap {
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 4px 14px 0 #a22ebb17;
    margin-bottom: 24px
}

.stdy-mat .res-img-wrap img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .55s cubic-bezier(0.16, 1, 0.3, 1)
}

.stdy-mat .res-img-wrap:hover img {
    transform: scale(1.04)
}

.stdy-mat .testi-card {
    background: linear-gradient(160deg, #f7f3ec 0%, #CEDBD3 100%);
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #caa34814
}

.stdy-mat .testi-card .testi-q {
    font-size: 34px;
    line-height: 1.1;
    color: #CAA348;
    margin-bottom: 12px;
    display: block
}

.stdy-mat .testi-card blockquote {
    margin: 0 0 24px;
    padding: 0
}

.stdy-mat .testi-card blockquote p {
    font-size: 16px;
    line-height: 1.6;
    color: #1e1408;
    text-align: justify;
    letter-spacing: .01em;
    margin: 0
}

.stdy-mat .testi-person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px
}

.stdy-mat .testi-person img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    object-position: center;
    display: block;
    flex-shrink: 0
}

.stdy-mat .testi-person .per-info strong {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    color: #1e1408;
    letter-spacing: .01em
}

.stdy-mat .testi-person .per-info span {
    font-size: 15px;
    line-height: 1.6;
    color: #7a5a1e;
    letter-spacing: .01em
}

@media (max-width: 1024px) {
    .stdy-mat .tb-h1 {
        font-size: 48px
    }

    .stdy-mat .tb-img-col {
        flex: 0 0 320px
    }

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

    .stdy-mat .res-layout {
        grid-template-columns: 1fr 360px
    }
}

@media (max-width: 640px) {
    .stdy-mat .tb {
        padding: 40px 0
    }

    .stdy-mat .tb-inner {
        flex-direction: column
    }

    .stdy-mat .tb-img-col {
        flex: 0 0 auto;
        width: 100%
    }

    .stdy-mat .tb-h1 {
        font-size: 34px
    }

    .stdy-mat .mat-grid-sec {
        padding: 40px 0
    }

    .stdy-mat .mat-grid {
        grid-template-columns: 1fr
    }

    .stdy-mat .mg-head h2 {
        font-size: 34px
    }

    .stdy-mat .mg-head h2 .big-w {
        font-size: 48px
    }

    .stdy-mat .res-sec {
        padding: 40px 0
    }

    .stdy-mat .res-layout {
        grid-template-columns: 1fr
    }

    .stdy-mat .res-left h3 {
        font-size: 34px
    }

    .stdy-mat .res-left h3 .big-w {
        font-size: 48px
    }
}

@media (max-width: 360px) {
    .stdy-mat .tb-h1 {
        font-size: 34px
    }

    .stdy-mat .pg-wrap {
        padding: 0 12px
    }
}

.lrn-prog {
    background: #fff;
    overflow-x: clip
}

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

@media (max-width: 640px) {
    .lrn-prog .pg-wrap {
        padding: 0 24px
    }
}

.lrn-prog .strokes-deco {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute
}

.lrn-prog .strokes-deco span {
    display: block;
    height: 2px;
    background: #CAA348;
    border-radius: 2px;
    opacity: .45
}

.lrn-prog .ttl-blk {
    padding: 80px 0;
    position: relative
}

.lrn-prog .ttl-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(170deg, #CEDBD3 0%, transparent 48%, #CAA348 100%);
    opacity: .13;
    pointer-events: none;
    border-radius: 2px
}

.lrn-prog .ttl-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    background-repeat: repeat;
    opacity: .55
}

.lrn-prog .ttl-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative
}

.lrn-prog .ttl-text {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .ttl-text h1 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0
}

.lrn-prog .ttl-text h1 span {
    font-size: 48px;
    display: block;
    color: #3a2e1e
}

.lrn-prog .ttl-text p {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2e2e2e;
    text-align: justify;
    margin: 0
}

.lrn-prog .ttl-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: .02em;
    color: #fff;
    background: #A22EBB;
    padding: 12px 24px;
    border-radius: 9px;
    text-decoration: none;
    align-self: flex-start;
    box-shadow: 0 4px 14px 0 #a22ebb17;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.lrn-prog .ttl-link:hover {
    background: #8a22a1;
    box-shadow: 0 9px 52px 0 #a22ebb1a
}

.lrn-prog .ttl-link:focus-visible {
    outline: 2px solid #A22EBB;
    outline-offset: 3px
}

.lrn-prog .ttl-img-frame {
    position: relative
}

.lrn-prog .ttl-img-deco {
    position: absolute;
    top: -16px;
    right: -16px;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    border: 2px solid #CAA348;
    border-radius: 9px;
    opacity: .35;
    pointer-events: none
}

.lrn-prog .ttl-img-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    border-radius: 9px;
    display: block
}

.lrn-prog .ttl-strokes {
    top: 24px;
    left: -32px
}

.lrn-prog .ttl-strokes span:nth-child(1) {
    width: 48px
}

.lrn-prog .ttl-strokes span:nth-child(2) {
    width: 32px
}

.lrn-prog .ttl-strokes span:nth-child(3) {
    width: 40px
}

.lrn-prog .ttl-strokes span:nth-child(4) {
    width: 24px
}

@media (max-width: 1024px) {
    .lrn-prog .ttl-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lrn-prog .ttl-text h1 {
        font-size: 48px
    }

    .lrn-prog .ttl-text h1 span {
        font-size: 34px
    }

    .lrn-prog .ttl-strokes {
        display: none
    }
}

@media (max-width: 640px) {
    .lrn-prog .ttl-blk {
        padding: 40px 0
    }

    .lrn-prog .ttl-text h1 {
        font-size: 34px
    }

    .lrn-prog .ttl-text h1 span {
        font-size: 20px
    }
}

.lrn-prog .zdiv {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block
}

.lrn-prog .zdiv svg {
    display: block;
    width: 100%
}

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

.lrn-prog .struct-blk .pg-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start
}

.lrn-prog .struct-sidebar {
    position: sticky;
    top: 24px
}

.lrn-prog .struct-sidebar h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 24px
}

.lrn-prog .struct-sidebar h2 em {
    font-style: normal;
    font-size: 34px;
    display: block;
    color: #5a4020
}

.lrn-prog .struct-sidebar p {
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    text-align: justify;
    margin: 0
}

.lrn-prog .struct-sidebar .s-badge {
    display: inline-block;
    margin-top: 24px;
    padding: 8px 12px;
    background: #CAA348;
    color: #fff;
    font-size: 15px;
    letter-spacing: .02em;
    border-radius: 9px;
    box-shadow: 0 1px 6px 0 #caa34814
}

.lrn-prog .struct-cats {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .cat-grp {
    background: #fff;
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 1px 6px 0 #caa34814;
    transition: box-shadow .4s ease-in-out
}

.lrn-prog .cat-grp:hover {
    box-shadow: 0 4px 14px 0 #caa34817
}

.lrn-prog .cat-grp h3 {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px
}

.lrn-prog .cat-grp h3 .cat-icon {
    width: 28px;
    height: 28px;
    border-radius: 9px;
    background: linear-gradient(135deg, #CAA348, #A22EBB);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.lrn-prog .cat-grp h3 .cat-icon svg {
    width: 14px;
    height: 14px
}

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

.lrn-prog .feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    letter-spacing: .01em
}

.lrn-prog .feat-list li .num-dot {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 24px;
    background: #CEDBD3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #1b1b1b;
    margin-top: 2px
}

@media (max-width: 1024px) {
    .lrn-prog .struct-blk .pg-wrap {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lrn-prog .struct-sidebar {
        position: static
    }

    .lrn-prog .struct-sidebar h2 {
        font-size: 34px
    }

    .lrn-prog .struct-sidebar h2 em {
        font-size: 20px
    }
}

@media (max-width: 640px) {
    .lrn-prog .struct-blk {
        padding: 40px 0
    }
}

@keyframes icon-hl {

    0%,
    20% {
        background: linear-gradient(135deg, #CAA348, #A22EBB);
        color: #fff;
        box-shadow: 0 4px 14px 0 #a22ebb17;
        transform: translateY(-2px)
    }

    25%,
    100% {
        background: #CEDBD3;
        color: #1b1b1b;
        box-shadow: none;
        transform: translateY(0)
    }
}

.lrn-prog .icon-cycle .ic-item:nth-child(1) .ic-badge {
    animation: icon-hl 3.6s 0s infinite ease-in-out
}

.lrn-prog .icon-cycle .ic-item:nth-child(2) .ic-badge {
    animation: icon-hl 3.6s .9s infinite ease-in-out
}

.lrn-prog .icon-cycle .ic-item:nth-child(3) .ic-badge {
    animation: icon-hl 3.6s 1.8s infinite ease-in-out
}

.lrn-prog .icon-cycle .ic-item:nth-child(4) .ic-badge {
    animation: icon-hl 3.6s 2.7s infinite ease-in-out
}

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

.lrn-prog .rev-blk::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(./visual_content/2026_03-content-image-10.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.18) saturate(0.6);
    pointer-events: none;
    border-radius: 2px
}

.lrn-prog .rev-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start
}

.lrn-prog .rev-cards {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .rev-card {
    background: #fffffff5;
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 4px 14px 0 #caa34817;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.lrn-prog .rev-card .rev-head {
    display: flex;
    align-items: center;
    gap: 12px
}

.lrn-prog .rev-card .rev-port {
    width: 52px;
    height: 78px;
    border-radius: 9px;
    overflow: hidden;
    flex-shrink: 0
}

.lrn-prog .rev-card .rev-port img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.lrn-prog .rev-card .rev-meta h5 {
    font-size: 16px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 4px
}

.lrn-prog .rev-card .rev-meta span {
    font-size: 15px;
    color: #5a4a2a;
    letter-spacing: .01em
}

.lrn-prog .rev-card blockquote {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    text-align: justify;
    letter-spacing: .01em
}

.lrn-prog .rev-card .rev-stars {
    display: flex;
    flex-direction: row;
    gap: 4px
}

.lrn-prog .rev-card .rev-stars .star {
    width: 12px;
    height: 12px
}

.lrn-prog .rev-no-port {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fffffff5;
    border-radius: 9px;
    padding: 24px;
    box-shadow: 0 4px 14px 0 #caa34817
}

.lrn-prog .rev-no-port .rev-initials {
    width: 52px;
    height: 52px;
    border-radius: 24px;
    background: linear-gradient(135deg, #CEDBD3, #CAA348);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #1b1b1b;
    flex-shrink: 0
}

.lrn-prog .rev-no-port .rev-head {
    display: flex;
    align-items: center;
    gap: 12px
}

.lrn-prog .rev-no-port .rev-meta h5 {
    font-size: 16px;
    line-height: 1.1;
    color: #1b1b1b;
    margin: 0 0 4px;
    letter-spacing: .01em
}

.lrn-prog .rev-no-port .rev-meta span {
    font-size: 15px;
    color: #5a4a2a;
    letter-spacing: .01em
}

.lrn-prog .rev-no-port blockquote {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #2e2e2e;
    text-align: justify;
    letter-spacing: .01em
}

.lrn-prog .stats-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prog .stats-head {
    color: #fff
}

.lrn-prog .stats-head h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    margin: 0 0 12px
}

.lrn-prog .stats-head h2 em {
    font-style: normal;
    font-size: 34px;
    display: block;
    opacity: .75
}

.lrn-prog .stats-head p {
    font-size: 16px;
    line-height: 1.6;
    opacity: .85;
    text-align: justify;
    letter-spacing: .01em;
    margin: 0
}

.lrn-prog .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.lrn-prog .stat-card {
    background: #ffffff1a;
    border: 1px solid #ffffff2e;
    border-radius: 9px;
    padding: 24px 12px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: background .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.lrn-prog .stat-card:hover {
    background: #ffffff2e
}

.lrn-prog .stat-card .s-num {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #CAA348;
    display: block
}

.lrn-prog .stat-card .s-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffd9;
    letter-spacing: .01em
}

.lrn-prog .icon-cycle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.lrn-prog .ic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center
}

.lrn-prog .ic-badge {
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: #CEDBD3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .45s ease-in-out, color .45s ease-in-out, box-shadow .45s ease-in-out, transform .45s ease-in-out
}

.lrn-prog .ic-badge i {
    font-size: 20px;
    color: #1b1b1b
}

.lrn-prog .ic-item span {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffd9;
    letter-spacing: .01em
}

@media (max-width: 1024px) {
    .lrn-prog .rev-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lrn-prog .stats-head h2 {
        font-size: 34px
    }

    .lrn-prog .stats-head h2 em {
        font-size: 20px
    }
}

@media (max-width: 640px) {
    .lrn-prog .rev-blk {
        padding: 40px 0
    }

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

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

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

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

.lrn-prog .ttl-text h1 {
    animation: rise-in .55s cubic-bezier(0.16, 1, 0.3, 1) .1s both
}

.lrn-prog .ttl-text p {
    animation: rise-in .55s cubic-bezier(0.16, 1, 0.3, 1) .22s both
}

.lrn-prog .ttl-link {
    animation: rise-in .55s cubic-bezier(0.16, 1, 0.3, 1) .34s both
}

.lrn-prog .ttl-img-frame {
    animation: rise-in .55s cubic-bezier(0.16, 1, 0.3, 1) .18s both
}

.lrn-prog .cat-grp:nth-child(1) {
    animation: rise-in .5s cubic-bezier(0.16, 1, 0.3, 1) .05s both
}

.lrn-prog .cat-grp:nth-child(2) {
    animation: rise-in .5s cubic-bezier(0.16, 1, 0.3, 1) .15s both
}

.lrn-prog .cat-grp:nth-child(3) {
    animation: rise-in .5s cubic-bezier(0.16, 1, 0.3, 1) .25s both
}

.lrn-prog .cat-grp:nth-child(4) {
    animation: rise-in .5s cubic-bezier(0.16, 1, 0.3, 1) .35s both
}

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

.abt-pg script {
    display: none
}

.abt-pg .pg-intro {
    background: #f5f2ec;
    padding: 80px 24px;
    position: relative
}

.abt-pg .pg-intro__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 80px;
    align-items: start
}

.abt-pg .pg-intro__quote-mark {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 220px;
    line-height: 1.1;
    color: #CAA348;
    opacity: .07;
    pointer-events: none;
    user-select: none;
    z-index: 0
}

.abt-pg .pg-intro__left {
    position: relative;
    z-index: 1
}

.abt-pg .pg-intro__eyebrow {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px
}

.abt-pg .pg-intro__dash {
    width: 28px;
    height: 2px;
    background: #CAA348;
    flex-shrink: 0
}

.abt-pg .pg-intro__eyebrow-txt {
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .02em;
    color: #CAA348;
    text-transform: uppercase
}

.abt-pg .pg-intro__h1 {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1a1200;
    color: #2a1f00;
    margin: 0 0 24px
}

.abt-pg .pg-intro__h1 span {
    font-size: 48px;
    display: block
}

.abt-pg .pg-intro__counter-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    margin-bottom: 40px
}

.abt-pg .pg-intro__stat {
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-pg .pg-intro__stat-num {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #A22EBB
}

.abt-pg .pg-intro__stat-lbl {
    font-size: 15px;
    line-height: 1.6;
    color: #444
}

.abt-pg .pg-intro__body {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    text-align: justify;
    max-width: 640px
}

.abt-pg .pg-intro__right {
    position: relative;
    z-index: 1
}

.abt-pg .pg-intro__img-wrap {
    position: relative;
    border-radius: 9px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: 0 9px 52px 0 #caa3481a
}

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

.abt-pg .pg-intro__img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #caa3482e 0%, transparent 45%, #a22ebb1f 100%);
    pointer-events: none;
    border-radius: 9px
}

.abt-pg .pg-intro__img-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border-radius: 9px;
    padding: 12px 24px;
    box-shadow: 0 4px 14px 0 #caa34817;
    z-index: 2
}

.abt-pg .pg-intro__img-label-num {
    font-size: 20px;
    line-height: 1.1;
    color: #A22EBB;
    letter-spacing: .01em
}

.abt-pg .pg-intro__img-label-txt {
    font-size: 15px;
    line-height: 1.6;
    color: #555
}

.abt-pg .pg-intro__underline-draw {
    display: inline-block;
    position: relative
}

.abt-pg .pg-intro__underline-draw::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, transparent 0%, #CAA348 40%, #A22EBB 100%);
    border-radius: 2px;
    animation: ul-draw .55s cubic-bezier(0.16, 1, 0.3, 1) .3s forwards
}

@keyframes ul-draw {
    to {
        width: 100%
    }
}

.abt-pg .divider-a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 8px 0
}

.abt-pg .divider-a__line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: #CEDBD3
}

.abt-pg .divider-a__shape {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: #CAA348;
    transform: rotate(45deg);
    flex-shrink: 0
}

.abt-pg .approach-blk {
    background: #fff;
    padding: 80px 24px
}

.abt-pg .approach-blk__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 80px;
    align-items: start
}

.abt-pg .approach-blk__visual {
    position: relative
}

.abt-pg .approach-blk__img-frame {
    border-radius: 9px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 9px 52px 0 #a22ebb1a;
    position: relative
}

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

.abt-pg .approach-blk__annot {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.abt-pg .approach-blk__annot--a {
    top: 40px;
    right: -80px;
    background: #A22EBB;
    color: #fff;
    border-radius: 9px;
    padding: 12px 24px;
    box-shadow: 0 4px 14px 0 #a22ebb17;
    min-width: 140px
}

.abt-pg .approach-blk__annot--b {
    bottom: 80px;
    right: -80px;
    background: #fff;
    border-radius: 9px;
    padding: 12px 24px;
    box-shadow: 0 4px 14px 0 #caa34817;
    border-top: 3px solid #CAA348;
    min-width: 140px
}

.abt-pg .approach-blk__annot-num {
    font-size: 20px;
    line-height: 1.1;
    letter-spacing: .01em
}

.abt-pg .approach-blk__annot--a .approach-blk__annot-num {
    color: #fff
}

.abt-pg .approach-blk__annot--b .approach-blk__annot-num {
    color: #A22EBB
}

.abt-pg .approach-blk__annot-lbl {
    font-size: 15px;
    line-height: 1.6
}

.abt-pg .approach-blk__annot--a .approach-blk__annot-lbl {
    color: #ffffffd9
}

.abt-pg .approach-blk__annot--b .approach-blk__annot-lbl {
    color: #555
}

.abt-pg .approach-blk__txt {
    padding-top: 8px
}

.abt-pg .approach-blk__h2 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #2a1f00;
    margin: 0 0 24px
}

.abt-pg .approach-blk__h2 em {
    font-style: normal;
    font-size: 64px;
    display: block
}

.abt-pg .approach-blk__lead {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    text-align: justify
}

.abt-pg .approach-blk__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-pg .approach-blk__step {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: flex-start
}

.abt-pg .step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CAA348 0%, #A22EBB 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.1
}

.abt-pg .step-body {
    flex: 1
}

.abt-pg .step-body h5 {
    font-size: 16px;
    line-height: 1.6;
    color: #2a1f00;
    margin: 0 0 4px;
    letter-spacing: .01em
}

.abt-pg .step-body p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
    text-align: justify
}

.abt-pg .approach-blk__imgs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.abt-pg .approach-blk__thumb {
    border-radius: 9px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 1px 6px 0 #caa34814
}

.abt-pg .approach-blk__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt-pg .approach-blk__thumb:hover img {
    transform: scale(1.04)
}

.abt-pg .divider-b {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 24px;
    max-width: 1500px;
    margin: 0 auto
}

.abt-pg .divider-b__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #CEDBD3 50%, transparent)
}

.abt-pg .divider-b__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #A22EBB;
    flex-shrink: 0
}

.abt-pg .team-blk {
    background: #CAA348;
    padding: 80px 24px;
    position: relative;
    overflow: hidden
}

.abt-pg .team-blk::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px;
    border-color: transparent;
    pointer-events: none
}

.abt-pg .team-blk__zigzag {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none
}

.abt-pg .team-blk__inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt-pg .team-blk__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 80px
}

.abt-pg .team-blk__h3 {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #fff;
    margin: 0 0 24px
}

.abt-pg .team-blk__h3 strong {
    font-size: 64px;
    display: block;
    line-height: 1.1
}

.abt-pg .team-blk__body {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffffeb;
    text-align: justify
}

.abt-pg .team-blk__person {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    background: #ffffff1f;
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(4px);
    box-shadow: inset 0 1px 0 #fff3 0 4px 14px 0 #caa34817
}

.abt-pg .team-blk__portrait {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 14px 0 #a22ebb17;
    border: 3px solid #fff6
}

.abt-pg .team-blk__portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-pg .team-blk__person-info {
    flex: 1
}

.abt-pg .team-blk__person-name {
    font-size: 20px;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 4px;
    letter-spacing: .01em
}

.abt-pg .team-blk__person-role {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffbf;
    margin: 0 0 12px
}

.abt-pg .team-blk__person-quote {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffe0;
    margin: 0;
    text-align: justify
}

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

.abt-pg .val-card {
    background: #ffffff1a;
    border-radius: 9px;
    padding: 24px;
    border-top: 2px solid #ffffff4d;
    transition: background .45s ease-in-out, transform .35s cubic-bezier(0.16, 1, 0.3, 1)
}

.abt-pg .val-card:hover {
    background: #ffffff2e;
    transform: translateY(-4px)
}

.abt-pg .val-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center
}

.abt-pg .val-card__icon svg {
    width: 28px;
    height: 28px
}

.abt-pg .val-card__h6 {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: .01em
}

.abt-pg .val-card__p {
    font-size: 15px;
    line-height: 1.6;
    color: #ffffffd1;
    margin: 0
}

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

    .abt-pg .pg-intro__right {
        max-width: 400px
    }

    .abt-pg .approach-blk__inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .abt-pg .approach-blk__annot--a,
    .abt-pg .approach-blk__annot--b {
        right: 12px
    }

    .abt-pg .team-blk__top {
        grid-template-columns: 1fr;
        gap: 40px
    }

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

@media (max-width: 640px) {
    .abt-pg .pg-intro {
        padding: 40px 24px 80px
    }

    .abt-pg .pg-intro__h1 {
        font-size: 48px
    }

    .abt-pg .pg-intro__h1 span {
        font-size: 34px
    }

    .abt-pg .pg-intro__counter-row {
        flex-direction: column;
        gap: 12px
    }

    .abt-pg .approach-blk__h2 em {
        font-size: 48px
    }

    .abt-pg .approach-blk__imgs-row {
        grid-template-columns: 1fr
    }

    .abt-pg .team-blk__person {
        flex-direction: column;
        gap: 24px;
        padding: 24px
    }

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

    .abt-pg .team-blk__h3 strong {
        font-size: 48px
    }
}

@media (max-width: 360px) {
    .abt-pg .pg-intro__h1 {
        font-size: 34px
    }

    .abt-pg .pg-intro__h1 span {
        font-size: 20px
    }

    .abt-pg .approach-blk__h2 {
        font-size: 34px
    }
}

.ct-us {
    background: #fff;
    overflow-x: clip
}

.ct-us .pg-lead {
    padding: 80px 24px 40px;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: end
}

.ct-us .pg-lead__eye {
    display: inline-block;
    font-size: 15px;
    letter-spacing: .02em;
    color: #A22EBB;
    border-bottom: 2px solid;
    border-image: linear-gradient(90deg, #A22EBB, #CAA348) 1;
    padding-bottom: 4px;
    margin-bottom: 12px;
    line-height: 1.6
}

.ct-us .pg-lead__h {
    font-size: 64px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 12px
}

.ct-us .pg-lead__h span {
    font-size: 48px;
    color: #4a4a4a
}

.ct-us .pg-lead__sub {
    font-size: 16px;
    line-height: 1.6;
    color: #3a3a3a;
    margin: 0;
    text-align: justify
}

.ct-us .pg-lead__dots {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px
}

.ct-us .pg-lead__dot-row {
    display: flex;
    gap: 12px;
    justify-content: flex-end
}

.ct-us .pg-lead__dot {
    width: 8px;
    height: 8px;
    border-radius: 9px;
    background: #CEDBD3;
    opacity: .5;
    animation: dot-cycle 3s ease-in-out infinite
}

.ct-us .pg-lead__dot:nth-child(2) {
    animation-delay: .4s;
    background: #CAA348;
    opacity: .6
}

.ct-us .pg-lead__dot:nth-child(3) {
    animation-delay: .8s;
    background: #A22EBB;
    opacity: .4
}

.ct-us .pg-lead__dot-row:nth-child(2) .pg-lead__dot {
    animation-delay: .2s
}

.ct-us .pg-lead__dot-row:nth-child(2) .pg-lead__dot:nth-child(2) {
    animation-delay: .6s;
    background: #CEDBD3
}

.ct-us .pg-lead__dot-row:nth-child(2) .pg-lead__dot:nth-child(3) {
    animation-delay: 1s;
    background: #CAA348;
    opacity: .5
}

.ct-us .pg-lead__dot-row:nth-child(3) .pg-lead__dot {
    animation-delay: .5s;
    background: #A22EBB;
    opacity: .3
}

.ct-us .pg-lead__dot-row:nth-child(3) .pg-lead__dot:nth-child(2) {
    animation-delay: .9s
}

.ct-us .pg-lead__dot-row:nth-child(3) .pg-lead__dot:nth-child(3) {
    animation-delay: 1.3s;
    background: #CAA348;
    opacity: .7
}

@keyframes dot-cycle {

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

    50% {
        transform: scale(1.6);
        opacity: .9
    }
}

.ct-us .pg-lead__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0 0
}

.ct-us .info-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px
}

.ct-us .info-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: linear-gradient(135deg, #CEDBD3 0%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 1px 6px 0 #caa34814
}

.ct-us .info-item__icon i {
    font-size: 16px;
    color: #A22EBB
}

.ct-us .info-item__label {
    font-size: 15px;
    color: #888;
    line-height: 1.6;
    letter-spacing: .01em;
    display: block;
    margin-bottom: 4px
}

.ct-us .info-item__val {
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.6;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1)
}

.ct-us .info-item__val:hover {
    color: #A22EBB
}

.ct-us .divider-a {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px
}

.ct-us .divider-a__line {
    height: 1px;
    background: linear-gradient(90deg, #A22EBB 0%, #CAA348 40%, #CEDBD3 100%);
    border: none;
    opacity: .35
}

.ct-us .form-belt {
    background: linear-gradient(160deg, #f5f0fa 0%, #fdf8ee 50%, #eef4f1 100%);
    animation: bg-shift 15s linear infinite;
    padding: 80px 24px
}

@keyframes bg-shift {
    0% {
        background: linear-gradient(160deg, #f5f0fa 0%, #fdf8ee 50%, #eef4f1 100%)
    }

    50% {
        background: linear-gradient(160deg, #eef4f1 0%, #f5f0fa 50%, #fdf8ee 100%)
    }

    100% {
        background: linear-gradient(160deg, #f5f0fa 0%, #fdf8ee 50%, #eef4f1 100%)
    }
}

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

.ct-us .form-belt__aside {
    position: relative
}

.ct-us .form-belt__img-wrap {
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 9px 52px 0 #a22ebb1a;
    position: relative
}

.ct-us .form-belt__img-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, #1b1b1b73, transparent);
    pointer-events: none
}

.ct-us .form-belt__img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 9px
}

.ct-us .form-belt__aside-tag {
    position: absolute;
    bottom: -12px;
    right: 24px;
    background: #fff;
    border-radius: 9px;
    padding: 12px 24px;
    box-shadow: 0 4px 14px 0 #caa34817;
    font-size: 15px;
    color: #1b1b1b;
    letter-spacing: .01em;
    line-height: 1.6
}

.ct-us .form-belt__aside-tag strong {
    color: #A22EBB
}

.ct-us .form-belt__aside-note {
    margin-top: 40px;
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.6;
    text-align: justify;
    letter-spacing: .01em
}

.ct-us .frm {
    background: #fff;
    border-radius: 9px;
    padding: 40px;
    box-shadow: 0 4px 14px 0 #caa34817
}

.ct-us .frm__head {
    margin-bottom: 24px
}

.ct-us .frm__ttl {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 8px
}

.ct-us .frm__ttl span {
    font-size: 20px;
    color: #888
}

.ct-us .frm__desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0
}

.ct-us .frm__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px
}

.ct-us .frm__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px
}

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

.ct-us .frm__lbl {
    font-size: 15px;
    color: #3a3a3a;
    letter-spacing: .01em;
    line-height: 1.6
}

.ct-us .frm__inp {
    padding: 12px;
    border: 1.5px solid #CEDBD3;
    border-radius: 9px;
    font-size: 16px;
    color: #1b1b1b;
    background: #fff;
    outline: none;
    transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .45s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    box-sizing: border-box;
    letter-spacing: .01em
}

.ct-us .frm__inp::placeholder {
    color: #aaa;
    opacity: 1
}

.ct-us .frm__inp:focus {
    border-color: #A22EBB;
    box-shadow: inset 0 0 0 2px #a22ebb1a
}

.ct-us .frm__sel {
    padding: 12px;
    border: 1.5px solid #CEDBD3;
    border-radius: 9px;
    font-size: 16px;
    color: #1b1b1b;
    background: #fff;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: .01em;
    transition: border-color .45s cubic-bezier(0.16, 1, 0.3, 1);
    appearance: auto;
    cursor: pointer
}

.ct-us .frm__sel:focus {
    border-color: #A22EBB
}

.ct-us .frm__priority {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap
}

.ct-us .frm__pr-opt {
    position: relative;
    flex: 1;
    min-width: 80px
}

.ct-us .frm__pr-opt input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.ct-us .frm__pr-lbl {
    display: block;
    padding: 8px 12px;
    border: 1.5px solid #CEDBD3;
    border-radius: 9px;
    font-size: 15px;
    color: #3a3a3a;
    text-align: center;
    cursor: pointer;
    transition: background .4s ease-in-out, border-color .4s ease-in-out, color .4s ease-in-out;
    letter-spacing: .01em;
    line-height: 1.6
}

.ct-us .frm__pr-opt input[type="radio"]:checked+.frm__pr-lbl {
    background: linear-gradient(135deg, #A22EBB 0%, #CAA348 100%);
    border-color: transparent;
    color: #fff
}

.ct-us .frm__pr-lbl:hover {
    border-color: #A22EBB;
    color: #A22EBB
}

.ct-us .frm__privacy {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 24px
}

.ct-us .frm__chk {
    width: 18px;
    height: 18px;
    border: 1.5px solid #CEDBD3;
    border-radius: 2px;
    flex-shrink: 0;
    cursor: pointer;
    margin-top: 2px;
    accent-color: #A22EBB
}

.ct-us .frm__priv-txt {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    letter-spacing: .01em
}

.ct-us .frm__priv-txt a {
    color: #A22EBB;
    text-decoration: underline;
    text-decoration-color: #a22ebb66;
    transition: text-decoration-color .4s ease-in-out
}

.ct-us .frm__priv-txt a:hover {
    text-decoration-color: #A22EBB
}

.ct-us .frm__btn {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #A22EBB 0%, #CAA348 100%);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-size: 16px;
    letter-spacing: .02em;
    line-height: 1.6;
    cursor: pointer;
    transition: filter .4s ease-in-out, transform .35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 14px 0 #a22ebb17
}

.ct-us .frm__btn:hover {
    filter: brightness(1.12);
    transform: translateY(-1px)
}

.ct-us .frm__btn:active {
    transform: translateY(0);
    filter: brightness(0.96)
}

.ct-us .frm__btn:focus-visible {
    outline: 2px solid #A22EBB;
    outline-offset: 3px
}

.ct-us .divider-b {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px
}

.ct-us .divider-b__line {
    height: 1px;
    background: linear-gradient(90deg, #CEDBD3 0%, #CAA348 60%, transparent 100%);
    border: none;
    opacity: .4
}

.ct-us .reach-belt {
    padding: 80px 24px;
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 40px;
    align-items: start
}

.ct-us .reach-head {
    grid-column: 1 / -1;
    margin-bottom: 8px
}

.ct-us .reach-head__h {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 12px
}

.ct-us .reach-head__h span {
    font-size: 34px;
    color: #888
}

.ct-us .reach-head__p {
    font-size: 16px;
    color: #3a3a3a;
    line-height: 1.6;
    max-width: 640px;
    text-align: justify;
    margin: 0
}

.ct-us .reach-card {
    border-radius: 9px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 6px 0 #caa34814;
    background: #fff;
    transition: box-shadow .5s cubic-bezier(0.16, 1, 0.3, 1)
}

.ct-us .reach-card:hover {
    box-shadow: 0 9px 52px 0 #a22ebb1a
}

.ct-us .reach-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, transparent 50%, #CAA348 50%);
    opacity: .18;
    border-radius: 0 9px 0 0
}

.ct-us .reach-card__ico {
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: linear-gradient(135deg, #CEDBD3 0%, #a22ebb14 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: inset 0 1px 6px 0 #caa34814
}

.ct-us .reach-card__ico i {
    font-size: 20px;
    color: #A22EBB
}

.ct-us .reach-card__lbl {
    font-size: 15px;
    color: #888;
    letter-spacing: .02em;
    line-height: 1.6;
    margin: 0 0 4px
}

.ct-us .reach-card__val {
    font-size: 16px;
    color: #1b1b1b;
    line-height: 1.6;
    letter-spacing: .01em;
    text-decoration: none;
    transition: color .45s cubic-bezier(0.16, 1, 0.3, 1);
    display: block;
    word-break: break-word
}

.ct-us .reach-card__val:hover {
    color: #A22EBB
}

.ct-us .reach-card__note {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 8px 0 0;
    letter-spacing: .01em
}

.ct-us .reach-card.addr {
    background: linear-gradient(160deg, #f5f0fa 0%, #fff 100%)
}

.ct-us .reach-card.addr .reach-card__val {
    font-size: 15px;
    color: #3a3a3a
}

.ct-us .curl-deco {
    position: absolute;
    right: 0;
    top: 40px;
    width: 80px;
    height: 80px;
    pointer-events: none;
    opacity: .07;
    overflow: hidden
}

@media (max-width: 1024px) {
    .ct-us .pg-lead {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 40px 24px 24px
    }

    .ct-us .pg-lead__h {
        font-size: 48px
    }

    .ct-us .pg-lead__dots {
        display: none
    }

    .ct-us .pg-lead__info {
        flex-direction: row;
        flex-wrap: wrap
    }

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

    .ct-us .form-belt__img {
        height: 240px
    }

    .ct-us .reach-belt {
        grid-template-columns: 1fr 1fr
    }

    .ct-us .reach-head {
        grid-column: 1 / -1
    }
}

@media (max-width: 640px) {
    .ct-us .pg-lead {
        padding: 40px 12px 24px
    }

    .ct-us .pg-lead__h {
        font-size: 34px
    }

    .ct-us .pg-lead__h span {
        font-size: 20px
    }

    .ct-us .form-belt {
        padding: 40px 12px
    }

    .ct-us .frm {
        padding: 24px 12px
    }

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

    .ct-us .reach-belt {
        grid-template-columns: 1fr;
        padding: 40px 12px
    }

    .ct-us .reach-head__h {
        font-size: 34px
    }

    .ct-us .reach-head__h span {
        font-size: 20px
    }
}

@media (max-width: 360px) {
    .ct-us .pg-lead__h {
        font-size: 34px
    }

    .ct-us .frm__priority {
        flex-direction: column
    }
}

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

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

.suc-page .suc-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background: #CEDBD3;
    box-shadow: 0 4px 14px 0 #caa34817
}

.suc-page .suc-icon svg {
    display: block
}

.suc-page .suc-heading {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: .01em;
    color: #1b1b1b;
    margin: 0 0 24px
}

.suc-page .suc-heading span {
    display: inline-block;
    position: relative
}

.suc-page .suc-heading span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent 0%, #CAA348 40%, #A22EBB 100%)
}

.suc-page .suc-body {
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #2e2e2e;
    text-align: justified;
    margin: 0 0 40px
}

.suc-page .suc-divider {
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, #CAA348, #A22EBB);
    margin: 0 auto 40px
}

.suc-page .suc-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.suc-page .suc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 9px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .02em;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background .45s cubic-bezier(0.16, 1, 0.3, 1), color .45s cubic-bezier(0.16, 1, 0.3, 1), border-color .45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease-in-out
}

.suc-page .suc-btn.primary {
    background: #CAA348;
    color: #fff;
    border-color: #CAA348;
    box-shadow: 0 4px 14px 0 #caa34817
}

.suc-page .suc-btn.primary:hover,
.suc-page .suc-btn.primary:focus {
    background: #b8913e;
    border-color: #b8913e;
    box-shadow: 0 9px 52px 0 #caa3481a;
    outline: none
}

.suc-page .suc-btn.primary:active {
    background: #a07e35;
    border-color: #a07e35
}

.suc-page .suc-btn.outline {
    background: transparent;
    color: #A22EBB;
    border-color: #A22EBB
}

.suc-page .suc-btn.outline:hover,
.suc-page .suc-btn.outline:focus {
    background: #A22EBB;
    color: #fff;
    box-shadow: 0 4px 14px 0 #a22ebb17;
    outline: none
}

.suc-page .suc-btn.outline:active {
    background: #8e28a3;
    border-color: #8e28a3;
    color: #fff
}

.suc-page .suc-note {
    margin-top: 40px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .01em;
    color: #555
}

.suc-page .suc-note a {
    color: #A22EBB;
    text-decoration: none;
    border-bottom: 1px solid #a22ebb59;
    transition: border-color .4s ease-in-out, color .4s ease-in-out
}

.suc-page .suc-note a:hover {
    color: #8e28a3;
    border-bottom-color: #8e28a3
}

@media (max-width: 640px) {
    .suc-page {
        padding: 40px 24px
    }

    .suc-page .suc-heading {
        font-size: 34px
    }

    .suc-page .suc-actions {
        flex-direction: column;
        align-items: stretch
    }

    .suc-page .suc-btn {
        width: 100%
    }
}

@media (max-width: 360px) {
    .suc-page .suc-heading {
        font-size: 34px
    }

    .suc-page .suc-body {
        font-size: 15px
    }
}