html {
    box-sizing: border-box
}

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2B1C0D;
    background: #FFF;
    letter-spacing: .01em
}

.top-bar {
    background: linear-gradient(135deg, #cd8a661f 0%, #2b1c0d0f 100%);
    border-bottom: 2px solid #cd8a6640;
    position: relative
}

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

.brand-mark {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    padding: 6px;
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0 4px 28px 0 #cd8a6614 0 3px 6px 0 #2b1c0d14;
    border: 1px solid #cd8a6633;
    outline: 2px solid #cd8a661a;
    outline-offset: 3px;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.brand-mark:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 60px 0 #cd8a661a 0 4px 28px 0 #2b1c0d14
}

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

.primary-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-end
}

.nav-link {
    font-size: 17px;
    font-weight: 500;
    color: #2B1C0D;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 46px;
    background: #fff9;
    border: 1px solid #cd8a6633;
    letter-spacing: .02em;
    transition: background .28s ease-in-out, color .28s ease-in-out, border-color .28s ease-in-out, transform .28s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #CD8A66;
    transform: translateX(-50%);
    transition: width .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.nav-link:hover {
    background: #cd8a6626;
    color: #2B1C0D;
    border-color: #cd8a6666;
    transform: translateY(-1px)
}

.nav-link:hover::after {
    width: 70%
}

.nav-link:focus {
    outline: 2px dashed #CD8A66;
    outline-offset: 4px;
    animation: dash-rotate 3s linear infinite
}

@keyframes dash-rotate {
    0% {
        outline-offset: 4px
    }

    50% {
        outline-offset: 6px
    }

    100% {
        outline-offset: 4px
    }
}

.nav-link--active {
    background: linear-gradient(135deg, #cd8a6640 0%, #cd8a6626 100%);
    border-color: #CD8A66;
    color: #2B1C0D;
    font-weight: 700;
    box-shadow: inset 0 2px 4px 0 #cd8a6633
}

@media (max-width: 1366px) {
    .top-bar__inner {
        padding: 24px;
        gap: 24px
    }

    .primary-links {
        gap: 6px
    }

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

@media (max-width: 768px) {
    .top-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px
    }

    .brand-mark {
        width: 55px;
        height: 55px
    }

    .primary-links {
        width: 100%;
        justify-content: flex-start;
        gap: 6px
    }

    .nav-link {
        flex: 1 1 auto;
        text-align: center;
        padding: 12px 6px;
        min-width: 0
    }
}

@media (max-width: 375px) {
    .top-bar__inner {
        padding: 12px
    }

    .primary-links {
        flex-direction: column;
        align-items: stretch
    }

    .nav-link {
        width: 100%
    }
}

.site-base {
    background: linear-gradient(180deg, #ffff 0%, #cd8a6608 100%);
    min-height: 60vh
}

.bottom-zone {
    background: linear-gradient(135deg, #2b1c0d0a 0%, #cd8a6614 100%);
    border-top: 3px solid #cd8a6633;
    padding: 48px;
    position: relative
}

.bottom-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cd8a664d 20%, #cd8a6680 50%, #cd8a664d 80%, transparent 100%)
}

.bottom-zone__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.brand-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px
}

.brand-mark--footer {
    width: 58px;
    height: 58px;
    padding: 6px;
    background: #FFF;
    border-radius: 30px;
    box-shadow: 0 4px 28px 0 #cd8a6614;
    border: 1px solid #cd8a6640;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.brand-mark--footer:hover {
    transform: scale(1.05)
}

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

.reach-links {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap
}

.reach-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2B1C0D;
    text-decoration: none;
    padding: 12px 24px;
    background: #ffffffb3;
    border-radius: 46px;
    border: 1px solid #cd8a6633;
    transition: background .27s ease-in-out, border-color .27s ease-in-out, transform .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.reach-item:hover {
    background: #cd8a661f;
    border-color: #cd8a6666;
    transform: translateX(3px)
}

.reach-item:focus {
    outline: 2px dashed #CD8A66;
    outline-offset: 4px;
    animation: dash-rotate 3s linear infinite
}

.reach-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.reach-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #CD8A66;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.policy-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    padding: 24px 0 0;
    border-top: 1px solid #cd8a6626;
    flex-wrap: wrap
}

.policy-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap
}

.policy-link {
    font-size: 15px;
    color: #2B1C0D;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background .26s ease-in-out, color .26s ease-in-out;
    position: relative
}

.policy-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #CD8A66;
    transition: width .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.policy-link:hover {
    background: #cd8a6614;
    color: #2B1C0D
}

.policy-link:hover::before {
    width: 100%
}

.policy-link:focus {
    outline: 2px dashed #CD8A66;
    outline-offset: 3px;
    animation: dash-rotate 3s linear infinite
}

.copyright-text {
    font-size: 15px;
    color: #2b1c0db3;
    letter-spacing: .015em
}

@media (max-width: 1366px) {
    .bottom-zone {
        padding: 48px 24px
    }

    .brand-footer {
        gap: 24px
    }

    .reach-links {
        gap: 12px
    }

    .policy-row {
        gap: 24px
    }

    .policy-links {
        gap: 12px
    }
}

@media (max-width: 768px) {
    .bottom-zone {
        padding: 24px
    }

    .bottom-zone__inner {
        gap: 24px
    }

    .brand-footer {
        flex-direction: column;
        gap: 24px
    }

    .reach-links {
        flex-direction: column;
        width: 100%
    }

    .reach-item {
        width: 100%;
        justify-content: center
    }

    .policy-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

    .policy-links {
        flex-direction: column;
        width: 100%
    }

    .policy-link {
        width: 100%
    }

    .copyright-text {
        width: 100%;
        text-align: center
    }
}

@media (max-width: 375px) {
    .bottom-zone {
        padding: 24px 12px
    }

    .reach-item {
        padding: 12px;
        font-size: 15px
    }
}

.consent-bar {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #fffffffa 0%, #cd8a6614 100%);
    border-top: 3px solid #CD8A66;
    box-shadow: 0 -4px 28px 0 #2b1c0d14 0 -8px 60px 0 #cd8a661a;
    z-index: 2000;
    padding: 24px 48px;
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .35s cubic-bezier(0.4, 0, 0.2, 1), transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

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

.consent-bar__inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px
}

.consent-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.consent-headline {
    font-size: 17px;
    font-weight: 700;
    color: #2B1C0D;
    letter-spacing: .02em
}

.consent-detail {
    font-size: 15px;
    color: #2b1c0dcc;
    line-height: 1.7
}

.consent-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0
}

.consent-btn {
    font-family: 'Cormorant', serif;
    font-size: 17px;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: 46px;
    border: 1px solid #cd8a664d;
    background: #FFF;
    color: #2B1C0D;
    cursor: pointer;
    transition: background .29s ease-in-out, border-color .29s ease-in-out, transform .29s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .29s ease-in-out;
    letter-spacing: .02em;
    box-shadow: 0 3px 6px 0 #cd8a6614
}

.consent-btn:hover {
    background: #cd8a661f;
    border-color: #cd8a6680;
    transform: translateY(-2px);
    box-shadow: 0 4px 28px 0 #cd8a6614
}

.consent-btn:focus {
    outline: 2px dashed #CD8A66;
    outline-offset: 4px;
    animation: dash-rotate 3s linear infinite
}

