* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    min-height: 100vh;
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
}

.brand-hdr {
    background: linear-gradient(160deg, #1b0e0f 0%, #2a1214 55%, #1a0d0e 100%);
    position: relative;
    overflow: hidden;
}

.brand-hdr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 88, 89, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.brand-hdr-plate {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 48px 0 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.brand-pod {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.brand-logo-cell {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-frame {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(232, 198, 207, 0.4);
    border-radius: 9px;
    padding: 4px;
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05), 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    background: rgba(200, 88, 89, 0.06);
    flex-shrink: 0;
}

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

.brand-name-text {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAF7F8;
    margin: 0;
}

.brand-tagline {
    font-size: 15px;
    line-height: 1.5;
    color: #E8C6CF;
    letter-spacing: 0.04em;
    padding-right: 4px;
    opacity: 0.85;
}

.hdr-contact-pod {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding-top: 8px;
}

.hdr-phone-link {
    font-size: 15px;
    line-height: 1.5;
    color: #E8C6CF;
    text-decoration: none;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hdr-phone-link:hover {
    color: #FAF7F8;
}

.hdr-phone-link:focus {
    outline: 2px solid #C85859;
    outline-offset: 2px;
    border-radius: 2px;
}

.hdr-phone-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #C85859;
    stroke-width: 2;
    flex-shrink: 0;
}

.hdr-email-link {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.7);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.5s ease;
}

.hdr-email-link:hover {
    color: #E8C6CF;
}

.hdr-email-link:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
    border-radius: 2px;
}

.hdr-nav-strip {
    background: rgba(200, 88, 89, 0.08);
    border-top: 1px solid rgba(200, 88, 89, 0.18);
    margin-top: 24px;
}

.hdr-nav-plate {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.hdr-nav-item {
    position: relative;
}

.hdr-nav-link {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.02em;
    color: rgba(250, 247, 248, 0.8);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-height: 44px;
    border-radius: 0;
}

.hdr-nav-link:hover {
    color: #FAF7F8;
    background: rgba(200, 88, 89, 0.12);
}

.hdr-nav-link:focus {
    outline: 2px solid #C85859;
    outline-offset: -2px;
    color: #FAF7F8;
}

.hdr-nav-item.active .hdr-nav-link {
    color: #FAF7F8;
    background: rgba(200, 88, 89, 0.2);
}

.hdr-nav-item.active .hdr-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 24px;
    left: 24px;
    height: 2px;
    background: #C85859;
    border-radius: 2px;
}

.hdr-accent-bar {
    height: 4px;
    background: linear-gradient(90deg, #C85859 0%, #E8C6CF 50%, transparent 100%);
}

@media (max-width: 1024px) {
    .brand-hdr-plate {
        padding: 48px 24px 0 24px;
    }

    .hdr-nav-plate {
        padding: 0 24px;
    }

    .hdr-nav-link {
        padding: 16px 16px;
    }

    .brand-name-text {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    .brand-hdr-plate {
        padding: 24px 16px 0 16px;
        flex-direction: column;
        gap: 16px;
    }

    .hdr-nav-plate {
        padding: 0 16px;
    }

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

    .hdr-contact-pod {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .brand-name-text {
        font-size: 37px;
    }
}

@media (max-width: 360px) {
    .brand-name-text {
        font-size: 21px;
    }

    .hdr-nav-link {
        padding: 16px 8px;
        font-size: 15px;
    }

    .brand-hdr-plate {
        padding: 16px 16px 0 16px;
    }
}

.site-footer {
    background: linear-gradient(175deg, #1b0e0f 0%, #220f10 100%);
    border-top: 1px solid rgba(200, 88, 89, 0.2);
}

.ftr-upper-deck {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 48px 24px 48px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.ftr-brand-pod {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    max-width: 420px;
}

.ftr-brand-name {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    margin: 0;
}

.ftr-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(232, 198, 207, 0.75);
    letter-spacing: 0.02em;
    margin: 0;
}

.ftr-contact-deck {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ftr-contact-label {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: #E8C6CF;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.ftr-contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ftr-contact-icon {
    width: 14px;
    height: 14px;
    stroke: #C85859;
    stroke-width: 2;
    fill: none;
    flex-shrink: 0;
}

.ftr-contact-link {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.75);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.6s ease;
}

.ftr-contact-link:hover {
    color: #FAF7F8;
}

.ftr-contact-link:focus {
    outline: 2px solid #C85859;
    outline-offset: 2px;
    border-radius: 2px;
}

.ftr-contact-addr {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.6);
    letter-spacing: 0.02em;
}

.ftr-divider {
    max-width: 1280px;
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(200, 88, 89, 0.12);
}

.ftr-lower-deck {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 48px 24px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.ftr-legal-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 24px;
    flex-wrap: wrap;
}

.ftr-legal-link {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.55);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.5s ease;
}

.ftr-legal-link:hover {
    color: #E8C6CF;
}

.ftr-legal-link:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
    border-radius: 2px;
}

.ftr-copy {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.4);
    letter-spacing: 0.03em;
    margin: 0;
}

.ftr-logo-cell {
    padding: 24px 48px 48px 48px;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
}

.ftr-logo-frame {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(232, 198, 207, 0.25);
    border-radius: 9px;
    padding: 4px;
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    background: rgba(200, 88, 89, 0.04);
}

.ftr-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@media (max-width: 1024px) {
    .ftr-upper-deck {
        padding: 48px 24px 24px 24px;
    }

    .ftr-lower-deck {
        padding: 16px 24px 24px 24px;
    }

    .ftr-logo-cell {
        padding: 16px 24px 48px 24px;
    }
}

@media (max-width: 768px) {
    .ftr-upper-deck {
        padding: 48px 16px 24px 16px;
        flex-direction: column;
        gap: 24px;
    }

    .ftr-brand-pod {
        max-width: 100%;
    }

    .ftr-lower-deck {
        padding: 16px 16px 24px 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .ftr-logo-cell {
        padding: 8px 16px 48px 16px;
    }
}

@media (max-width: 360px) {
    .ftr-upper-deck {
        padding: 24px 16px 16px 16px;
    }
}

.ck-tray {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 2000;
    width: 360px;
    max-width: calc(100vw - 48px);
    background: #2a1214;
    border: 1px solid rgba(200, 88, 89, 0.25);
    border-radius: 16px;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
    padding: 24px;
    display: none;
    flex-direction: column;
    gap: 16px;
    transform: translateX(-120%);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.ck-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(232, 198, 207, 0.85);
    letter-spacing: 0.02em;
    margin: 0;
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
}

.ck-headline {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    color: #FAF7F8;
    margin: 0;
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
}

.ck-settings-panel {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.ck-settings-panel.ck-open {
    display: flex;
}

.ck-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.ck-toggle-label {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.8);
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
}

.ck-toggle-input {
    width: 36px;
    height: 20px;
    cursor: pointer;
    accent-color: #C85859;
    flex-shrink: 0;
}

.ck-data-notice {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.6);
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
}

.ck-opt-out-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ck-opt-out-chk {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #C85859;
    flex-shrink: 0;
}

.ck-opt-out-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.75);
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
    cursor: pointer;
}

.ck-btn-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.ck-btn-accept {
    flex: 1;
    min-height: 44px;
    background: #C85859;
    color: #FAF7F8;
    border: none;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
    cursor: pointer;
    padding: 8px 16px;
    transition: background 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.ck-btn-accept:hover {
    background: #b04748;
}

.ck-btn-accept:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
}

.ck-btn-decline {
    min-height: 44px;
    background: transparent;
    color: rgba(232, 198, 207, 0.7);
    border: 1px solid rgba(200, 88, 89, 0.3);
    border-radius: 9px;
    font-size: 15px;
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.6s ease, border-color 0.6s ease;
}

.ck-btn-decline:hover {
    color: #FAF7F8;
    border-color: rgba(200, 88, 89, 0.6);
}

.ck-btn-decline:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
}

.ck-settings-link {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(200, 88, 89, 0.85);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: 'Noto Sans Arabic', 'Noto Sans', sans-serif;
    text-decoration: underline;
    text-align: right;
    transition: color 0.5s ease;
}

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

.ck-settings-link:focus {
    outline: 2px solid #C85859;
    outline-offset: 2px;
    border-radius: 2px;
}

.policy-block {
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    background: #161014;
    color: #E8C6CF;
    direction: rtl;
    text-align: right;
}

.policy-block h1 {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAF7F8;
    margin-bottom: 24px;
    margin-top: 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #C85859;
}

.policy-block h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    margin-top: 48px;
    margin-bottom: 16px;
}

.policy-block h3 {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #E8C6CF;
    margin-top: 24px;
    margin-bottom: 16px;
}

.policy-block h4 {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: 0;
    color: #C85859;
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-block h5 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    color: #C85859;
    text-transform: uppercase;
    margin-top: 24px;
    margin-bottom: 8px;
}

.policy-block h6 {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: #E8C6CF;
    opacity: 0.75;
    margin-top: 16px;
    margin-bottom: 8px;
}

.policy-block p {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #E8C6CF;
    margin-top: 0;
    margin-bottom: 16px;
}

.policy-block ul,
.policy-block ol {
    font-size: 15px;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #E8C6CF;
    margin-top: 0;
    margin-bottom: 16px;
    padding-right: 24px;
    padding-left: 0;
}

.policy-block ul {
    list-style: none;
}

