﻿:root {
    --investor-primary: #0754a6;
    --investor-secondary: #1e78ce;
    --investor-dark: #0b4778;
    --investor-text: #173152;
    --investor-muted: #718096;
    --investor-border: #dfe8f2;
    --investor-background: #f5f8fc;
    --investor-yellow: #f5bc18;
    --investor-green: #159b72;
    --investor-red: #d84b50;
    --investor-shadow: 0 15px 45px rgba(22, 57, 93, .09);
}

.investor-page,
.investor-page * {
    box-sizing: border-box;
}

.investor-page {
    min-height: 100vh;
    margin-top: 5%;
    overflow-x: hidden;
    color: var(--investor-text);
    background: var(--investor-background);
}

.investor-container {
    width: min(1320px, calc(100% - 40px));
    margin-inline: auto;
}

.investor-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 52px 0 105px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(110deg, rgba(5, 69, 116, .97), rgba(17, 132, 205, .93)), radial-gradient(circle at 17% 20%, rgba(255, 255, 255, .14), transparent 29%);
}

    .investor-hero::before {
        content: "";
        position: absolute;
        width: 410px;
        height: 410px;
        top: -245px;
        left: -85px;
        border: 45px solid rgba(255, 255, 255, .04);
        border-radius: 50%;
    }

    .investor-hero::after {
        content: "";
        position: absolute;
        width: 170px;
        height: 170px;
        right: 8%;
        bottom: -85px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .04);
    }

.investor-hero-layout {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.investor-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
}

    .investor-breadcrumb a {
        color: #fff;
        text-decoration: none;
    }

    .investor-breadcrumb i {
        font-size: 9px;
    }

.investor-hero-label {
    display: inline-flex;
    padding: 6px 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 30px;
    background: rgba(255, 255, 255, .12);
    font-size: 12px;
    font-weight: 800;
}

.investor-hero h1 {
    margin: 10px 0 12px;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
}

.investor-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 16px;
    line-height: 1.9;
}

.investor-hero-icon {
    width: 108px;
    height: 108px;
    flex: 0 0 108px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 29px;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    font-size: 43px;
}

.investor-layout {
    position: relative;
    z-index: 4;
    width: min(1180px, calc(100% - 32px));
    display: grid;
    grid-template-columns: 305px minmax(0, 1fr);
    gap: 25px;
    align-items: start;
    margin: -58px auto 80px;
}

.investor-sidebar,
.investor-main-card {
    min-width: 0;
}

.investor-sidebar {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

.investor-menu-card,
.investor-main-card,
.investor-help-card {
    border: 1px solid rgba(218, 231, 241, .95);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--investor-shadow);
}

.investor-menu-card {
    overflow: hidden;
}

.investor-menu-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 23px;
    color: #fff;
    background: linear-gradient(135deg, var(--investor-dark), var(--investor-primary));
}

.investor-menu-header-icon {
    width: 49px;
    height: 49px;
    flex: 0 0 49px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(255, 255, 255, .14);
    font-size: 20px;
}

.investor-menu-header small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.investor-menu-header h2 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.investor-navigation {
    padding: 9px;
}

.investor-nav-link {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 12px;
    border-bottom: 1px solid #edf2f6;
    border-radius: 10px;
    color: var(--investor-text);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: .25s ease;
}

    .investor-nav-link:last-child {
        border-bottom: 0;
    }

    .investor-nav-link:hover {
        color: var(--investor-primary);
        background: #f3f9ff;
    }

    .investor-nav-link.active {
        color: #fff;
        background: linear-gradient(135deg, var(--investor-primary), #1688d7);
        box-shadow: 0 9px 20px rgba(8, 115, 189, .22);
    }

.investor-nav-icon {
    width: 33px;
    height: 33px;
    flex: 0 0 33px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--investor-primary);
    background: #ebf6fd;
    font-size: 13px;
}

.investor-nav-link.active .investor-nav-icon {
    color: #fff;
    background: rgba(255, 255, 255, .18);
}

.investor-nav-arrow {
    margin-right: auto;
    font-size: 9px;
    opacity: .6;
}

