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

body {
    margin: 0;
    position: relative;
    min-height: 100vh;
}

.site-hd {
    background: linear-gradient(135deg, #2a2a18 0%, #3a3a20 60%, #4a4a28 100%);
    border-bottom: 3px solid #BAB441;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
    position: relative;
    z-index: 100;
}

.hd-brand-row {
    max-width: 1366px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(186, 180, 65, 0.18);
}

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

.logo-box {
    width: 88px;
    height: 88px;
    background: #FEFEFD;
    border: 2px solid #BAB441;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.brand-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-name {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.04em;
    background: linear-gradient(90deg, #FEFEFD 0%, #CECB92 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.brand-sub {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #CECB92;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hd-contact-strip {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.hd-contact-item {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    text-decoration: none;
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.hd-contact-item:hover {
    color: #BAB441;
}

.hd-contact-item:focus {
    outline: none;
    border-bottom: 4px solid #BAB441;
}

.hd-nav-row {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.primary-menu li {
    display: flex;
}

.primary-menu a {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FEFEFD;
    text-decoration: none;
    padding: 20px 20px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 2px 2px 0 0;
    transition: color 0.35s ease-in-out, background-color 0.35s ease-in-out;
    overflow: hidden;
}

.primary-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #BAB441;
    z-index: 0;
    transition: height 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    border-radius: 2px 2px 0 0;
}

.primary-menu a:hover::before {
    height: 100%;
}

.primary-menu a:hover {
    color: #2a2a18;
}

.primary-menu a span {
    position: relative;
    z-index: 1;
}

.primary-menu a:focus {
    outline: none;
    border-bottom: 4px solid #CECB92;
}

.primary-menu a[aria-current="page"] {
    color: #BAB441;
    border-bottom: 3px solid #BAB441;
}

@media (max-width: 768px) {
    .hd-brand-row {
        padding: 20px;
        flex-wrap: wrap;
    }

    .brand-name {
        font-size: 28px;
    }

    .logo-box {
        width: 64px;
        height: 64px;
    }

    .logo-box img {
        width: 56px;
        height: 56px;
    }

    .hd-contact-strip {
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hd-nav-row {
        padding: 0 20px;
    }

    .primary-menu a {
        padding: 20px 8px;
        font-size: 15px;
    }
}

@media (max-width: 1280px) and (min-width: 769px) {
    .hd-brand-row {
        padding: 20px 20px;
    }

    .hd-nav-row {
        padding: 0 20px;
    }
}

.site-ft {
    background: linear-gradient(160deg, #1e1e10 0%, #2a2a18 100%);
    border-top: 3px solid #BAB441;
    margin-top: auto;
}

.ft-upper {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 40px;
    align-items: start;
}

.ft-col-head {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #BAB441;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(186, 180, 65, 0.22);
}

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

.ft-link-list a {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    text-decoration: none;
    transition: color 0.42s ease-in-out;
    display: inline-block;
}

.ft-link-list a:hover {
    color: #FEFEFD;
}

.ft-link-list a:focus {
    outline: none;
    border-bottom: 4px solid #BAB441;
}

.ft-contact-col p {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    margin: 0 0 8px 0;
}

.ft-contact-col a {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.42s ease-in-out;
}

.ft-contact-col a:hover {
    color: #FEFEFD;
}

.ft-contact-col a:focus {
    outline: none;
    border-bottom: 4px solid #BAB441;
}

.ft-logo-anchor {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.ft-logo-box {
    width: 88px;
    height: 88px;
    background: #FEFEFD;
    border: 2px solid #BAB441;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.ft-lower {
    border-top: 1px solid rgba(186, 180, 65, 0.15);
    background: rgba(0, 0, 0, 0.25);
}

.ft-lower-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.ft-copy {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(206, 203, 146, 0.6);
    margin: 0;
}

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

.ft-legal-links a {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(206, 203, 146, 0.6);
    text-decoration: none;
    transition: color 0.38s ease-in-out;
}

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

.ft-legal-links a:focus {
    outline: none;
    border-bottom: 4px solid #BAB441;
}

@media (max-width: 768px) {
    .ft-upper {
        grid-template-columns: 1fr 1fr;
        padding: 40px 20px 20px;
        gap: 20px;
    }

    .ft-logo-anchor {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .ft-lower-inner {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 1280px) and (min-width: 769px) {
    .ft-upper {
        padding: 80px 20px 40px;
        grid-template-columns: 1fr 1fr auto;
        gap: 40px;
    }

    .ft-contact-col {
        grid-column: 1 / -1;
    }

    .ft-lower-inner {
        padding: 20px;
    }
}

.ck-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    background: #2a2a18;
    border: 2px solid #BAB441;
    border-radius: 8px;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
    z-index: 8000;
    padding: 20px;
    display: none;
}

.ck-popup-title {
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    color: #FEFEFD;
    margin: 0 0 8px 0;
}

.ck-popup-desc {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    margin: 0 0 20px 0;
}

.ck-toggles {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.ck-toggles.open {
    display: flex;
}

.ck-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
    background: rgba(186, 180, 65, 0.08);
    border-radius: 4px;
}

.ck-toggle-label {
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #FEFEFD;
}

.ck-toggle-label.required {
    color: #CECB92;
    font-style: italic;
}

.ck-switch {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.ck-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ck-switch input:focus+.ck-track {
    border-bottom: 4px solid #BAB441;
}

.ck-switch input:checked+.ck-track {
    background: #BAB441;
    box-shadow: inset 1px 1px 4px rgba(186, 180, 65, 0.22);
}

.ck-switch input:checked+.ck-track .ck-thumb {
    transform: translateX(18px);
}

.ck-track {
    display: block;
    width: 40px;
    height: 22px;
    background: rgba(206, 203, 146, 0.2);
    border-radius: 22px;
    cursor: pointer;
    transition: background-color 0.35s ease-in-out;
    position: relative;
}

.ck-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 16px;
    height: 16px;
    background: #FEFEFD;
    border-radius: 22px;
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.ck-btn-row {
    display: flex;
    gap: 8px;
}

.ck-btn {
    flex: 1;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    padding: 8px 20px;
    border-radius: 4px;
    border: 2px solid #BAB441;
    cursor: pointer;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    transition: color 0.38s ease-in-out;
}

.ck-btn::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    transition: height 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.ck-btn span {
    position: relative;
    z-index: 1;
}

.ck-btn:hover::before {
    height: 100%;
}

.ck-btn:focus {
    outline: none;
    border-bottom: 4px solid #CECB92;
}

.ck-btn:active {
    box-shadow: inset 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
}

.ck-accept {
    background: #BAB441;
    color: #1e1e10;
}

.ck-accept::before {
    background: #CECB92;
}

.ck-accept:hover {
    color: #1e1e10;
}

.ck-reject {
    background: transparent;
    color: #BAB441;
}

.ck-reject::before {
    background: rgba(186, 180, 65, 0.12);
}

.ck-reject:hover {
    color: #FEFEFD;
}

.ck-settings-link {
    display: block;
    margin-top: 8px;
    font-family: 'DM Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-align: left;
    transition: color 0.38s ease-in-out;
}

.ck-settings-link:hover {
    color: #FEFEFD;
}

.ck-settings-link:focus {
    outline: none;
    border-bottom: 4px solid #BAB441;
}

.policy-luf-page {
    max-width: 1366px;
    margin: 0 auto;
    padding: 80px 40px;
}

.policy-luf-page p {
    font-size: 18px;
    line-height: 1.55;
    color: #2a2a2e;
    margin-bottom: 20px;
}

.policy-luf-page strong,
.policy-luf-page b {
    font-weight: 700;
    color: #1e1e22;
}

.policy-luf-page em,
.policy-luf-page i {
    font-style: italic;
    color: #3a3a40;
}

.policy-luf-page a {
    color: #7a7620;
    font-size: inherit;
    line-height: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), text-decoration-color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.policy-luf-page a:hover {
    color: #BAB441;
    text-decoration-color: #CECB92;
}

.policy-luf-page a:focus-visible {
    outline: 2px solid #BAB441;
    outline-offset: 2px;
    border-radius: 2px;
}

.policy-luf-page div {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #FEFEFD;
    border-radius: 8px;
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
}

.policy-luf-page div p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .policy-luf-page {
        padding: 40px 20px;
    }

    .policy-luf-page p {
        font-size: 15px;
    }

    .policy-luf-page div {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1280px) {
    .policy-luf-page {
        padding: 80px 40px;
    }
}

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

.stats-pg .sweep-text {
    background: linear-gradient(90deg, #2a2800 0%, #BAB441 40%, #2a2800 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: sweep-anim 2.2s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

@keyframes sweep-anim {
    0% {
        background-position: 200% center;
    }

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

.stats-pg .split-left {
    flex: 1 1 50%;
    padding: 80px 40px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    position: relative;
}

.stats-pg .split-right {
    flex: 1 1 50%;
    position: relative;
    min-height: 520px;
    background: #BAB441;
}

.stats-pg .title-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 520px;
    background: #FEFEFD;
}

.stats-pg .title-row .split-left {
    padding-bottom: 80px;
    padding-top: 40px;
}

.stats-pg .img-mask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.stats-pg .img-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(0.7) brightness(0.88);
    mix-blend-mode: multiply;
}

.stats-pg .img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(197deg, rgba(186, 180, 65, 0.52) 0%, transparent 70%);
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.stats-pg .live-num {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
}

.stats-pg .live-num .num-val {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: #BAB441;
    letter-spacing: -2px;
}

.stats-pg .live-num .num-label {
    font-size: 18px;
    line-height: 1.55;
    color: #4a4700;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.stats-pg .t-head {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: #2a2800;
    margin: 0;
}

.stats-pg .t-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3700;
    max-width: 480px;
    margin: 0;
}

.stats-pg .btn-primary {
    display: inline-block;
    padding: 20px 40px;
    background: #2a2800;
    color: #FEFEFD;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    text-transform: lowercase;
}

.stats-pg .btn-primary::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0%;
    background: #BAB441;
    transition: height 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.stats-pg .btn-primary:hover::before {
    height: 100%;
}

.stats-pg .btn-primary span {
    position: relative;
    z-index: 1;
}

.stats-pg .btn-primary:hover {
    color: #2a2800;
}

.stats-pg .btn-primary:focus {
    outline: 3px solid #BAB441;
    outline-offset: 2px;
}

.stats-pg .btn-primary:active {
    box-shadow: inset 1px 3px 6px 1px rgba(186, 180, 65, 0.18);
}

.stats-pg .deco-shape-a {
    position: absolute;
    bottom: 40px;
    left: 20px;
    width: 60px;
    height: 60px;
    border: 3px dashed rgba(186, 180, 65, 0.38);
    border-radius: 2px;
    pointer-events: none;
}

.stats-pg .deco-shape-b {
    position: absolute;
    top: 40px;
    left: 60px;
    width: 28px;
    height: 28px;
    background: rgba(206, 203, 146, 0.3);
    border-radius: 2px;
    pointer-events: none;
}

.stats-pg .divider-curve {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    display: block;
}

.stats-pg .divider-curve svg {
    display: block;
    width: 100%;
}

.stats-pg .metrics-band {
    background: #2a2800;
    padding: 80px 80px 80px 80px;
    position: relative;
}

.stats-pg .metrics-band .band-inner {
    max-width: 1366px;
    margin: 0 auto;
}

.stats-pg .metrics-band .band-label {
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 8px 0;
}

.stats-pg .metrics-band .band-head {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #FEFEFD;
    margin: 0 0 40px 0;
    max-width: 600px;
}

.stats-pg .metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats-pg .met-card {
    background: rgba(254, 254, 253, 0.06);
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid rgba(206, 203, 146, 0.18);
    position: relative;
    transition: background 0.35s ease-in-out, border-color 0.35s ease-in-out;
}

.stats-pg .met-card:hover {
    background: rgba(186, 180, 65, 0.12);
    border-color: rgba(186, 180, 65, 0.4);
}

.stats-pg .met-card .faded-num {
    position: absolute;
    top: 8px;
    left: 20px;
    font-size: 52px;
    font-weight: 900;
    color: rgba(206, 203, 146, 0.1);
    line-height: 1.1;
    pointer-events: none;
    user-select: none;
}

.stats-pg .met-card .met-val {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #BAB441;
    display: block;
}

.stats-pg .met-card .met-unit {
    font-size: 22px;
    color: #CECB92;
    font-weight: 700;
}

.stats-pg .met-card .met-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.72);
    margin: 8px 0 0 0;
}

.stats-pg .divider-flat {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #BAB441 0%, #CECB92 50%, transparent 100%);
    display: block;
}

.stats-pg .insight-sec {
    background: #FEFEFD;
    padding: 80px 80px;
    position: relative;
}

.stats-pg .insight-sec::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(197deg, #CECB92 0%, transparent 70%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.stats-pg .insight-inner {
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.stats-pg .insight-left {
    flex: 0 0 340px;
}

.stats-pg .insight-right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-pg .sec-tag {
    font-size: 15px;
    line-height: 1.55;
    color: #BAB441;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.stats-pg .sec-head {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #2a2800;
    margin: 0 0 20px 0;
}

.stats-pg .sec-body {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3700;
    margin: 0;
}

.stats-pg .insight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-pg .insight-list li {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: #FEFEFD;
    border-radius: 8px;
    border-left: 4px solid #BAB441;
    border-top: 1px solid rgba(186, 180, 65, 0.2);
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
    transition: box-shadow 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.stats-pg .insight-list li:hover {
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
    transform: translateY(-2px);
}

.stats-pg .insight-list .li-num {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    color: #BAB441;
    min-width: 40px;
    flex-shrink: 0;
}

.stats-pg .insight-list .li-body {
    flex: 1;
}

.stats-pg .insight-list .li-head {
    font-size: 18px;
    line-height: 1.55;
    font-weight: 700;
    color: #2a2800;
    margin: 0 0 4px 0;
}

.stats-pg .insight-list .li-text {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3700;
    margin: 0;
}

.stats-pg .dashed-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.stats-pg .dashed-path svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.stats-pg .divider-angle {
    width: 100%;
    height: 60px;
    background: linear-gradient(197deg, #FEFEFD 50%, #2a2800 50%);
    display: block;
}

.stats-pg .voices-sec {
    background: #2a2800;
    padding: 80px 80px;
    position: relative;
}

.stats-pg .voices-inner {
    max-width: 1366px;
    margin: 0 auto;
}

.stats-pg .voices-head-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 40px;
}

.stats-pg .voices-head {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #FEFEFD;
    margin: 0;
}

.stats-pg .voices-sub {
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    max-width: 420px;
    margin: 0;
    text-align: right;
}

.stats-pg .voices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-pg .voice-card {
    background: rgba(254, 254, 253, 0.05);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(206, 203, 146, 0.14);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background 0.38s ease-in-out;
}

.stats-pg .voice-card:hover {
    background: rgba(186, 180, 65, 0.09);
}

.stats-pg .voice-quote {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.88);
    margin: 0;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid #BAB441;
}

.stats-pg .voice-person {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.stats-pg .voice-portrait {
    width: 80px;
    height: 102px;
    flex-shrink: 0;
    overflow: hidden;
    clip-path: polygon(0 0, 88% 0, 100% 12%, 100% 100%, 12% 100%, 0 88%);
}

.stats-pg .voice-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.stats-pg .voice-name {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
    color: #FEFEFD;
    margin: 0;
}

.stats-pg .voice-role {
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    margin: 0;
}

@media (max-width: 1280px) {
    .stats-pg .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-pg .insight-inner {
        flex-direction: column;
        gap: 40px;
    }

    .stats-pg .insight-left {
        flex: none;
        width: 100%;
    }

    .stats-pg .metrics-band {
        padding: 80px 40px;
    }

    .stats-pg .insight-sec {
        padding: 80px 40px;
    }

    .stats-pg .voices-sec {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .stats-pg .title-row {
        flex-direction: column;
        min-height: auto;
    }

    .stats-pg .split-left {
        padding: 40px 20px 80px 20px;
    }

    .stats-pg .split-right {
        min-height: 280px;
    }

    .stats-pg .img-mask {
        clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
    }

    .stats-pg .img-overlay {
        clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0% 100%);
    }

    .stats-pg .t-head {
        font-size: 28px;
    }

    .stats-pg .live-num .num-val {
        font-size: 52px;
    }

    .stats-pg .metrics-band {
        padding: 40px 20px;
    }

    .stats-pg .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-pg .insight-sec {
        padding: 40px 20px;
    }

    .stats-pg .insight-sec::before {
        display: none;
    }

    .stats-pg .voices-sec {
        padding: 40px 20px;
    }

    .stats-pg .voices-grid {
        grid-template-columns: 1fr;
    }

    .stats-pg .voices-head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .stats-pg .voices-sub {
        text-align: left;
    }

    .stats-pg .btn-primary {
        padding: 20px 40px;
        align-self: stretch;
        text-align: center;
    }
}

.abt-pg {
    max-width: 100%;
    overflow-x: hidden;
}

.abt-pg .abt-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.abt-pg ::selection {
    background: linear-gradient(90deg, #BAB441, #CECB92);
    color: #1e1e00;
}

/* Title Block */
.abt-pg .ttl-blk {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #2a2a18;
    text-align: center;
}

.abt-pg .ttl-blk .ttl-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.abt-pg .ttl-blk .ttl-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.22;
    filter: saturate(0.6);
    display: block;
}

.abt-pg .ttl-blk .ttl-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(197deg, #FEFEFD 0%, transparent 60%);
    opacity: 0.08;
}

.abt-pg .ttl-inner {
    position: relative;
    z-index: 1;
    max-width: 740px;
}

.abt-pg .ttl-inner .ttl-label {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #BAB441;
    background: rgba(186, 180, 65, 0.12);
    border: 1px solid rgba(186, 180, 65, 0.3);
    border-radius: 4px;
    padding: 4px 20px;
    margin-bottom: 20px;
}

.abt-pg .ttl-inner h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #FEFEFD;
    margin: 0 0 20px;
    font-weight: 700;
}

.abt-pg .ttl-inner h1 .phrase-acc {
    background: linear-gradient(197deg, #BAB441, #CECB92);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.abt-pg .ttl-inner .ttl-sub {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.78);
    margin: 0;
}

/* Divider fade */
.abt-pg .div-fade {
    height: 2px;
    background: linear-gradient(90deg, transparent, #BAB441, transparent);
    opacity: 0.25;
    border: none;
    margin: 0;
}

/* Section 1 - About / Story */
.abt-pg .story-sec {
    padding: 80px 20px;
    background: #FEFEFD;
    position: relative;
}

.abt-pg .story-sec .corner-lines {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    pointer-events: none;
    overflow: hidden;
}

.abt-pg .story-sec .corner-lines::before,
.abt-pg .story-sec .corner-lines::after {
    content: "";
    position: absolute;
    right: 0;
    background: #BAB441;
    opacity: 0.35;
    border-radius: 2px;
}

.abt-pg .story-sec .corner-lines::before {
    width: 100%;
    height: 2px;
    top: 0;
    transition: opacity 0.38s ease-in-out;
}

.abt-pg .story-sec .corner-lines::after {
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    transition: opacity 0.42s ease-in-out;
}

.abt-pg .story-sec .cl-mid {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 48px;
    height: 48px;
    pointer-events: none;
    overflow: hidden;
}

.abt-pg .story-sec .cl-mid::before {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    width: 100%;
    height: 2px;
    background: #CECB92;
    opacity: 0.5;
    border-radius: 2px;
}

.abt-pg .story-sec .cl-mid::after {
    content: "";
    position: absolute;
    right: 14px;
    top: 0;
    width: 2px;
    height: 100%;
    background: #CECB92;
    opacity: 0.5;
    border-radius: 2px;
}

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

.abt-pg .story-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-pg .story-left .sec-num {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: rgba(186, 180, 65, 0.1);
    display: block;
    margin-bottom: -20px;
    letter-spacing: -0.02em;
}

.abt-pg .story-left h2 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #2a2a18;
    margin: 0;
}

.abt-pg .story-left .acc-term {
    background: linear-gradient(197deg, rgba(186, 180, 65, 0.22), rgba(206, 203, 146, 0.18));
    border-radius: 4px;
    padding: 0 8px;
    color: #2a2a18;
    font-weight: 600;
    border-left: 3px solid #BAB441;
    border-bottom: 1px solid rgba(186, 180, 65, 0.4);
}

.abt-pg .story-left .body-txt {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3a22;
    margin: 0;
}

.abt-pg .story-left .body-txt+.body-txt {
    margin-top: 0;
}

.abt-pg .story-left .stat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2a2a18;
    text-decoration: none;
    border-bottom: 2px solid #BAB441;
    padding-bottom: 4px;
    transition: color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.38s ease-in-out;
}

.abt-pg .story-left .stat-link:hover {
    color: #BAB441;
    border-color: #CECB92;
}

.abt-pg .story-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.abt-pg .story-right .img-fade-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
}

.abt-pg .story-right .img-fade-wrap img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
    transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-pg .story-right .img-fade-wrap:hover img {
    transform: scale(1.03);
}

.abt-pg .story-right .img-fade-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(197deg, rgba(186, 180, 65, 0.12) 0%, transparent 60%);
    pointer-events: none;
    border-radius: 8px;
}

/* Animated word highlight */
.abt-pg .story-right .anim-txt {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3a22;
}

.abt-pg .story-right .anim-txt .wd {
    display: inline;
    border-radius: 2px;
    padding: 0 2px;
    transition: background 0.38s ease-in-out, color 0.35s ease-in-out;
}

.abt-pg .story-right .anim-txt .wd-1 {
    animation: wdcyc 4.5s infinite 0s;
}

.abt-pg .story-right .anim-txt .wd-2 {
    animation: wdcyc 4.5s infinite 1.5s;
}

.abt-pg .story-right .anim-txt .wd-3 {
    animation: wdcyc 4.5s infinite 3s;
}

@keyframes wdcyc {

    0%,
    20% {
        background: transparent;
        color: #3a3a22;
    }

    25%,
    55% {
        background: rgba(186, 180, 65, 0.22);
        color: #2a2a18;
    }

    60%,
    100% {
        background: transparent;
        color: #3a3a22;
    }
}

/* Glossary block inside story-right */
.abt-pg .gloss-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 2px solid rgba(186, 180, 65, 0.2);
    padding-top: 20px;
}

.abt-pg .gloss-list .gl-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 20px;
    align-items: baseline;
}

.abt-pg .gloss-list .gl-term {
    font-size: 15px;
    font-weight: 700;
    color: #BAB441;
    white-space: nowrap;
}

.abt-pg .gloss-list .gl-def {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3a22;
}

/* Section 2 - Team / Approach with image bg */
.abt-pg .team-sec {
    position: relative;
    padding: 80px 20px;
    background-color: #2e2e1a;
    overflow: hidden;
}

.abt-pg .team-sec .bg-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.abt-pg .team-sec .bg-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.14;
}

.abt-pg .team-sec .bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(197deg, rgba(46, 46, 26, 0.92) 0%, rgba(46, 46, 26, 0.82) 100%);
}

/* Animated shadow drift */
.abt-pg .team-sec .shadow-drift {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 22px;
    background: rgba(186, 180, 65, 0.07);
    pointer-events: none;
    animation: driftmov 8s ease-in-out infinite alternate;
    top: 20%;
    left: -80px;
}

@keyframes driftmov {
    0% {
        transform: translate(0, 0) rotate(-6deg);
        opacity: 0.07;
    }

    50% {
        transform: translate(60px, 40px) rotate(4deg);
        opacity: 0.13;
    }

    100% {
        transform: translate(20px, 80px) rotate(-2deg);
        opacity: 0.07;
    }
}

.abt-pg .team-inner {
    position: relative;
    z-index: 1;
    max-width: 1366px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.abt-pg .team-hd {
    text-align: center;
}

.abt-pg .team-hd .sec-num {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 800;
    color: rgba(206, 203, 146, 0.08);
    display: block;
    margin-bottom: -20px;
}

.abt-pg .team-hd h2 {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 700;
    color: #FEFEFD;
    margin: 0 0 8px;
}

.abt-pg .team-hd .hd-sub {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.65);
    max-width: 560px;
    margin: 0 auto;
}

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

.abt-pg .team-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    background: rgba(254, 254, 253, 0.05);
    border: 1px solid rgba(186, 180, 65, 0.18);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    transition: background 0.38s ease-in-out, box-shadow 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.abt-pg .team-card:hover {
    background: rgba(254, 254, 253, 0.09);
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
}

.abt-pg .team-card .port-wrap {
    flex-shrink: 0;
    width: 88px;
    height: 123px;
    overflow: hidden;
}

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

.abt-pg .team-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-pg .team-card .card-body h4 {
    font-size: 18px;
    line-height: 1.1;
    font-weight: 700;
    color: #FEFEFD;
    margin: 0;
}

.abt-pg .team-card .card-body .role-lbl {
    font-size: 15px;
    font-weight: 600;
    color: #BAB441;
    display: block;
}

.abt-pg .team-card .card-body .card-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.72);
    margin: 0;
}