.policy-block ul li {
    position: relative;
    padding-right: 16px;
    margin-bottom: 8px;
}

.policy-block ul li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #C85859;
    transform: rotate(45deg);
}

.policy-block ol {
    list-style: decimal;
}

.policy-block ol li {
    padding-right: 8px;
    margin-bottom: 8px;
}

.policy-block li {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
}

.policy-block ul ul,
.policy-block ol ol,
.policy-block ul ol,
.policy-block ol ul {
    margin-top: 8px;
    margin-bottom: 8px;
}

.policy-block em,
.policy-block i {
    font-style: italic;
    color: #FAF7F8;
}

.policy-block a {
    color: #C85859;
    text-decoration: underline;
    text-decoration-color: rgba(200, 88, 89, 0.4);
    text-underline-offset: 3px;
    transition: color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), text-decoration-color 0.5s ease;
}

.policy-block a:hover {
    color: #FAF7F8;
    text-decoration-color: rgba(250, 247, 248, 0.6);
}

.policy-block table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.policy-block thead {
    background: #C85859;
}

.policy-block thead th {
    color: #FAF7F8;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    padding: 16px;
    text-align: right;
    font-weight: 700;
}

.policy-block tbody tr {
    background: #1e1519;
    transition: background 0.5s ease;
}

.policy-block tbody tr:nth-child(even) {
    background: #231b1e;
}

.policy-block tbody tr:hover {
    background: #2a1f23;
}

.policy-block td {
    color: #E8C6CF;
    font-size: 15px;
    line-height: 1.5;
    padding: 16px;
    text-align: right;
    border-bottom: 1px solid rgba(200, 88, 89, 0.12);
}

.policy-block th {
    padding: 16px;
    text-align: right;
}

.policy-block div {
    margin-bottom: 16px;
}

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

@media (max-width: 768px) {
    .policy-block {
        padding: 24px 16px;
    }

    .policy-block h1 {
        font-size: 37px;
    }

    .policy-block h2 {
        font-size: 21px;
    }

    .policy-block h3 {
        font-size: 21px;
    }

    .policy-block table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 360px) {
    .policy-block {
        padding: 16px 8px;
    }

    .policy-block h1 {
        font-size: 21px;
    }

    .policy-block h2 {
        font-size: 21px;
    }
}

@media (min-width: 1024px) {
    .policy-block {
        padding: 48px 48px;
    }
}

@media (min-width: 1440px) {
    .policy-block {
        padding: 48px 48px;
    }
}

.stdy-mat {
    background: #111318;
    color: #e8c6cf;
    overflow-x: clip;
    padding: 0;
}

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

.stdy-mat .zigzag-div {
    width: 100%;
    line-height: 0;
    display: block;
}

.stdy-mat .zigzag-div svg {
    width: 100%;
    height: 24px;
    display: block;
}

.stdy-mat .title-area {
    background: #13151a;
    padding: 48px 0 0 0;
    position: relative;
}

.stdy-mat .title-area::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(113deg, #C85859, transparent);
    pointer-events: none;
}

.stdy-mat .title-flex {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 48px;
}

.stdy-mat .title-text-col {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 0 48px 0;
}

.stdy-mat .title-band {
    width: 48px;
    height: 4px;
    background: #C85859;
    border-radius: 2px;
    margin-bottom: 24px;
}

.stdy-mat .title-label {
    font-size: 15px;
    letter-spacing: 0.12em;
    color: #C85859;
    margin-bottom: 16px;
    line-height: 1.5;
}

.stdy-mat .title-h1 {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAF7F8;
    margin: 0 0 24px 0;
    font-weight: 700;
}

.stdy-mat .title-h1 em {
    font-style: normal;
    color: #C85859;
}

.stdy-mat .title-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #c4adb5;
    max-width: 440px;
    margin-bottom: 24px;
}

.stdy-mat .title-desc.first-p {
    background: rgba(200, 88, 89, 0.07);
    border-right: 3px solid #C85859;
    border-radius: 5px;
    padding: 16px;
}

.stdy-mat .title-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stdy-mat .meta-chip {
    background: rgba(200, 88, 89, 0.13);
    border: 1px solid rgba(200, 88, 89, 0.28);
    border-radius: 5px;
    padding: 8px 16px;
    font-size: 15px;
    color: #E8C6CF;
    line-height: 1.5;
}

.stdy-mat .title-mosaic-col {
    flex: 0 0 420px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 8px;
    align-items: start;
}

.stdy-mat .mosaic-img-a {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
}

.stdy-mat .mosaic-img-a img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 9px;
}

.stdy-mat .mosaic-img-a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200, 88, 89, 0.18);
    border-radius: 9px;
    pointer-events: none;
}

.stdy-mat .mosaic-img-b {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    border-radius: 9px;
    overflow: hidden;
    position: relative;
}

.stdy-mat .mosaic-img-b img {
    width: 100%;
    height: 182px;
    object-fit: cover;
    display: block;
    border-radius: 9px;
}

.stdy-mat .mosaic-img-b::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200, 88, 89, 0.12);
    border-radius: 9px;
    pointer-events: none;
}

.stdy-mat .mosaic-accent-box {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    background: linear-gradient(113deg, #C85859, rgba(200, 88, 89, 0.3));
    border-radius: 9px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    min-height: 182px;
}

.stdy-mat .mosaic-accent-box .acc-num {
    font-size: 51px;
    font-weight: 700;
    color: #FAF7F8;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.stdy-mat .mosaic-accent-box .acc-label {
    font-size: 15px;
    color: rgba(250, 247, 248, 0.85);
    line-height: 1.5;
}

.stdy-mat .diamond-corner {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: 20px;
    height: 20px;
    background: #C85859;
    transform: rotate(45deg);
    border-radius: 2px;
    pointer-events: none;
    opacity: 0.7;
}

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

.stdy-mat .mat-grid-sec::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(113deg, transparent, #C85859);
    pointer-events: none;
}

.stdy-mat .sec-heading-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stdy-mat .sec-h2 {
    font-size: 37px;
    font-weight: 700;
    color: #FAF7F8;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0;
}

.stdy-mat .sec-h2 .dot-acc {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #C85859;
    border-radius: 2px;
    margin-right: 4px;
    vertical-align: middle;
    transform: rotate(45deg);
}

.stdy-mat .sec-sub {
    font-size: 15px;
    color: #a08a92;
    line-height: 1.9;
    max-width: 380px;
}

.stdy-mat .mat-stepped-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.stdy-mat .mat-card {
    background: #161820;
    border-radius: 16px;
    border: 1px solid rgba(200, 88, 89, 0.14);
    padding: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    overflow: hidden;
}

.stdy-mat .mat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(113deg,
            transparent,
            transparent 18px,
            rgba(200, 88, 89, 0.07) 18px,
            rgba(200, 88, 89, 0.07) 20px);
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
    border-radius: 16px;
}

.stdy-mat .mat-card:hover::before {
    opacity: 1;
}

.stdy-mat .mat-card:hover {
    border-color: rgba(200, 88, 89, 0.4);
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11), inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.stdy-mat .mat-card.tall {
    padding-top: 48px;
}

.stdy-mat .mat-card.taller {
    padding-top: 72px;
}

