@import "https://cdn.jsdelivr.net/npm/@fontsource/fira-code@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/fira-code@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/fira-code@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/fira-code@latest/700.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/figtree@latest/300.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/figtree@latest/400.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/figtree@latest/500.css";
@import "https://cdn.jsdelivr.net/npm/@fontsource/figtree@latest/700.css";

* {
    box-sizing: border-box
}

html {
    font-size: 100%;
    scroll-behavior: auto
}

body {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    font-family: 'Figtree', sans-serif;
    background: #FBFAF8;
    color: #2a2a2a;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .01em
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 18px -2px #600e2514)
}

a {
    color: #600E25;
    text-decoration: none;
    transition: color .38s cubic-bezier(0.34, 1.2, 0.64, 1)
}

a:hover {
    color: #F59F4D
}

a:focus {
    outline: 2px solid #F59F4D;
    outline-offset: 4px
}

button:focus {
    outline: 2px solid #600E25;
    outline-offset: 4px
}

input:focus,
textarea:focus {
    outline: 2px solid #600E25;
    outline-offset: 2px
}

.top-bar {
    background: linear-gradient(135deg, #600E25 0%, #7a1230 100%);
    padding: 12px 24px;
    position: relative;
    overflow: hidden
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, #fbfaf808 8px, #fbfaf808 16px);
    animation: slidePattern 45s linear infinite
}

@keyframes slidePattern {
    0% {
        transform: translateX(0)
    }

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

.announce-shell {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.announce-text {
    font-size: 15px;
    color: #FBFAF8;
    text-align: center;
    font-weight: 500;
    letter-spacing: .02em;
    line-height: 1.5
}

.announce-text strong {
    color: #F59F4D;
    font-weight: 700
}

.header-main {
    background: #FBFAF8;
    border-bottom: 3px solid #600E25;
    position: relative;
    box-shadow: 0 8px 52px -2px #600e251a
}

.header-hold {
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 40px 0
}

.brand-mount {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-top: 2px solid #600E25;
    border-bottom: 2px solid #600E25;
    margin-bottom: 24px;
    position: relative
}

.brand-mount::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 180px;
    height: 2px;
    background: #F59F4D
}

.logo-hold {
    background: #FBFAF8;
    padding: 8px;
    border: 2px solid #600E25;
    border-radius: 12px;
    box-shadow: 0 3px 5px -2px #600e2512;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.logo-hold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 52px -2px #600e251a
}

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

.brand-label {
    font-family: 'Fira Code', monospace;
    font-size: 31px;
    font-weight: 700;
    color: #600E25;
    letter-spacing: .01em;
    line-height: 1.2
}

.nav-primary {
    padding-bottom: 24px
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    align-items: center
}

.nav-item {
    position: relative
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #2a2a2a;
    background: transparent;
    border: 3px solid #600E25;
    border-radius: 36px;
    letter-spacing: .015em;
    transition: background .4s cubic-bezier(0.34, 1.2, 0.64, 1), color .4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .4s cubic-bezier(0.34, 1.2, 0.64, 1), transform .35s ease-in-out;
    position: relative;
    overflow: hidden
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(-45deg, transparent, transparent 4px, #f59f4d1a 4px, #f59f4d1a 8px);
    transition: left .6s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.nav-link:hover::before {
    left: 0
}

.nav-link:hover {
    background: #600E25;
    color: #FBFAF8;
    border-color: #600E25;
    transform: translateY(-2px)
}

.nav-link::after {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity .45s cubic-bezier(0.34, 1.2, 0.64, 1), transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.nav-link:hover::after {
    opacity: 1;
    transform: translateX(0)
}

@media (max-width: 1366px) {
    .header-hold {
        padding: 24px 24px 0
    }

    .brand-label {
        font-size: 23px
    }

    .nav-list {
        gap: 8px 12px
    }

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

@media (max-width: 768px) {
    .top-bar {
        padding: 12px
    }

    .announce-text {
        font-size: 15px
    }

    .header-hold {
        padding: 12px 12px 0
    }

    .brand-mount {
        gap: 12px;
        padding: 12px 0;
        margin-bottom: 12px;
        flex-wrap: wrap
    }

    .brand-mount::after {
        width: 120px
    }

    .logo-hold {
        padding: 4px
    }

    .logo-image {
        width: 48px;
        height: 48px
    }

    .brand-label {
        font-size: 19px
    }

    .nav-primary {
        padding-bottom: 12px
    }

    .nav-list {
        gap: 8px;
        justify-content: center
    }

    .nav-link {
        padding: 8px 12px;
        font-size: 15px;
        border-width: 2px
    }
}

@media (max-width: 375px) {
    .brand-mount {
        justify-content: center
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch
    }

    .nav-link {
        justify-content: center
    }
}

.footer-main {
    background: linear-gradient(165deg, #600E25 0%, #4a0b1d 100%);
    color: #FBFAF8;
    padding: 80px 40px 40px;
    position: relative;
    overflow: hidden
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #F59F4D 0%, #600E25 50%, #F59F4D 100%)
}

.footer-main::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #f59f4d14 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none
}

.footer-hold {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px
}

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

.footer-logo-hold {
    background: #FBFAF8;
    padding: 12px;
    border: 3px solid #F59F4D;
    border-radius: 12px;
    width: fit-content;
    box-shadow: 0 8px 52px -2px #f59f4d1a;
    transition: transform .7s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .7s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.footer-logo-hold:hover {
    transform: translateY(-4px) rotate(-2deg);
    box-shadow: 0 12px 64px -2px #f59f4d2e
}

.footer-logo-image {
    width: 64px;
    height: 64px;
    object-fit: contain;
    display: block
}

.footer-about {
    font-size: 16px;
    line-height: 1.7;
    color: #FBFAF8;
    letter-spacing: .015em;
    max-width: 420px
}

.footer-about strong {
    color: #F59F4D;
    font-weight: 700
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: #fbfaf80d;
    border-radius: 12px;
    border: 1px solid #f59f4d33;
    transition: background .5s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .5s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-row:hover {
    background: #fbfaf81a;
    border-color: #f59f4d66
}

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

.contact-icon svg {
    width: 100%;
    height: 100%;
    fill: #F59F4D
}

.contact-detail {
    font-size: 15px;
    line-height: 1.5;
    color: #FBFAF8;
    letter-spacing: .01em
}

.contact-detail a {
    color: #FBFAF8;
    transition: color .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.contact-detail a:hover {
    color: #F59F4D
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.footer-nav-title {
    font-family: 'Fira Code', monospace;
    font-size: 19px;
    font-weight: 700;
    color: #F59F4D;
    letter-spacing: .02em;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #f59f4d4d
}

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

.footer-nav-item {
    position: relative;
    padding-left: 24px
}

.footer-nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: #F59F4D;
    transition: width .5s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.footer-nav-item:hover::before {
    width: 18px
}

.footer-nav-link {
    font-size: 16px;
    color: #FBFAF8;
    letter-spacing: .01em;
    line-height: 1.5;
    transition: color .42s cubic-bezier(0.34, 1.2, 0.64, 1), transform .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    display: inline-block
}

.footer-nav-link:hover {
    color: #F59F4D;
    transform: translateX(4px)
}

.footer-bottom {
    padding-top: 40px;
    border-top: 2px solid #f59f4d33;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px
}

.footer-copy {
    font-size: 15px;
    color: #fbfaf8b3;
    letter-spacing: .015em;
    line-height: 1.5
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: #f59f4d26;
    border: 2px solid #F59F4D;
    border-radius: 36px;
    font-size: 15px;
    font-weight: 500;
    color: #F59F4D;
    letter-spacing: .02em;
    transition: background .6s cubic-bezier(0.34, 1.2, 0.64, 1), transform .6s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.footer-badge:hover {
    background: #f59f4d40;
    transform: scale(1.05)
}

.footer-badge svg {
    width: 16px;
    height: 16px;
    fill: #F59F4D
}

@media (max-width: 1366px) {
    .footer-main {
        padding: 80px 24px 40px
    }

    .footer-grid {
        gap: 40px
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 12px 24px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px
    }

    .footer-about {
        max-width: 100%
    }

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

@media (max-width: 375px) {
    .footer-grid {
        gap: 24px
    }

    .contact-row {
        flex-direction: column;
        gap: 8px
    }
}

.consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #600E25 0%, #4a0b1d 100%);
    border-top: 3px solid #F59F4D;
    padding: 24px 40px;
    z-index: 8000;
    box-shadow: 0 -8px 52px -2px #600e251a;
    transform: translateX(100%);
    transition: transform .18s ease-in-out
}

.consent-bar.visible {
    transform: translateX(0)
}

.consent-shell {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap
}

.consent-content {
    flex: 1;
    min-width: 280px
}

.consent-headline {
    font-family: 'Fira Code', monospace;
    font-size: 19px;
    font-weight: 700;
    color: #F59F4D;
    margin: 0 0 8px;
    letter-spacing: .02em;
    line-height: 1.2
}

.consent-message {
    font-size: 15px;
    color: #FBFAF8;
    line-height: 1.5;
    letter-spacing: .01em;
    margin: 0
}

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

.consent-btn {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
    border: 2px solid #F59F4D;
    border-radius: 36px;
    background: transparent;
    color: #FBFAF8;
    cursor: pointer;
    letter-spacing: .015em;
    transition: background .4s cubic-bezier(0.34, 1.2, 0.64, 1), color .4s cubic-bezier(0.34, 1.2, 0.64, 1), transform .35s ease-in-out;
    position: relative;
    overflow: hidden
}

.consent-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 4px, #f59f4d1a 4px, #f59f4d1a 8px);
    transition: left .6s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.consent-btn:hover::before {
    left: 0
}

.consent-btn:hover {
    background: #F59F4D;
    color: #600E25;
    transform: translateY(-2px)
}

.consent-btn:focus {
    outline: 2px solid #F59F4D;
    outline-offset: 4px
}

.consent-manage {
    color: #FBFAF8;
    text-decoration: underline;
    font-size: 15px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px 24px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: .015em;
    transition: color .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.consent-manage:hover {
    color: #F59F4D
}

.consent-panel {
    display: none;
    margin-top: 24px;
    padding: 24px;
    background: #fbfaf80d;
    border-radius: 12px;
    border: 1px solid #f59f4d33
}

.consent-panel.active {
    display: block
}

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

.consent-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid #F59F4D;
    border-radius: 4px;
    cursor: pointer;
    transition: background .3s ease-in-out
}

.consent-checkbox:checked {
    background: #F59F4D
}

.consent-label {
    font-size: 15px;
    color: #FBFAF8;
    letter-spacing: .01em;
    line-height: 1.5
}

.pref-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    background: linear-gradient(135deg, #600E25 0%, #4a0b1d 100%);
    padding: 24px 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border: 2px solid #F59F4D;
    border-right: none;
    cursor: pointer;
    z-index: 7999;
    transition: transform .5s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: -4px 0 18px -2px #600e2514
}

.pref-tab.shown {
    transform: translateY(-50%) translateX(0)
}

.pref-tab:hover {
    transform: translateY(-50%) translateX(-4px)
}

.pref-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 15px;
    font-weight: 700;
    color: #F59F4D;
    letter-spacing: .02em
}

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

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

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

    .consent-btn,
    .consent-manage {
        width: 100%;
        text-align: center
    }

    .consent-panel {
        padding: 12px
    }
}

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

    .consent-headline {
        font-size: 16px
    }

    .consent-message {
        font-size: 15px
    }
}

.info-legal {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 24px;
    background: #FBFAF8
}

@media (min-width: 768px) {
    .info-legal {
        padding: 80px 40px
    }
}

@media (min-width: 1366px) {
    .info-legal {
        padding: 80px
    }
}

.info-legal h1 {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #600E25;
    margin: 0 0 40px
}

.info-legal h2 {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #600E25;
    margin: 80px 0 24px
}

.info-legal h3 {
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #600E25;
    margin: 40px 0 24px
}

.info-legal h4 {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: .01em;
    color: #600E25;
    margin: 24px 0 12px
}

.info-legal p {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2a2a2a;
    margin: 0 0 24px
}

.info-legal ul {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2a2a2a;
    margin: 0 0 24px;
    padding: 0 0 0 24px
}

.info-legal ol {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2a2a2a;
    margin: 0 0 24px;
    padding: 0 0 0 24px
}

.info-legal li {
    margin: 0 0 12px;
    padding: 0 0 0 8px
}

.info-legal li:last-child {
    margin: 0
}

.info-legal ul li {
    list-style-type: disc
}

.info-legal ol li {
    list-style-type: decimal
}

.info-legal strong {
    color: #600E25;
    font-weight: 600
}

.info-legal b {
    color: #600E25;
    font-weight: 600
}

.info-legal em {
    font-style: italic;
    color: #2a2a2a
}

.info-legal i {
    font-style: italic;
    color: #2a2a2a
}

.info-legal a {
    color: #F59F4D;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color .4s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.info-legal a:hover {
    border-bottom-color: #F59F4D
}

.info-legal a:focus {
    outline: 2px solid #F59F4D;
    outline-offset: 4px;
    border-radius: 4px
}

.info-legal table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 0 40px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 5px -2px #600e2512 0 4px 18px -2px #600e2514
}

.info-legal thead {
    background: #600E25
}

.info-legal tbody {
    background: #fff
}

.info-legal tr {
    border-bottom: 1px solid #e8e8e8
}

.info-legal tr:last-child {
    border-bottom: none
}

.info-legal th {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #FBFAF8;
    text-align: left;
    padding: 24px;
    font-weight: 600
}

.info-legal td {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2a2a2a;
    padding: 24px
}

@media (max-width: 767px) {
    .info-legal table {
        display: block;
        overflow-x: auto;
        white-space: nowrap
    }
}

.info-legal hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, #600E25 0%, #F59F4D 100%);
    margin: 80px 0;
    border-radius: 4px
}

.info-legal div {
    margin: 0 0 24px
}

.info-legal div:last-child {
    margin: 0
}

.analytic-pg {
    background: #FBFAF8;
    max-width: 1440px;
    margin: 0 auto
}

.analytic-pg .top-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 80px;
    background: linear-gradient(17deg, #600e2514 0%, #f59f4d0d 100%);
    position: relative;
    overflow: hidden
}

.analytic-pg .top-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 8px;
    background: linear-gradient(17deg, #600E25 0%, #F59F4D 100%)
}

.analytic-pg .top-banner-txt {
    flex: 1;
    max-width: 580px
}

.analytic-pg .top-banner-h {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2a2a2a;
    margin: 0 0 24px;
    font-weight: 700
}

.analytic-pg .top-banner-desc {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #4a4a4a;
    margin: 0
}

.analytic-pg .top-banner-visual {
    flex: 0 0 480px;
    position: relative
}

.analytic-pg .top-banner-img-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 52px -2px #600e251a
}

.analytic-pg .top-banner-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, #0009);
    pointer-events: none
}

.analytic-pg .top-banner-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block
}

.analytic-pg .top-banner-accent {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 120px;
    height: 4px;
    background: linear-gradient(17deg, #600E25 0%, #F59F4D 100%);
    border-radius: 4px
}

.analytic-pg .insight-grid {
    padding: 80px;
    background: #fff;
    position: relative
}

.analytic-pg .insight-grid::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, transparent 0%, #FBFAF8 10%, #FBFAF8 90%, transparent 100%);
    clip-path: polygon(0 0, 8% 0, 8% 100%, 16% 100%, 16% 0, 24% 0, 24% 100%, 32% 100%, 32% 0, 40% 0, 40% 100%, 48% 100%, 48% 0, 56% 0, 56% 100%, 64% 100%, 64% 0, 72% 0, 72% 100%, 80% 100%, 80% 0, 88% 0, 88% 100%, 96% 100%, 96% 0, 100% 0, 100% 100%, 0 100%)
}

.analytic-pg .insight-intro {
    max-width: 920px;
    margin: 0 auto 80px;
    text-align: center
}

.analytic-pg .insight-h {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #2a2a2a;
    margin: 0 0 24px;
    font-weight: 700
}

.analytic-pg .insight-lead {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #4a4a4a;
    margin: 0 0 12px
}

.analytic-pg .insight-sub {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #6a6a6a;
    margin: 0
}

.analytic-pg .insight-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px
}

.analytic-pg .insight-card {
    background: #FBFAF8;
    border: 3px solid #e8e6e2;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: transform .7s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .6s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .7s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.analytic-pg .insight-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 12px;
    background: linear-gradient(17deg, #600e2526 0%, #f59f4d26 100%);
    opacity: 0;
    transition: opacity .7s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: -1;
    pointer-events: none
}

.analytic-pg .insight-card::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    border-top: 3px solid #F59F4D;
    border-right: 3px solid #F59F4D;
    border-radius: 0 4px 0 0;
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.analytic-pg .insight-card:hover {
    transform: translateY(-8px);
    border-color: #F59F4D;
    box-shadow: 0 8px 52px -2px #600e251a
}

.analytic-pg .insight-card:hover::before {
    opacity: 1
}

.analytic-pg .insight-card:hover::after {
    opacity: 1
}

.analytic-pg .insight-card-num {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #600E25;
    font-weight: 700;
    margin: 0 0 12px;
    display: block
}

.analytic-pg .insight-card-h {
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #2a2a2a;
    margin: 0 0 12px;
    font-weight: 600;
    font-style: italic
}

.analytic-pg .insight-card-txt {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #5a5a5a;
    margin: 0
}

.analytic-pg .method-showcase {
    padding: 80px;
    background: linear-gradient(17deg, #600e2508 0%, #f59f4d0a 100%);
    position: relative
}

.analytic-pg .method-showcase::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(90deg, transparent 0%, #fff 10%, #fff 90%, transparent 100%);
    clip-path: polygon(0 100%, 6% 100%, 6% 0, 12% 0, 12% 100%, 18% 100%, 18% 0, 24% 0, 24% 100%, 30% 100%, 30% 0, 36% 0, 36% 100%, 42% 100%, 42% 0, 48% 0, 48% 100%, 54% 100%, 54% 0, 60% 0, 60% 100%, 66% 100%, 66% 0, 72% 0, 72% 100%, 78% 100%, 78% 0, 84% 0, 84% 100%, 90% 100%, 90% 0, 96% 0, 96% 100%, 100% 100%, 100% 0, 0 0)
}

.analytic-pg .method-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 40px;
    align-items: start
}

.analytic-pg .method-col-left {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.analytic-pg .method-col-center {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.analytic-pg .method-col-right {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.analytic-pg .method-box {
    background: #fff;
    border: 4px solid #600E25;
    border-radius: 36px;
    padding: 40px;
    position: relative;
    transition: transform .8s cubic-bezier(0.34, 1.2, 0.64, 1), background .7s ease-in-out
}

.analytic-pg .method-box::before {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 24px;
    height: 24px;
    border-bottom: 4px solid #F59F4D;
    border-left: 4px solid #F59F4D;
    border-radius: 0 0 0 4px;
    opacity: 0;
    transition: opacity .6s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.analytic-pg .method-box:hover {
    transform: scale(1.04);
    background: linear-gradient(17deg, #fbfaf8ff 0%, #f59f4d14 100%)
}

.analytic-pg .method-box:hover::before {
    opacity: 1
}

.analytic-pg .method-box-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(17deg, #600E25 0%, #F59F4D 100%);
    border-radius: 12px;
    box-shadow: 0 4px 18px -2px #600e2514
}

.analytic-pg .method-box-icon svg {
    width: 32px;
    height: 32px;
    fill: #FBFAF8
}

.analytic-pg .method-box-h {
    font-size: 23px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #2a2a2a;
    margin: 0 0 12px;
    font-weight: 600
}

.analytic-pg .method-box-txt {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #5a5a5a;
    margin: 0
}

.analytic-pg .method-highlight {
    background: linear-gradient(17deg, #600E25 0%, #F59F4D 100%);
    border: none;
    padding: 80px 40px;
    text-align: center
}

.analytic-pg .method-highlight-h {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #FBFAF8;
    margin: 0 0 24px;
    font-weight: 700
}

.analytic-pg .method-highlight-txt {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #FBFAF8;
    margin: 0 0 12px
}

.analytic-pg .method-highlight-sub {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #fbfaf8e6;
    margin: 0
}

.analytic-pg .method-stat {
    background: #fbfaf826;
    border: 3px solid #fbfaf84d;
    border-radius: 12px;
    padding: 24px;
    margin: 40px 0 0;
    backdrop-filter: blur(8px)
}

.analytic-pg .method-stat-num {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #FBFAF8;
    font-weight: 700;
    margin: 0 0 8px;
    display: block
}

.analytic-pg .method-stat-label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #fbfaf8f2;
    margin: 0
}

@media (max-width: 1366px) {
    .analytic-pg .top-banner {
        padding: 40px;
        gap: 24px
    }

    .analytic-pg .top-banner-visual {
        flex: 0 0 400px
    }

    .analytic-pg .top-banner-img {
        height: 300px
    }

    .analytic-pg .insight-grid {
        padding: 80px 40px
    }

    .analytic-pg .insight-cards {
        gap: 24px
    }

    .analytic-pg .insight-card {
        padding: 24px
    }

    .analytic-pg .method-showcase {
        padding: 80px 40px
    }

    .analytic-pg .method-layout {
        gap: 24px
    }

    .analytic-pg .method-box {
        padding: 24px
    }

    .analytic-pg .method-highlight {
        padding: 40px 24px
    }
}

@media (max-width: 768px) {
    .analytic-pg .top-banner {
        flex-direction: column;
        padding: 40px 24px;
        gap: 24px
    }

    .analytic-pg .top-banner-txt {
        max-width: 100%
    }

    .analytic-pg .top-banner-h {
        font-size: 31px
    }

    .analytic-pg .top-banner-desc {
        font-size: 16px
    }

    .analytic-pg .top-banner-visual {
        flex: 0 0 auto;
        width: 100%
    }

    .analytic-pg .top-banner-img {
        height: 240px
    }

    .analytic-pg .insight-grid {
        padding: 40px 24px
    }

    .analytic-pg .insight-intro {
        margin: 0 auto 40px
    }

    .analytic-pg .insight-h {
        font-size: 31px
    }

    .analytic-pg .insight-lead {
        font-size: 19px
    }

    .analytic-pg .insight-cards {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .analytic-pg .insight-card {
        padding: 24px
    }

    .analytic-pg .insight-card-num {
        font-size: 43px
    }

    .analytic-pg .method-showcase {
        padding: 40px 24px
    }

    .analytic-pg .method-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .analytic-pg .method-box {
        padding: 24px
    }

    .analytic-pg .method-highlight {
        padding: 40px 24px
    }

    .analytic-pg .method-highlight-h {
        font-size: 23px
    }

    .analytic-pg .method-highlight-txt {
        font-size: 16px
    }

    .analytic-pg .method-stat-num {
        font-size: 31px
    }
}

@media (max-width: 375px) {
    .analytic-pg .top-banner {
        padding: 24px 12px
    }

    .analytic-pg .top-banner-h {
        font-size: 23px;
        margin: 0 0 12px
    }

    .analytic-pg .top-banner-desc {
        font-size: 15px
    }

    .analytic-pg .top-banner-img {
        height: 200px
    }

    .analytic-pg .insight-grid {
        padding: 40px 12px
    }

    .analytic-pg .insight-h {
        font-size: 23px;
        margin: 0 0 12px
    }

    .analytic-pg .insight-lead {
        font-size: 16px;
        margin: 0 0 8px
    }

    .analytic-pg .insight-sub {
        font-size: 15px
    }

    .analytic-pg .insight-card {
        padding: 24px
    }

    .analytic-pg .insight-card-num {
        font-size: 31px;
        margin: 0 0 8px
    }

    .analytic-pg .insight-card-h {
        font-size: 19px;
        margin: 0 0 8px
    }

    .analytic-pg .insight-card-txt {
        font-size: 15px
    }

    .analytic-pg .method-showcase {
        padding: 40px 12px
    }

    .analytic-pg .method-box {
        padding: 24px
    }

    .analytic-pg .method-box-icon {
        width: 48px;
        height: 48px;
        margin: 0 0 12px
    }

    .analytic-pg .method-box-icon svg {
        width: 24px;
        height: 24px
    }

    .analytic-pg .method-box-h {
        font-size: 19px;
        margin: 0 0 8px
    }

    .analytic-pg .method-box-txt {
        font-size: 15px
    }

    .analytic-pg .method-highlight {
        padding: 40px 12px
    }

    .analytic-pg .method-highlight-h {
        font-size: 19px;
        margin: 0 0 12px
    }

    .analytic-pg .method-highlight-txt {
        font-size: 15px;
        margin: 0 0 8px
    }

    .analytic-pg .method-highlight-sub {
        font-size: 15px
    }

    .analytic-pg .method-stat {
        padding: 24px;
        margin: 24px 0 0
    }

    .analytic-pg .method-stat-num {
        font-size: 23px;
        margin: 0 0 4px
    }
}

.analytic-pg ::selection {
    background: #2a2a2a;
    color: #FBFAF8
}

.edu-entry {
    background: #FBFAF8;
    color: #2a2a2a;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.edu-entry * {
    box-sizing: border-box
}

.edu-entry ::selection {
    background: #600E25;
    color: #FBFAF8
}

.edu-entry .intro-visual {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 520px;
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    background: linear-gradient(17deg, #600E25 0%, #600e25d9 45%, #600e2500 100%)
}

.edu-entry .intro-txt-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 80px;
    padding-right: 40px;
    position: relative;
    z-index: 2
}

.edu-entry .intro-txt-zone::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 40px;
    font-size: 280px;
    line-height: 1;
    color: #fbfaf814;
    pointer-events: none;
    z-index: -1
}

.edu-entry .intro-num {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #F59F4D;
    margin: 0 0 12px
}

.edu-entry .intro-hdg {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 600;
    color: #FBFAF8;
    margin: 0 0 24px
}

.edu-entry .intro-desc {
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #fbfaf8eb;
    margin: 0
}

.edu-entry .intro-img-zone {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 80px;
    padding-left: 40px
}

.edu-entry .intro-img-holder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 52px -2px #600e251a
}

.edu-entry .intro-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.65) brightness(1.05)
}

.edu-entry .bridge-reveal {
    padding: 80px;
    background: #FBFAF8;
    position: relative
}

.edu-entry .bridge-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    right: 80px;
    width: 2px;
    height: 120px;
    background: linear-gradient(180deg, #600E25 0%, #600e2500 100%)
}

.edu-entry .bridge-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    right: 140px;
    width: 2px;
    height: 90px;
    background: linear-gradient(180deg, #F59F4D 0%, #f59f4d00 100%)
}

.edu-entry .bridge-inner {
    max-width: 1000px;
    margin: 0 auto
}

.edu-entry .bridge-label {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #F59F4D;
    margin: 0 0 24px;
    font-weight: 600
}

.edu-entry .bridge-hdr {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 600;
    color: #600E25;
    margin: 0 0 40px
}

.edu-entry .bridge-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px
}

.edu-entry .bridge-card {
    background: #fff;
    border: 3px solid #600E25;
    border-radius: 12px;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
    transition: transform .42s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.edu-entry .bridge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 10px, #f59f4d08 10px, #f59f4d08 20px);
    opacity: 0;
    transition: opacity .6s ease-in-out;
    pointer-events: none
}

.edu-entry .bridge-card:hover::before {
    opacity: 1
}

.edu-entry .bridge-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 52px -2px #600e251a
}

.edu-entry .bridge-card-num {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #F59F4D;
    margin: 0 0 12px
}

.edu-entry .bridge-card-title {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: .02em;
    font-weight: 600;
    color: #600E25;
    margin: 0 0 12px
}

.edu-entry .bridge-card-txt {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #3a3a3a;
    margin: 0
}

@keyframes traceOutline {
    0% {
        stroke-dashoffset: 1000
    }

    100% {
        stroke-dashoffset: 0
    }
}

.edu-entry .bridge-card svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none
}

.edu-entry .bridge-card svg rect {
    fill: none;
    stroke: #F59F4D;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: traceOutline 2.4s ease-in-out forwards
}

.edu-entry .bridge-card:nth-child(1) svg rect {
    animation-delay: .3s
}

.edu-entry .bridge-card:nth-child(2) svg rect {
    animation-delay: .6s
}

.edu-entry .bridge-card:nth-child(3) svg rect {
    animation-delay: .9s
}

.edu-entry .proof-lived {
    padding: 80px;
    background: linear-gradient(180deg, #2a2a2a 0%, #3a3a3a 100%);
    position: relative
}

.edu-entry .proof-lived::before {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 80px;
    width: 80px;
    height: 2px;
    background: #F59F4D
}

.edu-entry .proof-lived::after {
    content: '';
    position: absolute;
    bottom: 40px;
    left: 172px;
    width: 8px;
    height: 8px;
    background: #F59F4D;
    border-radius: 50%
}

.edu-entry .proof-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center
}

.edu-entry .proof-portrait-holder {
    flex-shrink: 0;
    width: 280px;
    height: 373px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px -2px #f59f4d14
}

.edu-entry .proof-portrait-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.edu-entry .proof-txt-zone {
    flex: 1
}

.edu-entry .proof-quote {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: .02em;
    font-style: italic;
    color: #FBFAF8;
    margin: 0 0 24px;
    position: relative;
    padding-left: 24px
}

.edu-entry .proof-quote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: #F59F4D
}

.edu-entry .proof-body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #fbfaf8e0;
    margin: 0 0 24px
}

