/* =========================================================
   VC REPORT PAGE
   Complete consolidated stylesheet
   Bootstrap 3 / Font Awesome 4 compatible
   ========================================================= */

/* ---------- Download modal ---------- */
#VCDownloadReport:not(.in) {
    display: none !important;
}

#VCDownloadReport.in {
    display: block;
}

#VCDownloadReport .modal-dialog {
    margin: 60px auto;
}

/* ---------- Page shell ---------- */
.vc-report-page {
    padding: 0 0 50px;
    background: #f7f7f7;
    color: #1d2a39;
}

.vc-report-shell {
    padding-top: 12px;
}

/* ---------- Breadcrumb ---------- */
.vc-breadcrumb-row {
    position: relative;
    margin: 5px 0 20px;
    padding: 0 10px 0 0;
    border: 1px solid #c7e4f2;
    border-radius: 0;
    background: #d9edf7;
    box-shadow: none;
}

.vc-breadcrumb {
    min-height: 36px;
    margin: 0 !important;
    padding: 8px 40px 8px 0 !important;
    background: transparent !important;
    font-size: 14px;
    line-height: 20px;
}

.vc-breadcrumb > li + li:before {
    content: "/";
    padding: 0 8px;
    color: #91a1b2;
}

.vc-breadcrumb a {
    color: #48627d;
    font-weight: 500;
    text-decoration: none;
}

.vc-breadcrumb a:hover {
    color: #135f9d;
}

.vc-breadcrumb .active {
    color: #000;
}

.vc-print-link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    margin: 0;
    padding: 0;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #005596;
    font-size: 18px;
    line-height: 1;
    text-decoration: none !important;
}

.vc-print-link i {
    margin: 0;
    padding: 0;
    line-height: 1;
}

.vc-print-link:hover {
    background: transparent !important;
    color: #003f73;
}

/* ---------- Report hero ---------- */
.vc-report-hero {
    position: relative;
    margin: 8px 0 26px;
    padding: 28px;
    overflow: hidden;
    border-radius: 15px;
    background:
        linear-gradient(
            118deg,
            transparent 0%,
            transparent 59%,
            rgba(218, 174, 79, .14) 59.3%,
            rgba(218, 174, 79, .05) 61%,
            transparent 61.3%
        ),
        radial-gradient(
            circle at 86% 12%,
            rgba(67, 166, 232, .48) 0%,
            rgba(67, 166, 232, .16) 26%,
            transparent 43%
        ),
        radial-gradient(
            circle at 56% 120%,
            rgba(218, 174, 79, .20) 0%,
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #0b315c 0%,
            #155791 50%,
            #227bb9 100%
        );
    box-shadow: 0 18px 45px rgba(16, 50, 82, .18);
}

/* More-visible data-point pattern */
.vc-report-hero:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 0;
    right: 165px;
    width: 500px;
    height: 100%;
    background-image:
        radial-gradient(
            circle,
            rgba(255, 255, 255, .32) 1.4px,
            transparent 1.8px
        );
    background-size: 22px 22px;
    opacity: .52;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 30%,
        #000 75%,
        transparent 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        #000 30%,
        #000 75%,
        transparent 100%
    );
}

/* Prominent layered circular design */
.vc-report-hero:after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -230px;
    right: -105px;
    width: 470px;
    height: 470px;
    border: 2px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    background: rgba(255, 255, 255, .035);
    box-shadow:
        0 0 0 58px rgba(255, 255, 255, .035),
        0 0 0 116px rgba(255, 255, 255, .022);
    pointer-events: none;
}

.vc-report-hero-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: stretch;
}

/* Decorative market-data graphic below the metadata row */
.vc-meta-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

/* Subtle chart grid */
.vc-meta-grid:before {
    content: "";
    position: absolute;
    left: 4px;
    bottom: -72px;
    width: 72%;
    height: 50px;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .10) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .08) 1px,
            transparent 1px
        );
    background-size: 100% 16px, 42px 100%;
    opacity: .75;
    pointer-events: none;
}