.consent-btn--primary {
    background: linear-gradient(135deg, #cd8a6633 0%, #cd8a661f 100%);
    border-color: #CD8A66;
    font-weight: 700
}

.consent-btn--primary:hover {
    background: linear-gradient(135deg, #cd8a664d 0%, #cd8a662e 100%)
}

.consent-settings {
    font-family: 'Cormorant', serif;
    font-size: 15px;
    color: #2B1C0D;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 12px;
    transition: color .27s ease-in-out, text-decoration-color .27s ease-in-out
}

.consent-settings:hover {
    color: #CD8A66;
    text-decoration-color: #CD8A66
}

.consent-settings:focus {
    outline: 2px dashed #CD8A66;
    outline-offset: 3px;
    animation: dash-rotate 3s linear infinite
}

.consent-panel {
    display: none;
    margin: 24px 0 0;
    padding: 24px;
    background: #ffffffe6;
    border-radius: 6px;
    border: 1px solid #cd8a6633
}

.consent-panel.active {
    display: block
}

.consent-options {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.consent-option {
    display: flex;
    align-items: center;
    gap: 12px
}

.consent-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #CD8A66
}

.consent-label {
    font-size: 15px;
    color: #2B1C0D;
    cursor: pointer
}

@media (max-width: 1366px) {
    .consent-bar {
        padding: 24px
    }

    .consent-bar__inner {
        gap: 24px
    }

    .consent-actions {
        gap: 6px
    }
}

@media (max-width: 768px) {
    .consent-bar {
        padding: 24px
    }

    .consent-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

    .consent-actions {
        width: 100%;
        flex-direction: column
    }

    .consent-btn {
        width: 100%
    }

    .consent-settings {
        width: 100%;
        text-align: center
    }
}

@media (max-width: 375px) {
    .consent-bar {
        padding: 12px
    }

    .consent-text {
        gap: 6px
    }
}

body.consent-accepted .consent-bar,
body.consent-declined .consent-bar {
    display: none
}

.doc-content {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 96px 24px
}

.doc-content h1 {
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #2B1C0D;
    margin-bottom: 48px
}

.doc-content h2 {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin-top: 96px;
    margin-bottom: 24px
}

.doc-content h3 {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.005em;
    color: #2B1C0D;
    margin-top: 48px;
    margin-bottom: 24px
}

.doc-content h4 {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2B1C0D;
    margin-top: 48px;
    margin-bottom: 12px;
    font-weight: 600
}

.doc-content h5 {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2B1C0D;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600
}

.doc-content h6 {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #2B1C0D;
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600
}

.doc-content p {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2B1C0D;
    margin-bottom: 24px
}

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

.doc-content a {
    color: #CD8A66;
    text-decoration: none;
    border-bottom: 1px solid #cd8a664d;
    transition: border-bottom-color .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.doc-content a:hover {
    border-bottom-color: #CD8A66
}

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

.doc-content h1:first-child {
    margin-top: 0
}

.doc-content h2:first-child,
.doc-content h3:first-child,
.doc-content h4:first-child,
.doc-content h5:first-child,
.doc-content h6:first-child {
    margin-top: 0
}

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

@media (max-width: 1366px) {
    .doc-content {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .doc-content h1 {
        font-size: 51px;
        margin-bottom: 24px
    }

    .doc-content h2 {
        font-size: 37px;
        margin-top: 48px
    }

    .doc-content h3 {
        font-size: 17px;
        margin-top: 24px;
        font-weight: 600
    }
}

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

    .doc-content h1 {
        font-size: 37px;
        margin-bottom: 24px
    }

    .doc-content h2 {
        font-size: 17px;
        margin-top: 24px;
        margin-bottom: 12px;
        font-weight: 600
    }

    .doc-content h3 {
        font-size: 17px;
        margin-top: 24px;
        margin-bottom: 12px;
        font-weight: 600
    }

    .doc-content h4 {
        margin-top: 24px
    }

    .doc-content p {
        font-size: 15px;
        margin-bottom: 12px
    }

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

@media (max-width: 375px) {
    .doc-content {
        padding-left: 6px;
        padding-right: 6px
    }
}

.anlytcs_dtl {
    background: linear-gradient(0deg, #FFF 0%, #cd8a660a 100%);
    padding: 0;
    margin: 0;
    overflow-x: clip
}

.anlytcs_dtl .art {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 24px 96px;
    position: relative
}

.anlytcs_dtl .art__hdr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding-bottom: 96px;
    position: relative
}

.anlytcs_dtl .art__hdr::before {
    content: '';
    position: absolute;
    right: 0;
    top: -24px;
    font-size: 320px;
    line-height: 1;
    color: #cd8a660f;
    font-weight: 700;
    pointer-events: none;
    z-index: 1
}

.anlytcs_dtl .img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.anlytcs_dtl .img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #2b1c0d73 0%, transparent 100%);
    transition: opacity .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs_dtl .img-wrap:hover::after {
    opacity: 0
}

.anlytcs_dtl .img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block
}

.anlytcs_dtl .txt-zone {
    padding: 48px 48px 48px 24px;
    position: relative;
    z-index: 2
}

.anlytcs_dtl .meta-row {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap
}

.anlytcs_dtl .tag {
    background: #cd8a661f;
    color: #2B1C0D;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em
}

.anlytcs_dtl .date {
    font-size: 15px;
    color: #2b1c0d99;
    letter-spacing: .01em
}

.anlytcs_dtl .art__h1 {
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #2B1C0D;
    margin: 0 0 24px;
    background: linear-gradient(135deg, #CD8A66 0%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.anlytcs_dtl .art__sub {
    font-size: 17px;
    line-height: 1.7;
    color: #2b1c0dbf;
    margin: 0 0 24px;
    letter-spacing: .005em
}

.anlytcs_dtl .auth-line {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #2B1C0D;
    margin-bottom: 24px
}

.anlytcs_dtl .auth-line strong {
    font-weight: 600
}

.anlytcs_dtl .stat-row {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px
}

.anlytcs_dtl .stat-itm {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #2b1c0db3
}

.anlytcs_dtl .stat-itm svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.anlytcs_dtl .act-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.anlytcs_dtl .btn-prim {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: #CD8A66;
    color: #FFF;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background .28s ease-in-out, transform .28s ease-in-out;
    box-shadow: 0 3px 6px 0 #2b1c0d14
}

.anlytcs_dtl .btn-prim:hover {
    background: #2B1C0D;
    transform: translateY(-2px)
}

.anlytcs_dtl .btn-prim svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .28s ease-in-out
}

.anlytcs_dtl .btn-prim:hover svg {
    transform: translateX(4px)
}

.anlytcs_dtl .btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: transparent;
    color: #2B1C0D;
    border: 2px solid #2b1c0d33;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color .3s cubic-bezier(0.4, 0, 0.2, 1), color .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs_dtl .btn-sec:hover {
    border-color: #CD8A66;
    color: #CD8A66
}

.anlytcs_dtl .btn-sec svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs_dtl .btn-sec:hover svg {
    transform: translateX(4px)
}

.anlytcs_dtl .cntnt {
    max-width: 920px;
    margin: 0 auto;
    padding: 48px 24px
}

.anlytcs_dtl .cntnt p {
    font-size: 17px;
    line-height: 1.7;
    color: #2b1c0dd9;
    margin: 0 0 24px;
    letter-spacing: .005em
}

.anlytcs_dtl .cntnt p:first-of-type {
    font-size: 17px;
    color: #2B1C0D;
    font-weight: 500
}

.anlytcs_dtl .cntnt h2 {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 48px 0 24px;
    background: linear-gradient(90deg, #CD8A66 0%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.anlytcs_dtl .cntnt h3 {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.005em;
    color: #2B1C0D;
    margin: 48px 0 24px;
    background: linear-gradient(110deg, #2B1C0D 0%, #CD8A66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.anlytcs_dtl .cntnt abbr {
    text-decoration: none;
    border-bottom: 2px dotted #cd8a6680;
    cursor: help;
    color: #CD8A66
}

.anlytcs_dtl .cntnt em {
    font-style: italic;
    color: #CD8A66
}

.anlytcs_dtl .cntnt ol {
    margin: 24px 0;
    padding-left: 24px
}

.anlytcs_dtl .cntnt li {
    font-size: 17px;
    line-height: 1.7;
    color: #2b1c0dd9;
    margin-bottom: 12px;
    letter-spacing: .005em
}

.anlytcs_dtl .cntnt table {
    width: 100%;
    border-collapse: collapse;
    margin: 48px 0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #2b1c0d14
}

.anlytcs_dtl .cntnt caption {
    font-size: 17px;
    font-weight: 600;
    color: #2B1C0D;
    text-align: left;
    padding: 12px;
    background: #cd8a6614
}

.anlytcs_dtl .cntnt thead {
    background: #CD8A66;
    color: #FFF
}

.anlytcs_dtl .cntnt th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em
}

.anlytcs_dtl .cntnt td {
    padding: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #2b1c0dd9;
    border-bottom: 1px solid #2b1c0d14
}

.anlytcs_dtl .cntnt tbody tr:last-child td {
    border-bottom: none
}

.anlytcs_dtl .cntnt tbody tr:hover {
    background: #cd8a660a
}

.anlytcs_dtl .cntnt blockquote {
    margin: 48px 0;
    padding: 24px 24px 24px 48px;
    background: #cd8a660f;
    border-left: 6px solid #CD8A66;
    border-radius: 6px;
    position: relative
}

.anlytcs_dtl .cntnt blockquote::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 24px;
    width: 24px;
    height: 24px;
    background: #CD8A66;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%);
    opacity: .3
}

.anlytcs_dtl .cntnt blockquote p {
    font-size: 17px;
    line-height: 1.7;
    color: #2b1c0de6;
    margin: 0;
    font-style: italic
}

.anlytcs_dtl .cntnt cite {
    display: block;
    margin-top: 12px;
    font-size: 15px;
    color: #2b1c0d99;
    font-style: normal
}

.anlytcs_dtl .cntnt figure {
    margin: 48px 0
}

.anlytcs_dtl .cntnt figure img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 28px 0 #2b1c0d14
}

.anlytcs_dtl .cntnt figcaption {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: #2b1c0d99;
    text-align: center;
    font-style: italic
}

.anlytcs_dtl .xpnd {
    background: #FFF;
    border-radius: 30px;
    padding: 48px;
    margin: 96px auto;
    max-width: 1500px;
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    position: relative
}

.anlytcs_dtl .xpnd::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #CD8A66 0%, transparent 100%);
    border-radius: 30px 30px 0 0
}

.anlytcs_dtl .xpnd__h {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.005em;
    color: #2B1C0D;
    margin: 0 0 48px;
    text-align: center
}