.edu-entry .proof-attribution {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .02em;
    font-weight: 600;
    color: #F59F4D;
    margin: 0
}

.edu-entry .invest-clarity {
    padding: 80px;
    background: #FBFAF8;
    position: relative
}

.edu-entry .invest-clarity::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 80px;
    width: 2px;
    height: 60px;
    background: #600E25
}

.edu-entry .invest-clarity::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 76px;
    width: 8px;
    height: 8px;
    background: #600E25;
    border-radius: 50%;
    top: 32px
}

.edu-entry .invest-inner {
    max-width: 1100px;
    margin: 0 auto
}

.edu-entry .invest-hdr {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 600;
    color: #600E25;
    margin: 0 0 40px;
    text-align: center
}

.edu-entry .invest-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start
}

.edu-entry .invest-txt-col {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.edu-entry .invest-para {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #3a3a3a;
    margin: 0;
    background: #fff;
    padding: 24px;
    border-radius: 4px;
    border: 1px solid #600e251f
}

.edu-entry .invest-para:first-child {
    font-size: 19px;
    line-height: 1.5
}

.edu-entry .invest-highlight {
    background: linear-gradient(180deg, transparent 60%, #f59f4d59 60%, #f59f4d59 90%, transparent 90%);
    font-weight: 600;
    color: #600E25 !important
}

.edu-entry .invest-img-col {
    position: relative
}

.edu-entry .invest-img-stack {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.edu-entry .invest-img-holder {
    width: 100%;
    height: 220px;
    border-radius: 36px;
    overflow: hidden;
    box-shadow: 0 3px 5px -2px #600e2512
}

.edu-entry .invest-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.edu-entry .invest-metric-box {
    background: #600E25;
    color: #FBFAF8;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 18px -2px #600e2514
}

.edu-entry .invest-metric-num {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: .01em;
    font-weight: 700;
    color: #F59F4D;
    margin: 0 0 8px
}

.edu-entry .invest-metric-label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .02em;
    color: #fbfaf8e0;
    margin: 0
}

@keyframes waveAppear {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

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

.edu-entry .bridge-card:nth-child(1) {
    animation: waveAppear .8s ease-in-out forwards;
    animation-delay: .2s;
    opacity: 0
}

.edu-entry .bridge-card:nth-child(2) {
    animation: waveAppear .8s ease-in-out forwards;
    animation-delay: .4s;
    opacity: 0
}

.edu-entry .bridge-card:nth-child(3) {
    animation: waveAppear .8s ease-in-out forwards;
    animation-delay: .6s;
    opacity: 0
}

@media (max-width: 1366px) {
    .edu-entry .intro-visual {
        padding-left: 40px;
        padding-right: 40px
    }

    .edu-entry .intro-txt-zone {
        padding-left: 40px;
        padding-right: 24px
    }

    .edu-entry .intro-img-zone {
        padding-right: 40px;
        padding-left: 24px
    }

    .edu-entry .bridge-reveal,
    .edu-entry .proof-lived,
    .edu-entry .invest-clarity {
        padding-left: 40px;
        padding-right: 40px
    }
}

@media (max-width: 768px) {
    .edu-entry .intro-visual {
        flex-direction: column;
        min-height: auto;
        padding: 40px 24px
    }

    .edu-entry .intro-txt-zone {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 40px
    }

    .edu-entry .intro-txt-zone::before {
        font-size: 180px;
        top: -20px;
        left: 0
    }

    .edu-entry .intro-num {
        font-size: 43px
    }

    .edu-entry .intro-hdg {
        font-size: 31px
    }

    .edu-entry .intro-desc {
        font-size: 16px
    }

    .edu-entry .intro-img-zone {
        padding-left: 0;
        padding-right: 0
    }

    .edu-entry .intro-img-holder {
        height: 300px
    }

    .edu-entry .bridge-reveal,
    .edu-entry .proof-lived,
    .edu-entry .invest-clarity {
        padding: 40px 24px
    }

    .edu-entry .bridge-reveal::before,
    .edu-entry .bridge-reveal::after {
        right: 24px
    }

    .edu-entry .bridge-hdr {
        font-size: 31px
    }

    .edu-entry .bridge-grid {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .edu-entry .proof-container {
        flex-direction: column;
        gap: 24px
    }

    .edu-entry .proof-portrait-holder {
        width: 100%;
        max-width: 280px;
        height: 373px
    }

    .edu-entry .proof-quote {
        font-size: 19px
    }

    .edu-entry .invest-hdr {
        font-size: 31px
    }

    .edu-entry .invest-layout {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .edu-entry .invest-img-holder {
        height: 180px
    }
}

@media (max-width: 375px) {
    .edu-entry .intro-visual {
        padding-left: 12px;
        padding-right: 12px
    }

    .edu-entry .intro-num {
        font-size: 31px
    }

    .edu-entry .intro-hdg {
        font-size: 23px
    }

    .edu-entry .intro-desc {
        font-size: 15px
    }

    .edu-entry .bridge-reveal,
    .edu-entry .proof-lived,
    .edu-entry .invest-clarity {
        padding: 24px 12px
    }

    .edu-entry .bridge-hdr {
        font-size: 23px
    }

    .edu-entry .bridge-card {
        padding: 24px 12px
    }

    .edu-entry .bridge-card-num {
        font-size: 23px
    }

    .edu-entry .bridge-card-title {
        font-size: 19px
    }

    .edu-entry .proof-quote {
        font-size: 16px
    }

    .edu-entry .invest-hdr {
        font-size: 23px
    }

    .edu-entry .invest-para {
        padding: 12px
    }
}

.reach ::selection {
    background-color: #600E25;
    color: #FBFAF8
}

.reach {
    background: linear-gradient(17deg, #FBFAF8 0%, #fbfaf866 100%);
    animation: temp-shift 18s ease-in-out infinite
}

@keyframes temp-shift {

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

    50% {
        filter: brightness(1.03) saturate(1.15)
    }
}

.reach .split-intro {
    display: flex;
    flex-direction: row;
    min-height: 440px;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    overflow: hidden
}

.reach .split-intro::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border: 1px solid #600e2526;
    pointer-events: none;
    z-index: 2
}

.reach .left-half {
    flex: 1;
    background: linear-gradient(17deg, #600E25 0%, #600e25d9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative
}

.reach .right-half {
    flex: 1;
    background: linear-gradient(17deg, #F59F4D 0%, #f59f4dbf 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    position: relative
}

.reach .intro-content {
    max-width: 520px;
    z-index: 1
}

.reach .intro-heading {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #FBFAF8;
    margin: 0 0 24px
}

.reach .intro-text {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #FBFAF8;
    margin: 0
}

.reach .form-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative
}

.reach .form-section::before {
    content: 'T';
    position: absolute;
    top: 40px;
    right: 80px;
    font-size: 280px;
    line-height: 1;
    color: #f59f4d14;
    font-weight: 700;
    pointer-events: none;
    z-index: 0
}

.reach .form-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.reach .form-accent {
    width: 120px;
    height: 4px;
    background: #F59F4D;
    margin: 0 0 24px;
    border-radius: 4px
}

.reach .form-title {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #600E25;
    margin: 0 0 12px
}

.reach .form-description {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #600e25bf;
    margin: 0 0 40px
}

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

.reach .field-group {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.reach .field-label {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 600
}

.reach .field-input {
    padding: 16px 20px;
    border: 3px solid #600e2533;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #600E25;
    background: #FBFAF8;
    transition: border-color .42s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .42s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 3px 5px -2px #600e2512
}

.reach .field-input:focus {
    outline: none;
    border-color: #F59F4D;
    box-shadow: 0 4px 18px -2px #f59f4d2e inset 0 2px 4px #f59f4d1f
}

.reach .field-input::placeholder {
    color: #600e2566;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

.reach .budget-group {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.reach .budget-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px
}

.reach .budget-option {
    position: relative
}

.reach .budget-radio {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.reach .budget-label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    border: 3px solid #600e2533;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #600E25;
    background: #FBFAF8;
    cursor: pointer;
    transition: border-color .38s cubic-bezier(0.34, 1.2, 0.64, 1), background-color .38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .38s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 3px 5px -2px #600e2512
}

.reach .budget-label:hover {
    border-color: #F59F4D;
    background: #f59f4d0d;
    box-shadow: 0 4px 18px -2px #f59f4d1f
}

.reach .budget-radio:checked+.budget-label {
    border-color: #600E25;
    background: #600e250f;
    box-shadow: 0 4px 18px -2px #600e251f inset 0 0 0 2px #600E25
}

.reach .privacy-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px;
    background: #f59f4d14;
    border-radius: 12px;
    border: 1px solid #f59f4d33
}

.reach .privacy-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 3px solid #600e254d;
    border-radius: 4px;
    cursor: pointer;
    transition: border-color .35s ease-in-out, background-color .35s ease-in-out;
    appearance: none;
    background: #FBFAF8;
    margin: 2px 0 0
}

.reach .privacy-checkbox:checked {
    background: #600E25;
    border-color: #600E25;
    background-image: url("data:image/svg+xml,%3Csvg width='14' height='11' viewBox='0 0 14 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5.5L5 9.5L13 1.5' stroke='%23FBFAF8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center
}

.reach .privacy-label {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #600e25d9;
    cursor: pointer
}

.reach .privacy-label a {
    color: #600E25;
    text-decoration: underline;
    transition: color .38s ease-in-out, transform .38s ease-in-out;
    display: inline-block
}

.reach .privacy-label a:hover {
    color: #F59F4D;
    transform: rotate(-1.5deg)
}

.reach .submit-btn {
    padding: 18px 40px;
    border: 4px solid #600E25;
    border-radius: 12px;
    background: #600E25;
    color: #FBFAF8;
    font-size: 19px;
    line-height: 1.5;
    letter-spacing: .02em;
    font-weight: 600;
    cursor: pointer;
    transition: background-color .45s cubic-bezier(0.34, 1.2, 0.64, 1), border-color .45s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .45s cubic-bezier(0.34, 1.2, 0.64, 1), transform .45s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 4px 18px -2px #600e2540;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: flex-start
}

.reach .submit-btn:hover {
    background: #F59F4D;
    border-color: #F59F4D;
    box-shadow: 0 8px 52px -2px #f59f4d59;
    transform: translateY(-2px)
}

.reach .submit-btn:hover .btn-arrow {
    transform: translateX(8px)
}

.reach .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform .45s cubic-bezier(0.34, 1.2, 0.64, 1)
}

.reach .details-section {
    background: linear-gradient(17deg, #600E25 0%, #600e25eb 100%);
    padding: 80px 40px;
    position: relative;
    overflow: hidden
}

.reach .details-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(17deg, #600E25 0%, #600e25eb 100%);
    z-index: 0
}

.reach .details-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.reach .details-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #F59F4D 50%, transparent 100%);
    margin: 0 0 40px
}

.reach .details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px
}

.reach .detail-card {
    background: #fbfaf80f;
    padding: 40px;
    border-radius: 36px;
    border: 1px solid #f59f4d33;
    transition: background-color .55s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow .55s cubic-bezier(0.34, 1.2, 0.64, 1), transform .55s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 0 3px 5px -2px #f59f4d12
}

.reach .detail-card:hover {
    background: #fbfaf81a;
    box-shadow: 0 8px 52px -2px #f59f4d2e inset 0 0 40px #f59f4d14;
    transform: translateY(-4px)
}

.reach .detail-icon {
    width: 56px;
    height: 56px;
    margin: 0 0 24px;
    fill: #F59F4D
}

.reach .detail-heading {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #FBFAF8;
    margin: 0 0 12px;
    font-style: italic
}

.reach .detail-info {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #fbfaf8d9;
    margin: 0
}

.reach .detail-info a {
    color: #F59F4D;
    text-decoration: none;
    transition: color .4s ease-in-out, transform .4s ease-in-out;
    display: inline-block
}

.reach .detail-info a:hover {
    color: #FBFAF8;
    transform: rotate(-2deg)
}

.reach .quote-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative
}

.reach .quote-wrapper {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 80px;
    background: #f59f4d0f;
    border-left: 8px solid #F59F4D;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 18px -2px #600e2514
}

.reach .quote-wrapper::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 120px;
    line-height: 1;
    color: #f59f4d33;
    font-weight: 700
}

.reach .quote-text {
    font-size: 23px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #600e25e6;
    margin: 0 0 24px;
    font-style: italic
}

.reach .quote-highlight {
    color: #600E25;
    font-weight: 700;
    position: relative;
    display: inline-block
}

.reach .quote-highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: #F59F4D;
    opacity: .4
}

.reach .quote-author {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #600e25a6;
    margin: 0;
    text-align: right
}

@media (max-width: 1366px) {
    .reach .split-intro {
        min-height: 380px
    }

    .reach .left-half,
    .reach .right-half {
        padding: 80px 24px
    }

    .reach .intro-heading {
        font-size: 43px
    }

    .reach .form-section {
        padding: 80px 24px
    }

    .reach .form-section::before {
        font-size: 220px;
        right: 40px
    }

    .reach .form-title {
        font-size: 31px
    }

    .reach .details-section {
        padding: 80px 24px
    }

    .reach .details-grid {
        gap: 24px
    }

    .reach .quote-section {
        padding: 80px 24px
    }

    .reach .quote-wrapper {
        padding: 40px
    }
}

@media (max-width: 768px) {
    .reach .split-intro {
        flex-direction: column;
        min-height: auto
    }

    .reach .split-intro::before {
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px
    }

    .reach .left-half,
    .reach .right-half {
        padding: 40px 24px
    }

    .reach .intro-heading {
        font-size: 31px
    }

    .reach .intro-text {
        font-size: 16px
    }

    .reach .form-section {
        padding: 40px 24px
    }

    .reach .form-section::before {
        font-size: 160px;
        top: 20px;
        right: 20px
    }

    .reach .form-accent {
        width: 80px
    }

    .reach .form-title {
        font-size: 23px
    }

    .reach .form-description {
        font-size: 16px
    }

    .reach .budget-options {
        grid-template-columns: 1fr
    }

    .reach .submit-btn {
        width: 100%;
        padding: 16px 24px
    }

    .reach .details-section {
        padding: 40px 24px
    }

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

    .reach .detail-card {
        padding: 24px
    }

    .reach .quote-section {
        padding: 40px 24px
    }

    .reach .quote-wrapper {
        padding: 24px;
        border-left-width: 4px
    }

    .reach .quote-wrapper::before {
        font-size: 80px;
        top: -10px;
        left: 20px
    }

    .reach .quote-text {
        font-size: 19px
    }

    .reach .quote-author {
        font-size: 15px
    }
}

@media (max-width: 375px) {
    .reach .split-intro::before {
        display: none
    }

    .reach .left-half,
    .reach .right-half {
        padding: 24px 12px
    }

    .reach .intro-heading {
        font-size: 23px
    }

    .reach .intro-text {
        font-size: 15px
    }

    .reach .form-section {
        padding: 24px 12px
    }

    .reach .form-section::before {
        display: none
    }

    .reach .form-wrapper {
        padding: 0
    }

    .reach .form-title {
        font-size: 19px
    }

    .reach .form-description {
        font-size: 15px
    }

    .reach .field-input {
        padding: 12px 16px;
        font-size: 15px
    }

    .reach .budget-label {
        padding: 12px 16px;
        font-size: 15px
    }

    .reach .privacy-wrapper {
        padding: 12px
    }

    .reach .details-section {
        padding: 24px 12px
    }

    .reach .detail-card {
        padding: 24px;
        border-radius: 12px
    }

    .reach .detail-icon {
        width: 40px;
        height: 40px
    }

    .reach .detail-heading {
        font-size: 19px
    }

    .reach .detail-info {
        font-size: 15px
    }

    .reach .quote-section {
        padding: 24px 12px
    }

    .reach .quote-wrapper {
        padding: 24px 12px
    }

    .reach .quote-text {
        font-size: 16px
    }
}

.lrn-prg {
    background: #FBFAF8;
    color: #2a2a2a;
    max-width: 1440px;
    margin: 0 auto;
    overflow-x: clip
}

.lrn-prg * {
    box-sizing: border-box
}

.lrn-prg .top-segment {
    position: relative;
    display: grid;
    grid-template-rows: 2fr 1fr;
    min-height: 680px;
    background: linear-gradient(17deg, #600E25 0%, #600e25d9 100%);
    overflow: hidden
}

.lrn-prg .top-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, #f59f4d14 0%, transparent 50%), radial-gradient(circle at 80% 20%, #f59f4d0f 0%, transparent 50%);
    pointer-events: none;
    z-index: 1
}

.lrn-prg .dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 66.666%;
    background-image: radial-gradient(circle, #fbfaf81f 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 2;
    pointer-events: none
}

.lrn-prg .txt-zone {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 40px
}

.lrn-prg .numeric-accent {
    font-size: 58px;
    line-height: 1.2;
    color: #F59F4D;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 0 0 12px
}

.lrn-prg .main-headline {
    font-size: 43px;
    line-height: 1.2;
    color: #FBFAF8;
    letter-spacing: .01em;
    margin: 0 0 24px;
    font-weight: 700
}

.lrn-prg .brief-explain {
    font-size: 19px;
    line-height: 1.5;
    color: #fbfaf8eb;
    letter-spacing: .02em;
    max-width: 640px;
    margin: 0
}

.lrn-prg .img-zone {
    position: relative;
    z-index: 3;
    padding: 40px 40px 80px;
    display: flex;
    align-items: flex-end
}

.lrn-prg .img-holder {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 52px -2px #600e251a
}

.lrn-prg .img-holder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, #600e25bf 0%, transparent 100%);
    z-index: 2;
    pointer-events: none
}

.lrn-prg .img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 900ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.lrn-prg .img-holder:hover img {
    transform: scale(1.06)
}

.lrn-prg .watercolor-edge {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden
}

.lrn-prg .watercolor-edge svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: block
}