.stdy-mat .card-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(200, 88, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stdy-mat .card-icon-wrap svg {
    width: 20px;
    height: 20px;
    fill: #C85859;
}

.stdy-mat .card-h4 {
    font-size: 21px;
    font-weight: 600;
    color: #FAF7F8;
    line-height: 1.5;
    margin: 0;
}

.stdy-mat .card-body {
    font-size: 15px;
    color: #a08a92;
    line-height: 1.9;
    margin: 0;
}

.stdy-mat .card-body.first-p {
    background: rgba(200, 88, 89, 0.06);
    border-right: 2px solid rgba(200, 88, 89, 0.35);
    border-radius: 5px;
    padding: 8px;
}

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

.stdy-mat .card-tag {
    font-size: 15px;
    color: #C85859;
    background: rgba(200, 88, 89, 0.1);
    border-radius: 5px;
    padding: 4px 8px;
    line-height: 1.5;
    border: 1px solid rgba(200, 88, 89, 0.2);
    transition: background 0.5s ease, color 0.5s ease;
}

.stdy-mat .card-tag:hover {
    background: rgba(200, 88, 89, 0.22);
    color: #FAF7F8;
}

.stdy-mat .card-num {
    font-size: 68px;
    font-weight: 700;
    color: rgba(200, 88, 89, 0.12);
    line-height: 1.1;
    letter-spacing: -0.04em;
    position: absolute;
    bottom: 8px;
    left: 16px;
    pointer-events: none;
    user-select: none;
}

.stdy-mat .diamond-sep {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #C85859;
    transform: rotate(45deg);
    border-radius: 2px;
    margin: 0 8px;
    vertical-align: middle;
    opacity: 0.7;
}

.stdy-mat .card-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stdy-mat .card-steps li {
    font-size: 15px;
    color: #b09aa2;
    line-height: 1.5;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
}

.stdy-mat .step-dot {
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: #C85859;
    margin-top: 6px;
    transform: rotate(45deg);
}

.stdy-mat .mat-cta-row {
    margin-top: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stdy-mat .btn-prim {
    background: #C85859;
    color: #FAF7F8;
    border: none;
    border-radius: 9px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    transition: background 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.7s ease;
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.stdy-mat .btn-prim:hover {
    background: #b04a4b;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.stdy-mat .btn-prim:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
}

.stdy-mat .btn-prim:active {
    background: #9a3d3e;
}

.stdy-mat .btn-sec {
    background: transparent;
    color: #E8C6CF;
    border: 1px solid rgba(232, 198, 207, 0.35);
    border-radius: 9px;
    padding: 16px 24px;
    font-size: 15px;
    cursor: pointer;
    line-height: 1.5;
    position: relative;
    overflow: hidden;
    transition: border-color 0.6s ease, color 0.6s ease, background 0.6s ease;
}

.stdy-mat .btn-sec:hover {
    border-color: #C85859;
    color: #FAF7F8;
    background: rgba(200, 88, 89, 0.08);
}

.stdy-mat .btn-sec:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
}

.stdy-mat .ripple-wrap {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    overflow: hidden;
    pointer-events: none;
}

.stdy-mat .mat-info-strip {
    margin-top: 48px;
    background: linear-gradient(113deg, rgba(200, 88, 89, 0.18), rgba(200, 88, 89, 0.04));
    border-radius: 16px;
    border: 1px solid rgba(200, 88, 89, 0.2);
    padding: 24px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.stdy-mat .strip-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 9px;
    background: rgba(200, 88, 89, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stdy-mat .strip-icon svg {
    width: 24px;
    height: 24px;
    fill: #C85859;
}

.stdy-mat .strip-text {
    flex: 1 1 240px;
}

.stdy-mat .strip-text strong {
    display: block;
    font-size: 21px;
    font-weight: 600;
    color: #FAF7F8;
    line-height: 1.5;
    margin-bottom: 4px;
}

.stdy-mat .strip-text span {
    font-size: 15px;
    color: #a08a92;
    line-height: 1.9;
}

.stdy-mat .strip-text .acc-digit {
    color: #C85859;
    font-weight: 700;
}

.stdy-mat .strip-actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

@keyframes card-appear {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    70% {
        transform: scale(1.03);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.stdy-mat .mat-card {
    animation: card-appear 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.stdy-mat .mat-card:nth-child(1) {
    animation-delay: 0.05s;
}

.stdy-mat .mat-card:nth-child(2) {
    animation-delay: 0.15s;
}

.stdy-mat .mat-card:nth-child(3) {
    animation-delay: 0.25s;
}

@media (max-width: 1024px) {
    .stdy-mat .title-flex {
        flex-direction: column;
        gap: 24px;
    }

    .stdy-mat .title-mosaic-col {
        flex: none;
        width: 100%;
        max-width: 500px;
    }

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

    .stdy-mat .mat-card.taller {
        padding-top: 24px;
    }

    .stdy-mat .mat-card.tall {
        padding-top: 24px;
    }

    .stdy-mat .title-h1 {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    .stdy-mat .title-h1 {
        font-size: 37px;
    }

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

    .stdy-mat .sec-heading-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .stdy-mat .title-mosaic-col {
        grid-template-columns: 1fr 1fr;
    }

    .stdy-mat .mat-info-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .stdy-mat .sec-h2 {
        font-size: 21px;
    }
}

@media (max-width: 360px) {
    .stdy-mat .title-h1 {
        font-size: 21px;
    }

    .stdy-mat .title-mosaic-col {
        grid-template-columns: 1fr;
    }

    .stdy-mat .mosaic-img-a img {
        height: 220px;
    }

    .stdy-mat .mosaic-img-b {
        display: none;
    }

    .stdy-mat .mosaic-accent-box {
        min-height: 100px;
    }

    .stdy-mat .pg-bound {
        padding: 0 16px;
    }
}

.stud-proj {
    background-color: #111018;
    overflow-x: clip;
    position: relative;
}

.stud-proj .sp-divider {
    border: none;
    border-top: 1px dotted rgba(232, 198, 207, 0.18);
    margin: 0;
}

.stud-proj .tb-wrap {
    position: relative;
    overflow: hidden;
}

.stud-proj .tb-img-zone {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.stud-proj .tb-img-zone img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    opacity: 0.22;
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stud-proj .tb-stripe-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(113deg,
            transparent,
            transparent 18px,
            rgba(200, 88, 89, 0.04) 18px,
            rgba(200, 88, 89, 0.04) 20px);
    pointer-events: none;
}

.stud-proj .tb-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(113deg, #111018 0%, rgba(17, 16, 24, 0.55) 60%, rgba(17, 16, 24, 0.85) 100%);
    pointer-events: none;
}

.stud-proj .tb-text-zone {
    background: #111018;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px 48px;
    position: relative;
}

.stud-proj .tb-pill {
    display: inline-block;
    background: rgba(200, 88, 89, 0.15);
    color: #E8C6CF;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    padding: 4px 16px;
    border-radius: 24px;
    border: 1px solid rgba(200, 88, 89, 0.3);
    margin-bottom: 16px;
}

.stud-proj .tb-heading {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAF7F8;
    margin: 0 0 16px;
    font-weight: 700;
}

.stud-proj .tb-heading .acc-num {
    color: #C85859;
}

.stud-proj .tb-sub {
    font-size: 21px;
    line-height: 1.5;
    color: #E8C6CF;
    max-width: 640px;
    margin: 0 0 8px;
}

.stud-proj .tb-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 9px;
    background: #C85859;
    margin-right: 8px;
    vertical-align: middle;
}

.stud-proj .tb-theses {
    margin: 24px 0 0;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.stud-proj .tb-thesis-item {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.75);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.stud-proj .tb-thesis-item svg {
    flex-shrink: 0;
}

.stud-proj .corner-lines {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.stud-proj .corner-lines span {
    display: block;
    height: 1px;
    background: rgba(200, 88, 89, 0.25);
    border-radius: 2px;
}

.stud-proj .proj-grid-sec {
    background: #16141f;
    padding: 48px 0;
    position: relative;
}

.stud-proj .proj-grid-sec::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(113deg, transparent, rgba(200, 88, 89, 0.3), transparent);
    pointer-events: none;
}

.stud-proj .pg-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.stud-proj .pg-header {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stud-proj .pg-header-left {
    flex: 1 1 340px;
}

.stud-proj .pg-label {
    display: inline-block;
    background: rgba(200, 88, 89, 0.12);
    color: #C85859;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.07em;
    padding: 4px 16px;
    border-radius: 5px;
    border: 1px solid rgba(200, 88, 89, 0.2);
    margin-bottom: 16px;
}

.stud-proj .pg-title {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #FAF7F8;
    margin: 0 0 8px;
    font-weight: 700;
}

.stud-proj .pg-title-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 9px;
    background: #C85859;
    margin-right: 4px;
    vertical-align: middle;
}

.stud-proj .pg-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(232, 198, 207, 0.65);
    max-width: 480px;
    margin: 0;
}

.stud-proj .pg-header-right {
    flex: 0 0 auto;
}

.stud-proj .pg-stat {
    text-align: center;
    padding: 16px 24px;
    background: rgba(200, 88, 89, 0.08);
    border-radius: 9px;
    border: 1px solid rgba(200, 88, 89, 0.18);
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.stud-proj .pg-stat-num {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: #C85859;
    font-weight: 700;
    display: block;
}

.stud-proj .pg-stat-label {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.6);
    display: block;
    margin-top: 4px;
}

.stud-proj .proj-cards-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.stud-proj .proj-card {
    background: #1c1929;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(232, 198, 207, 0.08);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05), 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.stud-proj .proj-card:hover {
    border-color: rgba(200, 88, 89, 0.3);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05), 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.stud-proj .proj-card.featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.stud-proj .proj-card-img-wrap {
    position: relative;
    overflow: hidden;
}

.stud-proj .proj-card.featured .proj-card-img-wrap {
    flex: 0 0 auto;
}

.stud-proj .proj-card-img-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: opacity 0.7s ease;
    filter: grayscale(100%);
    opacity: 0.18;
}

.stud-proj .proj-card.featured .proj-card-img-wrap img {
    height: 220px;
}

.stud-proj .proj-card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(113deg, rgba(17, 16, 24, 0.7) 0%, rgba(200, 88, 89, 0.08) 100%);
    pointer-events: none;
}

.stud-proj .proj-card-body {
    padding: 24px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stud-proj .proj-card-tag {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #C85859;
    background: rgba(200, 88, 89, 0.1);
    border-radius: 5px;
    padding: 4px 8px;
    align-self: flex-start;
}

.stud-proj .proj-card-name {
    font-size: 21px;
    line-height: 1.5;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    font-weight: 600;
    margin: 0;
}

.stud-proj .proj-card-author {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.55);
    margin: 0;
}

.stud-proj .proj-card-desc {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(232, 198, 207, 0.7);
    margin: 0;
}

.stud-proj .proj-card-meta {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(232, 198, 207, 0.08);
}

.stud-proj .proj-meta-item {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(232, 198, 207, 0.5);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}

.stud-proj .proj-meta-item svg {
    flex-shrink: 0;
}

.stud-proj .proj-side-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stud-proj .proj-card.side {
    display: flex;
    flex-direction: column;
}

.stud-proj .proj-card.side .proj-card-body {
    padding: 16px 24px 24px;
}

.stud-proj .proj-card.side .proj-card-name {
    font-size: 21px;
}

.stud-proj .atm-sec {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.stud-proj .atm-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0.12;
    animation: bgPan 22s linear infinite alternate;
    pointer-events: none;
}

@keyframes bgPan {
    from {
        object-position: 0% 50%;
    }

    to {
        object-position: 100% 50%;
    }
}

.stud-proj .atm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(113deg, #C85859 0%, rgba(17, 16, 24, 0.96) 55%, #111018 100%);
    pointer-events: none;
}

.stud-proj .atm-inner {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 48px 24px;
    display: flex;
    flex-direction: row;
    gap: 48px;
    align-items: center;
}

.stud-proj .atm-left {
    flex: 1 1 360px;
}

.stud-proj .atm-pill {
    display: inline-block;
    background: rgba(250, 247, 248, 0.15);
    color: #FAF7F8;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.06em;
    padding: 4px 16px;
    border-radius: 24px;
    border: 1px solid rgba(250, 247, 248, 0.25);
    margin-bottom: 16px;
}

.stud-proj .atm-heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #FAF7F8;
    font-weight: 700;
    margin: 0 0 16px;
}

.stud-proj .atm-body {
    font-size: 15px;
    line-height: 1.9;
    color: rgba(250, 247, 248, 0.85);
    margin: 0 0 8px;
}

.stud-proj .atm-body.first {
    background: rgba(250, 247, 248, 0.07);
    border-right: 3px solid rgba(250, 247, 248, 0.3);
    border-radius: 5px;
    padding: 8px 16px;
    margin-bottom: 16px;
}

.stud-proj .atm-right {
    flex: 0 0 360px;
}

.stud-proj .atm-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stud-proj .atm-metric-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(250, 247, 248, 0.07);
    border-radius: 9px;
    border: 1px solid rgba(250, 247, 248, 0.12);
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    transition: background 0.55s ease;
}

.stud-proj .atm-metric-row:hover {
    background: rgba(250, 247, 248, 0.12);
}

.stud-proj .atm-metric-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: rgba(250, 247, 248, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stud-proj .atm-metric-label {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(250, 247, 248, 0.65);
    display: block;
}

.stud-proj .atm-metric-val {
    font-size: 21px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    font-weight: 700;
    display: block;
}

.stud-proj .atm-corner-lines {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    pointer-events: none;
}

.stud-proj .atm-corner-lines span {
    display: block;
    height: 1px;
    background: rgba(250, 247, 248, 0.18);
    border-radius: 2px;
}

@media (max-width: 1024px) {
    .stud-proj .proj-cards-grid {
        grid-template-columns: 1fr;
    }

    .stud-proj .proj-card.featured {
        grid-row: span 1;
    }

    .stud-proj .atm-inner {
        flex-direction: column;
        gap: 24px;
    }

    .stud-proj .atm-right {
        flex: 1 1 auto;
        width: 100%;
    }

    .stud-proj .tb-heading {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    .stud-proj .tb-img-zone img {
        height: 260px;
    }

    .stud-proj .tb-heading {
        font-size: 37px;
    }

    .stud-proj .tb-theses {
        flex-direction: column;
        gap: 8px;
    }

    .stud-proj .pg-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stud-proj .pg-stat {
        width: 100%;
    }

    .stud-proj .proj-cards-grid {
        grid-template-columns: 1fr;
    }

    .stud-proj .atm-metrics {
        gap: 8px;
    }

    .stud-proj .pg-title {
        font-size: 37px;
    }
}

@media (max-width: 360px) {
    .stud-proj .tb-heading {
        font-size: 37px;
    }

    .stud-proj .tb-text-zone {
        padding: 24px 16px;
    }

    .stud-proj .pg-inner {
        padding: 0 16px;
    }

    .stud-proj .atm-inner {
        padding: 24px 16px;
    }

    .stud-proj .proj-card-body {
        padding: 16px;
    }
}

.stud-proj .sp-btn {
    position: relative;
    overflow: hidden;
    background: #C85859;
    color: #FAF7F8;
    border: none;
    border-radius: 9px;
    font-size: 15px;
    line-height: 1.5;
    padding: 8px 24px;
    cursor: pointer;
    display: inline-block;
    transition: background 0.55s ease, box-shadow 0.55s ease;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.stud-proj .sp-btn:hover {
    background: #b34748;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.stud-proj .sp-btn:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
}

.stud-proj .sp-btn-ripple {
    position: absolute;
    border-radius: 9px;
    background: rgba(250, 247, 248, 0.22);
    transform: scale(0);
    animation: rippleAnim 0.7s ease;
    pointer-events: none;
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.stud-proj .sp-btn-outline {
    position: relative;
    overflow: hidden;
    background: transparent;
    color: #E8C6CF;
    border: 1px solid rgba(232, 198, 207, 0.3);
    border-radius: 9px;
    font-size: 15px;
    line-height: 1.5;
    padding: 8px 24px;
    cursor: pointer;
    display: inline-block;
    transition: background 0.6s ease, border-color 0.6s ease;
}

.stud-proj .sp-btn-outline:hover {
    background: rgba(232, 198, 207, 0.08);
    border-color: rgba(232, 198, 207, 0.5);
}

.stud-proj .sp-btn-outline:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 2px;
}

.stud-proj .glow-link {
    color: #E8C6CF;
    text-decoration: underline;
    text-decoration-color: rgba(232, 198, 207, 0.35);
    transition: text-shadow 0.55s ease, text-decoration-color 0.55s ease;
}

.stud-proj .glow-link:hover {
    text-shadow: 0 0 8px rgba(232, 198, 207, 0.45);
    text-decoration-color: rgba(232, 198, 207, 0.8);
}

.stud-proj .first-para {
    background: rgba(200, 88, 89, 0.07);
    border-right: 3px solid rgba(200, 88, 89, 0.4);
    border-radius: 5px;
    padding: 8px 16px;
    margin-bottom: 16px;
}

.abt-us {
    background: #111318;
    overflow-x: clip;
    position: relative;
}

.abt-us .pg-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

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

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

@keyframes dot-fade {

    0%,
    100% {
        opacity: 0.08;
    }

    50% {
        opacity: 0.18;
    }
}


.abt-us .ttl-blk {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.abt-us .ttl-blk .dot-scatter {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.abt-us .ttl-blk .dot-scatter span {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C85859;
    animation: dot-fade 3.5s ease infinite;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(1) {
    top: 12%;
    left: 8%;
    animation-delay: 0s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(2) {
    top: 28%;
    left: 22%;
    animation-delay: 0.6s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(3) {
    top: 60%;
    left: 5%;
    animation-delay: 1.1s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 0.3s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(5) {
    top: 15%;
    left: 70%;
    animation-delay: 0.9s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(6) {
    top: 45%;
    left: 85%;
    animation-delay: 1.5s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(7) {
    top: 72%;
    left: 60%;
    animation-delay: 0.4s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(8) {
    top: 90%;
    left: 78%;
    animation-delay: 1.8s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(9) {
    top: 35%;
    left: 50%;
    animation-delay: 0.7s;
}

.abt-us .ttl-blk .dot-scatter span:nth-child(10) {
    top: 55%;
    left: 42%;
    animation-delay: 2.1s;
}

.abt-us .ttl-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: center;
    position: relative;
}

.abt-us .ttl-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .ttl-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #E8C6CF;
    letter-spacing: 0.08em;
    line-height: 1.5;
}

.abt-us .ttl-tag .tag-line {
    width: 24px;
    height: 2px;
    background: #C85859;
    border-radius: 2px;
}

.abt-us .ttl-h1 {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(113deg, #FAF7F8 30%, #C85859 50%, #FAF7F8 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: txt-sweep 3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.abt-us .ttl-sub {
    font-size: 15px;
    line-height: 1.9;
    color: #b8b4bc;
    margin: 0;
    max-width: 520px;
}

.abt-us .ttl-sub.first-para {
    background: rgba(200, 88, 89, 0.07);
    border-right: 3px solid #C85859;
    border-radius: 5px;
    padding: 8px 16px;
    color: #d4d0d8;
}

.abt-us .ttl-corner {
    position: absolute;
    pointer-events: none;
}

.abt-us .ttl-corner.tl {
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 48px 48px 0;
    border-color: transparent #C85859 transparent transparent;
    opacity: 0.3;
}

.abt-us .ttl-corner.br {
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 32px 0 0 32px;
    border-color: transparent transparent transparent #C85859;
    opacity: 0.2;
}

.abt-us .ttl-img-col {
    position: relative;
}

.abt-us .ttl-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.abt-us .ttl-img-wrap img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.abt-us .div-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 0;
}

.abt-us .div-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C85859;
    opacity: 0.5;
}

.abt-us .div-dots span:nth-child(2) {
    opacity: 0.25;
}


.abt-us .story-blk {
    background: #161a22;
    padding: 48px 0;
    position: relative;
}

.abt-us .story-blk .sq-tex {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.abt-us .story-blk .sq-tex span {
    position: absolute;
    border: 1px solid rgba(200, 88, 89, 0.06);
    border-radius: 2px;
}

.abt-us .story-blk .sq-tex span:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    transform: rotate(15deg);
}

.abt-us .story-blk .sq-tex span:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 2%;
    transform: rotate(30deg);
}

.abt-us .story-blk .sq-tex span:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 8%;
    transform: rotate(10deg);
}

.abt-us .story-blk .sq-tex span:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 5%;
    right: 4%;
    transform: rotate(20deg);
}

.abt-us .story-blk .sq-tex span:nth-child(5) {
    width: 70px;
    height: 70px;
    top: 55%;
    right: 6%;
    transform: rotate(35deg);
}

.abt-us .story-blk .sq-tex span:nth-child(6) {
    width: 90px;
    height: 90px;
    top: 80%;
    right: 2%;
    transform: rotate(5deg);
}

.abt-us .story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.abt-us .story-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .story-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    margin: 0;
    position: relative;
    display: inline-block;
}

.abt-us .story-h2::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #C85859;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.abt-us .story-txt {
    font-size: 15px;
    line-height: 1.9;
    color: #a8a4ac;
    margin: 0;
}

.abt-us .story-txt.first-para {
    background: rgba(200, 88, 89, 0.07);
    border-right: 3px solid #C85859;
    border-radius: 5px;
    padding: 8px 16px;
    color: #ccc8d0;
}

.abt-us .story-imgs {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .story-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.abt-us .story-img-main img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.abt-us .story-img-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abt-us .story-img-sm {
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.abt-us .story-img-sm img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.abt-us .met-strip {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.abt-us .met-card {
    background: #1c2030;
    border-radius: 9px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid rgba(200, 88, 89, 0.12);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.abt-us .met-card:hover {
    border-color: rgba(200, 88, 89, 0.35);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.08), 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.abt-us .met-num {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #C85859;
    font-weight: 700;
}

.abt-us .met-num em {
    font-style: normal;
    color: #E8C6CF;
    font-size: 21px;
}

.abt-us .met-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #8a8690;
}

.abt-us .div-line {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
}

.abt-us .div-line .dl-seg {
    flex: 1;
    height: 1px;
    background: linear-gradient(113deg, transparent, rgba(200, 88, 89, 0.25), transparent);
}

.abt-us .div-line .dl-diamond {
    width: 8px;
    height: 8px;
    background: #C85859;
    border-radius: 2px;
    transform: rotate(45deg);
    opacity: 0.6;
}

.abt-us .team-blk {
    background: linear-gradient(113deg, #1a0e0f 0%, #111318 60%, #0e1118 100%);
    padding: 48px 0;
    position: relative;
}

.abt-us .team-blk .corner-tr {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 56px 56px 0 0;
    border-color: rgba(200, 88, 89, 0.18) transparent transparent transparent;
    pointer-events: none;
}

.abt-us .team-blk .corner-bl {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 40px 40px;
    border-color: transparent transparent rgba(200, 88, 89, 0.12) transparent;
    pointer-events: none;
}

.abt-us .team-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
    max-width: 600px;
}

.abt-us .team-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    margin: 0;
}

.abt-us .team-h2 .accent-num {
    color: #C85859;
}

.abt-us .team-h2::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #C85859;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

.abt-us .team-sub {
    font-size: 15px;
    line-height: 1.9;
    color: #8a8690;
    margin: 0;
}

.abt-us .team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.abt-us .mem-card {
    background: #161a22;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    border: 1px solid rgba(232, 198, 207, 0.08);
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.abt-us .mem-card:hover {
    transform: translateY(-4px);
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.abt-us .mem-img-wrap {
    position: relative;
    overflow: hidden;
}

.abt-us .mem-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.abt-us .mem-card:hover .mem-img-wrap img {
    transform: scale(1.04);
}

.abt-us .mem-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: inset 0 4px 12px 0 rgba(200, 88, 89, 0.05);
}

.abt-us .mem-name {
    font-size: 21px;
    line-height: 1.1;
    color: #FAF7F8;
    margin: 0;
    letter-spacing: -0.01em;
}

.abt-us .mem-role {
    font-size: 15px;
    line-height: 1.5;
    color: #C85859;
    letter-spacing: 0.04em;
}

.abt-us .mem-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #7a767e;
    margin: 0;
}

.abt-us .approach-row {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 88, 89, 0.12);
}

.abt-us .approach-label {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.abt-us .approach-h3 {
    font-size: 21px;
    line-height: 1.5;
    color: #E8C6CF;
    margin: 0;
}

.abt-us .approach-note {
    font-size: 15px;
    line-height: 1.9;
    color: #6a666e;
    margin: 0;
}

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

.abt-us .pillar {
    background: rgba(200, 88, 89, 0.06);
    border-radius: 9px;
    padding: 16px;
    border: 1px solid rgba(200, 88, 89, 0.1);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: background 0.5s ease, border-color 0.5s ease;
}

.abt-us .pillar:hover {
    background: rgba(200, 88, 89, 0.1);
    border-color: rgba(200, 88, 89, 0.25);
}

.abt-us .pillar-ico {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.abt-us .pillar-ico svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #C85859;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.abt-us .pillar-h4 {
    font-size: 15px;
    line-height: 1.5;
    color: #FAF7F8;
    margin: 0;
    font-weight: 600;
}

.abt-us .pillar-txt {
    font-size: 15px;
    line-height: 1.9;
    color: #6a666e;
    margin: 0;
}

.abt-us .glow-lnk {
    color: #E8C6CF;
    text-decoration: underline;
    text-decoration-color: rgba(232, 198, 207, 0.3);
    transition: text-shadow 0.6s ease, color 0.5s ease;
}

.abt-us .glow-lnk:hover {
    color: #FAF7F8;
    text-shadow: 0 0 12px rgba(200, 88, 89, 0.6), 0 0 24px rgba(200, 88, 89, 0.3);
    text-decoration-color: rgba(200, 88, 89, 0.5);
}

.abt-us .btn-prim {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C85859;
    color: #FAF7F8;
    font-size: 15px;
    line-height: 1.5;
    padding: 16px 24px;
    border-radius: 5px;
    border: none !important;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.abt-us .btn-prim:hover {
    background: #b34a4b;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
    color: #FAF7F8;
}

.abt-us .btn-prim:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 3px;
}

.abt-us .btn-sec {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #E8C6CF;
    font-size: 15px;
    line-height: 1.5;
    padding: 16px 24px;
    border-radius: 5px;
    border: 1px solid rgba(232, 198, 207, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: border-color 0.5s ease, color 0.5s ease, background 0.5s ease;
    text-decoration: none;
}

.abt-us .btn-sec:hover {
    border-color: #C85859;
    color: #FAF7F8;
    background: rgba(200, 88, 89, 0.08);
}

.abt-us .btn-sec:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 3px;
}

.abt-us .btn-prim .rpl,
.abt-us .btn-sec .rpl {
    position: absolute;
    border-radius: 50%;
    background: rgba(250, 247, 248, 0.25);
    transform: scale(0);
    animation: rpl-anim 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    pointer-events: none;
}

@keyframes rpl-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .abt-us .ttl-grid {
        grid-template-columns: 1fr 260px;
        gap: 24px;
    }

    .abt-us .ttl-h1 {
        font-size: 37px;
    }

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

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

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

    .abt-us .approach-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .abt-us .ttl-grid {
        grid-template-columns: 1fr;
    }

    .abt-us .ttl-img-col {
        display: none;
    }

    .abt-us .ttl-h1 {
        font-size: 37px;
    }

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

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

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

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

    .abt-us .story-h2,
    .abt-us .team-h2 {
        font-size: 21px;
    }
}

@media (max-width: 360px) {
    .abt-us .ttl-h1 {
        font-size: 21px;
    }

    .abt-us .met-strip {
        grid-template-columns: 1fr;
    }

    .abt-us .pg-wrap {
        padding: 0 16px;
    }
}

.ld-root {
    background: #141018;
    color: #E8C6CF;
    overflow-x: hidden;
    position: relative;
}

.ld-root .max-w {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.ld-root .ttl-band {
    background: linear-gradient(113deg, #1a0d12 0%, #2a1020 40%, #1d0f18 100%);
    padding: 48px 0 24px;
    position: relative;
}

.ld-root .ttl-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(113deg, #C85859 0%, transparent 60%);
    opacity: 0.06;
    pointer-events: none;
}

.ld-root .ttl-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    position: relative;
}

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

.ld-root .ttl-label {
    display: inline-block;
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.12em;
    color: #C85859;
    text-transform: uppercase;
    margin-bottom: 16px;
    border-left: 3px solid #C85859;
    border-bottom: 1px solid rgba(200, 88, 89, 0.3);
    padding: 4px 8px;
    border-radius: 2px;
}

.ld-root .ttl-h1 {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAF7F8;
    margin-bottom: 16px;
    font-weight: 800;
}

.ld-root .ttl-h1 .kw-mark {
    background: linear-gradient(113deg, #C85859, #a03a3b);
    color: #FAF7F8;
    padding: 0 8px;
    border-radius: 5px;
    display: inline;
}

.ld-root .ttl-sub {
    font-size: 21px;
    line-height: 1.5;
    color: #E8C6CF;
    max-width: 520px;
    margin-bottom: 24px;
}

.ld-root .ttl-flow-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.ld-root .ttl-flow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C85859;
    flex-shrink: 0;
}

.ld-root .ttl-flow-seg {
    height: 2px;
    background: linear-gradient(90deg, #C85859, transparent);
    flex: 1 1 0;
    border-radius: 2px;
}

.ld-root .ttl-flow-dot-sm {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(200, 88, 89, 0.4);
    flex-shrink: 0;
}

.ld-root .ttl-img-col {
    flex: 0 0 340px;
    position: relative;
}

.ld-root .ttl-img-frame {
    position: relative;
    width: 340px;
    height: 300px;
}

.ld-root .ttl-img-shape {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
    border-radius: 9px;
    display: block;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.ld-root .ttl-img-dec {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 80px;
    height: 80px;
    border: 2px solid rgba(200, 88, 89, 0.4);
    clip-path: polygon(0 0, 85% 0, 100% 15%, 100% 100%, 15% 100%, 0 85%);
    border-radius: 9px;
    pointer-events: none;
}

.ld-root .ttl-curve-dec {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    overflow: hidden;
    pointer-events: none;
}

.ld-root .ttl-curve-dec svg {
    width: 100%;
    height: 100%;
}

@keyframes drop-settle {
    0% {
        opacity: 0;
        transform: translateY(-32px);
    }

    60% {
        opacity: 1;
        transform: translateY(4px);
    }

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

.ld-root .drop-in {
    animation: drop-settle 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.ld-root .drop-in.d1 {
    animation-delay: 0.08s;
}

.ld-root .drop-in.d2 {
    animation-delay: 0.22s;
}

.ld-root .drop-in.d3 {
    animation-delay: 0.38s;
}

.ld-root .drop-in.d4 {
    animation-delay: 0.52s;
}

.ld-root .inv-band {
    background: #1b1020;
    padding: 48px 0;
    position: relative;
}

.ld-root .inv-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 88, 89, 0.4), transparent);
}

.ld-root .inv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.ld-root .inv-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ld-root .inv-eyebrow {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.1em;
    color: #C85859;
    text-transform: uppercase;
}

.ld-root .inv-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    font-weight: 700;
}

.ld-root .inv-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #C85859;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.ld-root .inv-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
    background: rgba(200, 88, 89, 0.06);
    border-left: 3px solid rgba(200, 88, 89, 0.5);
    border-right: 1px solid rgba(200, 88, 89, 0.1);
    padding: 8px 16px;
    border-radius: 2px;
}

.ld-root .inv-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ld-root .inv-card {
    background: #231428;
    border: 1px solid rgba(200, 88, 89, 0.15);
    border-radius: 16px;
    padding: 24px;
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05), 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .inv-card:hover {
    border-color: rgba(200, 88, 89, 0.45);
}

.ld-root .inv-card-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.ld-root .inv-card-ttl {
    font-size: 21px;
    line-height: 1.5;
    color: #FAF7F8;
    font-weight: 600;
}

.ld-root .inv-card-body {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
}

.ld-root .inv-card-body .num-acc {
    color: #C85859;
    font-weight: 700;
}

.ld-root .inv-img-wrap {
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.ld-root .inv-img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85) saturate(0.9);
    transition: filter 0.6s ease;
}

.ld-root .inv-img-wrap:hover img {
    filter: brightness(0.95) saturate(1.05);
}

.ld-root .rep-band {
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.ld-root .rep-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.ld-root .rep-sq {
    position: absolute;
    border: 1px solid rgba(200, 88, 89, 0.08);
    border-radius: 2px;
}

.ld-root .rep-band-inner {
    position: relative;
}

.ld-root .rep-top {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 24px;
}

.ld-root .rep-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #FAF7F8;
    font-weight: 700;
    max-width: 480px;
}

.ld-root .rep-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #C85859;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.ld-root .rep-note {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
    max-width: 320px;
    text-align: left;
}

.ld-root .rep-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

.ld-root .rep-item {
    background: #1e1025;
    border: 1px solid rgba(232, 198, 207, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    transition: box-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .rep-item:hover {
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
    border-color: rgba(200, 88, 89, 0.3);
}

.ld-root .rep-item-num {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #C85859;
    font-weight: 800;
}

.ld-root .rep-item-lbl {
    font-size: 21px;
    line-height: 1.5;
    color: #FAF7F8;
    font-weight: 600;
}

.ld-root .rep-item-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
}

.ld-root .rep-quotes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 16px;
}

.ld-root .rep-quote {
    background: #231428;
    border-radius: 9px;
    padding: 16px 24px;
    border: 1px solid rgba(200, 88, 89, 0.12);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.ld-root .rep-quote-text {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
    margin-bottom: 8px;
}

.ld-root .rep-quote-attr {
    font-size: 15px;
    line-height: 1.5;
    color: #C85859;
    font-weight: 600;
}

@keyframes border-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(200, 88, 89, 0.0), inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    }

    50% {
        box-shadow: 0 0 16px 4px rgba(200, 88, 89, 0.18), inset 2px 1px 4px 1px rgba(200, 88, 89, 0.08);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200, 88, 89, 0.0), inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    }
}

.ld-root .rep-item.glow-pulse {
    animation: border-glow 3.5s ease infinite;
}

.ld-root .avl-band {
    background: #C85859;
    padding: 48px 0;
    position: relative;
}

.ld-root .avl-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(113deg, #a03a3b 0%, #C85859 60%, #d96a6b 100%);
    pointer-events: none;
}

.ld-root .avl-inner {
    position: relative;
}

.ld-root .avl-top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 24px;
}

.ld-root .avl-h2 {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #141018;
    font-weight: 800;
    max-width: 420px;
}

.ld-root .avl-h2 .dot-acc {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #141018;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.ld-root .avl-intro {
    font-size: 15px;
    line-height: 1.9;
    color: #2a0d10;
    max-width: 360px;
}

.ld-root .avl-pyramid {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ld-root .pyr-layer {
    height: 48px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.5s ease;
}

.ld-root .pyr-layer:hover {
    opacity: 0.9;
}

.ld-root .pyr-lbl {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 700;
    color: #141018;
    letter-spacing: 0.04em;
}

.ld-root .pyr-layer.lv1 {
    width: 30%;
    background: #141018;
}

.ld-root .pyr-layer.lv1 .pyr-lbl {
    color: #FAF7F8;
}

.ld-root .pyr-layer.lv2 {
    width: 50%;
    background: rgba(20, 16, 24, 0.8);
}

.ld-root .pyr-layer.lv2 .pyr-lbl {
    color: #FAF7F8;
}

.ld-root .pyr-layer.lv3 {
    width: 68%;
    background: rgba(20, 16, 24, 0.6);
}

.ld-root .pyr-layer.lv3 .pyr-lbl {
    color: #FAF7F8;
}

.ld-root .pyr-layer.lv4 {
    width: 85%;
    background: rgba(20, 16, 24, 0.4);
}

.ld-root .pyr-layer.lv4 .pyr-lbl {
    color: #FAF7F8;
}

.ld-root .avl-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

.ld-root .avl-card {
    background: rgba(20, 16, 24, 0.85);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ld-root .avl-card:hover {
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.ld-root .avl-card-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) saturate(0.85);
    transition: filter 0.7s ease;
}

.ld-root .avl-card:hover .avl-card-img {
    filter: brightness(0.9) saturate(1.0);
}

.ld-root .avl-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
}

.ld-root .avl-card-tag {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: 0.08em;
    color: #C85859;
    text-transform: uppercase;
}

.ld-root .avl-card-ttl {
    font-size: 21px;
    line-height: 1.5;
    color: #FAF7F8;
    font-weight: 600;
}

.ld-root .avl-card-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
}

.ld-root .avl-card-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #E8C6CF;
    text-decoration: none;
    border-bottom: 1px solid rgba(232, 198, 207, 0.4);
    padding-bottom: 2px;
    transition: color 0.5s ease, border-color 0.5s ease, text-shadow 0.5s ease;
}

.ld-root .avl-card-link:hover {
    color: #FAF7F8;
    border-color: #FAF7F8;
    text-shadow: 0 0 8px rgba(232, 198, 207, 0.5);
}

.ld-root .curve-connector {
    position: relative;
    height: 24px;
    pointer-events: none;
    overflow: hidden;
}

.ld-root .curve-connector svg {
    width: 100%;
    height: 100%;
    display: block;
}

.ld-root .btn-prim {
    position: relative;
    display: inline-block;
    background: #C85859;
    color: #FAF7F8;
    font-size: 15px;
    line-height: 1.5;
    padding: 8px 24px;
    border-radius: 9px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
}

.ld-root .btn-prim:hover {
    background: #a03a3b;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.ld-root .btn-prim:focus {
    outline: 2px solid #FAF7F8;
    outline-offset: 3px;
}

.ld-root .btn-sec {
    position: relative;
    display: inline-block;
    background: rgba(200, 88, 89, 0.12);
    color: #FAF7F8;
    font-size: 15px;
    line-height: 1.5;
    padding: 8px 24px;
    border-radius: 9px;
    border: 1px solid rgba(200, 88, 89, 0.4);
    cursor: pointer;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.5s ease, border-color 0.5s ease;
    text-decoration: none;
}

.ld-root .btn-sec:hover {
    background: rgba(200, 88, 89, 0.22);
    border-color: rgba(200, 88, 89, 0.7);
}

.ld-root .btn-sec:focus {
    outline: 2px solid #FAF7F8;
    outline-offset: 3px;
}

.ld-root .ripple-fx {
    position: absolute;
    border-radius: 50%;
    background: rgba(250, 247, 248, 0.3);
    transform: scale(0);
    animation: ripple-anim 0.7s ease;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .ld-root .ttl-h1 {
        font-size: 37px;
    }

    .ld-root .ttl-img-col {
        flex: 0 0 260px;
    }

    .ld-root .ttl-img-frame {
        width: 260px;
        height: 230px;
    }

    .ld-root .avl-cards {
        grid-template-columns: 1fr 1fr;
    }

    .ld-root .rep-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .ld-root .ttl-inner {
        flex-direction: column;
        gap: 24px;
    }

    .ld-root .ttl-img-col {
        flex: 0 0 auto;
        width: 100%;
    }

    .ld-root .ttl-img-frame {
        width: 100%;
        height: 220px;
    }

    .ld-root .ttl-img-shape {
        width: 100%;
    }

    .ld-root .inv-grid {
        grid-template-columns: 1fr;
    }

    .ld-root .rep-cols {
        grid-template-columns: 1fr;
    }

    .ld-root .rep-quotes {
        grid-template-columns: 1fr;
    }

    .ld-root .rep-top {
        flex-direction: column;
        gap: 16px;
    }

    .ld-root .avl-cards {
        grid-template-columns: 1fr;
    }

    .ld-root .avl-top {
        flex-direction: column;
        gap: 16px;
    }

    .ld-root .ttl-h1 {
        font-size: 37px;
    }

    .ld-root .inv-h2,
    .ld-root .rep-h2,
    .ld-root .avl-h2 {
        font-size: 21px;
    }

    .ld-root .pyr-layer.lv1 {
        width: 50%;
    }

    .ld-root .pyr-layer.lv2 {
        width: 68%;
    }

    .ld-root .pyr-layer.lv3 {
        width: 84%;
    }

    .ld-root .pyr-layer.lv4 {
        width: 100%;
    }
}

@media (max-width: 360px) {
    .ld-root .max-w {
        padding-left: 16px;
        padding-right: 16px;
    }

    .ld-root .ttl-h1 {
        font-size: 21px;
    }

    .ld-root .ttl-sub {
        font-size: 15px;
    }
}

.cnt-pg {
    background: #111018;
    min-height: 100vh;
    overflow-x: clip;
    position: relative;
}

.cnt-pg .geo-motif {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.cnt-pg .geo-motif svg {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.06;
}

.cnt-pg .pg-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.cnt-pg .reach-strip {
    padding: 48px 0 24px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    border-bottom: 1px solid rgba(200, 88, 89, 0.15);
}

.cnt-pg .reach-label {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
}

.cnt-pg .reach-label h1 {
    font-size: 51px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FAF7F8;
    font-weight: 800;
    margin: 0;
}

.cnt-pg .reach-label h1 span {
    color: #C85859;
}

.cnt-pg .dot-accent {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #C85859;
    margin-left: 6px;
    vertical-align: middle;
    flex-shrink: 0;
}

.cnt-pg .reach-desc {
    font-size: 15px;
    line-height: 1.9;
    color: #b8adb5;
    margin: 0;
    max-width: 340px;
}

.cnt-pg .reach-cards {
    flex: 1;
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
}

.cnt-pg .info-card {
    flex: 1 1 160px;
    background: #1a1520;
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    border: 1px solid rgba(200, 88, 89, 0.12);
    transition: box-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.5s ease;
}

.cnt-pg .info-card:hover {
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
    border-color: rgba(200, 88, 89, 0.28);
}

.cnt-pg .info-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(200, 88, 89, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cnt-pg .info-card-icon svg {
    width: 18px;
    height: 18px;
    fill: #C85859;
}

.cnt-pg .info-card-lbl {
    font-size: 15px;
    color: #6d5f6b;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 15px;
}

.cnt-pg .info-card-val {
    font-size: 15px;
    color: #E8C6CF;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
    word-break: break-all;
}

.cnt-pg .wave-div {
    width: 100%;
    overflow: hidden;
    line-height: 0;
    margin: 0;
}

.cnt-pg .wave-div svg {
    display: block;
    width: 100%;
}

.cnt-pg .form-zone {
    background: #150f1a;
    position: relative;
    padding: 48px 0;
}

.cnt-pg .form-zone-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cnt-pg .form-zone-bg::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: linear-gradient(113deg, rgba(200, 88, 89, 0.09) 0%, transparent 70%);
}

.cnt-pg .form-zone-bg::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: linear-gradient(113deg, rgba(232, 198, 207, 0.05) 0%, transparent 70%);
}

.cnt-pg .form-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}

.cnt-pg .form-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 24px;
}