.abt-pg .team-card.no-port {
    align-items: flex-start;
}

.abt-pg .team-card.no-port .port-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 22px;
    background: rgba(186, 180, 65, 0.18);
    border: 2px solid rgba(186, 180, 65, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-pg .team-card.no-port .port-icon svg {
    width: 22px;
    height: 22px;
    fill: #BAB441;
}

/* Values strip inside team-sec */
.abt-pg .vals-strip {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(186, 180, 65, 0.15);
}

.abt-pg .vals-strip .val-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    min-width: 140px;
}

.abt-pg .vals-strip .val-num {
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
    color: #BAB441;
}

.abt-pg .vals-strip .val-lbl {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.65);
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .abt-pg .ttl-inner h1 {
        font-size: 28px;
    }

    .abt-pg .ttl-blk {
        padding: 40px 20px;
    }

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

    .abt-pg .story-sec {
        padding: 40px 20px;
    }

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

    .abt-pg .team-sec {
        padding: 40px 20px;
    }

    .abt-pg .team-card {
        flex-direction: column;
    }

    .abt-pg .team-card .port-wrap {
        width: 72px;
        height: 100px;
    }

    .abt-pg .vals-strip {
        gap: 20px;
    }

    .abt-pg .story-left .sec-num,
    .abt-pg .team-hd .sec-num {
        font-size: 52px;
    }
}