.lrn-prg .curriculum-segment {
    position: relative;
    padding: 80px 40px;
    background: #FBFAF8
}

.lrn-prg .curriculum-segment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(17deg, transparent 0%, #f59f4d0a 50%, transparent 100%);
    pointer-events: none;
    animation: colorWave 18000ms ease-in-out infinite;
    z-index: 1
}

@keyframes colorWave {
    0% {
        transform: translateX(-30%);
        opacity: .4
    }

    50% {
        transform: translateX(30%);
        opacity: .6
    }

    100% {
        transform: translateX(-30%);
        opacity: .4
    }
}

.lrn-prg .curriculum-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto
}

.lrn-prg .split-layout {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    gap: 40px;
    align-items: start
}

.lrn-prg .divider-bar {
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, #600E25 20%, #600E25 80%, transparent 100%);
    position: relative;
    align-self: stretch
}

.lrn-prg .divider-bar::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #F59F4D;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #f59f4d33
}

.lrn-prg .process-col {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.lrn-prg .outcome-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 18px -2px #600e2514;
    position: sticky;
    top: 80px
}

.lrn-prg .phase-heading {
    font-size: 23px;
    line-height: 1.2;
    color: #600E25;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 0 0 12px;
    font-style: italic
}

.lrn-prg .step-card {
    background: #fff;
    border: 3px solid #600E25;
    border-radius: 12px;
    padding: 24px;
    transition: transform 700ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 700ms cubic-bezier(0.34, 1.2, 0.64, 1), border-color 700ms cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: default
}