.investor-help-card {
    position: relative;
    overflow: hidden;
    padding: 25px 23px;
    color: #fff;
    background: linear-gradient(145deg, #07517f, #0d6ba7);
}

    .investor-help-card::after {
        content: "";
        position: absolute;
        width: 110px;
        height: 110px;
        left: -30px;
        bottom: -45px;
        border: 5px dotted rgba(255, 255, 255, .1);
        border-radius: 50%;
    }

.investor-help-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    margin-bottom: 17px;
    border-radius: 13px;
    background: rgba(255, 255, 255, .14);
    font-size: 20px;
}

.investor-help-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 19px;
}

.investor-help-card p {
    margin: 0 0 17px;
    color: rgba(255, 255, 255, .76);
    font-size: 13px;
    line-height: 1.8;
}

.investor-help-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 25px;
    color: #123b5c;
    background: var(--investor-yellow);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
}

.investor-main-card {
    min-height: 650px;
    padding: 34px;
}

.investor-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-bottom: 28px;
}

.investor-section-icon {
    width: 57px;
    height: 57px;
    flex: 0 0 57px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--investor-primary);
    background: #edf7fd;
    font-size: 23px;
}

.investor-section-heading small,
.investor-subheading span,
.investor-card-title span {
    display: block;
    margin-bottom: 5px;
    color: var(--investor-secondary);
    font-size: 12px;
    font-weight: 900;
}

.investor-section-heading h2 {
    margin: 0 0 5px;
    color: var(--investor-text);
    font-size: 28px;
    font-weight: 900;
}

.investor-section-heading p {
    margin: 0;
    color: var(--investor-muted);
    font-size: 14px;
    line-height: 1.8;
}

.investor-message {
    padding: 14px;
    margin-bottom: 20px;
    border-radius: 11px;
    color: #9b6a00;
    background: #fff7dc;
}

.investor-toolbar {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px;
}

.investor-search-box {
    position: relative;
    flex: 1;
}

    .investor-search-box i {
        position: absolute;
        top: 50%;
        right: 16px;
        transform: translateY(-50%);
        color: #8198ad;
    }

    .investor-search-box input {
        width: 100%;
        height: 49px;
        padding: 0 45px 0 15px;
        border: 1px solid var(--investor-border);
        border-radius: 11px;
        outline: none;
        color: var(--investor-text);
        background: #fbfdff;
    }

        .investor-search-box input:focus {
            border-color: var(--investor-secondary);
            box-shadow: 0 0 0 3px rgba(30, 120, 206, .08);
        }

.investor-count-badge {
    min-width: 100px;
    height: 49px;
    display: grid;
    place-items: center;
    padding: 0 14px;
    border-radius: 11px;
    color: var(--investor-primary);
    background: #eaf3ff;
    font-size: 12px;
    font-weight: 900;
}

.investor-documents-grid {
    display: grid;
    gap: 13px;
}

.investor-document-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 49px minmax(0, 1fr) auto 42px;
    align-items: center;
    gap: 14px;
    padding: 16px 17px;
    border: 1px solid var(--investor-border);
    border-radius: 15px;
    background: #fff;
    transition: .25s ease;
}

    .investor-document-card:hover {
        transform: translateY(-2px);
        border-color: #bad8ec;
        box-shadow: 0 10px 24px rgba(20, 77, 116, .08);
    }

.investor-document-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    color: var(--investor-red);
    background: #fff0f1;
    font-size: 21px;
}

.investor-document-content {
    min-width: 0;
}

    .investor-document-content span {
        display: block;
        margin-bottom: 3px;
        color: var(--investor-secondary);
        font-size: 11px;
        font-weight: 900;
    }

    .investor-document-content h3 {
        margin: 0;
        overflow-wrap: anywhere;
        color: var(--investor-text);
        font-size: 14px;
        line-height: 1.65;
    }

    .investor-document-content small {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 5px;
        color: var(--investor-muted);
        font-size: 11px;
    }

.investor-document-button,
.investor-download-button,
.investor-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 40px;
    border-radius: 9px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
}

.investor-document-button {
    padding: 0 15px;
    color: #fff;
    background: linear-gradient(135deg, var(--investor-primary), var(--investor-secondary));
}