.cnt-pg .aside-heading {
    font-size: 37px;
    line-height: 1.1;
    color: #FAF7F8;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
}

.cnt-pg .aside-heading span {
    color: #C85859;
}

.cnt-pg .aside-body {
    font-size: 15px;
    line-height: 1.9;
    color: #9d8f9b;
    margin: 0;
}

.cnt-pg .aside-body.first-p {
    background: rgba(200, 88, 89, 0.07);
    border-radius: 9px;
    padding: 16px;
    border-left: 3px solid rgba(200, 88, 89, 0.4);
    border-top: 1px solid rgba(200, 88, 89, 0.12);
    border-right: 1px solid rgba(200, 88, 89, 0.08);
    border-bottom: 1px solid rgba(200, 88, 89, 0.08);
    color: #c4b5c2;
}

.cnt-pg .aside-stat-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.cnt-pg .aside-stat {
    flex: 1;
    background: #1e1726;
    border-radius: 9px;
    padding: 16px;
    border: 1px solid rgba(232, 198, 207, 0.08);
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.cnt-pg .aside-stat-num {
    font-size: 37px;
    line-height: 1.1;
    color: #C85859;
    font-weight: 800;
    letter-spacing: -0.03em;
    display: block;
}

.cnt-pg .aside-stat-txt {
    font-size: 15px;
    line-height: 1.5;
    color: #7a6d78;
    display: block;
    margin-top: 4px;
}

.cnt-pg .form-card {
    background: #1a1520;
    border-radius: 24px;
    padding: 48px;
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05), 2px 8px 60px 1px rgba(200, 88, 89, 0.11);
    border: 1px solid rgba(200, 88, 89, 0.14);
    position: relative;
    z-index: 1;
}