.anlytcs_dtl .xpnd-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.anlytcs_dtl .xpnd-itm {
    border: 2px solid #2b1c0d1a;
    border-radius: 6px;
    overflow: hidden;
    transition: border-color .32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs_dtl .xpnd-itm:hover {
    border-color: #cd8a6666;
    box-shadow: 0 4px 28px 0 #2b1c0d14
}

.anlytcs_dtl .xpnd-tog {
    display: none
}

.anlytcs_dtl .xpnd-lbl {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    background: #cd8a660a;
    transition: background .27s ease-in-out;
    position: relative
}

.anlytcs_dtl .xpnd-lbl:hover {
    background: #cd8a6614
}

.anlytcs_dtl .xpnd-lbl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(90deg, #CD8A66 0%, transparent 100%);
    transition: height .27s ease-in-out
}

.anlytcs_dtl .xpnd-lbl:hover::after {
    height: 3px
}

.anlytcs_dtl .xpnd-lbl span {
    font-size: 17px;
    font-weight: 600;
    color: #2B1C0D;
    letter-spacing: .005em
}

.anlytcs_dtl .xpnd-icn {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #CD8A66;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .27s ease-in-out;
    flex-shrink: 0
}

.anlytcs_dtl .xpnd-tog:checked+.xpnd-lbl .xpnd-icn {
    transform: rotate(180deg)
}

.anlytcs_dtl .xpnd-cntnt {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs_dtl .xpnd-tog:checked~.xpnd-cntnt {
    max-height: 800px
}

.anlytcs_dtl .xpnd-cntnt p {
    padding: 24px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #2b1c0dbf;
    letter-spacing: .005em;
    background: #FFF
}

.anlytcs_dtl .clr-band {
    background: linear-gradient(270deg, #CD8A66 0%, #cd8a664d 50%, transparent 100%);
    padding: 96px 24px;
    margin: 96px 0;
    position: relative;
    overflow: hidden
}

.anlytcs_dtl .clr-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #2b1c0d05 50%, transparent 100%);
    animation: zn-shift 8s ease-in-out infinite;
    pointer-events: none
}

@keyframes zn-shift {

    0%,
    100% {
        transform: translateX(-10%)
    }

    50% {
        transform: translateX(10%)
    }
}

.anlytcs_dtl .clr-band__cntnt {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    position: relative;
    z-index: 1
}

.anlytcs_dtl .zn-card {
    background: #FFF;
    padding: 48px;
    border-radius: 46px;
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    position: relative;
    overflow: hidden;
    transition: transform .33s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs_dtl .zn-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: #cd8a6614;
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    transition: background .33s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs_dtl .zn-card:hover {
    transform: translateY(-6px)
}

.anlytcs_dtl .zn-card:hover::before {
    background: #cd8a6626
}

.anlytcs_dtl .zn-card__icn {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    fill: none;
    stroke: #CD8A66;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.anlytcs_dtl .zn-card__h {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.005em;
    color: #2B1C0D;
    margin: 0 0 12px
}

.anlytcs_dtl .zn-card__txt {
    font-size: 15px;
    line-height: 1.7;
    color: #2b1c0db3;
    margin: 0;
    letter-spacing: .005em
}

.anlytcs_dtl .mtrc {
    background: #2b1c0d05;
    padding: 96px 24px;
    margin: 0;
    position: relative
}

.anlytcs_dtl .mtrc__cntnt {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px
}

.anlytcs_dtl .mtrc-box {
    background: #FFF;
    padding: 48px 24px;
    border-radius: 6px;
    text-align: center;
    box-shadow: 0 3px 6px 0 #2b1c0d14;
    position: relative;
    overflow: hidden;
    transition: box-shadow .29s ease-in-out
}

.anlytcs_dtl .mtrc-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #CD8A66;
    transition: height .29s ease-in-out
}

.anlytcs_dtl .mtrc-box:hover {
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.anlytcs_dtl .mtrc-box:hover::before {
    height: 6px
}

.anlytcs_dtl .mtrc-num {
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: -.02em;
    font-weight: 700;
    color: #CD8A66;
    margin: 0 0 12px;
    position: relative;
    z-index: 1
}

.anlytcs_dtl .mtrc-lbl {
    font-size: 15px;
    line-height: 1.7;
    color: #2b1c0db3;
    margin: 0;
    letter-spacing: .01em;
    position: relative;
    z-index: 1
}

@media (max-width: 1366px) {
    .anlytcs_dtl .art__hdr {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 48px
    }

    .anlytcs_dtl .img-wrap img {
        height: 400px
    }

    .anlytcs_dtl .txt-zone {
        padding: 24px
    }

    .anlytcs_dtl .art__h1 {
        font-size: 51px
    }

    .anlytcs_dtl .clr-band__cntnt {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .anlytcs_dtl .mtrc__cntnt {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }
}

@media (max-width: 768px) {
    .anlytcs_dtl .art {
        padding: 24px 12px 48px
    }

    .anlytcs_dtl .art__hdr {
        gap: 24px
    }

    .anlytcs_dtl .img-wrap img {
        height: 280px
    }

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

    .anlytcs_dtl .art__h1 {
        font-size: 37px
    }

    .anlytcs_dtl .art__sub {
        font-size: 15px
    }

    .anlytcs_dtl .cntnt {
        padding: 24px 12px
    }

    .anlytcs_dtl .cntnt h2 {
        font-size: 37px;
        margin: 24px 0 12px
    }

    .anlytcs_dtl .cntnt h3 {
        font-size: 17px;
        margin: 24px 0 12px
    }

    .anlytcs_dtl .xpnd {
        padding: 24px;
        margin: 48px 12px
    }

    .anlytcs_dtl .xpnd__h {
        font-size: 17px;
        margin: 0 0 24px
    }

    .anlytcs_dtl .clr-band {
        padding: 48px 12px;
        margin: 48px 0
    }

    .anlytcs_dtl .zn-card {
        padding: 24px
    }

    .anlytcs_dtl .zn-card__h {
        font-size: 17px
    }

    .anlytcs_dtl .mtrc {
        padding: 48px 12px
    }

    .anlytcs_dtl .mtrc__cntnt {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .anlytcs_dtl .mtrc-box {
        padding: 24px 12px
    }

    .anlytcs_dtl .mtrc-num {
        font-size: 51px
    }

    .anlytcs_dtl .act-row {
        flex-direction: column
    }

    .anlytcs_dtl .btn-prim,
    .anlytcs_dtl .btn-sec {
        width: 100%;
        justify-content: center
    }
}

@media (max-width: 375px) {
    .anlytcs_dtl .art__h1 {
        font-size: 37px
    }

    .anlytcs_dtl .cntnt h2 {
        font-size: 37px
    }

    .anlytcs_dtl .meta-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px
    }
}

@media print {
    .anlytcs_dtl {
        background: #FFF
    }

    .anlytcs_dtl .art__hdr {
        grid-template-columns: 1fr;
        page-break-after: avoid
    }

    .anlytcs_dtl .img-wrap {
        display: none
    }

    .anlytcs_dtl .txt-zone {
        padding: 0
    }

    .anlytcs_dtl .act-row {
        display: none
    }

    .anlytcs_dtl .art__h1 {
        background: none;
        -webkit-text-fill-color: #2B1C0D;
        color: #2B1C0D;
        font-size: 37px
    }

    .anlytcs_dtl .cntnt h2,
    .anlytcs_dtl .cntnt h3 {
        background: none;
        -webkit-text-fill-color: #2B1C0D;
        color: #2B1C0D;
        page-break-after: avoid
    }

    .anlytcs_dtl .cntnt h2 {
        font-size: 37px
    }

    .anlytcs_dtl .cntnt h3 {
        font-size: 17px
    }

    .anlytcs_dtl .cntnt p,
    .anlytcs_dtl .cntnt li {
        page-break-inside: avoid
    }

    .anlytcs_dtl .cntnt blockquote {
        page-break-inside: avoid;
        background: #FFF;
        border-left: 3px solid #2B1C0D
    }

    .anlytcs_dtl .cntnt table {
        page-break-inside: avoid;
        box-shadow: none
    }

    .anlytcs_dtl .cntnt thead {
        background: #2B1C0D
    }

    .anlytcs_dtl .cntnt figure {
        page-break-inside: avoid
    }

    .anlytcs_dtl .xpnd {
        box-shadow: none;
        page-break-inside: avoid
    }

    .anlytcs_dtl .xpnd-tog {
        display: block
    }

    .anlytcs_dtl .xpnd-tog:checked~.xpnd-cntnt {
        max-height: none
    }

    .anlytcs_dtl .xpnd-cntnt {
        max-height: none
    }

    .anlytcs_dtl .clr-band,
    .anlytcs_dtl .mtrc {
        display: none
    }

    .anlytcs_dtl .stat-itm svg,
    .anlytcs_dtl .xpnd-icn,
    .anlytcs_dtl .zn-card__icn {
        display: none
    }
}

.contact-reach {
    background: #FFF;
    color: #2B1C0D;
    overflow-x: clip
}

.contact-reach__title-zone {
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative
}

.contact-reach__title-zone::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 24px;
    width: 96px;
    height: 6px;
    background: linear-gradient(90deg, #CD8A66 0%, #CD8A66 50%, transparent 50%);
    background-size: 12px 6px;
    opacity: .4
}

.contact-reach__title-zone::after {
    content: '';
    position: absolute;
    bottom: 12px;
    right: 24px;
    width: 96px;
    height: 6px;
    background: linear-gradient(90deg, #CD8A66 0%, #CD8A66 50%, transparent 50%);
    background-size: 12px 6px;
    opacity: .4
}

.contact-reach__text-wrap {
    position: relative;
    z-index: 2
}

.contact-reach__h1 {
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 24px;
    font-weight: 700
}

.contact-reach__accent-mark {
    color: #CD8A66
}

.contact-reach__intro-text {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0;
    opacity: .85
}

.contact-reach__img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 380px
}

.contact-reach__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-reach__img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #CD8A66;
    opacity: .18;
    z-index: 1;
    transition: opacity .32s ease-in-out;
    pointer-events: none
}

.contact-reach__img-wrap:hover::before {
    opacity: .06
}

.contact-reach__img-wrap:hover .contact-reach__hero-img {
    transform: scale(1.05)
}

.contact-reach__form-section {
    background: linear-gradient(124deg, #cd8a660a 0%, #ffff 100%);
    padding: 96px 24px;
    position: relative
}

.contact-reach__form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 280px;
    height: 2px;
    background: linear-gradient(90deg, #CD8A66 0%, transparent 100%)
}

.contact-reach__form-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 96px;
    height: 2px;
    background: #2B1C0D;
    opacity: .12
}

.contact-reach__form-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 96px;
    align-items: start
}

.contact-reach__form-intro {
    position: sticky;
    top: 48px
}

.contact-reach__h2 {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.015em;
    margin: 0 0 24px;
    font-weight: 700;
    background: linear-gradient(110deg, #CD8A66 0%, #CD8A66 40%, #2B1C0D 40%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.contact-reach__form-desc {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0 0 24px;
    opacity: .85
}

.contact-reach__form-desc:last-of-type {
    margin: 0
}

.contact-reach__form-box {
    background: #FFF;
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

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

.contact-reach__field-group {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.contact-reach__label {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    font-weight: 600;
    color: #2B1C0D;
    display: block
}

.contact-reach__input {
    width: 100%;
    padding: 12px 24px;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    border: 2px solid #2b1c0d1f;
    border-radius: 6px;
    background: #FFF;
    color: #2B1C0D;
    transition: border-color .27s ease-in-out, box-shadow .27s ease-in-out;
    outline: none
}

.contact-reach__input::placeholder {
    color: #CD8A66;
    opacity: .4
}

.contact-reach__input:focus {
    border-color: #CD8A66;
    box-shadow: 0 0 0 3px #cd8a6614
}

.contact-reach__input:hover:not(:focus) {
    border-color: #2b1c0d3d
}

.contact-reach__select-wrap {
    position: relative
}

.contact-reach__select {
    width: 100%;
    padding: 12px 48px 12px 24px;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    border: 2px solid #2b1c0d1f;
    border-radius: 6px;
    background: #FFF;
    color: #2B1C0D;
    transition: border-color .27s ease-in-out, box-shadow .27s ease-in-out;
    outline: none;
    appearance: none;
    cursor: pointer
}

.contact-reach__select:focus {
    border-color: #CD8A66;
    box-shadow: 0 0 0 3px #cd8a6614
}

.contact-reach__select:hover:not(:focus) {
    border-color: #2b1c0d3d
}

.contact-reach__select-wrap::after {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #CD8A66;
    pointer-events: none;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-reach__select:focus+.contact-reach__select-wrap::after {
    transform: translateY(-50%) rotate(180deg)
}

.contact-reach__textarea {
    width: 100%;
    padding: 12px 24px;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    border: 2px solid #2b1c0d1f;
    border-radius: 6px;
    background: #FFF;
    color: #2B1C0D;
    transition: border-color .27s ease-in-out, box-shadow .27s ease-in-out;
    outline: none;
    resize: vertical;
    min-height: 140px
}

.contact-reach__textarea::placeholder {
    color: #CD8A66;
    opacity: .4
}

.contact-reach__textarea:focus {
    border-color: #CD8A66;
    box-shadow: 0 0 0 3px #cd8a6614
}

.contact-reach__textarea:hover:not(:focus) {
    border-color: #2b1c0d3d
}

.contact-reach__privacy-wrap {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.contact-reach__checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    border: 2px solid #2b1c0d1f;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color .27s ease-in-out, background-color .27s ease-in-out;
    appearance: none;
    outline: none;
    position: relative
}

.contact-reach__checkbox:checked {
    background: #CD8A66;
    border-color: #CD8A66
}

.contact-reach__checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid #FFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg)
}

.contact-reach__checkbox:focus {
    box-shadow: 0 0 0 3px #cd8a6614
}

.contact-reach__privacy-text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2B1C0D;
    opacity: .75
}

.contact-reach__privacy-link {
    color: #CD8A66;
    text-decoration: none;
    transition: color .29s ease-in-out
}

.contact-reach__privacy-link:hover {
    color: #2B1C0D
}

.contact-reach__submit {
    padding: 12px 48px;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    font-weight: 600;
    color: #FFF;
    background: #2B1C0D;
    border: none;
    border-radius: 46px;
    cursor: pointer;
    transition: background-color .31s cubic-bezier(0.4, 0, 0.2, 1), transform .31s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .31s cubic-bezier(0.4, 0, 0.2, 1);
    align-self: flex-start;
    position: relative;
    overflow: hidden
}

.contact-reach__submit::before {
    content: '';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: translateY(-50%) rotate(45deg);
    opacity: 0;
    transition: opacity .31s cubic-bezier(0.4, 0, 0.2, 1), right .31s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-reach__submit:hover {
    background: #CD8A66;
    transform: translateY(-2px);
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.contact-reach__submit:hover::before {
    opacity: 1;
    right: 18px
}

.contact-reach__submit:active {
    transform: translateY(0)
}

.contact-reach__details-section {
    background: #FFF;
    padding: 96px 24px;
    position: relative;
    overflow: hidden
}

.contact-reach__details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1500px;
    height: 100%;
    background-image: url(./product_gallery/draft-picture-graphic-2.jpg);
    background-size: cover;
    background-position: center;
    filter: blur(48px);
    opacity: .06;
    z-index: 0;
    pointer-events: none
}

.contact-reach__details-container {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.contact-reach__h3 {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 48px;
    font-weight: 700;
    text-align: center;
    background: linear-gradient(95deg, #2B1C0D 0%, #2B1C0D 60%, #CD8A66 60%, #CD8A66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.contact-reach__info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px
}

.contact-reach__info-card {
    background: #FFF;
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 4px 28px 0 #2b1c0d14;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden
}

.contact-reach__info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #CD8A66 0%, transparent 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .37s cubic-bezier(0.4, 0, 0.2, 1)
}

.contact-reach__info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

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

.contact-reach__icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 46px;
    background: linear-gradient(135deg, #cd8a661f 0%, #2b1c0d0f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 24px;
    position: relative;
    animation: contact-reach-float 3.2s ease-in-out infinite
}

.contact-reach__icon-wrap:nth-child(1) {
    animation-delay: 0s
}

.contact-reach__info-card:nth-child(2) .contact-reach__icon-wrap {
    animation-delay: .8s
}

.contact-reach__info-card:nth-child(3) .contact-reach__icon-wrap {
    animation-delay: 1.6s
}

@keyframes contact-reach-float {

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

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

.contact-reach__icon-svg {
    width: 32px;
    height: 32px;
    stroke: #CD8A66;
    fill: none;
    stroke-width: 2
}

.contact-reach__info-label {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    font-weight: 600;
    color: #2B1C0D;
    opacity: .6;
    margin: 0 0 6px;
    text-transform: uppercase
}

.contact-reach__info-value {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2B1C0D;
    margin: 0;
    word-break: break-word
}

.contact-reach__info-link {
    color: #2B1C0D;
    text-decoration: none;
    transition: color .29s ease-in-out;
    display: inline-block
}

.contact-reach__info-link:hover {
    color: #CD8A66
}

@media (max-width: 1366px) {
    .contact-reach__title-zone {
        grid-template-columns: 1.5fr 1fr;
        gap: 48px
    }

    .contact-reach__h1 {
        font-size: 51px
    }

    .contact-reach__img-wrap {
        height: 320px
    }

    .contact-reach__form-container {
        gap: 48px
    }

    .contact-reach__h2 {
        font-size: 37px
    }

    .contact-reach__form-box {
        padding: 48px
    }
}

@media (max-width: 768px) {
    .contact-reach__title-zone {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 48px 24px
    }

    .contact-reach__h1 {
        font-size: 37px
    }

    .contact-reach__img-wrap {
        height: 240px
    }

    .contact-reach__form-section {
        padding: 48px 24px
    }

    .contact-reach__form-container {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .contact-reach__form-intro {
        position: static
    }

    .contact-reach__h2 {
        font-size: 37px
    }

    .contact-reach__form-box {
        padding: 24px
    }

    .contact-reach__details-section {
        padding: 48px 24px
    }

    .contact-reach__h3 {
        font-size: 37px;
        margin: 0 0 24px
    }

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

    .contact-reach__info-card {
        padding: 24px
    }
}

@media (max-width: 375px) {
    .contact-reach__title-zone {
        padding: 24px 12px
    }

    .contact-reach__h1 {
        font-size: 37px
    }

    .contact-reach__form-section {
        padding: 48px 12px
    }

    .contact-reach__form-box {
        padding: 24px
    }

    .contact-reach__details-section {
        padding: 48px 12px
    }

    .contact-reach__submit {
        width: 100%
    }
}

.anlytcs {
    background: #FFF;
    max-width: 1500px;
    margin: 0 auto
}

.anlytcs__hero {
    background: linear-gradient(124deg, #cd8a660a 0%, #cd8a660a 33%, #fff0 33%, #fff0 100%);
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.anlytcs__hero::before,
.anlytcs__hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: #cd8a660f;
    pointer-events: none
}

.anlytcs__hero::before {
    width: 420px;
    height: 420px;
    top: -120px;
    left: -80px
}

.anlytcs__hero::after {
    width: 320px;
    height: 320px;
    bottom: -90px;
    right: -60px;
    background: #2b1c0d0a
}

.anlytcs__hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.anlytcs__hero-heading {
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #2B1C0D;
    margin: 0 0 24px;
    background: linear-gradient(124deg, #CD8A66 0%, #CD8A66 50%, #2B1C0D 50%, #2B1C0D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.anlytcs__hero-desc {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2b1c0dbf;
    margin: 0 0 48px
}

.anlytcs__hero-img-wrap {
    max-width: 680px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    position: relative
}

.anlytcs__hero-img-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #cd8a6626;
    transition: opacity .35s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1
}

.anlytcs__hero-img-wrap:hover::before {
    opacity: 0
}

.anlytcs__hero-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    opacity: .7
}

.anlytcs__posts {
    padding: 96px 24px;
    margin-left: 48px;
    background: #2b1c0d05;
    position: relative
}

.anlytcs__posts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-top: 24px solid #FFF
}

.anlytcs__posts-heading {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 48px;
    text-align: center
}

.anlytcs__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 48px;
    max-width: 1400px;
    margin: 0 auto
}

.anlytcs__card {
    background: #FFF;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #cd8a6614;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .28s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative
}

.anlytcs__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 60px 0 #cd8a661a
}

.anlytcs__card:hover .anlytcs__card-stripe {
    opacity: 1
}

.anlytcs__card-stripe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, transparent 48%, #cd8a661f 48%, #cd8a661f 52%, transparent 52%, transparent 100%);
    opacity: 0;
    transition: opacity .32s ease-in-out;
    pointer-events: none;
    z-index: 2
}

.anlytcs__card-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative
}

.anlytcs__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs__card:hover .anlytcs__card-img {
    transform: scale(1.05)
}

.anlytcs__card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #cd8a66f2;
    color: #FFF;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    padding: 6px 12px;
    border-radius: 6px;
    z-index: 1
}

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

.anlytcs__card-title {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 12px;
    background: linear-gradient(124deg, #2B1C0D 0%, #2B1C0D 50%, #CD8A66 50%, #CD8A66 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.anlytcs__card-subtitle {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2b1c0da6;
    margin: 0 0 12px;
    font-style: italic
}

.anlytcs__card-desc {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2b1c0dbf;
    margin: 0 0 24px;
    flex-grow: 1
}

.anlytcs__card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid #2b1c0d1a
}

.anlytcs__card-author {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2B1C0D
}

.anlytcs__card-date {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2b1c0d8c
}

.anlytcs__card-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px
}

.anlytcs__card-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .01em;
    color: #2b1c0da6
}