/* Golden market-trend line */
.vc-meta-grid:after {
    content: "";
    position: absolute;
    left: 4px;
    bottom: -67px;
    width: 72%;
    height: 42px;
    background: linear-gradient(
        90deg,
        rgba(218, 174, 79, .95) 0%,
        rgba(244, 199, 92, .80) 60%,
        rgba(244, 199, 92, .25) 100%
    );
    clip-path: polygon(
        0 76%,
        14% 58%,
        28% 67%,
        43% 38%,
        58% 50%,
        73% 22%,
        87% 35%,
        100% 10%,
        100% 16%,
        87% 41%,
        73% 28%,
        58% 56%,
        43% 44%,
        28% 73%,
        14% 64%,
        0 82%
    );
    filter: drop-shadow(0 2px 3px rgba(218, 174, 79, .25));
    pointer-events: none;
}

.vc-cover-card {
    display: inline-block;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.vc-report-cover {
    display: block;
    width: 218px;
    height: auto;
    margin: 0;
    border-radius: 4px;
}

.vc-hero-main {
    padding-top: 4px;
    color: #fff;
}

.vc-eyebrow {
    margin-bottom: 10px;
    color: #f3c45e;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vc-hero-main h1 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.vc-hero-subtitle {
    max-width: 620px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.6;
}

.vc-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.vc-meta-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 10px;
    background: rgba(255, 255, 255, .22);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}

.vc-meta-item span {
    display: block;
    color: #eaf4ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
}

.vc-meta-item strong {
    display: block;
    margin-top: 3px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.vc-meta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-right: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .20);
}

.vc-meta-icon i {
    color: #fff !important;
    font-size: 16px;
}

.vc-meta-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.vc-publisher-meta-icon {
    overflow: hidden;
}

.vc-publisher-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 24px;
    max-height: 24px;
    object-fit: contain;
}

.vc-publisher-icon-fallback {
    display: none;
}

/* ---------- Download card ---------- */
.vc-download-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 22px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .13);
}

.vc-download-card h3 {
    margin: 0 0 8px;
    color: #18314b;
    font-size: 19px;
}

.vc-download-card p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vc-primary-btn {
    padding: 12px 18px;
    border-color: #0f63a5 !important;
    border-radius: 9px;
    background: #0f63a5 !important;
    color: #fff !important;
    font-weight: 700;
}

.vc-primary-btn:hover {
    background: #0b5188 !important;
}

.vc-trust-list {
    margin: 16px 0 12px;
}

.vc-trust-list div {
    margin: 7px 0;
    color: #53657a;
    font-size: 12px;
}

.vc-trust-list i {
    margin-right: 6px;
    color: #2ca56c;
}

.vc-secondary-link {
    color: #175f9e;
    font-size: 13px;
    font-weight: 700;
}

.vc-login-note {
    margin-top: 12px;
    color: #687789;
}

.vc-login-note a {
    font-weight: 700;
}

/* ---------- Main layout and shared cards ---------- */
.vc-report-layout {
    display: flex;
}

.vc-main-column,
.vc-side-column {
    float: none;
}

.vc-tabs-card,
.vc-content-card {
    border: 1px solid #e1e8ef;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 9px 26px rgba(23, 43, 77, .06);
}

.vc-tabs-card {
    margin-bottom: 18px;
    overflow: hidden;
}

.vc-tabs-card .tab-content {
    padding: 18px;
}

.vc-content-card {
    margin-bottom: 18px;
    padding: 24px;
}

/* ---------- Overview / Publisher tabs ---------- */
.vc-report-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 12px 14px !important;
    border: 0 !important;
    border-bottom: 1px solid #dfe7ef !important;
    background: linear-gradient(180deg, #f9fbfd 0%, #f3f7fa 100%) !important;
}

.vc-report-tabs > li {
    float: none !important;
    margin: 0 !important;
}

.vc-report-tabs > li > a {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    margin: 0 !important;
    padding: 10px 17px !important;
    overflow: hidden;
    border: 1px solid #d5e0ea !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: 0 2px 6px rgba(26, 55, 86, .05);
    color: #40566d !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease,
                background .2s ease, box-shadow .2s ease,
                transform .2s ease;
}