.lrn-prg .step-card:hover {
    transform: translateY(-4px);
    border-color: #F59F4D;
    box-shadow: 0 8px 52px -2px #600e251a
}

.lrn-prg .step-num {
    display: inline-block;
    font-size: 15px;
    line-height: 1.2;
    color: #FBFAF8;
    background: #600E25;
    padding: 4px 12px;
    border-radius: 36px;
    letter-spacing: .02em;
    font-weight: 700;
    margin: 0 0 12px;
    transition: background 600ms ease-in-out
}

.lrn-prg .step-card:hover .step-num {
    background: #F59F4D
}

.lrn-prg .step-title {
    font-size: 19px;
    line-height: 1.5;
    color: #2a2a2a;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 0 0 8px
}

.lrn-prg .step-desc {
    font-size: 16px;
    line-height: 1.5;
    color: #4a4a4a;
    letter-spacing: .02em;
    margin: 0
}

.lrn-prg .outcome-heading {
    font-size: 31px;
    line-height: 1.2;
    color: #600E25;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 0 0 24px
}

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

.lrn-prg .metric-box {
    background: linear-gradient(17deg, #f59f4d14 0%, transparent 100%);
    border: 2px solid #600e251f;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 650ms cubic-bezier(0.34, 1.2, 0.64, 1), border-color 650ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.lrn-prg .metric-box:hover {
    transform: scale(1.05);
    border-color: #F59F4D
}

.lrn-prg .metric-val {
    font-size: 43px;
    line-height: 1.2;
    color: #600E25;
    letter-spacing: .01em;
    font-weight: 700;
    margin: 0 0 4px;
    display: block
}

.lrn-prg .metric-label {
    font-size: 15px;
    line-height: 1.5;
    color: #4a4a4a;
    letter-spacing: .02em;
    margin: 0
}

.lrn-prg .instructor-showcase {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #600e251f
}

.lrn-prg .instructor-label {
    font-size: 15px;
    line-height: 1.5;
    color: #600E25;
    letter-spacing: .02em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 24px
}

.lrn-prg .instructor-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.lrn-prg .instructor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.lrn-prg .portrait-frame {
    width: 100%;
    aspect-ratio: 5 / 7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px -2px #600e2514;
    transition: transform 750ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 750ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.lrn-prg .portrait-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 52px -2px #600e251a
}

.lrn-prg .portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block
}