.cnt-pg .form-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cnt-pg .f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cnt-pg .f-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cnt-pg .f-group.full {
    grid-column: 1 / -1;
}

.cnt-pg .f-lbl {
    font-size: 15px;
    line-height: 1.5;
    color: #b8adb5;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.cnt-pg .f-lbl .req {
    color: #C85859;
    margin-right: 4px;
}

.cnt-pg .f-input {
    background: #120e17;
    border: 1px solid rgba(200, 88, 89, 0.18);
    border-radius: 9px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #FAF7F8;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    outline: none;
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.cnt-pg .f-input::placeholder {
    color: rgba(200, 88, 89, 0.35);
}

.cnt-pg .f-input:focus {
    border-color: rgba(200, 88, 89, 0.55);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.08), 0 0 0 3px rgba(200, 88, 89, 0.1);
}

.cnt-pg .f-select {
    background: #120e17;
    border: 1px solid rgba(200, 88, 89, 0.18);
    border-radius: 9px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #FAF7F8;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C85859' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 12px center;
    cursor: pointer;
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.cnt-pg .f-select:focus {
    border-color: rgba(200, 88, 89, 0.55);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.08), 0 0 0 3px rgba(200, 88, 89, 0.1);
}

.cnt-pg .f-select option {
    background: #1a1520;
    color: #FAF7F8;
}