.vc-report-tabs > li > a:hover {
    transform: translateY(-1px);
    border-color: #9fc2df !important;
    background: #f4f9fd !important;
    box-shadow: 0 5px 12px rgba(17, 76, 146, .10);
    color: #114c92 !important;
}

.vc-report-tabs > li.active > a,
.vc-report-tabs > li.active > a:hover,
.vc-report-tabs > li.active > a:focus {
    transform: none;
    border-color: #114c92 !important;
    background: linear-gradient(135deg, #114c92 0%, #1768ac 100%) !important;
    box-shadow: 0 6px 15px rgba(17, 76, 146, .23);
    color: #fff !important;
}

.vc-report-tabs > li.active > a:after {
    display: none;
}

.vc-report-tabs .vc-tab-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    border-radius: 7px;
    background: #edf4fa;
    color: #114c92;
    font-size: 12px;
    transition: background .2s ease, color .2s ease;
}

.vc-report-tabs > li.active > a .vc-tab-icon {
    background: rgba(255, 255, 255, .16);
    color: #f4c75c;
}

.vc-report-tabs > li.disabled > a,
.vc-report-tabs > li.disabled > a:hover {
    transform: none;
    border-color: #e2e7ec !important;
    background: #f4f6f8 !important;
    box-shadow: none;
    color: #a3adb7 !important;
    cursor: not-allowed;
}

/* ---------- Report content ---------- */
.vc-section-heading {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.vc-section-heading > span,
.vc-publisher-heading-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-right: 12px;
    border-radius: 10px;
    background: #eef5fb;
    color: #135f9d;
}

.vc-section-heading > span {
    font-size: 12px;
    font-weight: 800;
}

.vc-publisher-heading-icon i {
    display: block;
    color: #155f9e !important;
    font-size: 15px;
}

.vc-section-heading small {
    display: block;
    margin-bottom: 3px;
    color: #9aa6b2;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.1px;
}

.vc-section-heading h2 {
    margin: 0;
    color: #1c2f45;
    font-size: 22px;
}

.vc-richtext {
    color: #465568;
    font-size: 14px;
    line-height: 1.75;
}

.vc-richtext p {
    margin-bottom: 14px;
}

.vc-richtext ul {
    padding-left: 20px;
}

.vc-richtext li {
    margin-bottom: 8px;
}

.vc-scope-content li::marker {
    color: #d7a62f;
}

.vc-synopsis-table {
    margin: 0;
}

.vc-synopsis-table th {
    border-top: 0 !important;
    background: #f5f8fb;
    color: #26435f;
}

.vc-synopsis-table td,
.vc-synopsis-table th {
    padding: 13px 14px !important;
    border-color: #e8edf2 !important;
    font-size: 13px;
    vertical-align: top !important;
}

.vc-synopsis-table td:first-child {
    color: #34495e;
    font-weight: 700;
}

.vc-inline-list {
    margin: 0;
    padding-left: 18px;
}

.vc-inline-list li {
    margin-bottom: 6px;
}

/* ---------- FAQ ---------- */
.vc-faq-accordion .panel {
    margin-bottom: 10px;
    overflow: hidden;
    border: 1px solid #e6ebf1;
    border-radius: 10px !important;
    box-shadow: none;
}

.vc-faq-accordion .panel-heading {
    padding: 0;
    background: #fff;
}

.vc-faq-accordion .panel-title a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 16px;
    color: #243b53;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.vc-faq-accordion .panel-body {
    border-top: 1px solid #eef1f4 !important;
    color: #58697b;
    line-height: 1.7;
}

.vc-simple-accordion > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #2e4357;
    font-weight: 700;
    text-decoration: none;
}

.vc-simple-accordion .panel-body {
    padding: 18px 0 0;
}

/* ---------- Publisher ---------- */
.vc-publisher-report {
    padding: 16px 0;
    border-top: 1px solid #edf0f3;
}