.lrn-prg .instructor-name {
    font-size: 16px;
    line-height: 1.5;
    color: #2a2a2a;
    letter-spacing: .01em;
    font-weight: 700;
    text-align: center;
    margin: 0;
    transition: color 600ms ease-in-out
}

.lrn-prg .instructor-item:hover .instructor-name {
    color: #600E25
}

.lrn-prg .intro-para {
    font-size: 19px;
    line-height: 1.7;
    color: #2a2a2a;
    letter-spacing: .02em;
    margin: 0 0 24px
}

.lrn-prg .body-para {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    letter-spacing: .02em;
    margin: 0 0 24px
}

.lrn-prg .body-para:last-child {
    margin-bottom: 0
}

.lrn-prg .inline-link {
    color: #600E25;
    text-decoration: underline;
    transition: color 450ms ease-in-out, transform 450ms cubic-bezier(0.34, 1.2, 0.64, 1);
    display: inline-block
}

.lrn-prg .inline-link:hover {
    color: #F59F4D;
    transform: rotate(2deg)
}

.lrn-prg .emphasis-box {
    background: linear-gradient(17deg, #600e250d 0%, transparent 100%);
    border-left: 4px solid #F59F4D;
    border-radius: 4px;
    padding: 24px;
    margin: 40px 0;
    position: relative;
    transition: box-shadow 700ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.lrn-prg .emphasis-box:hover {
    box-shadow: 0 4px 18px -2px #600e2514
}

.lrn-prg .emphasis-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, #f59f4d08 8px, #f59f4d08 12px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 600ms ease-in-out
}

.lrn-prg .emphasis-box:hover::before {
    opacity: 1
}

.lrn-prg .shadow-text-trigger {
    display: inline-block;
    position: relative;
    transition: text-shadow 700ms cubic-bezier(0.34, 1.2, 0.64, 1), color 700ms cubic-bezier(0.34, 1.2, 0.64, 1);
    cursor: default
}

.lrn-prg .shadow-text-trigger:hover {
    text-shadow: 0 3px 5px #f59f4d59 0 6px 12px #f59f4d40;
    color: #600E25
}

@media (max-width: 1366px) {
    .lrn-prg .top-segment {
        min-height: 580px
    }

    .lrn-prg .txt-zone {
        padding: 40px 40px 24px
    }

    .lrn-prg .img-zone {
        padding: 24px 40px 40px
    }

    .lrn-prg .numeric-accent {
        font-size: 43px
    }

    .lrn-prg .main-headline {
        font-size: 31px
    }

    .lrn-prg .brief-explain {
        font-size: 16px
    }

    .lrn-prg .curriculum-segment {
        padding: 40px
    }

    .lrn-prg .split-layout {
        gap: 24px
    }

    .lrn-prg .outcome-col {
        padding: 24px
    }

    .lrn-prg .outcome-heading {
        font-size: 23px
    }

    .lrn-prg .metric-val {
        font-size: 31px
    }

    .lrn-prg .instructor-row {
        gap: 12px
    }
}

@media (max-width: 768px) {
    .lrn-prg .top-segment {
        grid-template-rows: auto auto;
        min-height: auto
    }

    .lrn-prg .txt-zone {
        padding: 40px 24px 24px
    }

    .lrn-prg .img-zone {
        padding: 24px 24px 40px
    }

    .lrn-prg .numeric-accent {
        font-size: 31px
    }

    .lrn-prg .main-headline {
        font-size: 23px
    }

    .lrn-prg .brief-explain {
        font-size: 15px
    }

    .lrn-prg .curriculum-segment {
        padding: 40px 24px
    }

    .lrn-prg .split-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .lrn-prg .divider-bar {
        display: none
    }

    .lrn-prg .outcome-col {
        position: static;
        padding: 24px
    }

    .lrn-prg .outcome-grid {
        grid-template-columns: 1fr
    }

    .lrn-prg .phase-heading {
        font-size: 19px
    }

    .lrn-prg .step-card {
        padding: 24px
    }

    .lrn-prg .step-title {
        font-size: 16px
    }

    .lrn-prg .step-desc {
        font-size: 15px
    }

    .lrn-prg .outcome-heading {
        font-size: 19px
    }

    .lrn-prg .metric-val {
        font-size: 23px
    }

    .lrn-prg .instructor-row {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .lrn-prg .process-col {
        gap: 24px
    }
}

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

    .lrn-prg .img-zone {
        padding: 12px 12px 24px
    }

    .lrn-prg .numeric-accent {
        font-size: 23px
    }

    .lrn-prg .main-headline {
        font-size: 19px
    }

    .lrn-prg .curriculum-segment {
        padding: 24px 12px
    }

    .lrn-prg .step-card {
        padding: 12px
    }

    .lrn-prg .outcome-col {
        padding: 12px
    }

    .lrn-prg .metric-box {
        padding: 12px
    }
}

.success-page {
    background: linear-gradient(17deg, #600E25 0%, #600e2508 100%);
    min-height: 100vh;
    padding: 80px 24px
}

.success-page .confirm-wrap {
    margin: 0 auto;
    max-width: 1440px
}

.success-page .confirm-card {
    background: #FBFAF8;
    border: 3px solid #600E25;
    border-radius: 36px;
    box-shadow: 0 8px 52px -2px #600e251a;
    margin: 0 auto;
    max-width: 680px;
    padding: 80px 40px;
    text-align: center
}

.success-page .icon-check {
    align-items: center;
    background: linear-gradient(17deg, #F59F4D 0%, #f59f4d33 100%);
    border: 4px solid #600E25;
    border-radius: 12px;
    display: inline-flex;
    height: 120px;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    width: 120px
}

.success-page .icon-check::before {
    border-bottom: 6px solid #600E25;
    border-right: 6px solid #600E25;
    content: '';
    height: 52px;
    transform: rotate(45deg);
    width: 28px
}

.success-page .confirm-title {
    color: #600E25;
    font-size: 43px;
    font-style: italic;
    letter-spacing: .01em;
    line-height: 1.2;
    margin-bottom: 24px
}

.success-page .confirm-msg {
    color: #333;
    font-size: 19px;
    letter-spacing: .02em;
    line-height: 1.7;
    margin-bottom: 40px
}

.success-page .confirm-msg p {
    margin-bottom: 12px
}

.success-page .confirm-msg p:last-child {
    margin-bottom: 0
}

.success-page .action-set {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 24px
}

.success-page .btn-primary {
    background: #FBFAF8;
    border: 4px solid #600E25;
    border-radius: 4px;
    color: #600E25;
    cursor: pointer;
    display: inline-flex;
    font-size: 19px;
    gap: 12px;
    letter-spacing: .02em;
    padding: 24px 40px;
    text-decoration: none;
    transition: background 600ms cubic-bezier(0.34, 1.2, 0.64, 1), transform 600ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.success-page .btn-primary:hover {
    background: linear-gradient(17deg, #F59F4D 0%, #f59f4d26 100%);
    transform: translateY(-2px)
}

.success-page .btn-primary .arrow-icon {
    display: inline-block;
    transition: transform 700ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.success-page .btn-primary:hover .arrow-icon {
    transform: translateX(8px)
}

.success-page .btn-primary .arrow-icon::before {
    border-right: 3px solid #600E25;
    border-top: 3px solid #600E25;
    content: '';
    display: block;
    height: 12px;
    transform: rotate(45deg);
    width: 12px
}

.success-page .link-secondary {
    color: #600E25;
    display: inline-block;
    font-size: 16px;
    letter-spacing: .02em;
    text-decoration: underline;
    transition: transform 400ms cubic-bezier(0.34, 1.2, 0.64, 1)
}

.success-page .link-secondary:hover {
    transform: rotate(2deg)
}

.success-page .info-grid {
    background: #f59f4d14;
    border-radius: 12px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
    margin-top: 40px;
    padding: 40px 24px
}

.success-page .info-item {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.success-page .info-label {
    color: #600E25;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em
}

.success-page .info-value {
    color: #333;
    font-size: 16px;
    letter-spacing: .01em;
    line-height: 1.5
}

@media (min-width: 768px) {
    .success-page {
        padding: 120px 40px
    }

    .success-page .confirm-card {
        padding: 120px 80px
    }

    .success-page .action-set {
        flex-direction: row;
        justify-content: center
    }

    .success-page .info-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (min-width: 1366px) {
    .success-page .confirm-title {
        font-size: 58px
    }

    .success-page .confirm-msg {
        font-size: 23px
    }

    .success-page .btn-primary {
        font-size: 23px
    }
}

.abt-us {
    max-width: 1440px;
    margin: 0 auto;
    background: #FBFAF8
}

.abt-us ::selection {
    background: #600E25;
    color: #FBFAF8
}

.abt-us .title-zone {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 24px 40px;
    overflow: visible
}

.abt-us .title-zone::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 15%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, #f59f4d1f 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1
}

.abt-us .title-zone::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 18%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #600e2514 0%, transparent 70%);
    filter: blur(70px);
    pointer-events: none;
    z-index: 1
}

.abt-us .title-img-wrap {
    position: relative;
    width: 100%;
    max-width: 680px;
    margin-bottom: 80px;
    z-index: 2;
    animation: fadeInTitle 900ms cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
    opacity: 0
}

@keyframes fadeInTitle {
    to {
        opacity: 1
    }
}

.abt-us .title-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 52px -2px #600e251a;
    border: 3px solid #600E25
}

.abt-us .title-heading {
    font-size: 58px;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #600E25;
    text-align: center;
    font-weight: 700;
    z-index: 2;
    position: relative
}

.abt-us .origin-segment {
    background: linear-gradient(17deg, #FBFAF8 0%, #f59f4d14 100%);
    padding: 80px 24px;
    position: relative
}

.abt-us .origin-segment::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 40px;
    background-image: radial-gradient(circle at 20px 0, transparent 20px, #FBFAF8 20px);
    background-size: 40px 40px;
    background-repeat: repeat-x;
    background-position: 0 100%
}

.abt-us .origin-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px
}

.abt-us .origin-txt-area {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.abt-us .origin-label {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 600;
    font-style: italic
}

.abt-us .origin-intro {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2a2a2a
}

.abt-us .origin-body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #3a3a3a
}

.abt-us .origin-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.abt-us .origin-card {
    background: #FBFAF8;
    border: 2px solid #F59F4D;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 18px -2px #f59f4d14;
    transition: transform 600ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 600ms cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden
}

.abt-us .origin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 8px, #f59f4d08 8px, #f59f4d08 16px);
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.abt-us .origin-card:hover::before {
    opacity: 1
}

.abt-us .origin-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 52px -2px #f59f4d1a
}

.abt-us .origin-card-title {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 600;
    margin-bottom: 12px
}

.abt-us .origin-card-txt {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #4a4a4a
}

.abt-us .journey-segment {
    background: #FBFAF8;
    padding: 80px 24px;
    position: relative
}

.abt-us .journey-split-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #FBFAF8 0%, #FBFAF8 50%, #600e2508 50%, #600e2508 100%);
    pointer-events: none
}

.abt-us .journey-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden
}

.abt-us .journey-shape {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #f59f4d26;
    border-radius: 4px;
    transform: rotate(45deg)
}

.abt-us .journey-shape:nth-child(1) {
    top: 8%;
    left: 12%;
    width: 16px;
    height: 16px
}

.abt-us .journey-shape:nth-child(2) {
    top: 25%;
    right: 18%;
    width: 10px;
    height: 10px
}

.abt-us .journey-shape:nth-child(3) {
    top: 45%;
    left: 8%;
    width: 14px;
    height: 14px
}

.abt-us .journey-shape:nth-child(4) {
    top: 62%;
    right: 10%;
    width: 12px;
    height: 12px
}

.abt-us .journey-shape:nth-child(5) {
    bottom: 15%;
    left: 22%;
    width: 18px;
    height: 18px
}

.abt-us .journey-shape:nth-child(6) {
    bottom: 8%;
    right: 15%;
    width: 11px;
    height: 11px
}

.abt-us .journey-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.abt-us .journey-hdr {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px
}

.abt-us .timeline-wrap {
    position: relative;
    padding: 0 24px
}

.abt-us .timeline-axis {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(17deg, #F59F4D 0%, #600e2566 100%);
    transform: translateX(-50%)
}

.abt-us .timeline-items {
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative
}

.abt-us .timeline-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    opacity: 0;
    animation: slideInTimeline 800ms cubic-bezier(0.34, 1.2, 0.64, 1) forwards
}

.abt-us .timeline-row:nth-child(1) {
    animation-delay: 100ms
}

.abt-us .timeline-row:nth-child(2) {
    animation-delay: 250ms
}

.abt-us .timeline-row:nth-child(3) {
    animation-delay: 400ms
}

.abt-us .timeline-row:nth-child(4) {
    animation-delay: 550ms
}

@keyframes slideInTimeline {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

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

.abt-us .timeline-content-left {
    grid-column: 1;
    text-align: right;
    padding-right: 40px
}

.abt-us .timeline-content-right {
    grid-column: 2;
    text-align: left;
    padding-left: 40px
}

.abt-us .timeline-dot {
    position: absolute;
    left: 50%;
    top: 24px;
    width: 20px;
    height: 20px;
    background: #F59F4D;
    border: 4px solid #FBFAF8;
    border-radius: 36px;
    transform: translateX(-50%);
    box-shadow: 0 3px 5px -2px #600e2512;
    z-index: 2
}

.abt-us .timeline-year {
    font-size: 31px;
    line-height: 1.2;
    letter-spacing: .02em;
    color: #600E25;
    font-weight: 700;
    margin-bottom: 12px
}

.abt-us .timeline-desc {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #3a3a3a
}

.abt-us .timeline-img-box {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #600E25;
    box-shadow: 0 8px 52px -2px #600e251a
}

.abt-us .timeline-img-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block
}

.abt-us .team-segment {
    background: linear-gradient(17deg, #f59f4d0f 0%, #FBFAF8 100%);
    padding: 80px 24px
}

.abt-us .team-inner {
    max-width: 1200px;
    margin: 0 auto
}

.abt-us .team-hdr {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 700;
    margin-bottom: 24px
}

.abt-us .team-intro {
    font-size: 19px;
    line-height: 1.7;
    letter-spacing: .02em;
    color: #2a2a2a;
    margin-bottom: 40px;
    max-width: 800px
}

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

.abt-us .team-member {
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: #FBFAF8;
    border: 3px solid #600E25;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 18px -2px #600e2514;
    transition: transform 700ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 700ms cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative;
    overflow: hidden
}

.abt-us .team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(135deg, transparent, transparent 12px, #600e2505 12px, #600e2505 24px);
    opacity: 0;
    transition: opacity 750ms cubic-bezier(0.34, 1.2, 0.64, 1);
    pointer-events: none
}

.abt-us .team-member:hover::before {
    opacity: 1
}

.abt-us .team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 52px -2px #600e251a
}

.abt-us .team-portrait-wrap {
    width: 100%;
    aspect-ratio: 7/9;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #F59F4D;
    box-shadow: 0 4px 18px -2px #f59f4d14
}

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

.abt-us .team-name {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 600
}

.abt-us .team-role {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #F59F4D;
    font-weight: 500;
    margin-bottom: 8px
}

.abt-us .team-bio {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #4a4a4a
}

.abt-us .values-segment {
    background: #FBFAF8;
    padding: 80px 24px;
    position: relative
}

.abt-us .values-inner {
    max-width: 1200px;
    margin: 0 auto
}

.abt-us .values-hdr {
    font-size: 43px;
    line-height: 1.2;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px
}

.abt-us .values-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0
}

.abt-us .values-item {
    background: #FBFAF8;
    border: 3px dashed #F59F4D;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 3px 5px -2px #f59f4d12;
    transition: border-style 650ms cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 650ms cubic-bezier(0.34, 1.2, 0.64, 1);
    position: relative
}

.abt-us .values-item:hover {
    border-style: solid;
    box-shadow: 0 8px 52px -2px #f59f4d1a
}

.abt-us .values-item-hdr {
    font-size: 23px;
    line-height: 1.5;
    letter-spacing: .015em;
    color: #600E25;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px
}

.abt-us .values-item-hdr::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 12px;
    height: 2px;
    background: #F59F4D;
    transform: translateY(-50%)
}

.abt-us .values-item-txt {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: .015em;
    color: #3a3a3a
}

@media (min-width: 768px) {
    .abt-us .title-zone {
        padding: 80px 40px
    }

    .abt-us .title-img-wrap {
        max-width: 780px
    }

    .abt-us .title-heading {
        font-size: 58px
    }

    .abt-us .origin-segment {
        padding: 80px 40px
    }

    .abt-us .origin-inner {
        grid-template-columns: 1fr 1fr;
        gap: 80px
    }

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

    .abt-us .journey-segment {
        padding: 80px 40px
    }

    .abt-us .team-segment {
        padding: 80px 40px
    }

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

    .abt-us .values-segment {
        padding: 80px 40px
    }

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

@media (min-width: 1366px) {
    .abt-us .title-zone {
        padding: 80px
    }

    .abt-us .title-img-wrap {
        max-width: 880px
    }

    .abt-us .origin-segment {
        padding: 80px
    }

    .abt-us .journey-segment {
        padding: 80px
    }

    .abt-us .team-segment {
        padding: 80px
    }

    .abt-us .values-segment {
        padding: 80px
    }
}