.anlytcs__card-stat-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

.anlytcs__card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #CD8A66;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .01em;
    text-decoration: none;
    margin-top: 12px;
    transition: gap .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.anlytcs__card-link:hover {
    gap: 12px
}

.anlytcs__card-link-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2
}

.anlytcs__metrics {
    padding: 96px 24px;
    margin-right: 48px;
    background: #FFF;
    position: relative
}

.anlytcs__metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-top: 24px solid #2b1c0d05
}

.anlytcs__metrics-heading {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 12px;
    text-align: center
}

.anlytcs__metrics-intro {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2b1c0dbf;
    margin: 0 0 48px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto
}

.anlytcs__metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto
}

.anlytcs__metric-box {
    background: #cd8a660a;
    border-radius: 30px;
    padding: 48px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: anlytcs-breathe 6s ease-in-out infinite
}

@keyframes anlytcs-breathe {

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

    50% {
        filter: contrast(1.08)
    }
}

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

.anlytcs__metric-box:nth-child(3) {
    animation-delay: 4s
}

.anlytcs__metric-value {
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: -.02em;
    color: #CD8A66;
    margin: 0 0 12px
}

.anlytcs__metric-label {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    color: #2b1c0dbf;
    margin: 0
}

.anlytcs__process {
    padding: 96px 24px;
    margin-left: 48px;
    background: #fff9;
    position: relative
}

.anlytcs__process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-top: 24px solid #FFF
}

.anlytcs__process-heading {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 48px;
    text-align: center
}

.anlytcs__steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative
}

.anlytcs__steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: #cd8a6633
}

.anlytcs__step {
    display: flex;
    gap: 24px;
    position: relative
}

.anlytcs__step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #CD8A66;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: .01em;
    box-shadow: 0 4px 28px 0 #cd8a6614;
    position: relative;
    z-index: 1
}

.anlytcs__step-content {
    flex-grow: 1;
    padding-bottom: 24px
}

.anlytcs__step-title {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 12px
}

.anlytcs__step-desc {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2b1c0dbf;
    margin: 0
}

.anlytcs__insights {
    padding: 96px 24px;
    margin-right: 48px;
    background: linear-gradient(270deg, #2b1c0d08 0%, #2b1c0d08 66%, #fff0 66%, #fff0 100%);
    position: relative
}

.anlytcs__insights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-top: 24px solid #fff9
}

.anlytcs__insights-heading {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 48px;
    text-align: center
}

.anlytcs__insights-list {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.anlytcs__insight {
    background: #FFF;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 3px 6px 0 #2b1c0d14;
    transition: box-shadow .3s ease-in-out, transform .3s ease-in-out
}

.anlytcs__insight:hover {
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    transform: translateX(6px)
}

.anlytcs__insight-title {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 12px
}

.anlytcs__insight-text {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2b1c0dbf;
    margin: 0
}

.anlytcs__insight-highlight {
    color: #CD8A66;
    font-style: italic
}

.anlytcs__hexpattern {
    padding: 96px 24px;
    margin-left: 48px;
    background: #2b1c0d03;
    position: relative;
    overflow: hidden
}

.anlytcs__hexpattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 48px solid transparent;
    border-right: 48px solid transparent;
    border-top: 24px solid #2b1c0d08
}

.anlytcs__hexpattern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(30deg, #cd8a6605 12%, transparent 12.5%, transparent 87%, #cd8a6605 87.5%, #cd8a6605), linear-gradient(150deg, #cd8a6605 12%, transparent 12.5%, transparent 87%, #cd8a6605 87.5%, #cd8a6605), linear-gradient(30deg, #cd8a6605 12%, transparent 12.5%, transparent 87%, #cd8a6605 87.5%, #cd8a6605), linear-gradient(150deg, #cd8a6605 12%, transparent 12.5%, transparent 87%, #cd8a6605 87.5%, #cd8a6605), linear-gradient(60deg, #2b1c0d05 25%, transparent 25.5%, transparent 75%, #2b1c0d05 75%, #2b1c0d05), linear-gradient(60deg, #2b1c0d05 25%, transparent 25.5%, transparent 75%, #2b1c0d05 75%, #2b1c0d05);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    pointer-events: none
}