.vc-publisher-report h4 {
    color: #155f9e;
    font-size: 16px;
}

.vc-subheading {
    margin-top: 26px;
    font-size: 17px;
}

/* ---------- Related report grid ---------- */
.vc-related-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.vc-related-card {
    display: block;
    padding: 16px;
    border: 1px solid #e6ebf1;
    border-radius: 10px;
    background: #fff;
    text-decoration: none !important;
    transition: transform .2s ease, box-shadow .2s ease;
}

.vc-related-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(20, 52, 82, .08);
}

.vc-related-card h3 {
    margin: 0 0 8px;
    color: #145d9a;
    font-size: 14px;
    line-height: 1.45;
}

.vc-related-meta {
    color: #8a98a8;
    font-size: 12px;
}

.vc-related-meta span {
    margin: 0 5px;
    color: #c6ced7;
}

/* ---------- More Research ---------- */
.vc-more-research-card,
.vc-research-section {
    padding: 0;
    overflow: hidden;
}

/* Supports the current live More Research markup without an HTML change. */
.vc-research-section > .vc-section-heading {
    position: relative;
    min-height: 72px;
    margin: 0;
    padding: 18px 22px 14px 72px;
    background: linear-gradient(135deg, #fff 0%, #f7fbfe 100%);
}

.vc-research-section > .vc-section-heading:before {
    content: "\f02d";
    position: absolute;
    top: 16px;
    left: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #d9e8f4;
    border-radius: 11px;
    background: #edf5fb;
    color: #114c92;
    font-family: FontAwesome;
    font-size: 15px;
}

.vc-research-section > .vc-section-heading h2 {
    color: #18314b;
    font-size: 21px;
    font-weight: 700;
    line-height: 40px;
}

.vc-more-research-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px 14px;
}

.vc-more-research-head .vc-section-label {
    display: block;
    margin-bottom: 4px;
    color: #b08322;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.vc-more-research-head h2 {
    margin: 0;
    color: #18314b;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
}

.vc-more-research-head p {
    margin: 5px 0 0;
    color: #6a7a8b;
    font-size: 12px;
    line-height: 1.5;
}

.vc-more-research-head-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 11px;
    background: #edf5fb;
    color: #114c92;
    font-size: 16px;
}

.vc-secondary-tabs {
    display: flex;
    align-items: stretch;
    gap: 7px;
    margin: 0 !important;
    padding: 9px 12px !important;
    border: 0 !important;
    border-top: 1px solid #e2e9f0 !important;
    border-bottom: 1px solid #e2e9f0 !important;
    background: #f4f7fa !important;
}

.vc-secondary-tabs > li {
    float: none !important;
    margin: 0 !important;
}

.vc-secondary-tabs > li > a {
    display: flex !important;
    align-items: center;
    gap: 8px;
    min-height: 39px;
    margin: 0 !important;
    padding: 9px 14px !important;
    border: 1px solid #d5e0ea !important;
    border-radius: 9px !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(22, 53, 83, .04);
    color: #50657a !important;
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
    text-decoration: none;
    transition: color .2s ease, border-color .2s ease,
                background .2s ease, box-shadow .2s ease,
                transform .2s ease;
}

.vc-secondary-tabs > li > a:hover {
    transform: translateY(-1px);
    border-color: #a9c8e1 !important;
    background: #f8fbfe !important;
    color: #114c92 !important;
}

.vc-secondary-tabs > li.active > a,
.vc-secondary-tabs > li.active > a:hover,
.vc-secondary-tabs > li.active > a:focus {
    transform: none;
    border-color: #114c92 !important;
    background: #114c92 !important;
    box-shadow: 0 5px 12px rgba(17, 76, 146, .20);
    color: #fff !important;
}

.vc-secondary-tabs > li.active > a:after {
    display: none !important;
}

.vc-secondary-tabs .vc-secondary-tab-icon {
    width: 16px;
    color: #114c92;
    font-size: 12px;
    text-align: center;
}

.vc-secondary-tabs > li.active > a .vc-secondary-tab-icon {
    color: #f4c75c;
}