.cnt-pg .f-textarea {
    background: #120e17;
    border: 1px solid rgba(200, 88, 89, 0.18);
    border-radius: 9px;
    padding: 16px;
    font-size: 15px;
    line-height: 1.9;
    color: #FAF7F8;
    width: 100%;
    box-sizing: border-box;
    transition: border-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    outline: none;
    resize: vertical;
    min-height: 120px;
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.cnt-pg .f-textarea::placeholder {
    color: rgba(200, 88, 89, 0.35);
}

.cnt-pg .f-textarea:focus {
    border-color: rgba(200, 88, 89, 0.55);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.08), 0 0 0 3px rgba(200, 88, 89, 0.1);
}

.cnt-pg .radio-group {
    display: flex;
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
}

.cnt-pg .radio-opt {
    position: relative;
}

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

.cnt-pg .radio-opt label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 5px;
    border: 1px solid rgba(200, 88, 89, 0.22);
    font-size: 15px;
    line-height: 1.5;
    color: #9d8f9b;
    cursor: pointer;
    background: #120e17;
    transition: background 0.5s ease, border-color 0.5s ease, color 0.5s ease;
    user-select: none;
}

.cnt-pg .radio-opt input[type="radio"]:checked+label {
    background: rgba(200, 88, 89, 0.18);
    border-color: #C85859;
    color: #E8C6CF;
}