.anlytcs__hexpattern-content {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.anlytcs__hexpattern-intro {
    font-size: 37px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 0 0 24px;
    text-align: center
}

.anlytcs__hexpattern-body {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2b1c0dbf;
    margin: 0 0 24px
}

.anlytcs__hexpattern-body:first-of-type {
    font-size: 17px
}

.anlytcs__hexpattern-heading {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    color: #2B1C0D;
    margin: 48px 0 24px;
    background: linear-gradient(124deg, #CD8A66 0%, #CD8A66 50%, #2B1C0D 50%, #2B1C0D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

@media (max-width: 1366px) {
    .anlytcs__hero {
        padding: 48px 24px
    }

    .anlytcs__hero-heading {
        font-size: 51px
    }

    .anlytcs__posts,
    .anlytcs__metrics,
    .anlytcs__process,
    .anlytcs__insights,
    .anlytcs__hexpattern {
        padding: 48px 24px;
        margin-left: 24px;
        margin-right: 24px
    }

    .anlytcs__grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px
    }
}

@media (max-width: 768px) {
    .anlytcs__hero {
        padding: 48px 12px
    }

    .anlytcs__hero-heading {
        font-size: 37px
    }

    .anlytcs__hero-desc {
        font-size: 15px
    }

    .anlytcs__hero-img {
        height: 280px
    }

    .anlytcs__posts,
    .anlytcs__metrics,
    .anlytcs__process,
    .anlytcs__insights,
    .anlytcs__hexpattern {
        padding: 48px 12px;
        margin-left: 12px;
        margin-right: 12px
    }

    .anlytcs__posts-heading,
    .anlytcs__metrics-heading,
    .anlytcs__process-heading,
    .anlytcs__insights-heading {
        font-size: 37px
    }

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

    .anlytcs__card-title,
    .anlytcs__step-title,
    .anlytcs__insight-title,
    .anlytcs__hexpattern-intro {
        font-size: 17px
    }

    .anlytcs__metric-value {
        font-size: 51px
    }

    .anlytcs__hexpattern-heading {
        font-size: 37px
    }

    .anlytcs__steps::before {
        left: 12px
    }

    .anlytcs__step-number {
        width: 36px;
        height: 36px;
        font-size: 15px
    }
}

@media (max-width: 375px) {
    .anlytcs__hero {
        padding: 24px 12px
    }

    .anlytcs__posts,
    .anlytcs__metrics,
    .anlytcs__process,
    .anlytcs__insights,
    .anlytcs__hexpattern {
        padding: 24px 12px;
        margin-left: 6px;
        margin-right: 6px
    }

    .anlytcs__grid {
        gap: 12px
    }

    .anlytcs__card-body {
        padding: 12px
    }
}

.prep-guide {
    background: #FFF;
    overflow-x: clip
}

.prep-guide .split-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
    position: relative;
    max-width: 1500px;
    margin: 0 auto
}

.prep-guide .split-intro__left {
    background: linear-gradient(78deg, #CD8A66 0%, #CD8A66 45%, #2B1C0D 45%, #2B1C0D 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.prep-guide .split-intro__left::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 48px;
    right: 48px;
    bottom: 48px;
    background-image: radial-gradient(circle, #ffffff26 1px, transparent 1px);
    background-size: 12px 12px;
    pointer-events: none;
    z-index: 1
}

.prep-guide .split-intro__right {
    background: linear-gradient(78deg, #2B1C0D 0%, #2B1C0D 55%, #F5EDE6 55%, #F5EDE6 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.prep-guide .split-intro__heading {
    font-size: 51px;
    line-height: 1.15;
    color: #FFF;
    margin: 0 0 24px;
    letter-spacing: -.02em;
    position: relative;
    z-index: 2
}

.prep-guide .split-intro__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #ffffffeb;
    margin: 0;
    letter-spacing: .01em;
    position: relative;
    z-index: 2
}

.prep-guide .checklist-zone {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 48px;
    position: relative
}

.prep-guide .checklist-zone::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 680px;
    height: 680px;
    background: radial-gradient(circle at center, #cd8a6614 0%, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.prep-guide .checklist-zone::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, #cd8a661f 0%, transparent 25%), radial-gradient(circle at 80% 70%, #cd8a661f 0%, transparent 25%), radial-gradient(circle at 40% 80%, #cd8a661f 0%, transparent 25%), radial-gradient(circle at 60% 20%, #cd8a661f 0%, transparent 25%);
    pointer-events: none;
    z-index: 0
}

.prep-guide .checklist-zone__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start
}

.prep-guide .checklist-zone__sidebar {
    position: sticky;
    top: 96px
}

.prep-guide .checklist-zone__sidebar-title {
    font-size: 37px;
    line-height: 1.15;
    margin: 0 0 12px;
    background: linear-gradient(112deg, #CD8A66 0%, #2B1C0D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -.01em
}

.prep-guide .checklist-zone__sidebar-intro {
    font-size: 15px;
    line-height: 1.7;
    color: #2B1C0D;
    margin: 0 0 24px;
    letter-spacing: .02em
}

.prep-guide .checklist-zone__sidebar-visual {
    width: 100%;
    height: 280px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #2b1c0d14;
    position: relative
}

.prep-guide .checklist-zone__sidebar-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.prep-guide .checklist-zone__sidebar-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #cd8a6633 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.prep-guide .checklist-zone__sidebar-visual:hover::before {
    opacity: 0
}

.prep-guide .checklist-zone__sidebar-visual:hover img {
    transform: scale(1.05)
}

.prep-guide .checklist-zone__content {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.prep-guide .prep-card {
    background: #FFF;
    border: 1px solid #2b1c0d14;
    border-radius: 30px;
    padding: 48px;
    position: relative;
    transition: all .32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 6px 0 #2b1c0d14
}

.prep-guide .prep-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #CD8A66 50%, transparent 100%);
    opacity: 0;
    transition: opacity .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.prep-guide .prep-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    border-color: #cd8a6633
}

.prep-guide .prep-card:hover::before {
    opacity: 1
}

.prep-guide .prep-card__prefix {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px
}

.prep-guide .prep-card__icon {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #CD8A66;
    box-shadow: 0 0 0 3px #cd8a6633;
    transition: transform .28s ease-in-out
}

.prep-guide .prep-card:hover .prep-card__icon {
    transform: scale(1.5)
}

.prep-guide .prep-card__label {
    font-size: 15px;
    line-height: 1.15;
    color: #CD8A66;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600
}

.prep-guide .prep-card__heading {
    font-size: 37px;
    line-height: 1.15;
    color: #2B1C0D;
    margin: 0 0 24px;
    letter-spacing: -.01em
}

.prep-guide .prep-card__text {
    font-size: 17px;
    line-height: 1.7;
    color: #2B1C0D;
    margin: 0 0 24px;
    letter-spacing: .01em
}

.prep-guide .prep-card__text:last-child {
    margin-bottom: 0
}

.prep-guide .prep-card__highlight {
    color: #CD8A66;
    font-style: italic
}

.prep-guide .prep-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px
}

.prep-guide .prep-card__list-item {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: #2B1C0D;
    letter-spacing: .01em
}

.prep-guide .prep-card__list-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 6px;
    background: #CD8A66;
    flex-shrink: 0;
    margin-top: 12px
}

.prep-guide .prep-card__visual-wrap {
    margin: 24px 0 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 240px;
    box-shadow: 0 4px 28px 0 #2b1c0d14
}

.prep-guide .prep-card__visual-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.prep-guide .prep-card__visual-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, #2b1c0d26 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.prep-guide .prep-card__visual-wrap:hover::before {
    opacity: 0
}

.prep-guide .prep-card__visual-wrap:hover img {
    transform: scale(1.08)
}

.prep-guide .divider-thick {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px
}

.prep-guide .divider-thick__line {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #CD8A66 10%, #CD8A66 90%, transparent 100%);
    position: relative
}

.prep-guide .divider-thick__line::after {
    content: '';
    position: absolute;
    right: 0;
    top: -2px;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #2B1C0D 100%)
}

.prep-guide .expectations-area {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 48px;
    background: linear-gradient(135deg, #f5ede666 0%, #fff6 100%)
}

.prep-guide .expectations-area__bracket-wrap {
    position: relative;
    padding: 48px 96px
}

.prep-guide .expectations-area__bracket-wrap::before,
.prep-guide .expectations-area__bracket-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    border: 2px solid #CD8A66
}

.prep-guide .expectations-area__bracket-wrap::before {
    left: 0;
    border-right: none;
    border-radius: 46px 0 0 46px
}

.prep-guide .expectations-area__bracket-wrap::after {
    right: 0;
    border-left: none;
    border-radius: 0 46px 46px 0
}

.prep-guide .expectations-area__title {
    font-size: 51px;
    line-height: 1.15;
    color: #2B1C0D;
    margin: 0 0 48px;
    text-align: center;
    letter-spacing: -.02em
}

.prep-guide .expectations-area__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.prep-guide .expect-item {
    background: #FFF;
    border-radius: 30px;
    padding: 48px;
    box-shadow: 0 3px 6px 0 #2b1c0d14;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease-in-out, box-shadow .3s ease-in-out
}

.prep-guide .expect-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, #cd8a661a 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width .4s cubic-bezier(0.4, 0, 0.2, 1), height .4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none
}

.prep-guide .expect-item:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.prep-guide .expect-item:hover::before {
    width: 500px;
    height: 500px
}

.prep-guide .expect-item__number {
    font-size: 68px;
    line-height: 1.15;
    background: linear-gradient(135deg, #CD8A66 0%, #2B1C0D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 12px;
    letter-spacing: -.03em;
    font-weight: 700
}

.prep-guide .expect-item__heading {
    font-size: 37px;
    line-height: 1.15;
    color: #2B1C0D;
    margin: 0 0 12px;
    letter-spacing: -.01em
}

.prep-guide .expect-item__desc {
    font-size: 17px;
    line-height: 1.7;
    color: #2B1C0D;
    margin: 0;
    letter-spacing: .01em
}

.prep-guide .expect-item__visual {
    margin: 24px 0 0;
    border-radius: 30px;
    overflow: hidden;
    height: 200px;
    position: relative
}

.prep-guide .expect-item__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .36s cubic-bezier(0.4, 0, 0.2, 1)
}

.prep-guide .expect-item__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #cd8a6640 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
    transition: opacity .36s cubic-bezier(0.4, 0, 0.2, 1)
}

.prep-guide .expect-item:hover .expect-item__visual::before {
    opacity: 0
}

.prep-guide .expect-item:hover .expect-item__visual img {
    transform: scale(1.06)
}

@media (max-width: 1366px) {
    .prep-guide .split-intro {
        grid-template-columns: 1fr
    }

    .prep-guide .split-intro__left,
    .prep-guide .split-intro__right {
        padding: 48px
    }

    .prep-guide .split-intro__heading {
        font-size: 37px
    }

    .prep-guide .checklist-zone__inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .prep-guide .checklist-zone__sidebar {
        position: static
    }

    .prep-guide .expectations-area__grid {
        grid-template-columns: 1fr
    }

    .prep-guide .expectations-area__bracket-wrap {
        padding: 48px
    }

    .prep-guide .expectations-area__bracket-wrap::before,
    .prep-guide .expectations-area__bracket-wrap::after {
        width: 24px
    }
}