.vc-more-research-card .tab-content,
.vc-research-section .vc-report-list-tabs {
    padding: 10px 16px 16px;
}

.vc-list-report {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 66px;
    margin: 0 0 9px;
    padding: 13px 52px 13px 15px;
    overflow: hidden;
    border: 1px solid #dfe7ef;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(20, 52, 82, .045);
    text-decoration: none !important;
    transition: border-color .2s ease, box-shadow .2s ease,
                transform .2s ease;
}

.vc-list-report:before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: #daae4f;
    opacity: 0;
    transition: opacity .2s ease;
}

.vc-list-report:hover {
    transform: translateY(-1px);
    border-color: #b9d2e5;
    background: #fff;
    box-shadow: 0 7px 17px rgba(17, 76, 146, .10);
}

.vc-list-report:hover:before {
    opacity: 1;
}

.vc-list-report h3 {
    margin: 0 0 6px;
    color: #0f5f9f !important;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.45;
}

.vc-list-report .vc-related-meta {
    color: #5f7184 !important;
    font-size: 12px;
    font-weight: 500;
}

.vc-list-report .vc-related-meta span {
    color: #9bacbc !important;
}

.vc-list-report > i {
    position: absolute;
    top: 50%;
    right: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 29px;
    height: 29px;
    margin: 0;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #edf5fb;
    color: #114c92 !important;
    font-size: 15px;
    transition: color .2s ease, background .2s ease,
                transform .2s ease;
}

.vc-list-report:hover > i {
    transform: translate(2px, -50%);
    background: #114c92;
    color: #fff !important;
}

.vc-report-meta-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    color: #5d6d7e !important;
    font-size: 12px !important;
}

.vc-report-meta-line .vc-meta-label {
    margin: 0 !important;
    color: #657587 !important;
}

.vc-report-meta-line .vc-meta-dash {
    margin: 0 !important;
    color: #8b98a6 !important;
}

.vc-report-meta-line strong {
    color: #4a5663;
    font-weight: 700;
}

.vc-report-meta-line .vc-meta-divider {
    display: inline-block;
    width: 1px;
    height: 15px;
    margin: 0 5px !important;
    background: #d7dde4;
}

/* ---------- Sidebar ---------- */
.vc-side-column {
    position: sticky;
    top: 90px;
    align-self: flex-start;
    padding-left: 0;
}

.vc-side-card,
.vc-side-card + .vc-side-card {
    position: relative;
    top: auto;
    margin-bottom: 16px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid #dfe7ef;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 48, 79, .08);
}

.vc-side-card:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #114c92 0%, #2584c6 68%, #daae4f 68%, #daae4f 100%);
}

.vc-side-card:after {
    content: "";
    position: absolute;
    z-index: 0;
    top: -52px;
    right: -54px;
    width: 132px;
    height: 132px;
    border: 22px solid rgba(17, 76, 146, .045);
    border-radius: 50%;
    pointer-events: none;
}

.vc-side-card > * {
    position: relative;
    z-index: 1;
}

.vc-side-card-label {
    display: inline-block;
    margin-bottom: 9px;
    color: #b08322;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.2px;
    line-height: 1.3;
    text-transform: uppercase;
}

.vc-side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border: 1px solid #d9e8f4;
    border-radius: 13px;
    background: linear-gradient(145deg, #edf6fd 0%, #fff 100%);
    box-shadow: 0 6px 14px rgba(17, 76, 146, .10);
    color: #114c92;
    font-size: 18px;
}

.vc-side-card h3 {
    margin: 0 0 9px;
    color: #18314b;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.vc-side-card p {
    margin-bottom: 15px;
    color: #5f7184;
    font-size: 13px;
    line-height: 1.65;
}