.cnt-pg .radio-opt label:hover {
    border-color: rgba(200, 88, 89, 0.5);
    color: #E8C6CF;
}

.cnt-pg .radio-opt input[type="radio"]:focus+label {
    outline: 2px solid #C85859;
    outline-offset: 2px;
}

.cnt-pg .divider-lbl {
    font-size: 15px;
    color: #6d5f6b;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 8px 0 4px;
}

.cnt-pg .divider-lbl::before,
.cnt-pg .divider-lbl::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(200, 88, 89, 0.15);
}

.cnt-pg .privacy-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    margin-top: 8px;
}

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

.cnt-pg .privacy-txt {
    font-size: 15px;
    line-height: 1.9;
    color: #7a6d78;
    margin: 0;
}

.cnt-pg .privacy-txt a {
    color: #C85859;
    text-decoration: none;
    transition: color 0.5s ease, text-shadow 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cnt-pg .privacy-txt a:hover {
    color: #E8C6CF;
    text-shadow: 0 0 12px rgba(200, 88, 89, 0.5);
}

.cnt-pg .submit-btn {
    background: #C85859;
    color: #FAF7F8;
    border: none;
    border-radius: 9px;
    padding: 16px 48px;
    font-size: 21px;
    line-height: 1.1;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    transition: background 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.22);
    box-sizing: border-box;
}