@media (max-width: 768px) {
    .prep-guide .split-intro {
        min-height: auto
    }

    .prep-guide .split-intro__left,
    .prep-guide .split-intro__right {
        padding: 24px
    }

    .prep-guide .split-intro__heading {
        font-size: 37px;
        margin-bottom: 12px
    }

    .prep-guide .split-intro__desc {
        font-size: 15px
    }

    .prep-guide .checklist-zone {
        padding: 48px 24px
    }

    .prep-guide .checklist-zone__sidebar-title {
        font-size: 37px
    }

    .prep-guide .prep-card {
        padding: 24px
    }

    .prep-guide .prep-card__heading {
        font-size: 37px
    }

    .prep-guide .prep-card__text,
    .prep-guide .prep-card__list-item {
        font-size: 15px
    }

    .prep-guide .expectations-area {
        padding: 48px 24px
    }

    .prep-guide .expectations-area__title {
        font-size: 37px;
        margin-bottom: 24px
    }

    .prep-guide .expectations-area__bracket-wrap {
        padding: 24px
    }

    .prep-guide .expectations-area__bracket-wrap::before,
    .prep-guide .expectations-area__bracket-wrap::after {
        display: none
    }

    .prep-guide .expect-item {
        padding: 24px
    }

    .prep-guide .expect-item__number {
        font-size: 51px
    }

    .prep-guide .expect-item__heading {
        font-size: 37px
    }

    .prep-guide .expect-item__desc {
        font-size: 15px
    }
}

@media (max-width: 375px) {
    .prep-guide .split-intro__heading {
        font-size: 37px
    }

    .prep-guide .checklist-zone__sidebar-title,
    .prep-guide .prep-card__heading,
    .prep-guide .expectations-area__title,
    .prep-guide .expect-item__heading {
        font-size: 37px
    }

    .prep-guide .expect-item__number {
        font-size: 37px
    }
}

.lrn-prg {
    background: #FFF;
    color: #2B1C0D;
    max-width: 1500px;
    margin: 0 auto
}

.lrn-prg__hero {
    background: linear-gradient(167deg, #CD8A66 0%, #CD8A66 33.33%, #2B1C0D 33.33%, #2B1C0D 66.66%, #CD8A66 66.66%, #CD8A66 100%);
    padding: 48px 24px;
    position: relative;
    overflow: hidden
}

.lrn-prg__hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 96px;
    background: #FFF;
    clip-path: ellipse(70% 100% at 50% 100%)
}

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

.lrn-prg__hero-title {
    font-size: 68px;
    line-height: 1.15;
    color: #FFF;
    margin: 0 0 24px;
    letter-spacing: -.02em
}

.lrn-prg__hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: #fffffff2;
    margin: 0;
    max-width: 720px;
    letter-spacing: .01em
}

.lrn-prg__structure {
    background: #FFF;
    padding: 96px 24px;
    position: relative
}

.lrn-prg__structure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #CD8A66 20%, #CD8A66 80%, transparent 100%)
}

.lrn-prg__structure::after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 30px);
    width: 6px;
    height: 6px;
    background: #CD8A66;
    border-radius: 46px
}

.lrn-prg__structure-dot {
    position: absolute;
    top: 0;
    right: calc(50% - 30px);
    width: 6px;
    height: 6px;
    background: #CD8A66;
    border-radius: 46px
}

.lrn-prg__structure-inner {
    max-width: 1500px;
    margin: 0 auto
}

.lrn-prg__structure-head {
    font-size: 51px;
    line-height: 1.15;
    margin: 0 0 48px;
    background: linear-gradient(112deg, #2B1C0D 0%, #2B1C0D 50%, #CD8A66 50%, #CD8A66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.01em
}

.lrn-prg__modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px
}

.lrn-prg__mod {
    background: #cd8a660a;
    border-radius: 30px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prg__mod::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #CD8A66 50%, transparent 100%);
    transition: left .35s ease-in-out
}

.lrn-prg__mod:hover::before {
    left: 0
}

.lrn-prg__mod:hover {
    transform: translateY(-6px)
}

.lrn-prg__mod-num {
    font-size: 15px;
    line-height: 1.15;
    color: #CD8A66;
    margin: 0 0 12px;
    font-weight: 600;
    letter-spacing: .03em
}

.lrn-prg__mod-ttl {
    font-size: 37px;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -.005em
}

.lrn-prg__mod-txt {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2b1c0dd9;
    letter-spacing: .01em
}

.lrn-prg__showcase {
    background: #F9F5F2;
    padding: 96px 24px;
    position: relative
}

.lrn-prg__showcase-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 800px 600px at 30% 40%, #cd8a661f, transparent 70%);
    pointer-events: none;
    animation: lrn-prg-glow 8s ease-in-out infinite alternate
}

@keyframes lrn-prg-glow {
    0% {
        background: radial-gradient(ellipse 800px 600px at 30% 40%, #cd8a661f, transparent 70%)
    }

    100% {
        background: radial-gradient(ellipse 800px 600px at 70% 60%, #cd8a661f, transparent 70%)
    }
}

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

.lrn-prg__showcase-head {
    font-size: 51px;
    line-height: 1.15;
    margin: 0 0 6px;
    background: linear-gradient(89deg, #CD8A66 0%, #CD8A66 50%, #2B1C0D 50%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.01em
}

.lrn-prg__showcase-line {
    width: 96px;
    height: 2px;
    background: #CD8A66;
    margin: 0 0 24px
}

.lrn-prg__showcase-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: start
}

.lrn-prg__showcase-img-wrap {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    transition: transform .38s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .38s cubic-bezier(0.4, 0, 0.2, 1)
}

.lrn-prg__showcase-img-wrap::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 120px;
    height: 120px;
    background: #CD8A66;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: .15;
    pointer-events: none
}

.lrn-prg__showcase-img-wrap::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120px;
    height: 120px;
    background: #2B1C0D;
    clip-path: polygon(0 100%, 0 0, 100% 100%);
    opacity: .08;
    pointer-events: none
}

.lrn-prg__showcase-img-wrap:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 80px 0 #2b1c0d26
}

.lrn-prg__showcase-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: filter .35s ease-in-out
}

.lrn-prg__showcase-img-wrap:hover .lrn-prg__showcase-img {
    filter: saturate(1)
}

.lrn-prg__showcase-content {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prg__showcase-intro {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    letter-spacing: .01em
}

.lrn-prg__showcase-body {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2b1c0dd9;
    letter-spacing: .01em
}

.lrn-prg__details {
    background: #CD8A66;
    padding: 96px 24px;
    position: relative
}

.lrn-prg__details-inner {
    max-width: 1500px;
    margin: 0 auto
}

.lrn-prg__details-head {
    font-size: 51px;
    line-height: 1.15;
    color: #FFF;
    margin: 0 0 48px;
    letter-spacing: -.01em
}

.lrn-prg__details-grid {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr;
    gap: 24px 48px;
    align-items: start
}

.lrn-prg__details-label {
    font-size: 15px;
    line-height: 1.7;
    color: #ffffffbf;
    margin: 0;
    font-weight: 600;
    letter-spacing: .02em
}

.lrn-prg__details-value {
    font-size: 15px;
    line-height: 1.7;
    color: #FFF;
    margin: 0;
    letter-spacing: .01em
}

.lrn-prg__faq {
    background: #FFF;
    padding: 96px 24px;
    position: relative
}

.lrn-prg__faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #CD8A66 20%, #CD8A66 80%, transparent 100%)
}

.lrn-prg__faq::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    width: 6px;
    height: 6px;
    background: #CD8A66;
    border-radius: 46px
}

.lrn-prg__faq-dot {
    position: absolute;
    bottom: 0;
    right: calc(50% - 30px);
    width: 6px;
    height: 6px;
    background: #CD8A66;
    border-radius: 46px
}

.lrn-prg__faq-inner {
    max-width: 1500px;
    margin: 0 auto
}