.vc-side-benefits {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.vc-side-benefits li {
    position: relative;
    margin: 8px 0;
    padding-left: 22px;
    color: #40566d;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
}

.vc-side-benefits li:before {
    content: "\f00c";
    position: absolute;
    top: 1px;
    left: 0;
    color: #2ca56c;
    font-family: FontAwesome;
    font-size: 12px;
}

.vc-outline-btn {
    border: 1px solid #cfdae5;
    border-radius: 8px;
    background: #fff;
    color: #175f9e;
    font-weight: 700;
}

.vc-outline-btn:hover {
    background: #f4f8fc;
    color: #175f9e;
}

.vc-side-card:not(.vc-side-contact) .vc-outline-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 43px;
    padding: 10px 14px;
    border-color: #114c92;
    border-radius: 9px;
    background: #114c92;
    box-shadow: 0 6px 14px rgba(17, 76, 146, .17);
    color: #fff;
    font-size: 13px;
    text-align: left;
    transition: background .2s ease, border-color .2s ease,
                box-shadow .2s ease, transform .2s ease;
}

.vc-side-card:not(.vc-side-contact) .vc-outline-btn:hover {
    transform: translateY(-1px);
    border-color: #0b3f7b;
    background: #0b3f7b;
    box-shadow: 0 8px 18px rgba(17, 76, 146, .24);
    color: #fff;
}

.vc-side-card:not(.vc-side-contact) .vc-outline-btn i {
    margin-left: 10px;
    font-size: 11px;
}

.vc-side-contact {
    border-color: #dfe7ef;
    background: #fff;
    box-shadow: 0 10px 26px rgba(17, 48, 79, .08);
    color: #1d2a39;
}

.vc-contact-kicker {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 7px;
    color: #114c92;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.vc-side-contact h4 {
    position: relative;
    z-index: 1;
    margin: 0 0 7px;
    color: #18314b;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.vc-side-contact .vc-contact-intro {
    margin: 0 0 14px;
    color: #5f7184;
    font-size: 12px;
    line-height: 1.55;
}

.vc-side-contact > p:not(.vc-contact-intro) {
    position: relative;
    z-index: 1;
    margin: 10px 0;
    color: #40566d;
}

.vc-side-contact > p:not(.vc-contact-intro) i {
    width: 18px;
    color: #114c92;
}

.vc-contact-link {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 9px;
    padding: 10px;
    border: 1px solid #d9e4ee;
    border-radius: 9px;
    background: #f8fbfd;
    color: #23415f !important;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none !important;
    transition: background .2s ease, border-color .2s ease,
                transform .2s ease;
}

.vc-contact-link:hover {
    transform: translateX(2px);
    border-color: #a9c8e1;
    background: #eef5fb;
    color: #114c92 !important;
}

.vc-contact-link i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    border-radius: 7px;
    background: #114c92;
    color: #fff;
    font-size: 12px;
}

.vc-contact-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}

/* ---------- Services section ---------- */
.vc-services-section {
    margin-top: 30px;
}

.vc-services-head {
    max-width: 700px;
    margin: 0 auto 22px;
    text-align: center;
}

.vc-services-head span {
    color: #d3a02d;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.vc-services-head h2 {
    margin: 6px 0;
    color: #20364c;
    font-size: 26px;
}

.vc-services-head p {
    color: #6d7d8c;
}

.vc-service-grid {
    display: flex;
    flex-wrap: wrap;
}

.vc-service-grid > [class*="col-"] {
    display: flex;
    margin-bottom: 15px;
}

.vc-service-card {
    width: 100%;
    padding: 20px;
    border: 1px solid #e6ebf1;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(20, 52, 82, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.vc-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(20, 52, 82, .09);
}

.vc-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #eef5fb;
    color: #155f9e;
    font-size: 17px;
}

.vc-service-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: #22384e;
    font-size: 17px;
    font-weight: 600;
}

.vc-service-card h3 .vc-service-icon {
    display: inline-flex;
    width: 32px;
    min-width: 32px;
    height: 32px;
    margin: 0;
    border-radius: 8px;
    background: #114c92;
    color: #fff;
    font-size: 14px;
}

.vc-service-card p {
    min-height: 82px;
    color: #6b7a89;
    font-size: 13px;
    line-height: 1.6;
}