.investor-download-button {
    width: 42px;
    color: var(--investor-primary);
    border: 1px solid #b9d2e8;
    background: #fff;
}

.investor-empty {
    display: none;
    padding: 60px 20px;
    text-align: center;
    color: var(--investor-muted);
}

    .investor-empty.show {
        display: block;
    }

    .investor-empty > i {
        color: var(--investor-secondary);
        font-size: 38px;
    }

    .investor-empty h3 {
        margin: 13px 0 6px;
        color: var(--investor-text);
    }

    .investor-empty p {
        margin: 0;
    }

.investor-dividend-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

    .investor-dividend-summary > div {
        padding: 20px;
        border: 1px solid var(--investor-border);
        border-radius: 15px;
        background: #fbfdff;
    }

    .investor-dividend-summary span {
        display: block;
        margin-bottom: 6px;
        color: var(--investor-muted);
        font-size: 12px;
    }

    .investor-dividend-summary strong {
        color: var(--investor-primary);
        font-size: 22px;
    }

.investor-chart-card {
    padding: 22px;
    margin-bottom: 22px;
    border: 1px solid var(--investor-border);
    border-radius: 17px;
    background: #fff;
}

.investor-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 20px;
}

    .investor-card-title h3,
    .investor-subheading h3 {
        margin: 0;
        color: var(--investor-text);
        font-size: 20px;
    }

    .investor-card-title > i {
        color: var(--investor-secondary);
        font-size: 23px;
    }

.investor-bars {
    display: grid;
    gap: 14px;
}

.investor-bar-row {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
}

.investor-bar-year {
    font-weight: 900;
}

.investor-bar-track {
    height: 34px;
    overflow: hidden;
    border-radius: 9px;
    background: #edf3f8;
}

.investor-bar-fill {
    min-width: 56px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-inline: 12px;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(90deg, var(--investor-primary), #28a1e2);
    font-size: 12px;
    font-weight: 900;
}

.investor-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--investor-border);
    border-radius: 15px;
}

.investor-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

    .investor-table th,
    .investor-table td {
        padding: 17px;
        border-bottom: 1px solid var(--investor-border);
        text-align: right;
        vertical-align: top;
    }

    .investor-table th {
        color: var(--investor-text);
        background: #edf4fb;
        font-size: 13px;
    }

    .investor-table td {
        color: #506d83;
        line-height: 1.9;
    }

    .investor-table tr:last-child td {
        border-bottom: 0;
    }

.investor-percentage {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 20px;
    color: var(--investor-green);
    background: #e9f8f2;
    font-weight: 900;
}

.investor-members-section + .investor-members-section {
    margin-top: 35px;
}

.investor-subheading {
    margin-bottom: 17px;
}

.investor-members-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.investor-member-card {
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--investor-border);
    border-radius: 17px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(22, 57, 93, .06);
}

.investor-member-avatar {
    width: 55px;
    height: 55px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 15px;
    color: var(--investor-primary);
    background: #eaf3ff;
    font-size: 22px;
}

    .investor-member-avatar.executive {
        color: var(--investor-green);
        background: #e9f8f2;
    }

.investor-member-card h3 {
    margin: 0 0 8px;
    color: var(--investor-text);
    font-size: 18px;
    line-height: 1.7;
}

.investor-member-card > span {
    display: block;
    margin-bottom: 14px;
    color: var(--investor-secondary);
    font-size: 13px;
    font-weight: 900;
}

.investor-member-card p {
    margin: 0;
    color: var(--investor-muted);
    font-size: 13px;
    line-height: 2;
    white-space: pre-line;
}

.investor-contact-intro {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-right: 4px solid var(--investor-yellow);
    border-radius: 14px;
    color: #61788c;
    background: #fffaf0;
    line-height: 1.9;
}

    .investor-contact-intro > i {
        margin-top: 5px;
        color: var(--investor-primary);
        font-size: 20px;
    }

    .investor-contact-intro p {
        margin: 0;
    }

.investor-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.investor-contact-card {
    padding: 24px;
    border: 1px solid var(--investor-border);
    border-radius: 17px;
    background: #fff;
}