.lrn-prg__faq-head {
    font-size: 51px;
    line-height: 1.15;
    margin: 0 0 48px;
    background: linear-gradient(134deg, #CD8A66 0%, #CD8A66 50%, #2B1C0D 50%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.01em
}

.lrn-prg__faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.lrn-prg__faq-item {
    background: #2b1c0d05;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 3px 6px 0 #2b1c0d14;
    transition: box-shadow .28s ease-in-out, transform .28s ease-in-out
}

.lrn-prg__faq-item:hover {
    box-shadow: 0 4px 28px 0 #2b1c0d14;
    transform: translateX(6px)
}

.lrn-prg__faq-q {
    font-size: 17px;
    line-height: 1.7;
    margin: 0 0 12px;
    font-weight: 600;
    color: #2B1C0D;
    letter-spacing: .005em
}

.lrn-prg__faq-a {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2b1c0dd9;
    letter-spacing: .01em
}

@media (max-width: 1366px) {
    .lrn-prg__hero-title {
        font-size: 51px
    }

    .lrn-prg__structure-head,
    .lrn-prg__showcase-head,
    .lrn-prg__details-head,
    .lrn-prg__faq-head {
        font-size: 37px
    }

    .lrn-prg__mod-ttl {
        font-size: 17px
    }

    .lrn-prg__showcase-grid {
        grid-template-columns: 1fr
    }

    .lrn-prg__showcase-img {
        height: 360px
    }

    .lrn-prg__details-grid {
        grid-template-columns: auto 1fr
    }
}

@media (max-width: 768px) {
    .lrn-prg__hero {
        padding: 48px 12px
    }

    .lrn-prg__hero-title {
        font-size: 37px
    }

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

    .lrn-prg__structure,
    .lrn-prg__showcase,
    .lrn-prg__details,
    .lrn-prg__faq {
        padding: 48px 12px
    }

    .lrn-prg__structure-head,
    .lrn-prg__showcase-head,
    .lrn-prg__details-head,
    .lrn-prg__faq-head {
        font-size: 37px;
        margin-bottom: 24px
    }

    .lrn-prg__modules {
        grid-template-columns: 1fr
    }

    .lrn-prg__showcase-img {
        height: 280px
    }

    .lrn-prg__details-grid {
        gap: 12px 24px
    }
}

@media (max-width: 375px) {
    .lrn-prg__hero-title {
        font-size: 37px
    }

    .lrn-prg__structure-head,
    .lrn-prg__showcase-head,
    .lrn-prg__details-head,
    .lrn-prg__faq-head {
        font-size: 37px
    }
}

.success-page {
    background: linear-gradient(172deg, #FFF 0%, #FFF 34%, #cd8a660f 34%, #cd8a660f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px
}

.success-page .success-container {
    max-width: 680px;
    width: 100%;
    text-align: center
}

.success-page .success-icon {
    width: 92px;
    height: 92px;
    margin: 0 auto 48px;
    background: linear-gradient(128deg, #CD8A66 0%, #CD8A66 100%);
    border-radius: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    position: relative
}

.success-page .success-icon::before {
    content: '';
    width: 38px;
    height: 22px;
    border-left: 4px solid #FFF;
    border-bottom: 4px solid #FFF;
    transform: rotate(-45deg) translateY(-3px)
}

.success-page .success-title {
    font-size: 51px;
    line-height: 1.15;
    color: #2B1C0D;
    margin: 0 0 24px;
    letter-spacing: -.02em;
    background: linear-gradient(87deg, #CD8A66 0%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.success-page .success-message {
    font-size: 17px;
    line-height: 1.7;
    color: #2B1C0D;
    margin: 0 0 48px;
    letter-spacing: .01em;
    opacity: .82
}

.success-page .success-details {
    background: #FFF;
    border-radius: 30px;
    padding: 48px;
    margin: 0 0 48px;
    box-shadow: 0 4px 28px 0 #2b1c0d14;
    text-align: left
}

.success-page .detail-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin: 0 0 24px
}

.success-page .detail-row:last-child {
    margin: 0
}

.success-page .detail-icon {
    width: 42px;
    height: 42px;
    background: #cd8a661f;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.success-page .detail-icon svg {
    width: 20px;
    height: 20px;
    stroke: #CD8A66;
    stroke-width: 2;
    fill: none
}

.success-page .detail-content {
    flex: 1
}

.success-page .detail-label {
    font-size: 15px;
    line-height: 1.7;
    color: #2B1C0D;
    margin: 0 0 6px;
    letter-spacing: .02em;
    opacity: .64
}

.success-page .detail-value {
    font-size: 17px;
    line-height: 1.7;
    color: #2B1C0D;
    margin: 0;
    letter-spacing: .01em;
    font-weight: 500
}

.success-page .success-actions {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.success-page .action-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    border-radius: 30px;
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    text-decoration: none;
    transition: transform .28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .32s ease-in-out;
    cursor: pointer
}

.success-page .action-link.primary {
    background: #2B1C0D;
    color: #FFF;
    box-shadow: 0 3px 6px 0 #2b1c0d14
}

.success-page .action-link.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.success-page .action-link.primary svg {
    width: 18px;
    height: 18px;
    stroke: #FFF;
    stroke-width: 2;
    fill: none;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1)
}

.success-page .action-link.primary:hover svg {
    transform: translateX(4px)
}

.success-page .action-link.secondary {
    background: #cd8a661f;
    color: #CD8A66
}

.success-page .action-link.secondary:hover {
    background: #cd8a6633
}

.success-page .action-link.secondary svg {
    width: 18px;
    height: 18px;
    stroke: #CD8A66;
    stroke-width: 2;
    fill: none;
    transition: transform .29s ease-in-out
}

.success-page .action-link.secondary:hover svg {
    transform: translateX(4px)
}

@media (max-width: 768px) {
    .success-page {
        padding: 24px 12px
    }

    .success-page .success-icon {
        width: 76px;
        height: 76px;
        margin: 0 auto 24px
    }

    .success-page .success-icon::before {
        width: 32px;
        height: 18px
    }

    .success-page .success-title {
        font-size: 37px;
        margin: 0 0 12px
    }

    .success-page .success-message {
        font-size: 15px;
        margin: 0 0 24px
    }

    .success-page .success-details {
        padding: 24px;
        margin: 0 0 24px
    }

    .success-page .detail-row {
        gap: 12px;
        margin: 0 0 12px
    }

    .success-page .detail-icon {
        width: 36px;
        height: 36px
    }

    .success-page .success-actions {
        flex-direction: column;
        gap: 12px
    }

    .success-page .action-link {
        width: 100%;
        justify-content: center;
        padding: 18px 24px
    }
}

@media (max-width: 375px) {
    .success-page .success-details {
        padding: 12px
    }

    .success-page .detail-label {
        font-size: 15px
    }

    .success-page .detail-value {
        font-size: 15px
    }
}

.abt-us {
    background: #FFF;
    color: #2B1C0D;
    overflow-x: clip
}

.abt-us__hero {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 24px 96px;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.abt-us__hero-txt {
    position: relative;
    z-index: 2
}

.abt-us__hero-h {
    font-size: 68px;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 0 0 24px;
    background: linear-gradient(127deg, #CD8A66 0%, #CD8A66 33%, #2B1C0D 33%, #2B1C0D 66%, #CD8A66 66%, #CD8A66 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.abt-us__hero-tag {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0 0 24px;
    max-width: 620px
}

.abt-us__hero-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.abt-us__hero-lnk {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    color: #2B1C0D;
    background: #cd8a661f;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: background .28s cubic-bezier(0.4, 0, 0.2, 1), transform .28s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us__hero-lnk:hover {
    background: #cd8a6638;
    transform: translateY(-1px)
}

.abt-us__hero-lnk:hover .abt-us__hero-lnk-icn {
    transform: translateX(3px)
}

.abt-us__hero-lnk:active {
    transform: translateY(0)
}

.abt-us__hero-lnk-icn {
    width: 14px;
    height: 14px;
    transition: transform .32s ease-in-out
}

.abt-us__hero-img-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.abt-us__hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.abt-us__hero-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, #cd8a664d 0%, transparent 60%), radial-gradient(circle at 80% 20%, #2b1c0d33 0%, transparent 50%);
    pointer-events: none;
    border-radius: 30px
}

.abt-us__hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #2b1c0d66 100%);
    pointer-events: none;
    border-radius: 30px;
    z-index: 1
}

.abt-us__hero-deco {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 46px;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: .15
}

.abt-us__hero-deco.spot-1 {
    top: 12%;
    right: 8%;
    background: #CD8A66
}

.abt-us__hero-deco.spot-2 {
    bottom: 15%;
    left: 10%;
    background: #2B1C0D
}

.abt-us__story {
    position: relative;
    background-image: url(./product_gallery/backup-1.jpg);
    background-size: cover;
    background-position: center 0;
    background-attachment: scroll;
    animation: abt-us-bg-pan 60s linear infinite;
    overflow: hidden
}

@keyframes abt-us-bg-pan {
    0% {
        background-position: center 0
    }

    100% {
        background-position: center -200px
    }
}

.abt-us__story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #2b1c0deb 0%, #2b1c0de0 100%);
    pointer-events: none;
    z-index: 1
}

.abt-us__story-inner {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 24px
}

.abt-us__story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px
}

.abt-us__story-lead {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us__story-h {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0;
    color: #FFF
}

.abt-us__story-intro {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0;
    color: #fffffff2
}

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

.abt-us__story-col {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt-us__story-col-h {
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0;
    color: #CD8A66
}

.abt-us__story-col-p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    margin: 0;
    color: #ffffffe0
}

.abt-us__team {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 24px;
    background: #FFF
}

.abt-us__team-h {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 48px;
    text-align: center;
    background: linear-gradient(94deg, #2B1C0D 0%, #2B1C0D 45%, #CD8A66 45%, #CD8A66 55%, #2B1C0D 55%, #2B1C0D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

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

.abt-us__team-card {
    position: relative;
    background: #cd8a660d;
    border-radius: 30px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 3px 6px 0 #2b1c0d14;
    transition: box-shadow .3s cubic-bezier(0.4, 0, 0.2, 1), transform .3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden
}

.abt-us__team-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #CD8A66 0%, transparent 100%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none
}

.abt-us__team-card:hover {
    box-shadow: 0 4px 28px 0 #2b1c0d14;
    transform: translateY(-2px)
}

.abt-us__team-card-name {
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0;
    color: #2B1C0D
}

.abt-us__team-card-role {
    font-size: 15px;
    line-height: 1.15;
    letter-spacing: .02em;
    margin: 0;
    color: #CD8A66;
    font-style: italic
}

.abt-us__team-card-bio {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    margin: 0;
    color: #2b1c0dd9
}

.abt-us__values {
    background: linear-gradient(180deg, #cd8a6614 0%, #fff0 100%);
    padding: 96px 24px;
    position: relative
}

.abt-us__values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 1px;
    background: repeating-linear-gradient(90deg, #CD8A66 0px, #CD8A66 8px, transparent 8px, transparent 16px);
    mask-image: url("data:image/svg+xml,%3Csvg width='100%25' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,10 Q25,0 50,10 T100,10 T150,10 T200,10 T250,10 T300,10 T350,10 T400,10 T450,10 T500,10 T550,10 T600,10 T650,10 T700,10 T750,10 T800,10 T850,10 T900,10 T950,10 T1000,10' stroke='black' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    mask-size: 100px 20px;
    mask-repeat: repeat-x;
    mask-position: center
}

.abt-us__values-inner {
    max-width: 1500px;
    margin: 0 auto
}

.abt-us__values-h {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 48px;
    text-align: center;
    color: #2B1C0D
}

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

.abt-us__values-card {
    background: #FFF;
    border-radius: 6px;
    padding: 24px;
    box-shadow: 0 3px 6px 0 #cd8a6614;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow .35s ease-in-out, transform .35s ease-in-out
}

.abt-us__values-card:hover {
    box-shadow: 0 8px 60px 0 #cd8a661a;
    transform: translateY(-3px)
}

.abt-us__values-card-h {
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0;
    color: #2B1C0D;
    display: flex;
    align-items: center;
    gap: 12px
}

.abt-us__values-card-icn {
    width: 24px;
    height: 24px;
    flex-shrink: 0
}

.abt-us__values-card-p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    margin: 0;
    color: #2b1c0dd9
}

.abt-us__approach {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px
}

.abt-us__approach-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us__approach-h {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0;
    background: linear-gradient(112deg, #CD8A66 0%, #CD8A66 30%, #2B1C0D 30%, #2B1C0D 70%, #CD8A66 70%, #CD8A66 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.abt-us__approach-lead {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0;
    color: #2b1c0de6
}

.abt-us__approach-img-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    border-radius: 46px;
    overflow: hidden;
    box-shadow: 0 4px 28px 0 #2b1c0d14
}

.abt-us__approach-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease-in-out
}

.abt-us__approach-img-wrap:hover .abt-us__approach-img {
    transform: scale(1.05)
}

.abt-us__approach-main {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us__approach-item {
    background: #2b1c0d08;
    border-radius: 30px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: background .27s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us__approach-item:hover {
    background: #cd8a6614
}

.abt-us__approach-item-h {
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0;
    color: #2B1C0D
}

.abt-us__approach-item-p {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    margin: 0;
    color: #2b1c0dd9
}

.abt-us__faq {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 24px;
    background: linear-gradient(180deg, #2b1c0d05 0%, #fff0 100%)
}

.abt-us__faq-h {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0 0 48px;
    text-align: center;
    color: #2B1C0D
}

.abt-us__faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto
}

.abt-us__faq-card {
    background: #FFF;
    border-radius: 30px;
    padding: 24px;
    box-shadow: 0 3px 6px 0 #2b1c0d14;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #cd8a661f;
    transition: border-color .29s ease-in-out, box-shadow .29s ease-in-out
}

.abt-us__faq-card:hover {
    border-color: #cd8a664d;
    box-shadow: 0 4px 28px 0 #2b1c0d14
}

.abt-us__faq-q {
    font-size: 17px;
    line-height: 1.15;
    letter-spacing: .01em;
    margin: 0;
    color: #2B1C0D;
    font-weight: 600
}

.abt-us__faq-a {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    margin: 0;
    color: #2b1c0dd9
}

.abt-us__contact {
    max-width: 1500px;
    margin: 0 auto;
    padding: 96px 24px;
    background: #cd8a660d;
    border-radius: 46px
}

.abt-us__contact-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
    text-align: center
}

.abt-us__contact-h {
    font-size: 51px;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0;
    background: linear-gradient(88deg, #2B1C0D 0%, #2B1C0D 40%, #CD8A66 40%, #CD8A66 60%, #2B1C0D 60%, #2B1C0D 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent
}

.abt-us__contact-p {
    font-size: 17px;
    line-height: 1.7;
    letter-spacing: .01em;
    margin: 0;
    color: #2b1c0de6;
    max-width: 600px
}

.abt-us__contact-details {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.abt-us__contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2B1C0D
}

.abt-us__contact-item-icn {
    width: 18px;
    height: 18px;
    flex-shrink: 0
}

.abt-us__contact-lnk {
    color: #CD8A66;
    text-decoration: none;
    transition: color .26s cubic-bezier(0.4, 0, 0.2, 1)
}

.abt-us__contact-lnk:hover {
    color: #2B1C0D
}

.abt-us__contact-img-wrap {
    width: 100%;
    max-width: 500px;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.abt-us__contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .38s ease-in-out
}

.abt-us__contact-img-wrap:hover .abt-us__contact-img {
    transform: scale(1.08)
}

@media (min-width: 768px) {
    .abt-us__hero {
        padding: 96px 48px
    }

    .abt-us__hero-h {
        font-size: 68px
    }

    .abt-us__hero-img-wrap {
        height: 420px
    }

    .abt-us__story-inner {
        padding: 96px 48px
    }

    .abt-us__story-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px
    }

    .abt-us__team {
        padding: 96px 48px
    }

    .abt-us__team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px
    }

    .abt-us__values {
        padding: 96px 48px
    }

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

    .abt-us__approach {
        padding: 96px 48px;
        grid-template-columns: 1fr 2fr;
        gap: 48px
    }

    .abt-us__faq {
        padding: 96px 48px
    }

    .abt-us__contact {
        padding: 96px 48px
    }
}

@media (min-width: 1366px) {
    .abt-us__hero {
        padding: 96px 48px
    }

    .abt-us__hero-img-wrap {
        height: 480px
    }

    .abt-us__story-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 96px
    }

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

    .abt-us__team-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .abt-us__values-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .abt-us__approach {
        grid-template-columns: 1fr 2fr
    }

    .abt-us__approach-img-wrap {
        height: 380px
    }
}

::selection {
    background: #cd8a664d;
    color: #2B1C0D
}

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

.first {
    background: linear-gradient(to bottom, #FFF 0%, #cd8a6608 100%);
    overflow-x: clip
}

.first * {
    box-sizing: border-box
}

.first .top-bar {
    position: relative;
    background: linear-gradient(167deg, #2B1C0D 0%, #2B1C0D 34%, #CD8A66 34%, #CD8A66 67%, #2B1C0D 67%, #2B1C0D 100%);
    height: 6px;
    width: 100%
}

.first .title-anchor {
    position: relative;
    padding: 96px 24px;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px
}

.first .title-anchor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, #cd8a660a 12px, #cd8a660a 18px);
    pointer-events: none;
    z-index: 1
}

.first .title-anchor::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #cd8a6633 0%, #2b1c0d1a 100%);
    pointer-events: none;
    z-index: 1
}

.first .title-visual {
    position: relative;
    width: 100%;
    max-width: 620px;
    height: 380px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    z-index: 2
}

.first .title-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.first .title-visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #2b1c0d66 0%, transparent 60%);
    pointer-events: none;
    z-index: 1
}