@media (max-width: 1280px) {
    .abt-pg .story-wrap {
        gap: 40px;
    }

    .abt-pg .team-grid {
        gap: 20px;
    }
}

.cont-pg {
    max-width: 100%;
    overflow-x: hidden;
}

.cont-pg .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
}

.cont-pg .scanline-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.cont-pg .scanline-bg::before {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 300%;
    background: repeating-linear-gradient(to bottom,
            transparent 0px,
            transparent 18px,
            rgba(186, 180, 65, 0.03) 18px,
            rgba(186, 180, 65, 0.03) 20px);
    animation: scanDrift 18s linear infinite;
}

@keyframes scanDrift {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(33.33%);
    }
}

.cont-pg .split-screen {
    position: relative;
    display: flex;
    flex-direction: row;
    min-height: 420px;
}

.cont-pg .split-left {
    flex: 1 1 52%;
    background: #BAB441;
    padding: 80px 40px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cont-pg .split-left::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 340px;
    height: 340px;
    border: 2px solid rgba(254, 254, 253, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.cont-pg .split-left::before {
    content: "";
    position: absolute;
    bottom: 40px;
    right: 20px;
    width: 180px;
    height: 180px;
    border: 1.5px solid rgba(254, 254, 253, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.cont-pg .corner-lines {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    pointer-events: none;
}

.cont-pg .corner-lines span {
    display: block;
    height: 1.5px;
    background: rgba(254, 254, 253, 0.35);
    margin-bottom: 6px;
    border-radius: 2px;
}

.cont-pg .corner-lines span:nth-child(1) {
    width: 48px;
}

.cont-pg .corner-lines span:nth-child(2) {
    width: 32px;
}

.cont-pg .corner-lines span:nth-child(3) {
    width: 20px;
}

.cont-pg .split-label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(254, 254, 253, 0.7);
    margin-bottom: 20px;
    display: block;
}

.cont-pg .split-heading {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.1;
    color: #FEFEFD;
    margin: 0 0 20px 0;
}

.cont-pg .split-desc {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.88);
    max-width: 380px;
    margin: 0;
}

.cont-pg .split-right {
    flex: 1 1 48%;
    background: #FEFEFD;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.cont-pg .split-diag {
    position: absolute;
    top: 0;
    left: -1px;
    width: 60px;
    height: 100%;
    background: #BAB441;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    pointer-events: none;
}

.cont-pg .contact-meta {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 40px;
}

.cont-pg .meta-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cont-pg .meta-lbl {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #BAB441;
}

.cont-pg .meta-val {
    font-size: 18px;
    line-height: 1.55;
    color: #2a2a1e;
}

.cont-pg .meta-val a {
    color: #2a2a1e;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.cont-pg .meta-val a:hover {
    color: #BAB441;
}

.cont-pg .svg-divider {
    line-height: 0;
    background: #FEFEFD;
}

.cont-pg .svg-divider svg {
    display: block;
    width: 100%;
}

.cont-pg .form-panel {
    background: #f5f4e8;
    position: relative;
    padding: 80px 0;
}

.cont-pg .form-panel-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cont-pg .form-panel-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(197deg, #CECB92 0%, transparent 80%);
    opacity: 0.38;
}

.cont-pg .form-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.cont-pg .form-aside {
    flex: 0 0 320px;
    padding-top: 8px;
}

.cont-pg .aside-num {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    color: rgba(186, 180, 65, 0.12);
    display: block;
    margin-bottom: 4px;
    user-select: none;
}

.cont-pg .aside-heading {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    color: #2a2a1e;
    margin: 0 0 20px 0;
}

.cont-pg .aside-body {
    font-size: 18px;
    line-height: 1.55;
    color: #4a4830;
    margin: 0 0 20px 0;
}

.cont-pg .aside-note {
    font-size: 15px;
    line-height: 1.55;
    color: #6a6640;
    margin: 0;
    padding-left: 8px;
    border-left: 3px solid #BAB441;
    border-top: 1px solid rgba(186, 180, 65, 0.3);
    border-bottom: 1px solid rgba(186, 180, 65, 0.3);
    padding: 8px 8px 8px 12px;
    border-radius: 2px;
}

.cont-pg .form-col {
    flex: 1 1 0;
}

.cont-pg .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cont-pg .field-grp {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cont-pg .field-grp label {
    font-size: 15px;
    font-weight: 700;
    color: #2a2a1e;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cont-pg .field-grp input,
.cont-pg .field-grp select,
.cont-pg .field-grp textarea {
    background: #FEFEFD;
    border: 2px solid rgba(186, 180, 65, 0.3);
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 18px;
    color: #2a2a1e;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
    transition: border-color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    appearance: none;
    -webkit-appearance: none;
}

.cont-pg .field-grp input::placeholder,
.cont-pg .field-grp textarea::placeholder {
    color: #a09e7a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cont-pg .field-grp input:focus,
.cont-pg .field-grp select:focus,
.cont-pg .field-grp textarea:focus {
    outline: none;
    border-color: #BAB441;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
}

.cont-pg .field-grp select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' stroke='%23BAB441' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.cont-pg .field-grp select option {
    color: #2a2a1e;
    background: #FEFEFD;
}

.cont-pg .field-grp textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.55;
}

.cont-pg .field-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.cont-pg .field-row .field-grp {
    flex: 1 1 0;
}

.cont-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.cont-pg .privacy-row input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(186, 180, 65, 0.5);
    border-radius: 4px;
    background: #FEFEFD;
    cursor: pointer;
    margin-top: 2px;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    box-shadow: none;
    flex-shrink: 0;
    position: relative;
}

.cont-pg .privacy-row input[type="checkbox"]:checked {
    background: #BAB441;
    border-color: #BAB441;
    box-shadow: inset 0 0 0 3px #FEFEFD, inset 0 0 0 5px #BAB441;
}

.cont-pg .privacy-row input[type="checkbox"]:focus {
    outline: 2px solid #BAB441;
    outline-offset: 2px;
}

.cont-pg .privacy-text {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4830;
    margin: 0;
}

.cont-pg .privacy-text a {
    color: #BAB441;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.35s ease-in-out;
}

.cont-pg .privacy-text a:hover {
    color: #2a2a1e;
}

.cont-pg .submit-btn {
    display: inline-block;
    position: relative;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    color: #2a2a1e;
    background: transparent;
    border: 2px solid #BAB441;
    border-radius: 4px;
    cursor: pointer;
    overflow: hidden;
    text-transform: lowercase;
    letter-spacing: 0.04em;
    align-self: flex-start;
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
    transition: color 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.cont-pg .submit-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #BAB441;
    z-index: -1;
    transition: height 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    border-radius: 0 0 2px 2px;
}

.cont-pg .submit-btn:hover::before {
    height: 100%;
}

.cont-pg .submit-btn:hover {
    color: #FEFEFD;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
}

.cont-pg .submit-btn:active {
    box-shadow: inset 1px 3px 6px 1px rgba(186, 180, 65, 0.18);
}

.cont-pg .submit-btn:focus-visible {
    outline: 2px solid #BAB441;
    outline-offset: 3px;
}

@media (max-width: 1280px) {
    .cont-pg .split-heading {
        font-size: 40px;
    }

    .cont-pg .form-inner {
        gap: 40px;
    }

    .cont-pg .form-aside {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .cont-pg .split-screen {
        flex-direction: column;
        min-height: unset;
    }

    .cont-pg .split-left {
        padding: 40px 20px;
    }

    .cont-pg .split-right {
        padding: 40px 20px;
    }

    .cont-pg .split-diag {
        display: none;
    }

    .cont-pg .contact-meta {
        padding-left: 0;
    }

    .cont-pg .split-heading {
        font-size: 28px;
    }

    .cont-pg .split-desc {
        font-size: 15px;
    }

    .cont-pg .form-inner {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .cont-pg .form-aside {
        flex: unset;
        width: 100%;
    }

    .cont-pg .field-row {
        flex-direction: column;
        gap: 20px;
    }

    .cont-pg .form-panel {
        padding: 40px 0;
    }

    .cont-pg .aside-num {
        font-size: 52px;
    }
}

.lrn-prog {
    max-width: 100%;
    overflow-x: hidden;
}

.lrn-prog .prog-strip {
    position: relative;
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
}

.lrn-prog .title-img-strip {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.lrn-prog .title-img-strip::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, #2a2a1e);
    pointer-events: none;
}

.lrn-prog .title-block {
    background: #2a2a1e;
    padding: 20px 80px 80px;
    position: relative;
    overflow: hidden;
}

.lrn-prog .title-block .quote-bg {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 280px;
    line-height: 1.1;
    color: #BAB441;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    font-weight: 900;
}

.lrn-prog .title-block .tb-inner {
    position: relative;
    z-index: 1;
    max-width: 1366px;
    margin: 0 auto;
}

.lrn-prog .title-block .prog-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #BAB441;
    border: 1px dashed #BAB441;
    border-radius: 4px;
    padding: 4px 20px;
    margin-bottom: 20px;
}

.lrn-prog .title-block h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #FEFEFD;
    margin: 0 0 20px;
    max-width: 780px;
}

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

.lrn-prog .title-block .tb-points li {
    font-size: 18px;
    line-height: 1.55;
    color: #CECB92;
    padding-left: 20px;
    position: relative;
}

.lrn-prog .title-block .tb-points li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #BAB441;
}

.lrn-prog .divider-wave-1 {
    display: block;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: #2a2a1e;
}

.lrn-prog .divider-wave-1 svg {
    display: block;
    width: 100%;
}

.lrn-prog .curriculum-sec {
    background: #FEFEFD;
    padding: 80px 80px;
    position: relative;
}

.lrn-prog .curriculum-sec .geo-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lrn-prog .curriculum-sec .geo-bg span {
    position: absolute;
    display: block;
    opacity: 0.045;
    background: #BAB441;
}

.lrn-prog .curriculum-sec .geo-bg span:nth-child(1) {
    width: 32px;
    height: 32px;
    top: 8%;
    left: 6%;
    border-radius: 2px;
    transform: rotate(22deg);
}

.lrn-prog .curriculum-sec .geo-bg span:nth-child(2) {
    width: 18px;
    height: 18px;
    top: 22%;
    left: 88%;
    border-radius: 2px;
    transform: rotate(45deg);
}

.lrn-prog .curriculum-sec .geo-bg span:nth-child(3) {
    width: 44px;
    height: 8px;
    top: 55%;
    left: 3%;
    border-radius: 2px;
    transform: rotate(-12deg);
}

.lrn-prog .curriculum-sec .geo-bg span:nth-child(4) {
    width: 24px;
    height: 24px;
    top: 78%;
    left: 75%;
    border-radius: 50%;
}

.lrn-prog .curriculum-sec .geo-bg span:nth-child(5) {
    width: 56px;
    height: 10px;
    top: 90%;
    left: 55%;
    border-radius: 2px;
    transform: rotate(8deg);
}

.lrn-prog .curriculum-sec .geo-bg span:nth-child(6) {
    width: 20px;
    height: 20px;
    top: 40%;
    left: 92%;
    border-radius: 2px;
    transform: rotate(30deg);
}

.lrn-prog .curr-inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lrn-prog .curr-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
}