.vc-service-card a {
    color: #155f9e;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

/* ---------- Sticky CTA ---------- */
.sticky-ctadiv.stickycta {
    border-top: 1px solid #e3e8ee;
    background: #fff !important;
    box-shadow: 0 -6px 22px rgba(0, 0, 0, .1) !important;
}

.sticky-ctadiv .sticky-rpt-title {
    color: #29435c;
    font-weight: 700;
}

.mbl-fixed-cta {
    display: none !important;
}

/* ---------- Focus states ---------- */
.vc-print-link:focus,
.vc-report-tabs > li > a:focus,
.vc-secondary-tabs > li > a:focus,
.vc-side-card a:focus,
.vc-related-card:focus,
.vc-list-report:focus,
.vc-service-card a:focus {
    outline: 0;
    box-shadow: 0 0 0 3px rgba(17, 76, 146, .22);
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .vc-report-hero-row,
    .vc-report-layout {
        display: block;
    }

    .vc-report-hero {
        padding: 22px;
    }

    .vc-hero-main h1 {
        font-size: 27px;
    }

    .vc-meta-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vc-download-card {
        height: auto;
    }

    .vc-side-column {
        position: static;
        display: none;
    }

    .vc-mobile-download {
        margin-top: 18px;
    }

    .vc-service-card p {
        min-height: 0;
    }
	
	.vc-meta-grid:before,
    .vc-meta-grid:after {
        display: none;
    }
}

@media (max-width: 767px) {
    .vc-report-page {
        padding-bottom: 20px;
    }

    .vc-report-shell {
        padding-right: 10px;
        padding-left: 10px;
    }

    .vc-report-hero {
        padding: 18px;
        border-radius: 12px;
    }

    .vc-hero-main h1 {
        font-size: 24px;
    }

    .vc-hero-subtitle {
        font-size: 14px;
    }

    .vc-meta-grid {
        grid-template-columns: 1fr;
    }

    .vc-tabs-card .tab-content {
        padding: 10px;
    }

    .vc-content-card {
        padding: 18px;
        border-radius: 12px;
    }

    .vc-section-heading h2 {
        font-size: 20px;
    }

    .vc-related-grid {
        grid-template-columns: 1fr;
    }

    .vc-report-tabs {
        gap: 6px;
        padding: 9px !important;
    }

    .vc-report-tabs > li {
        flex: 1 1 50%;
    }

    .vc-report-tabs > li > a {
        justify-content: center;
        padding: 9px 10px !important;
        font-size: 13px;
    }

    .vc-more-research-card,
    .vc-research-section {
        padding: 0;
    }

    .vc-research-section > .vc-section-heading {
        min-height: 65px;
        padding: 14px 16px 11px 61px;
    }

    .vc-research-section > .vc-section-heading:before {
        top: 12px;
        left: 14px;
        width: 37px;
        height: 37px;
    }

    .vc-research-section > .vc-section-heading h2 {
        font-size: 19px;
        line-height: 37px;
    }

    .vc-more-research-head {
        padding: 17px 16px 12px;
    }

    .vc-more-research-head h2 {
        font-size: 19px;
    }

    .vc-secondary-tabs {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .vc-secondary-tabs > li {
        flex: 0 0 auto;
    }

    .vc-secondary-tabs > li > a {
        padding: 9px 12px !important;
        font-size: 13px;
    }

    .vc-more-research-card .tab-content,
    .vc-research-section .vc-report-list-tabs {
        padding: 9px 10px 12px;
    }

    .vc-services-head h2 {
        font-size: 22px;
    }

    .vc-service-grid,
    .vc-service-grid > [class*="col-"] {
        display: block;
    }

    .vc-service-card {
        margin-bottom: 12px;
    }

    .sticky-ctadiv {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .vc-report-meta-line .vc-meta-divider {
        height: 12px;
        margin: 0 2px !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vc-report-tabs > li > a,
    .vc-secondary-tabs > li > a,
    .vc-related-card,
    .vc-list-report,
    .vc-list-report > i,
    .vc-side-card .vc-outline-btn,
    .vc-contact-link,
    .vc-service-card {
        transition: none;
    }
}