.first .title-text {
    position: relative;
    z-index: 2;
    max-width: 680px
}

.first .eyebrow {
    font-size: 15px;
    line-height: 1.7;
    color: #CD8A66;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin: 0 0 12px;
    font-weight: 600
}

.first .title-text h1 {
    font-size: 68px;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -.02em;
    background: linear-gradient(110deg, #CD8A66 0%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

@media (max-width: 1366px) {
    .first .title-text h1 {
        font-size: 51px
    }
}

@media (max-width: 768px) {
    .first .title-anchor {
        padding: 48px 24px
    }

    .first .title-visual {
        height: 280px
    }

    .first .title-text h1 {
        font-size: 37px
    }
}

@media (max-width: 375px) {
    .first .title-anchor {
        padding: 48px 12px
    }

    .first .title-visual {
        height: 220px
    }
}

.first .outcomes-wrap {
    position: relative;
    background: #FFF;
    padding: 96px 24px;
    border-top: 6px solid #CD8A66;
    border-bottom: 6px solid #2B1C0D
}

.first .outcomes-contain {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.first .outcomes-head {
    max-width: 720px
}

.first .outcomes-head h2 {
    font-size: 51px;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #2B1C0D;
    letter-spacing: -.01em
}

.first .outcomes-head p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    color: #2B1C0D;
    opacity: .85
}

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

.first .outcome-card {
    background: linear-gradient(135deg, #cd8a660d 0%, #2b1c0d05 100%);
    padding: 48px 24px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform .35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 6px 0 #2b1c0d14
}

.first .outcome-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.first .outcome-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #CD8A66 0%, #2B1C0D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.first .outcome-icon svg {
    width: 34px;
    height: 34px;
    stroke: #FFF;
    fill: none;
    stroke-width: 2
}

.first .outcome-card h3 {
    font-size: 17px;
    line-height: 1.15;
    margin: 0;
    color: #2B1C0D;
    font-weight: 600;
    letter-spacing: -.005em
}

.first .outcome-card p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2B1C0D;
    opacity: .75
}

@media (max-width: 1366px) {
    .first .outcomes-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .first .outcomes-head h2 {
        font-size: 37px
    }
}

@media (max-width: 768px) {
    .first .outcomes-wrap {
        padding: 48px 24px
    }

    .first .outcomes-contain {
        gap: 24px
    }

    .first .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .first .outcome-card {
        padding: 24px
    }
}

@media (max-width: 375px) {
    .first .outcomes-wrap {
        padding: 48px 12px
    }
}

.first .approach-stage {
    position: relative;
    padding: 96px 24px;
    background: radial-gradient(ellipse at 20% 30%, #cd8a6614 0%, transparent 50%), radial-gradient(ellipse at 80% 70%, #2b1c0d0f 0%, transparent 50%), linear-gradient(to bottom, #FFF 0%, #cd8a6605 100%)
}

.first .approach-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.first .approach-content {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.first .approach-content h2 {
    font-size: 51px;
    line-height: 1.15;
    margin: 0;
    color: #2B1C0D;
    letter-spacing: -.01em;
    background: linear-gradient(95deg, #2B1C0D 0%, #CD8A66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.first .approach-intro {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    color: #2B1C0D;
    opacity: .9
}

.first .approach-body {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2B1C0D;
    opacity: .75
}

.first .approach-visual-set {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px
}

.first .approach-img {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 8px 60px 0 #2b1c0d1a;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1)
}

.first .approach-img:hover {
    transform: scale(1.03)
}

.first .approach-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.first .approach-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #cd8a6626;
    transition: opacity .28s ease-in-out;
    pointer-events: none;
    z-index: 1
}

.first .approach-img:hover::before {
    opacity: 0
}

@media (max-width: 1366px) {
    .first .approach-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .first .approach-content h2 {
        font-size: 37px
    }
}

@media (max-width: 768px) {
    .first .approach-stage {
        padding: 48px 24px
    }

    .first .approach-visual-set {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .first .approach-img {
        height: 240px
    }
}

@media (max-width: 375px) {
    .first .approach-stage {
        padding: 48px 12px
    }
}

.first .journey-zone {
    position: relative;
    padding: 96px 24px;
    background: #FFF;
    border-top: 6px solid #2B1C0D
}

.first .journey-zone::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, transparent 0%, #cd8a660f 100%);
    pointer-events: none
}

.first .journey-box {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px
}

.first .journey-header {
    text-align: center;
    max-width: 840px;
    margin: 0 auto
}

.first .journey-header h2 {
    font-size: 51px;
    line-height: 1.15;
    margin: 0 0 24px;
    color: #2B1C0D;
    letter-spacing: -.01em
}

.first .journey-header p {
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
    color: #2B1C0D;
    opacity: .85
}

.first .journey-phases {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative
}

.first .phase-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 48px;
    align-items: center;
    padding: 48px;
    background: linear-gradient(135deg, #cd8a660a 0%, #2b1c0d05 100%);
    border-radius: 46px;
    box-shadow: 0 4px 28px 0 #2b1c0d14;
    transition: transform .32s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .32s cubic-bezier(0.4, 0, 0.2, 1)
}

.first .phase-row:hover {
    transform: translateX(12px);
    box-shadow: 0 8px 60px 0 #2b1c0d1a
}

.first .phase-marker {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.first .phase-num {
    font-size: 68px;
    line-height: 1.15;
    margin: 0;
    background: linear-gradient(120deg, #CD8A66 0%, #2B1C0D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -.03em
}

.first .phase-label {
    font-size: 17px;
    line-height: 1.15;
    margin: 0;
    color: #2B1C0D;
    font-weight: 600
}

.first .phase-text {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.first .phase-text h3 {
    font-size: 17px;
    line-height: 1.15;
    margin: 0;
    color: #2B1C0D;
    font-weight: 600;
    letter-spacing: -.005em
}

.first .phase-text p {
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    color: #2B1C0D;
    opacity: .75
}

@media (max-width: 1366px) {
    .first .journey-header h2 {
        font-size: 37px
    }

    .first .phase-row {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px
    }

    .first .phase-num {
        font-size: 51px
    }
}

@media (max-width: 768px) {
    .first .journey-zone {
        padding: 48px 24px
    }

    .first .journey-box {
        gap: 24px
    }

    .first .phase-row:hover {
        transform: none
    }
}

@media (max-width: 375px) {
    .first .journey-zone {
        padding: 48px 12px
    }
}

@keyframes diag-reveal-1 {
    0% {
        opacity: 0;
        transform: translate(-24px, -24px)
    }

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

@keyframes diag-reveal-2 {
    0% {
        opacity: 0;
        transform: translate(-18px, -18px)
    }

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

@keyframes diag-reveal-3 {
    0% {
        opacity: 0;
        transform: translate(-12px, -12px)
    }

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

@keyframes diag-reveal-4 {
    0% {
        opacity: 0;
        transform: translate(-6px, -6px)
    }

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

.first .title-anchor {
    animation: diag-reveal-1 .35s cubic-bezier(0.4, 0, 0.2, 1) forwards
}

.first .outcomes-wrap {
    animation: diag-reveal-2 .38s cubic-bezier(0.4, 0, 0.2, 1) .1s backwards
}

.first .approach-stage {
    animation: diag-reveal-3 .33s cubic-bezier(0.4, 0, 0.2, 1) .2s backwards
}

.first .journey-zone {
    animation: diag-reveal-4 .36s cubic-bezier(0.4, 0, 0.2, 1) .3s backwards
}

.first .bottom-bar {
    position: relative;
    background: linear-gradient(167deg, #CD8A66 0%, #CD8A66 34%, #2B1C0D 34%, #2B1C0D 67%, #CD8A66 67%, #CD8A66 100%);
    height: 6px;
    width: 100%
}