.cnt-pg .submit-btn:hover {
    background: #b34a4b;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.28);
}

.cnt-pg .submit-btn:active {
    transform: scale(0.97);
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.15);
}

.cnt-pg .submit-btn:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 3px;
}

.cnt-pg .ripple-layer {
    position: absolute;
    border-radius: 50%;
    background: rgba(250, 247, 248, 0.22);
    transform: scale(0);
    animation: ripple-anim 0.7s ease forwards;
    pointer-events: none;
    width: 80px;
    height: 80px;
    margin-top: -40px;
    margin-left: -40px;
}

@keyframes ripple-anim {
    to {
        transform: scale(6);
        opacity: 0;
    }
}

.cnt-pg .appear-item {
    animation: appear-scale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes appear-scale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    70% {
        transform: scale(1.03);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .cnt-pg .reach-strip {
        flex-direction: column;
        gap: 24px;
    }

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

    .cnt-pg .form-aside {
        position: static;
    }

    .cnt-pg .form-card {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .cnt-pg .reach-label h1 {
        font-size: 37px;
    }

    .cnt-pg .f-row {
        grid-template-columns: 1fr;
    }

    .cnt-pg .f-group.full {
        grid-column: auto;
    }

    .cnt-pg .reach-cards {
        flex-direction: column;
    }

    .cnt-pg .aside-stat-row {
        flex-direction: column;
    }

    .cnt-pg .form-card {
        padding: 16px;
    }

    .cnt-pg .aside-heading {
        font-size: 21px;
    }
}

@media (max-width: 360px) {
    .cnt-pg .reach-label h1 {
        font-size: 21px;
    }

    .cnt-pg .pg-inner {
        padding: 0 8px;
    }

    .cnt-pg .submit-btn {
        font-size: 15px;
        padding: 16px 24px;
    }
}

.success-page {
    min-height: 100vh;
    background-color: #111318;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
}

.success-page .success-wrap {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.success-page .success-card {
    background-color: #16191f;
    border: 1px solid rgba(200, 88, 89, 0.18);
    border-radius: 24px;
    padding: 48px;
    max-width: 560px;
    width: 100%;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14), inset 0 2px 24px 0 rgba(200, 88, 89, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.success-page .icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 9px;
    background: linear-gradient(113deg, rgba(200, 88, 89, 0.22), rgba(200, 88, 89, 0.04));
    border: 1.5px solid rgba(200, 88, 89, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    flex-shrink: 0;
}

.success-page .icon-wrap svg {
    display: block;
}

.success-page .success-heading {
    font-size: 37px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAF7F8;
    font-weight: 700;
    margin: 0;
}

.success-page .success-heading span {
    color: #C85859;
}

.success-page .success-body {
    font-size: 15px;
    line-height: 1.9;
    color: #b8b4bb;
    margin: 0;
    max-width: 400px;
}

.success-page .success-divider {
    width: 48px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(113deg, #C85859, transparent);
}

.success-page .success-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.success-page .meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(200, 88, 89, 0.06);
    border-radius: 9px;
    border: 1px solid rgba(200, 88, 89, 0.1);
}

.success-page .meta-row svg {
    flex-shrink: 0;
}

.success-page .meta-label {
    font-size: 15px;
    line-height: 1.5;
    color: #E8C6CF;
    margin: 0;
    direction: rtl;
    text-align: right;
    width: 100%;
}

.success-page .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #E8C6CF;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 9px;
    background-color: #C85859;
    border: 1.5px solid rgba(200, 88, 89, 0.6);
    box-shadow: 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
    transition: background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, color 0.6s ease;
    font-weight: 600;
    direction: rtl;
}

.success-page .back-link:hover {
    background-color: #b04a4b;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
    color: #FAF7F8;
}

.success-page .back-link:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 4px;
}

.success-page .back-link:active {
    background-color: #9a3d3e;
}

.success-page .site-ref {
    font-size: 15px;
    line-height: 1.5;
    color: #5a5560;
    direction: rtl;
    text-align: center;
}

.success-page .site-ref a {
    color: #C85859;
    text-decoration: none;
    transition: color 0.5s ease, text-shadow 0.7s ease;
}

.success-page .site-ref a:hover {
    color: #E8C6CF;
    text-shadow: 0 0 12px rgba(200, 88, 89, 0.5);
}

@media (max-width: 768px) {
    .success-page .success-card {
        padding: 24px 16px;
        gap: 16px;
    }

    .success-page .success-heading {
        font-size: 21px;
    }

    .success-page .back-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 360px) {
    .success-page {
        padding: 24px 8px;
    }

    .success-page .success-card {
        padding: 16px 8px;
    }
}

.not-found-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #111318;
    padding: 48px 24px;
    position: relative;
    overflow: hidden;
}

.not-found-page .error-wrap {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
}

.not-found-page .code-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.not-found-page .code-block .error-num {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #C85859;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
    -webkit-text-stroke: 1px rgba(200, 88, 89, 0.3);
    position: relative;
}

.not-found-page .code-block .error-num::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: linear-gradient(113deg, #C85859, transparent);
    border-radius: 2px;
    margin: 8px auto 0;
}

.not-found-page .code-block .error-label {
    font-size: 15px;
    letter-spacing: 0.18em;
    color: #E8C6CF;
    text-transform: uppercase;
    line-height: 1.5;
    opacity: 0.7;
}

.not-found-page .message-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    max-width: 560px;
}

.not-found-page .message-block .main-heading {
    font-size: 37px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FAF7F8;
    margin: 0;
}

.not-found-page .message-block .main-heading .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #C85859;
    border-radius: 50%;
    margin-right: 4px;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.not-found-page .message-block .desc-text {
    font-size: 15px;
    line-height: 1.9;
    color: #E8C6CF;
    opacity: 0.8;
    margin: 0;
    padding: 16px;
    border-radius: 9px;
    background: rgba(200, 88, 89, 0.06);
    border: 1px solid rgba(200, 88, 89, 0.12);
    box-shadow: inset 2px 1px 4px 1px rgba(200, 88, 89, 0.05);
}

.not-found-page .action-block {
    display: flex;
    flex-direction: row;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.not-found-page .action-block .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease, color 0.6s ease;
    position: relative;
    overflow: hidden;
}

.not-found-page .action-block .nav-btn.primary {
    background-color: #C85859;
    color: #FAF7F8;
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.not-found-page .action-block .nav-btn.primary:hover {
    background-color: #b04b4c;
    box-shadow: 2px 8px 60px 1px rgba(200, 88, 89, 0.14);
}

.not-found-page .action-block .nav-btn.primary:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 3px;
}

.not-found-page .action-block .nav-btn.secondary {
    background-color: rgba(200, 88, 89, 0.1);
    color: #E8C6CF;
    border: 1px solid rgba(200, 88, 89, 0.25);
}

.not-found-page .action-block .nav-btn.secondary:hover {
    background-color: rgba(200, 88, 89, 0.18);
    box-shadow: 2px 5px 20px 1px rgba(200, 88, 89, 0.11);
}

.not-found-page .action-block .nav-btn.secondary:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 3px;
}

.not-found-page .action-block .nav-btn .btn-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.not-found-page .links-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 8px;
}

.not-found-page .links-row .page-link {
    font-size: 15px;
    line-height: 1.5;
    color: #E8C6CF;
    text-decoration: none;
    opacity: 0.65;
    border-bottom: 1px solid rgba(232, 198, 207, 0.2);
    padding-bottom: 2px;
    transition: opacity 0.5s ease, text-shadow 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.6s ease;
}

.not-found-page .links-row .page-link:hover {
    opacity: 1;
    text-shadow: 0 0 12px rgba(200, 88, 89, 0.5);
    border-color: rgba(200, 88, 89, 0.5);
}

.not-found-page .links-row .page-link:focus {
    outline: 2px solid #E8C6CF;
    outline-offset: 3px;
    border-radius: 2px;
}

.not-found-page .deco-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.not-found-page .deco-ring.large {
    width: 480px;
    height: 480px;
    border: 1px solid rgba(200, 88, 89, 0.06);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.not-found-page .deco-ring.medium {
    width: 300px;
    height: 300px;
    border: 1px solid rgba(200, 88, 89, 0.09);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.not-found-page .deco-ring.small {
    width: 160px;
    height: 160px;
    border: 1px solid rgba(200, 88, 89, 0.13);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .not-found-page {
        padding: 48px 16px;
    }

    .not-found-page .error-wrap {
        gap: 24px;
    }

    .not-found-page .code-block .error-num {
        font-size: 51px;
    }

    .not-found-page .message-block .main-heading {
        font-size: 21px;
    }

    .not-found-page .action-block {
        flex-direction: column;
        align-items: stretch;
    }

    .not-found-page .action-block .nav-btn {
        justify-content: center;
    }

    .not-found-page .deco-ring.large {
        width: 320px;
        height: 320px;
    }

    .not-found-page .deco-ring.medium {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 360px) {
    .not-found-page .code-block .error-num {
        font-size: 37px;
    }

    .not-found-page .links-row {
        gap: 16px;
    }
}