.investor-contact-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
    border-radius: 14px;
    color: var(--investor-primary);
    background: #eaf3ff;
    font-size: 20px;
}

.investor-contact-card h3 {
    margin: 0 0 18px;
    color: var(--investor-text);
    font-size: 19px;
}

.investor-contact-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.investor-contact-card li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid #edf1f5;
    color: var(--investor-muted);
}

    .investor-contact-card li:last-child {
        border-bottom: 0;
    }

    .investor-contact-card li a,
    .investor-contact-card li strong {
        color: var(--investor-text);
        text-decoration: none;
        overflow-wrap: anywhere;
    }

.investor-contact-card address {
    display: grid;
    gap: 9px;
    margin: 0 0 22px;
    color: var(--investor-muted);
    font-style: normal;
    line-height: 1.8;
}

    .investor-contact-card address strong {
        color: var(--investor-text);
    }

.investor-primary-button {
    min-height: 44px;
    padding: 0 17px;
    color: #fff;
    background: linear-gradient(135deg, var(--investor-primary), var(--investor-secondary));
}

@media (max-width: 992px) {
    .investor-layout {
        grid-template-columns: 1fr;
        width: min(100% - 30px, 900px);
    }

    .investor-sidebar {
        order: -1;
    }

    .investor-help-card {
        display: none;
    }

    .investor-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .investor-nav-link {
        border: 1px solid #edf2f6;
    }

    .investor-nav-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .investor-page {
        margin-top: 0;
    }

    .investor-container {
        width: calc(100% - 24px);
    }

    .investor-hero {
        min-height: auto;
        padding: 38px 0 88px;
    }

    .investor-hero-layout {
        display: block;
    }

    .investor-hero-icon {
        display: none;
    }

    .investor-hero h1 {
        font-size: 31px;
        line-height: 1.45;
    }

    .investor-hero p {
        font-size: 14px;
    }

    .investor-layout {
        width: calc(100% - 24px);
        margin-top: -45px;
        margin-bottom: 55px;
        gap: 16px;
    }

    .investor-menu-card,
    .investor-main-card {
        border-radius: 18px;
    }

    .investor-menu-header {
        padding: 18px;
    }

    .investor-navigation {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .investor-nav-link {
        min-width: 0;
        padding: 9px;
        gap: 8px;
        font-size: 12px;
    }

    .investor-main-card {
        min-height: auto;
        padding: 24px 18px;
    }

    .investor-section-heading {
        gap: 12px;
        margin-bottom: 22px;
    }

    .investor-section-icon {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
        font-size: 19px;
    }

    .investor-section-heading h2 {
        font-size: 22px;
        line-height: 1.55;
    }

    .investor-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .investor-document-card {
        grid-template-columns: 49px minmax(0, 1fr);
    }

    .investor-document-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .investor-download-button {
        grid-column: 1 / -1;
        width: 100%;
    }

    .investor-dividend-summary,
    .investor-members-grid,
    .investor-contact-grid {
        grid-template-columns: 1fr;
    }

    .investor-table-wrapper {
        overflow: visible;
        border: 0;
    }

    .investor-table {
        min-width: 0;
    }

        .investor-table thead {
            display: none;
        }

        .investor-table,
        .investor-table tbody,
        .investor-table tr,
        .investor-table td {
            display: block;
            width: 100%;
        }

            .investor-table tr {
                margin-bottom: 14px;
                overflow: hidden;
                border: 1px solid var(--investor-border);
                border-radius: 14px;
                background: #fff;
            }

            .investor-table td {
                display: grid;
                grid-template-columns: 115px minmax(0, 1fr);
                gap: 12px;
                padding: 13px 15px;
            }

                .investor-table td::before {
                    content: attr(data-label);
                    color: var(--investor-text);
                    font-weight: 900;
                }

    .investor-contact-card li {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}

@media (max-width: 480px) {
    .investor-navigation {
        grid-template-columns: 1fr;
    }

    .investor-hero h1 {
        font-size: 28px;
    }

    .investor-main-card {
        padding: 21px 15px;
    }

    .investor-section-heading h2 {
        font-size: 20px;
    }

    .investor-bar-row {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 8px;
    }

    .investor-table td {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