.lrn-prog .curr-head h2 {
    font-size: 28px;
    line-height: 1.1;
    color: #2a2a1e;
    margin: 0 0 8px;
    position: relative;
}

.lrn-prog .curr-head .faded-num {
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: #BAB441;
    opacity: 0.09;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.lrn-prog .curr-head .h2-wrap {
    position: relative;
    display: inline-block;
    padding: 8px 40px;
}

.lrn-prog .curr-head p {
    font-size: 18px;
    line-height: 1.55;
    color: #4a4a38;
    max-width: 640px;
    margin: 0;
}

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

.lrn-prog .curr-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lrn-prog .module-item {
    border: 1px solid #CECB92;
    border-radius: 8px;
    padding: 20px;
    background: #FEFEFD;
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
    transition: box-shadow 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.35s ease-in-out;
    position: relative;
}

.lrn-prog .module-item:hover {
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    border-color: #BAB441;
}

.lrn-prog .module-item .mod-num {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BAB441;
    font-weight: 700;
    margin-bottom: 4px;
}

.lrn-prog .module-item h4 {
    font-size: 18px;
    line-height: 1.55;
    color: #2a2a1e;
    margin: 0 0 8px;
}

.lrn-prog .module-item p {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a38;
    margin: 0;
}

.lrn-prog .module-item .fill-bar {
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.lrn-prog .module-item .fill-bar .bar-num {
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
    color: #BAB441;
    min-width: 40px;
}

.lrn-prog .module-item .fill-bar .bar-track {
    flex: 1;
    height: 3px;
    background: #CECB92;
    border-radius: 2px;
    overflow: hidden;
}

.lrn-prog .module-item .fill-bar .bar-fill {
    height: 100%;
    background: linear-gradient(197deg, #BAB441, transparent);
    border-radius: 2px;
    transition: width 0.45s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.lrn-prog .module-item .fill-bar .bar-label {
    font-size: 15px;
    line-height: 1.55;
    color: #6a6a50;
    white-space: nowrap;
}

.lrn-prog .curr-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lrn-prog .curr-img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.42s ease-in-out, transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.lrn-prog .curr-img-wrap.vis {
    opacity: 1;
    transform: translateY(0);
}

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

.lrn-prog .compare-block {
    border: 1px dashed #BAB441;
    border-radius: 8px;
    padding: 20px;
    background: linear-gradient(197deg, #FEFEFD, transparent);
}

.lrn-prog .compare-block h5 {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #BAB441;
    margin: 0 0 12px;
}

.lrn-prog .compare-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lrn-prog .compare-col h6 {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2a1e;
    font-weight: 700;
    margin: 0 0 8px;
    padding-bottom: 4px;
    border-bottom: 2px solid #BAB441;
    display: inline-block;
}

.lrn-prog .compare-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lrn-prog .compare-col ul li {
    font-size: 15px;
    line-height: 1.55;
    color: #4a4a38;
    padding-left: 16px;
    position: relative;
}

.lrn-prog .compare-col ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #CECB92;
}

.lrn-prog .compare-col.after ul li::before {
    color: #BAB441;
}

.lrn-prog .reviews-sec {
    background: linear-gradient(197deg, #2a2a1e 0%, #3d3c20 60%, #2a2a1e 100%);
    padding: 80px 80px;
    position: relative;
    overflow: hidden;
}

.lrn-prog .aurora-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.lrn-prog .aurora-bg .aurora-z1 {
    position: absolute;
    width: 70%;
    height: 60%;
    top: -10%;
    left: -10%;
    background: radial-gradient(ellipse at 30% 40%, rgba(186, 180, 65, 0.13) 0%, transparent 70%);
    border-radius: 50%;
    animation: aurora-drift-a 14s ease-in-out infinite alternate;
}

.lrn-prog .aurora-bg .aurora-z2 {
    position: absolute;
    width: 55%;
    height: 70%;
    bottom: -15%;
    right: -5%;
    background: radial-gradient(ellipse at 60% 50%, rgba(206, 203, 146, 0.10) 0%, transparent 65%);
    border-radius: 50%;
    animation: aurora-drift-b 18s ease-in-out infinite alternate;
}

@keyframes aurora-drift-a {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.08);
    }
}

@keyframes aurora-drift-b {
    0% {
        transform: translate(0, 0) scale(1.05);
    }

    100% {
        transform: translate(-30px, -20px) scale(1);
    }
}

.lrn-prog .rev-inner {
    max-width: 1366px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lrn-prog .rev-head {
    text-align: center;
    margin-bottom: 40px;
}

.lrn-prog .rev-head h3 {
    font-size: 28px;
    line-height: 1.1;
    color: #FEFEFD;
    margin: 0 0 8px;
}

.lrn-prog .rev-head p {
    font-size: 18px;
    line-height: 1.55;
    color: #CECB92;
    max-width: 580px;
    margin: 0 auto;
}

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

.lrn-prog .rev-portraits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lrn-prog .rev-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    background: rgba(254, 254, 253, 0.05);
    border: 1px solid rgba(186, 180, 65, 0.22);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
    transition: box-shadow 0.40s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.35s ease-in-out;
}

.lrn-prog .rev-card:hover {
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
    border-color: #BAB441;
}

.lrn-prog .rev-card .portrait-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #BAB441;
}

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

.lrn-prog .rev-card .rev-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lrn-prog .rev-card .rev-name {
    font-size: 15px;
    line-height: 1.55;
    font-weight: 700;
    color: #FEFEFD;
}

.lrn-prog .rev-card .rev-role {
    font-size: 15px;
    line-height: 1.55;
    color: #BAB441;
}

.lrn-prog .rev-card .rev-body {
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    margin: 4px 0 0;
}

.lrn-prog .rev-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lrn-prog .rev-img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.42s ease-in-out, transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.lrn-prog .rev-img-wrap.vis {
    opacity: 1;
    transform: translateY(0);
}

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

.lrn-prog .metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.lrn-prog .metric-item {
    background: rgba(254, 254, 253, 0.04);
    border: 1px solid rgba(206, 203, 146, 0.18);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: background 0.38s ease-in-out;
}

.lrn-prog .metric-item:hover {
    background: rgba(186, 180, 65, 0.08);
}

.lrn-prog .metric-item .met-val {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #BAB441;
    display: block;
}

.lrn-prog .metric-item .met-desc {
    font-size: 15px;
    line-height: 1.55;
    color: #CECB92;
    display: block;
    margin-top: 4px;
}

.lrn-prog .cta-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.lrn-prog .btn-enrol {
    display: inline-block;
    font-size: 18px;
    line-height: 1.55;
    color: #2a2a1e;
    background: #BAB441;
    border: none;
    border-radius: 4px;
    padding: 20px 40px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.38s ease-in-out;
    text-decoration: none;
}

.lrn-prog .btn-enrol::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: #2a2a1e;
    transition: height 0.40s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.lrn-prog .btn-enrol:hover::before {
    height: 100%;
}

.lrn-prog .btn-enrol:hover {
    color: #BAB441;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
}

.lrn-prog .btn-enrol span {
    position: relative;
    z-index: 1;
}

.lrn-prog .btn-enrol:focus-visible {
    outline: 2px solid #BAB441;
    outline-offset: 4px;
}

.lrn-prog .btn-enrol:active {
    box-shadow: inset 1px 3px 6px 1px rgba(186, 180, 65, 0.18);
}

@media (max-width: 1280px) {
    .lrn-prog .title-block {
        padding: 20px 40px 80px;
    }

    .lrn-prog .curriculum-sec {
        padding: 80px 40px;
    }

    .lrn-prog .reviews-sec {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .lrn-prog .title-block {
        padding: 20px 20px 80px;
    }

    .lrn-prog .title-block h1 {
        font-size: 28px;
    }

    .lrn-prog .title-block .quote-bg {
        font-size: 140px;
    }

    .lrn-prog .curriculum-sec {
        padding: 40px 20px;
    }

    .lrn-prog .curr-split {
        grid-template-columns: 1fr;
    }

    .lrn-prog .reviews-sec {
        padding: 40px 20px;
    }

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

    .lrn-prog .metrics-row {
        grid-template-columns: 1fr;
    }

    .lrn-prog .compare-cols {
        grid-template-columns: 1fr;
    }

    .lrn-prog .title-img-strip {
        height: 140px;
    }

    .lrn-prog .cta-row {
        flex-direction: column;
    }
}

.rt {
    max-width: 100%;
    overflow-x: hidden;
}

.rt .pg-wrap {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt ::selection {
    background: linear-gradient(90deg, #BAB441, #CECB92);
    color: #1e1e00;
}

.rt .svg-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

/* ─── SECTION 1: TITLE BLOCK ─── */
.rt .s1 {
    background-color: #FEFEFD;
    padding: 80px 0 0;
    position: relative;
}

.rt .s1-grid {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 520px;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt .s1-left {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 40px 80px 0;
    position: relative;
}

.rt .s1-right {
    flex: 0 0 60%;
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.rt .s1-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.rt .s1-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px 8px 0 0;
    opacity: 0;
    animation: fadeImg 0.45s cubic-bezier(0.34, 1.2, 0.64, 1) 0.1s forwards;
}

@keyframes fadeImg {
    to {
        opacity: 1;
    }
}

.rt .s1-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 3px,
            rgba(186, 180, 65, 0.06) 3px,
            rgba(186, 180, 65, 0.06) 4px);
    pointer-events: none;
    border-radius: 8px 8px 0 0;
}

.rt .s1-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(186, 180, 65, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(186, 180, 65, 0.07) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    border-radius: 8px;
}

.rt .s1-bracket-left {
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 180px;
    pointer-events: none;
}

.rt .s1-bracket-left svg {
    width: 100%;
    height: 100%;
}

.rt .s1-eyebrow {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #BAB441;
    margin-bottom: 20px;
    font-weight: 700;
}

.rt .s1-h1 {
    font-size: 52px;
    line-height: 1.1;
    color: #2a2800;
    font-weight: 800;
    margin-bottom: 20px;
}

.rt .s1-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3a3600;
    max-width: 380px;
    margin-bottom: 40px;
}

.rt .s1-cta {
    display: inline-block;
    padding: 20px 40px;
    background: #BAB441;
    color: #1e1e00;
    font-size: 15px;
    font-weight: 700;
    text-transform: lowercase;
    text-decoration: none;
    border-radius: 4px;
    border: 2px solid #BAB441;
    position: relative;
    overflow: hidden;
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.38s ease-in-out;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
}

.rt .s1-cta::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: #2a2800;
    transition: height 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.rt .s1-cta:hover::before {
    height: 100%;
}

.rt .s1-cta:hover {
    color: #FEFEFD;
    border-color: #2a2800;
}

.rt .s1-cta span {
    position: relative;
    z-index: 1;
}

.rt .s1-cta:focus-visible {
    outline: 2px dashed #BAB441;
    outline-offset: 4px;
}

/* ─── SVG DIVIDER 1 ─── */
.rt .div1 {
    background: #FEFEFD;
    line-height: 0;
}

.rt .div1 svg {
    display: block;
    width: 100%;
}

/* ─── SECTION 2: CONDITIONS ─── */
.rt .s2 {
    background: linear-gradient(197deg, #FEFEFD 0%, transparent 100%), #f5f3e0;
    padding: 80px 0;
}

.rt .s2-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: start;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt .s2-left {
    padding-right: 40px;
}

.rt .s2-label {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BAB441;
    font-weight: 700;
    margin-bottom: 20px;
}

.rt .s2-h2 {
    font-size: 28px;
    line-height: 1.1;
    color: #2a2800;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.rt .s2-fade-num {
    position: absolute;
    top: -20px;
    left: -8px;
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(186, 180, 65, 0.08);
    pointer-events: none;
    user-select: none;
}

.rt .s2-body {
    font-size: 18px;
    line-height: 1.55;
    color: #2a2800;
    margin-bottom: 20px;
}

.rt .s2-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rt .s2-list li {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3600;
    padding: 8px 0;
    border-bottom: 1px solid rgba(186, 180, 65, 0.2);
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.rt .s2-list li::before {
    content: '-';
    color: #BAB441;
    flex-shrink: 0;
    font-weight: 700;
}

.rt .s2-right {
    position: relative;
}

.rt .s2-img-frame {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
    border: 2px solid rgba(186, 180, 65, 0.2);
    border-top: 4px solid #BAB441;
}

.rt .s2-img-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.rt .s2-img-frame:hover img {
    transform: scale(1.03);
}

/* ─── SVG DIVIDER 2 ─── */
.rt .div2 {
    background: #f5f3e0;
    line-height: 0;
}

/* ─── SECTION 3: WHAT GRADUATION LOOKS LIKE ─── */
.rt .s3 {
    background-color: #2a2800;
    padding: 80px 0;
    position: relative;
}

.rt .s3-bg-img {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 0;
}

.rt .s3-bg-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.18;
    display: block;
}

.rt .s3-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(197deg, rgba(42, 40, 0, 0.88) 0%, rgba(42, 40, 0, 0.72) 100%);
    pointer-events: none;
}

.rt .s3-inner {
    position: relative;
    z-index: 1;
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt .s3-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.rt .s3-fade-num {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(254, 254, 253, 0.05);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.rt .s3-label {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #CECB92;
    font-weight: 700;
    margin-bottom: 20px;
}

.rt .s3-h2 {
    font-size: 28px;
    line-height: 1.1;
    color: #FEFEFD;
    font-weight: 800;
    margin-bottom: 0;
}

.rt .s3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.rt .s3-card {
    background: rgba(254, 254, 253, 0.06);
    border: 1px solid rgba(206, 203, 146, 0.18);
    border-radius: 8px;
    padding: 40px 20px;
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.35s ease-in-out;
    cursor: default;
}

.rt .s3-card:hover {
    transform: translateY(-6px);
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
    border-color: rgba(206, 203, 146, 0.4);
    border-style: dashed;
}

.rt .s3-card-num {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(206, 203, 146, 0.15);
    margin-bottom: 8px;
    display: block;
}

.rt .s3-card-h {
    font-size: 18px;
    line-height: 1.55;
    color: #CECB92;
    font-weight: 700;
    margin-bottom: 8px;
}

.rt .s3-card-p {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.8);
}

/* ─── SVG DIVIDER 3 ─── */
.rt .div3 {
    background: #2a2800;
    line-height: 0;
}

/* ─── SECTION 4: REPUTATION ─── */
.rt .s4 {
    background: #FEFEFD;
    padding: 80px 0;
}

.rt .s4-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt .s4-layout {
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: start;
}

.rt .s4-img-col {
    flex: 0 0 38%;
    position: relative;
}

.rt .s4-img-offset {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
}

.rt .s4-img-offset img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.rt .s4-img-offset:hover img {
    transform: scale(1.03);
}

.rt .s4-bracket {
    position: absolute;
    top: 0;
    right: -16px;
    width: 32px;
    height: 200px;
    pointer-events: none;
}

.rt .s4-text-col {
    flex: 1;
    padding-top: 0;
}

.rt .s4-label {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BAB441;
    font-weight: 700;
    margin-bottom: 20px;
}

.rt .s4-h2 {
    font-size: 28px;
    line-height: 1.1;
    color: #2a2800;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.rt .s4-fade-num {
    position: absolute;
    top: -20px;
    right: 0;
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(186, 180, 65, 0.07);
    pointer-events: none;
    user-select: none;
}

.rt .s4-body {
    font-size: 18px;
    line-height: 1.55;
    color: #2a2800;
    margin-bottom: 20px;
}

.rt .s4-refs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.rt .s4-ref-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(186, 180, 65, 0.18);
    border-left: 4px solid #BAB441;
    background: linear-gradient(197deg, rgba(254, 254, 253, 1) 0%, rgba(245, 243, 224, 0.5) 100%);
    transition: box-shadow 0.38s ease-in-out, border-color 0.38s ease-in-out;
}

.rt .s4-ref-item:hover {
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    border-color: rgba(186, 180, 65, 0.4);
    border-left-color: #BAB441;
    border-style: dashed;
    border-left-style: solid;
}

.rt .s4-portrait {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    border: 2px solid rgba(186, 180, 65, 0.3);
}

.rt .s4-ref-body {
    flex: 1;
}

.rt .s4-ref-quote {
    font-size: 15px;
    line-height: 1.55;
    color: #2a2800;
    margin-bottom: 8px;
    font-style: italic;
}

.rt .s4-ref-name {
    font-size: 15px;
    line-height: 1.55;
    color: #BAB441;
    font-weight: 700;
}

.rt .s4-ref-role {
    font-size: 15px;
    line-height: 1.55;
    color: #5a5500;
}

/* ─── SVG DIVIDER 4 ─── */
.rt .div4 {
    background: #FEFEFD;
    line-height: 0;
}

/* ─── SECTION 5: SUPPORT ─── */
.rt .s5 {
    background: linear-gradient(197deg, #f5f3e0 0%, #FEFEFD 100%);
    padding: 80px 0;
}

.rt .s5-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt .s5-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.rt .s5-fade-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(186, 180, 65, 0.07);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.rt .s5-label {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #BAB441;
    font-weight: 700;
    margin-bottom: 20px;
}

.rt .s5-h2 {
    font-size: 28px;
    line-height: 1.1;
    color: #2a2800;
    font-weight: 800;
}

.rt .s5-body-center {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.55;
    color: #2a2800;
}

.rt .s5-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rt .s5-item {
    padding: 40px;
    border-radius: 8px;
    background: #FEFEFD;
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
    border: 1px solid rgba(186, 180, 65, 0.15);
    transition: box-shadow 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.35s ease-in-out;
}

.rt .s5-item:hover {
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
    transform: translateY(-4px);
    border-color: rgba(186, 180, 65, 0.35);
    border-style: dashed;
}

.rt .s5-item-h {
    font-size: 18px;
    line-height: 1.55;
    color: #2a2800;
    font-weight: 700;
    margin-bottom: 8px;
}

.rt .s5-item-p {
    font-size: 15px;
    line-height: 1.55;
    color: #3a3600;
}

.rt .s5-item-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.55;
    color: #BAB441;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}

/* ─── SVG DIVIDER 5 ─── */
.rt .div5 {
    background: linear-gradient(197deg, #f5f3e0 0%, #FEFEFD 100%);
    line-height: 0;
}

/* ─── SECTION 6: NUMBERS ─── */
.rt .s6 {
    background: #2a2800;
    padding: 80px 0;
}

.rt .s6-inner {
    max-width: 1366px;
    margin: 0 auto;
    padding: 0 20px;
}

.rt .s6-head {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.rt .s6-fade-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 68px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(254, 254, 253, 0.04);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.rt .s6-label {
    font-size: 15px;
    line-height: 1.55;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #CECB92;
    font-weight: 700;
    margin-bottom: 20px;
}

.rt .s6-h2 {
    font-size: 28px;
    line-height: 1.1;
    color: #FEFEFD;
    font-weight: 800;
}

.rt .s6-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.rt .s6-metric {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(206, 203, 146, 0.15);
    border-radius: 8px;
    background: rgba(254, 254, 253, 0.04);
    transition: border-color 0.38s ease-in-out, background 0.38s ease-in-out, transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.rt .s6-metric:hover {
    border-color: rgba(206, 203, 146, 0.35);
    border-style: dashed;
    background: rgba(254, 254, 253, 0.07);
    transform: translateY(-4px);
}

.rt .s6-metric-val {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: #BAB441;
    display: block;
    margin-bottom: 8px;
}

.rt .s6-metric-label {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.75);
}

.rt .s6-arrow-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    border-radius: 8px;
    background: rgba(206, 203, 146, 0.07);
    border: 1px solid rgba(206, 203, 146, 0.12);
}

.rt .s6-arrow-from {
    text-align: right;
}

.rt .s6-arrow-num {
    font-size: 52px;
    line-height: 1.1;
    font-weight: 900;
    color: rgba(254, 254, 253, 0.35);
    display: block;
}

.rt .s6-arrow-desc {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(254, 254, 253, 0.55);
}

.rt .s6-arrow-svg {
    flex-shrink: 0;
}

.rt .s6-arrow-to {
    text-align: left;
}

.rt .s6-arrow-to .s6-arrow-num {
    color: #BAB441;
}

.rt .s6-arrow-to .s6-arrow-desc {
    color: #CECB92;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1280px) {
    .rt .s1-h1 {
        font-size: 52px;
    }

    .rt .s6-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rt .s1-grid {
        flex-direction: column;
    }

    .rt .s1-left {
        flex: none;
        padding: 40px 0 20px;
    }

    .rt .s1-right {
        flex: none;
        height: 280px;
        border-radius: 8px;
    }

    .rt .s1-right img {
        border-radius: 8px;
    }

    .rt .s1-h1 {
        font-size: 28px;
    }

    .rt .s1-bracket-left {
        display: none;
    }

    .rt .s2-grid {
        grid-template-columns: 1fr;
    }

    .rt .s2-left {
        padding-right: 0;
    }

    .rt .s3-cols {
        grid-template-columns: 1fr;
    }

    .rt .s4-layout {
        flex-direction: column;
    }

    .rt .s4-img-col {
        flex: none;
        width: 100%;
    }

    .rt .s4-img-offset {
        margin-top: 0;
    }

    .rt .s4-img-offset img {
        aspect-ratio: 16/9;
    }

    .rt .s4-bracket {
        display: none;
    }

    .rt .s5-grid {
        grid-template-columns: 1fr;
    }

    .rt .s6-metrics {
        grid-template-columns: 1fr 1fr;
    }

    .rt .s6-arrow-row {
        flex-direction: column;
        text-align: center;
    }

    .rt .s6-arrow-from {
        text-align: center;
    }

    .rt .s6-arrow-to {
        text-align: center;
    }
}

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

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

.pg-success .icon-ring {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background: linear-gradient(197deg, #BAB441, #CECB92);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
}

.pg-success .icon-ring svg {
    display: block;
}

.pg-success .success-heading {
    font-size: 52px;
    line-height: 1.1;
    color: #2b2a1e;
    margin: 0 0 20px;
    font-weight: 700;
}

.pg-success .success-sub {
    font-size: 18px;
    line-height: 1.55;
    color: #3d3c28;
    margin: 0 0 40px;
}

.pg-success .divider-line {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(197deg, #BAB441, #CECB92);
    margin: 0 auto 40px;
}

.pg-success .detail-block {
    background: #f7f7ee;
    border-radius: 8px;
    padding: 20px;
    margin: 0 0 40px;
    text-align: left;
    border-top: 3px solid #BAB441;
    box-shadow: 1px 3px 6px 1px rgba(186, 180, 65, 0.06);
}

.pg-success .detail-block .detail-label {
    font-size: 15px;
    line-height: 1.55;
    color: #7a7840;
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.pg-success .detail-block .detail-text {
    font-size: 15px;
    line-height: 1.55;
    color: #2b2a1e;
    margin: 0;
}

.pg-success .detail-block .detail-text a {
    color: #7a7840;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.pg-success .detail-block .detail-text a:hover {
    color: #BAB441;
}

.pg-success .action-row {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pg-success .btn-primary {
    display: inline-block;
    padding: 20px 40px;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 600;
    color: #2b2a1e;
    background: #BAB441;
    border-radius: 4px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 1px 4px 14px 1px rgba(186, 180, 65, 0.11);
    transition: color 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.38s ease-in-out;
}

.pg-success .btn-primary::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2b2a1e;
    border-radius: 4px;
    transition: height 0.42s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.pg-success .btn-primary:hover::before {
    height: 100%;
}

.pg-success .btn-primary:hover {
    color: #FEFEFD;
    box-shadow: 1px 8px 44px 1px rgba(186, 180, 65, 0.11);
}

.pg-success .btn-primary span {
    position: relative;
    z-index: 1;
}

.pg-success .btn-secondary {
    display: inline-block;
    padding: 20px 40px;
    font-size: 15px;
    line-height: 1.1;
    font-weight: 600;
    color: #2b2a1e;
    background: transparent;
    border-radius: 4px;
    text-decoration: none;
    border: 2px solid #CECB92;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.35s cubic-bezier(0.34, 1.2, 0.64, 1), border-color 0.35s ease-in-out;
}

.pg-success .btn-secondary::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #CECB92;
    border-radius: 2px;
    transition: height 0.4s cubic-bezier(0.34, 1.2, 0.64, 1);
    z-index: 0;
}

.pg-success .btn-secondary:hover::before {
    height: 100%;
}

.pg-success .btn-secondary:hover {
    color: #2b2a1e;
    border-color: #BAB441;
}

.pg-success .btn-secondary span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .pg-success {
        padding: 80px 20px;
    }

    .pg-success .success-heading {
        font-size: 28px;
    }

    .pg-success .action-row {
        flex-direction: column;
        align-items: stretch;
    }

    .pg-success .btn-primary,
    .pg-success .btn-secondary {
        text-align: center;
    }
}